documentation update for mingw socket functions
[pspp] / ChangeLog
1 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
2
3         * doc/posix-functions/accept.texi: Update mingw problems.
4         * doc/posix-functions/bind.texi: Update mingw problems.
5         * doc/posix-functions/close.texi: Update mingw problems.
6         * doc/posix-functions/connect.texi: Update mingw problems.
7         * doc/posix-functions/getpeername.texi: Update mingw problems.
8         * doc/posix-functions/getsockname.texi: Update mingw problems.
9         * doc/posix-functions/getsockopt.texi: Update mingw problems.
10         * doc/posix-functions/ioctl.texi: Update mingw problems.
11         * doc/posix-functions/listen.texi: Update mingw problems.
12         * doc/posix-functions/recv.texi: Update mingw problems.
13         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14         * doc/posix-functions/select.texi: Update mingw problems.
15         * doc/posix-functions/send.texi: Update mingw problems.
16         * doc/posix-functions/sendto.texi: Update mingw problems.
17         * doc/posix-functions/setsockopt.texi: Update mingw problems.
18         * doc/posix-functions/socket.texi: Update mingw problems.
19
20 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
21             Bruno Haible  <bruno@clisp.org>
22
23         * lib/sys_select.in.h: Include sys/time.h.
24         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
25         * modules/sys_select: Depend on sys_time.
26         * tests/test-sys_select.c: Test that sys/select.h defines struct
27         timeval fully.
28
29 2008-09-29  Bruno Haible  <bruno@clisp.org>
30
31         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
32         * lib/sys_select.in.h: Likewise.
33
34 2008-09-29  Bruno Haible  <bruno@clisp.org>
35
36         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
37
38 2008-09-29  Bruno Haible  <bruno@clisp.org>
39
40         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
41         Set LIBSOCKET instead of augmenting LIBS.
42         * modules/sockets (Link): New section.
43         * modules/sockets-tests (test_sockets_LDADD): New variable.
44         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
45         * modules/poll-tests (test_poll_LDADD): New variable.
46         * NEWS: Document the change.
47
48 2008-09-29  Bruno Haible  <bruno@clisp.org>
49
50         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
51         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
52         ARPA_INET_H directly.
53         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
54
55 2008-09-28  Bruno Haible  <bruno@clisp.org>
56
57         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
58         from gl_HEADER_SYS_SOCKET.
59         (gl_HEADER_SYS_SOCKET): Invoke it.
60         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
61
62 2008-09-28  Bruno Haible  <bruno@clisp.org>
63
64         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
65         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
66         Needed on OSF/1 4.0.
67
68 2008-09-28  Bruno Haible  <bruno@clisp.org>
69
70         Override open more carefully.
71         * lib/open.c (orig_open): New function.
72         (rpl_open): Use orig_open instead of open.
73         * lib/fcntl.in.h: Add special invocation convention.
74         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
75         (gl_FUNC_OPEN): Invoke it.
76
77         Override freopen more carefully.
78         * lib/freopen.c (orig_freopen): New function.
79         (rpl_freopen): Use orig_freopen instead of freopen.
80         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
81         (gl_FUNC_FREOPEN): Invoke it.
82
83         Override fopen more carefully.
84         * lib/fopen.c (orig_fopen): New function.
85         (rpl_fopen): Use orig_fopen instead of fopen.
86         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
87         (gl_FUNC_FOPEN): Invoke it.
88         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
89
90 2008-09-28  Bruno Haible  <bruno@clisp.org>
91
92         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
93         SIGPIPE.
94
95 2008-09-28  Bruno Haible  <bruno@clisp.org>
96
97         * tests/test-sigaction.c (handler, main): Disable the check whether
98         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
99         glibc systems with LinuxThreads.
100
101 2008-09-28  Bruno Haible  <bruno@clisp.org>
102
103         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
104
105         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
106         with AIX xlc.
107         * lib/fcntl.in.h (open): Likewise.
108         Reported by Rainer Tammer <tammer@tammer.net>.
109
110 2008-09-28  Bruno Haible  <bruno@clisp.org>
111
112         * modules/posix_spawnp-tests: New file.
113         * tests/test-posix_spawn.c: New file.
114         * tests/test-posix_spawn.in.sh: New file.
115
116         New module 'posix_spawnp'.
117         * modules/posix_spawnp: New file.
118         * lib/spawnp.c: New file, from GNU libc with modifications.
119         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
120
121         New module 'posix_spawn'.
122         * modules/posix_spawn: New file.
123         * lib/spawn.c: New file, from GNU libc with modifications.
124         * doc/posix-functions/posix_spawn.texi: Mention the new module.
125
126         New module 'posix_spawnattr_destroy'.
127         * modules/posix_spawnattr_destroy: New file.
128         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
129         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
130         module.
131
132         New module 'posix_spawnattr_setsigmask'.
133         * modules/posix_spawnattr_setsigmask: New file.
134         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
135         modifications.
136         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
137         new module.
138
139         New module 'posix_spawnattr_getsigmask'.
140         * modules/posix_spawnattr_getsigmask: New file.
141         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
142         modifications.
143         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
144         new module.
145
146         New module 'posix_spawnattr_setsigdefault'.
147         * modules/posix_spawnattr_setsigdefault: New file.
148         * lib/spawnattr_setdefault.c: New file, from GNU libc with
149         modifications.
150         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
151         new module.
152
153         New module 'posix_spawnattr_getsigdefault'.
154         * modules/posix_spawnattr_getsigdefault: New file.
155         * lib/spawnattr_getdefault.c: New file, from GNU libc with
156         modifications.
157         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
158         new module.
159
160         New module 'posix_spawnattr_setschedpolicy'.
161         * modules/posix_spawnattr_setschedpolicy: New file.
162         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
163         modifications.
164         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
165         new module.
166
167         New module 'posix_spawnattr_getschedpolicy'.
168         * modules/posix_spawnattr_getschedpolicy: New file.
169         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
170         modifications.
171         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
172         new module.
173
174         New module 'posix_spawnattr_setschedparam'.
175         * modules/posix_spawnattr_setschedparam: New file.
176         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
177         modifications.
178         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
179         new module.
180
181         New module 'posix_spawnattr_getschedparam'.
182         * modules/posix_spawnattr_getschedparam: New file.
183         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
184         modifications.
185         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
186         new module.
187
188         New module 'posix_spawnattr_setpgroup'.
189         * modules/posix_spawnattr_setpgroup: New file.
190         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
191         modifications.
192         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
193         module.
194
195         New module 'posix_spawnattr_getpgroup'.
196         * modules/posix_spawnattr_getpgroup: New file.
197         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
198         modifications.
199         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
200         module.
201
202         New module 'posix_spawnattr_setflags'.
203         * modules/posix_spawnattr_setflags: New file.
204         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
205         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
206         module.
207
208         New module 'posix_spawnattr_getflags'.
209         * modules/posix_spawnattr_getflags: New file.
210         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
211         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
212         module.
213
214         New module 'posix_spawnattr_init'.
215         * modules/posix_spawnattr_init: New file.
216         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
217         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
218         module.
219
220         New module 'posix_spawn_file_actions_destroy'.
221         * modules/posix_spawn_file_actions_destroy: New file.
222         * lib/spawn_faction_destroy.c: New file, from GNU libc with
223         modifications.
224         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
225         the new module.
226
227         New module 'posix_spawn_file_actions_addopen'.
228         * modules/posix_spawn_file_actions_addopen: New file.
229         * lib/spawn_faction_addopen.c: New file, from GNU libc with
230         modifications.
231         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
232         the new module.
233
234         New module 'posix_spawn_file_actions_adddup2'.
235         * modules/posix_spawn_file_actions_adddup2: New file.
236         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
237         modifications.
238         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
239         the new module.
240
241         New module 'posix_spawn_file_actions_addclose'.
242         * modules/posix_spawn_file_actions_addclose: New file.
243         * lib/spawn_faction_addclose.c: New file, from GNU libc with
244         modifications.
245         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
246         the new module.
247
248         New module 'posix_spawn_file_actions_init'.
249         * modules/posix_spawn_file_actions_init: New file.
250         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
251         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
252         new module.
253
254         New module 'posix_spawn-internal'.
255         * modules/posix_spawn-internal: New file.
256         * lib/spawn_int.h: New file, from GNU libc with modifications.
257         * lib/spawni.c: New file, from GNU libc with modifications.
258         * m4/posix_spawn.m4: New file.
259
260         New module 'spawn'.
261         * modules/spawn: New file.
262         * lib/spawn.in.h: New file, from GNU libc with modifications.
263         * m4/spawn_h.m4: New file.
264         * doc/posix-headers/spawn.texi: Mention the new module.
265
266 2008-09-28  Bruno Haible  <bruno@clisp.org>
267
268         * modules/sched-tests: New file.
269         * tests/test-sched.c: New file.
270
271         New module 'sched'.
272         * modules/sched: New file.
273         * lib/sched.in.h: New file.
274         * m4/sched_h.m4: New file.
275         * doc/posix-headers/sched.texi: Mention the new module.
276
277 2008-09-27  Eric Blake  <ebb9@byu.net>
278
279         Fix previous patch, and tweak references to $0.
280         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
281         (func_version, func_gnulib_dir): Don't call this program
282         gnulib-tool.
283         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
284         with using $0 in function.
285         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
286         (func_fatal_error): Reuse the name the user invoked us with.
287
288 2008-09-27  Bruno Haible  <bruno@clisp.org>
289
290         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
291         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
292         (gl_ICONV_H): Not here.
293         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
294         instead of assigning ICONV_H directly.
295
296         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
297         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
298         WCHAR_H directly.
299
300 2008-09-27  Bruno Haible  <bruno@clisp.org>
301
302         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
303         * modules/arpa_inet (Depends-on): Add link-warning.
304         (Makefile.am): Insert the definition of GL_LINK-WARNING.
305         * modules/unistd (Makefile.am): Likewise.
306
307 2008-09-26  Bruno Haible  <bruno@clisp.org>
308
309         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
310         variables.
311         (func_version): Essentially copied from gnulib-tool.
312         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
313         func_readlink): Copied from gnulib-tool.
314
315 2008-09-26  Bruno Haible  <bruno@clisp.org>
316
317         * gnulib-tool (func_version): Change directory to $gnulib_dir before
318         invoking git-version-gen.
319
320 2008-09-26  Bruno Haible  <bruno@clisp.org>
321
322         * posix-modules: Update to directory names changed on 2008-01-19.
323         Remove commas in output before splitting into words. No more need to
324         avoid 'ftruncate' since 2007-02-19.
325
326 2008-09-26  Bruno Haible  <bruno@clisp.org>
327
328         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
329
330 2008-09-26  Bruno Haible  <bruno@clisp.org>
331
332         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
333         * modules/fwriteerror (Depends-on): Add errno.
334
335 2008-09-26  Bruno Haible  <bruno@clisp.org>
336
337         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
338         * tests/test-vc-list-files-cvs.sh: Likewise.
339
340 2008-09-26  Bruno Haible  <bruno@clisp.org>
341
342         * doc/posix-headers/sys_resource.texi: Reorder items.
343
344 2008-09-26  Jim Meyering  <meyering@redhat.com>
345
346         fts: tweak inode comparison function
347         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
348         inode numbers, as documented.
349
350         fts: sort dirent entries on inode number before traversing
351         This avoids a quadratic, seek-related performance penalty when
352         operating on a directory containing many entries (measurable at 10k;
353         3.5 hours at 2 million entries with a cold cache) on certain types
354         of file systems, including ext3 and ext4, but not tmpfs.
355         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
356         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
357         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
358         (fs_handles_readdir_ordered_dirents_efficiently): New function.
359         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
360         (fts_build): Set the stat.st_ino member from D_INO.
361         If it is likely to be useful, sort dirent entries on inode number.
362
363         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
364         and the struct statfs.f_type member.
365         * modules/fts (Depends-on): Add d-ino.
366
367 2008-09-26  Bruno Haible  <bruno@clisp.org>
368
369         * modules/sigpipe-die (Depends-on): Add sigpipe.
370
371         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
372         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
373         and GNULIB_STDIO_H_SIGPIPE are set.
374         * lib/stdio-write.c: New file.
375         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
376         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
377         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
378         REPLACE_STDIO_WRITE_FUNCS.
379         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
380         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
381         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
382         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
383         * modules/stdio (Files): Add lib/stdio-write.c.
384         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
385         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
386         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
387         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
388         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
389         REPLACE_FPRINTF_POSIX.
390         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
391         REPLACE_PRINTF_POSIX.
392         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
393         REPLACE_VFPRINTF_POSIX.
394         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
395         REPLACE_VPRINTF_POSIX.
396         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
397         SIGPIPE issue.
398         * doc/posix-functions/fputc.texi: Likewise.
399         * doc/posix-functions/fputs.texi: Likewise.
400         * doc/posix-functions/fwrite.texi: Likewise.
401         * doc/posix-functions/printf.texi: Likewise.
402         * doc/posix-functions/putc.texi: Likewise.
403         * doc/posix-functions/putchar.texi: Likewise.
404         * doc/posix-functions/puts.texi: Likewise.
405         * doc/posix-functions/vfprintf.texi: Likewise.
406         * doc/posix-functions/vprintf.texi: Likewise.
407
408         * modules/safe-write (Depends-on): Add write.
409
410         * modules/sigpipe-tests: New file.
411         * tests/test-sigpipe.c: New file.
412         * tests/test-sigpipe.sh: New file.
413
414         * modules/write: New file.
415         * lib/unistd.in.h: Include <sys/types.h>.
416         (write): New declaration.
417         * lib/write.c: New file.
418         * m4/write.m4: New file.
419         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
420         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
421         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
422         GNULIB_WRITE, REPLACE_WRITE.
423         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
424         and the SIGPIPE issue.
425
426         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
427         (raise): New declaration.
428         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
429         (ext_signal): New function.
430         (rpl_raise): New function.
431         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
432         GNULIB_SIGNAL_H_SIGPIPE.
433         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
434         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
435
436         * modules/sigpipe: New file.
437         * m4/sigpipe.m4: New file.
438
439 2008-09-25  Derek Price  <derek@ximbiot.com>
440             Bruno Haible  <bruno@clisp.org>
441
442         * gnulib-tool (func_import): Report all license incompatibilities, not
443         just the first one.
444
445 2008-09-25  Bruno Haible  <bruno@clisp.org>
446
447         * gnulib-tool (func_import): When computing the edits, consider not
448         only the Makefile.ams that exist but also those that will be generated.
449
450 2008-09-25  Simon Josefsson  <simon@josefsson.org>
451
452         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
453         fixes gnulib-tool --test warning about duplicate dependency.
454
455 2008-09-25  Bruno Haible  <bruno@clisp.org>
456
457         * gnulib-tool: Don't ask the user to perform edits in the generated
458         Makefile.ams.
459         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
460         apply to the Makefile.am being generated.
461         (func_emit_tests_Makefile_am): Execute edits that apply to the
462         Makefile.am being generated.
463         (func_import): Setup list of Makefile.am edits before emitting the
464         Makefile.ams, not at the end.
465         (func_create_testdir): Update.
466         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
467
468 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
469
470         * gnulib-tool (func_import): Store the --tests-base option in the
471         comment in gnulib-cache.m4.
472
473 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
474
475         * NEWS: Document increased portability that sys_select now provides.
476
477         * lib/sys_select.in.h: Install select wrapper.
478         * lib/sys_socket.in.h: Use more descriptive name when there is no
479         select wrapper.
480         * lib/winsock-select.c: New.
481         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
482         Require gl_HEADER_SYS_SOCKET.
483         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
484         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
485         * tests/test-sys_select.c: Add functional tests.
486
487 2008-09-24  Eric Blake  <ebb9@byu.net>
488
489         open, fopen: close fd leak in last patch
490         * lib/open.c (rpl_open): Close fd before returning error.
491         * lib/fopen.c (rpl_fopen): Close fd before returning error.
492         * doc/posix-functions/open.texi (open): Document that Irix also
493         has the bug.
494         * doc/posix-functions/fopen.texi (fopen): Likewise.
495         Reported by Paolo Bonzini.
496
497 2008-09-24  Bruno Haible  <bruno@clisp.org>
498
499         Ensure that a filename ending in a slash cannot be used to access a
500         non-directory.
501         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
502         to check whether it's really a directory.
503         * lib/fopen.c: Include fcntl.h, unistd.h.
504         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
505         and fdopen().
506         * modules/fopen (Depends-on): Add unistd.
507         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
508         * tests/test-fopen.c (main): Likewise.
509         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
510         * doc/posix-functions/fopen.texi: Likewise.
511         Reported by Eric Blake.
512
513 2008-09-23  Eric Blake  <ebb9@byu.net>
514
515         c-stack: avoid compiler optimizations when provoking overflow
516         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
517         recursion harder to optimize, to ensure a stack overflow occurs.
518         * tests/test-c-stack.c (recurse): Likewise.
519         Borrowed from libsigsegv.
520
521         c-stack: work around Irix sigaltstack bug
522         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
523         whether sigaltstack uses wrong end of stack_t (copied in part from
524         libsigsegv).
525         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
526         Irix bug, without requiring an over-allocation.
527         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
528         bug.
529
530         fopen: document mingw bug on directories
531         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
532         not allowing a stream visiting a directory, even though reading
533         from such a stream is not portable.
534
535 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
536
537         * lib/poll.c: Rewrite.
538         * modules/poll: Depend on alloca.
539
540 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
541
542         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
543         instead define prototypes for a full set of wrappers.  Ensure
544         that Cygwin does not use the compatibility code, which is only
545         for MinGW.
546         * lib/winsock.c: New.
547         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
548         * modules/sys_socket: Add lib/winsock.c.
549
550         * modules/poll-tests: Add errno and perror.
551         * tests/test-poll.c: Use ioctl, not ioctlsocket.
552
553 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
554
555         * tests/test-poll.c: Downgrade minimum needed Winsock version.
556
557 2008-09-23  Bruno Haible  <bruno@clisp.org>
558
559         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
560         * doc/glibc-functions/*: Likewise.
561
562 2008-09-23  Simon Josefsson  <simon@josefsson.org>
563
564         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
565         success.
566
567 2008-09-22  Eric Blake  <ebb9@byu.net>
568             Bruno Haible  <bruno@clisp.org>
569
570         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
571         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
572         supply %A but mishandle pseudo-NaN.
573         Reported by Simon Josefsson.
574
575 2008-09-21  Bruno Haible  <bruno@clisp.org>
576
577         * tests/test-lock.c (main): Tweak skip message.
578         * tests/test-tls.c (main): Likewise.
579
580 2008-09-21  Bruno Haible  <bruno@clisp.org>
581
582         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
583         whether 'struct sigaction' has sa_sigaction here...
584         (gl_PREREQ_SIG_HANDLER_H): ... not here.
585         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
586
587 2008-09-21  Bruno Haible  <bruno@clisp.org>
588
589         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
590         section.
591         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
592         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
593         the new section.
594         (Support for obsolete systems lacking POSIX:2001): New section.
595         (String handling <string.h>): Move strdup to the new section.
596         Suggested by Simon Josefsson and Paolo Bonzini.
597
598 2008-09-21  Bruno Haible  <bruno@clisp.org>
599
600         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
601         exponents in %e and %g results on 'long double'. Needed for mingw's
602         improved *printf functions.
603         * tests/test-vasprintf-posix.c (test_function): Likewise.
604         * tests/test-snprintf-posix.h (test_function): Likewise.
605         * tests/test-sprintf-posix.h (test_function): Likewise.
606         Reported by Eric Blake.
607
608 2008-09-21  Bruno Haible  <bruno@clisp.org>
609
610         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
611         * tests/test-sprintf-posix.h (test_function): Likewise.
612
613 2008-09-21  Bruno Haible  <bruno@clisp.org>
614
615         * modules/getpass (Depends-on): Add strdup-posix.
616
617         New module 'strdup-posix'.
618         * modules/strdup-posix: New file.
619         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
620         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
621         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
622         REPLACE_STRDUP.
623         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
624         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
625         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
626         strdup-posix.
627
628         * modules/strdup (Depends-on): Remove malloc-posix.
629
630 2008-09-20  Bruno Haible  <bruno@clisp.org>
631
632         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
633         Wildenhues.
634
635 2008-09-20  Bruno Haible  <bruno@clisp.org>
636
637         Ensure that wint_t gets defined on IRIX 5.3.
638         * lib/wchar.in.h (wint_t): Define if not defined by the system.
639         * lib/wctype.in.h (wint_t): Likewise.
640         (__wctype_wint_t): Remove type.
641         (isw*): Use wint_t instead of __wctype_wint_t.
642         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
643         * modules/wchar (Files): Add m4/wint_t.m4.
644         (Makefile.am): Substitute HAVE_WINT_T.
645         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
646         * tests/test-wctype.c: Check that wint_t is defined.
647         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
648         * doc/posix-headers/wctype.texi: Likewise.
649         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
650
651 2008-09-18  Bruno Haible  <bruno@clisp.org>
652
653         * gnulib-tool (func_exit): Update comment.
654
655 2008-09-18  Simon Josefsson  <simon@josefsson.org>
656
657         * modules/getaddrinfo (Depends-on): Remove strdup, this module
658         assumes strdup exists and does not depend on strdup to return
659         ENOMEM on out of memory conditions.
660
661 2008-09-18  Bruno Haible  <bruno@clisp.org>
662
663         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
664         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
665         digits for the exponent.
666
667 2008-09-18  Jim Meyering  <meyering@redhat.com>
668             Bruno Haible  <bruno@clisp.org>
669
670         * lib/vasnprintf.c (decimal_point_char): Define also if
671         NEED_PRINTF_INFINITE_LONG_DOUBLE.
672
673 2008-09-16  Bruno Haible  <bruno@clisp.org>
674         and Eric Blake  <ebb9@byu.net>
675
676         vasnprintf: support Irix 5.3
677         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
678         that mishandle long double infinity.
679         Reported by Tom G. Christensen.
680
681 2008-09-16  Bruno Haible  <bruno@clisp.org>
682
683         * doc/glibc-functions/scandir.texi: Mention the function is missing on
684         Solaris 9.
685         * doc/glibc-functions/alphasort.texi: Likewise.
686         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
687
688 2008-09-16  Jim Meyering  <meyering@redhat.com>
689
690         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
691         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
692         a umask modification leak out of a subshell.  Otherwise, the
693         opensolaris /bin/sh would be accepted and thus cause unwarranted
694         failures in the coreutils test suite.
695
696 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
697
698         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
699         to succeed.
700
701 2008-09-16  Jim Meyering  <meyering@redhat.com>
702
703         avoid spurious test failure when library is built without ACL support
704         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
705         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
706         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
707         * tests/test-copy-acl.sh: Likewise.
708
709 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
710
711         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
712         based on character occurrence counts.
713
714 2008-09-15  Eric Blake  <ebb9@byu.net>
715
716         tests: avoid some compiler warnings
717         * tests/test-memchr.c (main): Pass NULL indirectly.
718         * tests/test-closein.c (main): Avoid unused variable.
719
720 2008-09-15  Bruno Haible  <bruno@clisp.org>
721
722         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
723         are missing on OpenBSD 4.0 individually.
724         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
725
726 2008-09-15  Bruno Haible  <bruno@clisp.org>
727
728         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
729         * doc/posix-functions/strerror.texi: Mention also Cygwin.
730         * doc/posix-functions/perror.texi: Likewise.
731         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
732         is missing.
733         Reported by Eric Blake.
734
735         * lib/errno.in.h: Use replacement values >= 2000.
736         Reported by Eric Blake.
737
738 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
739
740         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
741         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
742         limit.
743         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
744         compareseq was aborted.
745
746 2008-09-14  Bruno Haible  <bruno@clisp.org>
747
748         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
749         yvec_edit_count.
750         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
751         (fstrcmp_bounded): Simplify result computation accordingly.
752
753 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
754
755         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
756         (fstrcmp): Define in terms of fstrcmp_bounded.
757         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
758         lower_bound argument.
759         Return quickly if the result is certainly < lower_bound.
760         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
761
762 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
763
764         * lib/diffseq.h (EARLY_ABORT): New macro.
765         (compareseq): Change return type to bool. Return true when EARLY_ABORT
766         evaluates to true.
767
768 2008-09-14  Bruno Haible  <bruno@clisp.org>
769
770         * modules/perror-tests: New file.
771         * tests/test-perror.sh: New file.
772         * tests/test-perror.c: New file.
773
774         New module 'perror'.
775         * lib/stdio.in.h (perror): New declaration.
776         * lib/perror.c: New file.
777         * m4/perror.m4: New file.
778         * modules/perror: New file.
779         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
780         * doc/posix-functions/perror.texi: Mention the perror module.
781         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
782         REPLACE_PERROR.
783         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
784         REPLACE_PERROR.
785
786 2008-09-14  Bruno Haible  <bruno@clisp.org>
787
788         * modules/stdio (Makefile.am): Reorder to match the order in
789         lib/stdio.in.h.
790         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
791
792 2008-09-13  Bruno Haible  <bruno@clisp.org>
793
794         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
795
796 2008-09-13  Bruno Haible  <bruno@clisp.org>
797
798         Extend strerror to cover the added errno values.
799         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
800         (rpl_strerror): Provide error messages for the added errno values and
801         for the WSA* values.
802         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
803         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
804         strerror.
805         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
806         * modules/strerror (Depends-on): Add errno.
807         * doc/posix-functions/strerror.texi: Document the change.
808         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
809         and EOVERFLOW.
810
811 2008-09-13  Bruno Haible  <bruno@clisp.org>
812
813         * modules/EOVERFLOW: Remove file.
814         * m4/eoverflow.m4: Remove file.
815         * modules/EOVERFLOW-tests: Remove file.
816         * tests/test-EOVERFLOW.c: Remove file.
817         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
818         * modules/ftell (Depends-on): Likewise.
819         * modules/getdelim (Depends-on): Likewise.
820         * modules/getugroups (Depends-on): Likewise.
821         * modules/poll (Depends-on): Likewise.
822         * modules/snprintf (Depends-on): Likewise.
823         * modules/sprintf-posix (Depends-on): Likewise.
824         * modules/vasnprintf (Depends-on): Likewise.
825         * modules/vasprintf (Depends-on): Likewise.
826         * modules/vfprintf-posix (Depends-on): Likewise.
827         * modules/vsnprintf (Depends-on): Likewise.
828         * modules/vsprintf-posix (Depends-on): Likewise.
829         * modules/xvasprintf (Depends-on): Likewise.
830         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
831         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
832         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
833         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
834         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
835         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
836         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
837         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
838         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
839         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
840         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
841         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
842         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
843         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
844         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
845         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
846         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
847         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
848         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
849         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
850         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
851         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
852         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
853         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
854         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
855         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
856         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
857         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
858         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
859         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
860         * MODULES.html.sh: Remove EOVERFLOW.
861         * NEWS: Mention the change.
862
863 2008-09-13  Bruno Haible  <bruno@clisp.org>
864
865         * modules/errno-tests: New file.
866         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
867
868         * lib/errno.in.h: New file.
869         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
870         * modules/errno: New file.
871         * doc/posix-headers/errno.texi: Update documentation.
872         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
873
874 2008-09-13  Bruno Haible  <bruno@clisp.org>
875
876         * tests/test-poll.c: Use #if for native Windows, rather than testing
877         __MSVCRT__.
878
879 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
880             Bruno Haible  <bruno@clisp.org>
881
882         * lib/glob.c: Don't include <pwd.h> on native Windows.
883         (WINDOWS32): New macro.
884         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
885
886 2008-09-13  Bruno Haible  <bruno@clisp.org>
887
888         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
889         (ETIMEDOUT): Remove macro.
890         (glthread_cond_timedwait_multithreaded): New declaration.
891         (glthread_cond_timedwait): Use it.
892         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
893         (glthread_cond_timedwait_multithreaded): New function.
894
895 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
896
897         * modules/poll-tests: Do not check for io.h.
898         * tests/test-poll.c: Check for __MSVCRT__ instead.
899
900 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
901
902         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
903         * modules/poll-tests: Add inet_pton, stdbool, sockets.
904         * tests/test-poll.c: Use them.  Use _pipe on Windows.
905
906 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
907
908         * modules/poll-tests: New.
909         * tests/test-poll.c: New.
910
911 2008-09-12  Eric Blake  <ebb9@byu.net>
912
913         frexp: test for NetBSD failure on -0.0
914         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
915         not all, bugs from NetBSD 3.0 have been fixed.
916         * doc/posix-functions/frexp.texi (frexp): Document bug.
917         Reported by Thomas Klausner.
918
919         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
920         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
921         literal -0.0.
922         Reported by Jonathan C. Patschke <jp@centtech.com>.
923
924 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
925
926         * lib/glthread/cond.h: Use dummy implementation also if
927         USE_WIN32_THREADS.
928
929 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
930
931         * modules/fnmatch-posix (License): Change to LGPLv2+.
932         * modules/fnmatch-gnu (License): Likewise.
933
934 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
935
936         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
937
938 2008-09-11  Jim Meyering  <meyering@redhat.com>
939
940         * users.txt: Add gtk-vnc.
941
942 2008-09-08  Simon Josefsson  <simon@josefsson.org>
943
944         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
945         rotate amounts.
946
947         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
948         required for 16-bit and 8-bit rotates.
949         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
950         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
951         UINT8_MAX instead of hard-coded constants.
952         Suggested by Paul Eggert.
953
954 2008-09-07  Bruno Haible  <bruno@clisp.org>
955
956         * tests/test-striconveh.c (main): Check behaviour when converting from
957         UTF-7.
958
959         Make striconveh work better with stateful encodings.
960         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
961         that iconv does not increment the inptr when returning -1/EINVAL.
962
963 2008-09-07  Bruno Haible  <bruno@clisp.org>
964
965         * build-aux/config.rpath: Update according to libtool-2.2.6.
966         * build-aux/config.libpath: Likewise.
967
968 2008-09-06  Bruno Haible  <bruno@clisp.org>
969
970         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
971         * lib/freadptr.c (freadptr): Likewise.
972         * lib/freadseek.c (freadptrinc): Likewise.
973         Reported by Simon Josefsson.
974
975 2008-09-06  Bruno Haible  <bruno@clisp.org>
976
977         * modules/freadptr (License): Change to LGPLv2+.
978         * modules/freadseek (License): Likewise.
979         Suggested by Eric Blake.
980
981         * modules/memchr2 (License): Change to LGPLv2+.
982         Approved by Eric Blake.
983
984 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
985             Bruno Haible  <bruno@clisp.org>
986
987         Make gnulib-tool work with native 'sed' on AIX.
988         * gnulib-tool (sed_noop): New variable.
989         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
990         func_add_or_update, func_create_testdir): Use it to initialize sed
991         script variables.
992         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
993
994 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
995             Bruno Haible  <bruno@clisp.org>
996
997         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
998         also works after #include directives.
999
1000 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
1001
1002         getdate.y: reject an out-of-range timezone value
1003         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
1004         the range [-24...+24].  When specified with only one or two digits,
1005         * tests/test-getdate.c: Tests for the fix.
1006         * doc/getdate.texi: Document this change.
1007
1008 2008-09-03  Bruno Haible  <bruno@clisp.org>
1009
1010         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
1011
1012 2008-09-02  Simon Josefsson  <simon@josefsson.org>
1013
1014         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
1015         <bruce.korb@gmail.com> with ideas from Ben Pfaff
1016         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
1017         Blake <ebb9@byu.net>.
1018
1019         * tests/test-bitrotate.c: Add more test vectors.
1020
1021 2008-09-02  Eric Blake  <ebb9@byu.net>
1022
1023         vasnprintf-posix: handle large precision via %.*d
1024         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
1025         when handling it ourselves.
1026         * tests/test-vasnprintf-posix.c (test_function): Add test.
1027         * tests/test-snprintf-posix.h (test_function): Likewise.
1028         * tests/test-sprintf-posix.h (test_function): Likewise.
1029         * tests/test-vasprintf-posix.c (test_function): Likewise.
1030         Reported by Alain Guibert.
1031
1032 2008-09-01  Eric Blake  <ebb9@byu.net>
1033
1034         c-stack: make configure-time check more robust
1035         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
1036         successful sigaction call.
1037         Reported by Tom G. Christensen.
1038
1039 2008-09-01  Bruno Haible  <bruno@clisp.org>
1040
1041         New module 'findprog-lgpl'.
1042         * modules/findprog-lgpl: New file.
1043         * lib/findprog-lgpl.c: New file.
1044         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
1045         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
1046         to decide whether to use strdup or xstrdup, concatenated_filename or
1047         xconcatenated_filename.
1048
1049 2008-09-01  Bruno Haible  <bruno@clisp.org>
1050
1051         Split module 'concat-filename' into 'concat-filename' (LGPL) and
1052         'xconcat-filename' (GPL).
1053         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
1054         (License): Change to LGPLv2+.
1055         * modules/xconcat-filename: New file.
1056         * lib/concat-filename.h (concatenated_filename): Change specification.
1057         (xconcatenated_filename): New declaration.
1058         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
1059         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
1060         memory situations.
1061         * lib/xconcat-filename.c: New file.
1062         * NEWS: Mention the change.
1063         * lib/findprog.c: Include concat-filename.h, not filename.h.
1064         (find_in_path): Use xconcatenated_filename instead of
1065         concatenated_filename.
1066         * lib/javacomp.c: Include concat-filename.h, not filename.h.
1067         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
1068         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
1069         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
1070         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
1071         instead of concatenated_filename.
1072         * lib/javaexec.c: Include concat-filename.h, not filename.h.
1073         (execute_java_class): Use xconcatenated_filename instead of
1074         concatenated_filename.
1075         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
1076         * modules/javacomp (Depends-on): Likewise.
1077         * modules/javaexec (Depends-on): Likewise.
1078
1079 2008-09-01  Bruno Haible  <bruno@clisp.org>
1080
1081         Split module 'filename' into 'filename' and 'concat-filename'.
1082         * modules/filename: Keep only lib/filename.h.
1083         (License): Change to LGPLv2+.
1084         * modules/concat-filename: New file, extracted from modules/filename.
1085         * lib/filename.h (concatenated_filename): Remove declaration.
1086         * lib/concat-filename.h: New file, extracted from lib/filename.h.
1087         * lib/concat-filename.c: Include concat-filename.h.
1088         * NEWS: Mention the change.
1089
1090 2008-09-01  Simon Josefsson  <simon@josefsson.org>
1091
1092         * lib/bitrotate.h (rotl8, rotr8): Add.
1093
1094         * modules/bitrotate (configure.ac): Need
1095         AC_REQUIRE([AC_C_INLINE]).
1096         (Description): Mention stdint.h.  Reported by Bruno Haible
1097         <bruno@clisp.org>.
1098
1099         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
1100         Paolo Bonzini <bonzini@gnu.org>.
1101
1102 2008-08-31  Bruno Haible  <bruno@clisp.org>
1103
1104         Assume Solaris specific bi-arch conventions on Solaris systems.
1105         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
1106         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
1107         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
1108         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
1109         like acl_libdirstem.
1110         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
1111         acl_libdirstem.
1112         * NEWS: Mention the change.
1113         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
1114
1115 2008-08-31  Jim Meyering  <meyering@redhat.com>
1116
1117         * lib/strftime.h: Add comments describing the two added arguments.
1118
1119         remove duplicate #include directives
1120         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
1121         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
1122
1123 2008-08-31  Bruno Haible  <bruno@clisp.org>
1124
1125         New module 'sigpipe-die'.
1126         * modules/sigpipe-die: New file.
1127         * lib/sigpipe-die.h: New file.
1128         * lib/sigpipe-die.c: New file.
1129         * MODULES.html.sh (Signal handling): Add sigpipe-die.
1130
1131 2008-08-31  Bruno Haible  <bruno@clisp.org>
1132
1133         Don't override previously installed signal handlers.
1134         * lib/fatal-signal.c (saved_sigactions): New variable.
1135         (uninstall_handlers): Reset the signal to the saved handler, not
1136         to SIG_DFL (except when ignored).
1137         (install_handlers): Save the previous handlers.
1138
1139 2008-08-30  Bruno Haible  <bruno@clisp.org>
1140
1141         * gnulib-tool (func_reset_sigpipe): New function.
1142         (func_get_automake_snippet, func_modules_transitive_closure,
1143         func_import): Invoke it before a join command that reads from stdin,
1144         to avoid "echo: write error: Broken pipe" error messages on stderr.
1145         Reported by Sam Steingold <sds@gnu.org>.
1146
1147 2008-08-30  Bruno Haible  <bruno@clisp.org>
1148
1149         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
1150         Code copied from m4/open.m4.
1151         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
1152         access and the filename ends in a slash. Code copied from lib/open.c.
1153         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
1154         * tests/test-fopen.c (main): Check against bug with trailing slash.
1155
1156 2008-08-29  Bruno Haible  <bruno@clisp.org>
1157
1158         Avoid some "gcc -pedantic" warnings.
1159         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
1160         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
1161         * lib/dirent.in.h: Likewise.
1162         * lib/fcntl.in.h: Likewise.
1163         * lib/float.in.h: Likewise.
1164         * lib/iconv.in.h: Likewise.
1165         * lib/inttypes.in.h: Likewise.
1166         * lib/locale.in.h: Likewise.
1167         * lib/math.in.h: Likewise.
1168         * lib/netinet_in.in.h: Likewise.
1169         * lib/search.in.h: Likewise.
1170         * lib/signal.in.h: Likewise.
1171         * lib/stdarg.in.h: Likewise.
1172         * lib/stdint.in.h: Likewise.
1173         * lib/stdio.in.h: Likewise.
1174         * lib/stdlib.in.h: Likewise.
1175         * lib/string.in.h: Likewise.
1176         * lib/strings.in.h: Likewise.
1177         * lib/sys_select.in.h: Likewise.
1178         * lib/sys_socket.in.h: Likewise.
1179         * lib/sys_stat.in.h: Likewise.
1180         * lib/sys_time.in.h: Likewise.
1181         * lib/sysexits.in.h: Likewise.
1182         * lib/time.in.h: Likewise.
1183         * lib/unistd.in.h: Likewise.
1184         * lib/wchar.in.h: Likewise.
1185         * lib/wctype.in.h: Likewise.
1186         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
1187         * modules/fchdir (Makefile.am): Likewise.
1188         * modules/fcntl (Makefile.am): Likewise.
1189         * modules/float (Makefile.am): Likewise.
1190         * modules/iconv_open (Makefile.am): Likewise.
1191         * modules/inttypes (Makefile.am): Likewise.
1192         * modules/locale (Makefile.am): Likewise.
1193         * modules/math (Makefile.am): Likewise.
1194         * modules/netinet_in (Makefile.am): Likewise.
1195         * modules/search (Makefile.am): Likewise.
1196         * modules/signal (Makefile.am): Likewise.
1197         * modules/stdarg (Makefile.am): Likewise.
1198         * modules/stdint (Makefile.am): Likewise.
1199         * modules/stdio (Makefile.am): Likewise.
1200         * modules/stdlib (Makefile.am): Likewise.
1201         * modules/string (Makefile.am): Likewise.
1202         * modules/strings (Makefile.am): Likewise.
1203         * modules/sys_select (Makefile.am): Likewise.
1204         * modules/sys_socket (Makefile.am): Likewise.
1205         * modules/sys_stat (Makefile.am): Likewise.
1206         * modules/sys_time (Makefile.am): Likewise.
1207         * modules/sysexits (Makefile.am): Likewise.
1208         * modules/time (Makefile.am): Likewise.
1209         * modules/unistd (Makefile.am): Likewise.
1210         * modules/wchar (Makefile.am): Likewise.
1211         * modules/wctype (Makefile.am): Likewise.
1212         Reported by Reuben Thomas <rrt@sc3d.org>.
1213
1214 2008-08-29  Bruno Haible  <bruno@clisp.org>
1215
1216         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
1217         any more.
1218
1219 2008-08-29  Simon Josefsson  <simon@josefsson.org>
1220
1221         * MODULES.html.sh (Misc): Add bitrotate.
1222
1223         * modules/bitrotate: New file.
1224
1225         * lib/bitrotate.h: New file.
1226
1227         * modules/bitrotate-tests: New file.
1228
1229         * tests/test-bitrotate.c: New file.
1230
1231         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
1232         on the bitrotate module.
1233
1234         * lib/arctwo.c: Use new bitrotate module.
1235
1236 2008-08-29  Jim Meyering  <meyering@redhat.com>
1237
1238         bootstrap: merge changes from coreutils
1239         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
1240         of copied files.  Remove a kludge, now that this is fixed.
1241         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
1242         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
1243         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
1244
1245 2008-08-29  Bruno Haible  <bruno@clisp.org>
1246
1247         * MODULES.html.sh: Remove --cvs-urls option.
1248
1249 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
1250
1251         maint.mk: adjust to file name change
1252         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
1253
1254 2008-08-28  Jim Meyering  <meyering@redhat.com>
1255
1256         * modules/getndelim2 (License): Relicense to LGPLv2+.
1257         Approved by Richard Stallman for the version of 1995, and by
1258         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
1259
1260 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
1261
1262         * lib/getdelim.c (flockfile, funlockfile): Make all of them
1263         dummy if one is not available.  Do not touch them if
1264         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
1265         (getc_maybe_unlocked): New.
1266         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
1267
1268 2008-08-26  Eric Blake  <ebb9@byu.net>
1269
1270         doc/INSTALL: resync from autoconf
1271         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
1272         (INSTALL_PRELUDE): Delete; this is done more efficiently by
1273         moving...
1274         * install.texi [!autoconf]: ...here.  Resync from autoconf.
1275         * INSTALL: Regenerate.
1276         * INSTALL.ISO: New file.
1277         * INSTALL.UTF-8: Likewise.
1278
1279 2008-08-26  Jim Meyering  <meyering@redhat.com>
1280
1281         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
1282         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
1283         these definitions conditional, so that they may be overridden, too.
1284
1285 2008-08-26  Bruno Haible  <bruno@clisp.org>
1286
1287         Generate INSTALL file variants with prettier quotes.
1288         * doc/Makefile (INSTALL_PRELUDE): New macro.
1289         (INSTALL): Use it.
1290         (INSTALL.ISO, INSTALL.UTF-8): New rules.
1291
1292 2008-08-26  Bruno Haible  <bruno@clisp.org>
1293
1294         Run makeinfo in an English locale.
1295         * doc/Makefile (MAKEINFO): New variable.
1296
1297 2008-08-26  Bruno Haible  <bruno@clisp.org>
1298
1299         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
1300         Suggested by Eric Blake.
1301
1302 2008-08-25  Bruno Haible  <bruno@clisp.org>
1303
1304         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
1305
1306 2008-08-25  Eric Blake  <ebb9@byu.net>
1307
1308         c-stack: test that stack overflow can be caught
1309         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
1310         that platform allows handling stack overflow; at least OS/2 EMX
1311         has sigaltstack, but crashes before transferring control to
1312         handler on stack overflow.
1313         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
1314         check for HAVE_STACK_OVERFLOW_HANDLING.
1315         Reported by Elbert Pol.
1316
1317 2008-08-25  Bruno Haible  <bruno@clisp.org>
1318
1319         * doc/posix-functions/strftime.texi: Fix description of strftime
1320         module.
1321
1322 2008-08-24  Bruno Haible  <bruno@clisp.org>
1323
1324         * tests/uniwidth/test-uc_width2.c: New file.
1325         * tests/uniwidth/test-uc_width2.sh: New file.
1326         * modules/uniwidth/width-tests (Files): Add the new files.
1327         (TESTS): Add uniwidth/test-uc_width2.sh.
1328         (TESTS_ENVIRONMENT): New variable.
1329         (check_PROGRAMS): Add test-uc_width2.
1330         (test_uc_width2_SOURCES): New variable.
1331
1332         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
1333         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
1334         not 0x00AB.
1335         Reported by Alexander V. Lukyanov <lav@netis.ru>.
1336
1337 2008-08-22  Eric Blake  <ebb9@byu.net>
1338
1339         test-lock, test-tls: mention why a test is skipped
1340         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
1341         skipped.
1342         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
1343
1344         count-one-bits: relax license
1345         * modules/count-one-bits (License): Relicense to LGPLv2+.
1346         Suggested by Ludovic Courtès, approved by Ben Pfaff.
1347
1348 2008-08-22  Andreas Schwab  <schwab@suse.de>
1349
1350         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1351         Remove spurious space in assignment.
1352
1353 2008-08-21  Simon Josefsson  <simon@josefsson.org>
1354
1355         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
1356         Paul Eggert <eggert@CS.UCLA.EDU>.
1357
1358 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
1359
1360         * modules/gettext: Add m4/threadlib.m4.
1361
1362 2008-08-19  Eric Blake  <ebb9@byu.net>
1363
1364         test-c-stack: fix compilation failure on FreeBSD 5.0
1365         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
1366         headers before <sys/resource.h>.
1367         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
1368         the bug.
1369         Reported by Nelson H. F. Beebe.
1370
1371         strverscmp: migrate from "strverscmp.h" to <string.h>
1372         * modules/string (Makefile.am): Add new hooks.
1373         * modules/strverscmp (Files): Remove strverscmp.h.
1374         (Depends-on): Add string.
1375         (configure.ac): Add indicator.
1376         (Include): Mention new header.
1377         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
1378         defaults.
1379         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
1380         results.
1381         * lib/strverscmp.h: Delete.
1382         * lib/string.in.h (strverscmp): Provide declaration, when needed.
1383         * tests/test-strverscmp.c (includes): Adjust client.
1384         * lib/check-version.c (includes): Likewise.
1385         * NEWS: Document the change.
1386
1387         strverscmp: add unit test
1388         * modules/strverscmp-tests: New file.
1389         * tests/test-strverscmp.c: Likewise.
1390
1391 2008-08-19  Simon Josefsson  <simon@josefsson.org>
1392
1393         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
1394         regarding Windows crypto stuff, from Mono.
1395
1396 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
1397
1398         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
1399         if present, for intel RND.  Return error on failures.
1400
1401 2008-08-18  Ben Pfaff  <blp@gnu.org>
1402
1403         gitlog-to-changelog: give better diagnostic for failed pipe-open
1404         * build-aux/gitlog-to-changelog: Improve error message: suggest
1405         that the version of Git may be too old.
1406
1407 2008-08-18  Simon Josefsson  <simon@josefsson.org>
1408
1409         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
1410         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
1411
1412 2008-08-18  Bruno Haible  <bruno@clisp.org>
1413
1414         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
1415         pthread_in_use().
1416
1417 2008-08-18  Bruno Haible  <bruno@clisp.org>
1418
1419         * lib/glthread/threadlib.c: Include <pthread.h>.
1420
1421 2008-08-18  Bruno Haible  <bruno@clisp.org>
1422
1423         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
1424         glthread_recursive_lock_* macros.
1425         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
1426         Fix syntax error.
1427
1428 2008-08-18  Bruno Haible  <bruno@clisp.org>
1429
1430         * lib/glthread/thread.c: Avoid forcing a context switch right after
1431         thread creation.
1432
1433 2008-08-17  Bruno Haible  <bruno@clisp.org>
1434
1435         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
1436         * lib/glthread/thread.h: Provide Win32 specific implementation.
1437         * modules/thread (Files): Add lib/glthread/thread.c.
1438         (Depends-on): Add lock.
1439         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
1440
1441 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1442
1443         New module 'yield'.
1444         * modules/yield: New file.
1445         * lib/glthread/yield.h: New file.
1446         * m4/yield.m4: New file.
1447         * MODULES.html.sh (Multithreading): Add yield.
1448
1449 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1450
1451         New module 'thread'.
1452         * modules/thread: New file.
1453         * lib/glthread/thread.h: New file.
1454         * m4/thread.m4: New file.
1455         * MODULES.html.sh (Multithreading): Add thread.
1456
1457 2008-08-17  Bruno Haible  <bruno@clisp.org>
1458
1459         * lib/glthread/lock.h: Include <stdlib.h> always.
1460         * lib/glthread/tls.h: Likewise.
1461         * lib/glthread/cond.h: Likewise.
1462
1463 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1464
1465         New module 'cond'.
1466         * modules/cond: New file.
1467         * lib/glthread/cond.h: New file.
1468         * lib/glthread/cond.c: New file.
1469         * m4/cond.m4: New file.
1470         * MODULES.html.sh (Multithreading): Add cond.
1471
1472 2008-08-16  Eric Blake  <ebb9@byu.net>
1473
1474         c-stack: fix regression on Irix 5.3 from 2008-06-21
1475         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
1476         sa_sigaction...
1477         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
1478         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
1479         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
1480         * modules/signal (Makefile.am): Use the value.
1481         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
1482         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
1483         * doc/posix-headers/signal.texi (signal.h): Document this
1484         portability issue.
1485         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
1486         Reported by Tom G. Christensen.
1487
1488 2008-08-17  Bruno Haible  <bruno@clisp.org>
1489
1490         New module 'threadlib'.
1491         * modules/threadlib: New file.
1492         * lib/glthread/threadlib.c: New file, extracted from
1493         lib/glthread/lock.c.
1494         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
1495         functions.
1496         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
1497         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
1498         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
1499         macros.
1500         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
1501         (gl_DISABLE_THREADS): Remove macro.
1502         * modules/lock (Files): Remove build-aux/config.rpath.
1503         (Depends-on): Remove havelib. Add threadlib.
1504         (configure.ac-early): Remove section.
1505         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
1506         * modules/tls (Depends-on): Remove lock. Add threadlib.
1507         (Link): New section, copied from threadlib.
1508         * MODULES.html.sh (Multithreading): Add threadlib.
1509
1510 2008-08-14  Bruno Haible  <bruno@clisp.org>
1511
1512         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
1513         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
1514         glthread_rwlock_unlock, glthread_rwlock_destroy,
1515         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
1516         glthread_recursive_lock_destroy): Define as macros always.
1517         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
1518         glthread_lock_lock.
1519         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
1520         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
1521         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
1522         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
1523         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
1524         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
1525         (glthread_recursive_lock_lock_func): Renamed from
1526         glthread_recursive_lock_lock.
1527         (glthread_recursive_lock_unlock_func): Renamed from
1528         glthread_recursive_lock_unlock.
1529         (glthread_recursive_lock_destroy_func): Renamed from
1530         glthread_recursive_lock_destroy.
1531
1532 2008-08-14  Bruno Haible  <bruno@clisp.org>
1533
1534         * lib/glthread/lock.h: Renamed from lib/lock.h.
1535         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
1536         * lib/glthread/tls.h: Renamed from lib/tls.h.
1537         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
1538         * lib/fstrcmp.c: Update includes.
1539         * lib/strsignal.c: Update includes.
1540         * modules/lock (Files, Makefile.am): Update.
1541         (Include): Change to "glthread/lock.h".
1542         * modules/tls (Files, Makefile.am): Update.
1543         (Include): Change to "glthread/tls.h".
1544         * tests/test-lock.c: Update includes.
1545         * tests/test-tls.c: Update includes.
1546         * NEWS: Mention the renamed header files.
1547
1548 2008-08-11  Jim Meyering  <meyering@redhat.com>
1549
1550         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
1551
1552 2008-08-11  Eric Blake  <ebb9@byu.net>
1553
1554         test-c-stack: avoid C99-ism
1555         * tests/test-c-stack.c (main): Fix whitespace, move declaration
1556         before statement.
1557         Reported by Alain Guibert.
1558
1559 2008-08-10  Jim Meyering  <meyering@redhat.com>
1560
1561         ensure that return value of uinttostr et al are not ignored
1562         * lib/inttostr.h (__GNUC_PREREQ): Define.
1563         (__attribute_warn_unused_result__): Define.
1564         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
1565
1566 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
1567
1568         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
1569         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
1570
1571 2008-08-07  Jim Meyering  <meyering@redhat.com>
1572
1573         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
1574
1575         * modules/mkstemp (License): Relicense under LGPLv2+.
1576         * modules/tempname (License): Likewise.
1577
1578 2008-08-06  Bruno Haible  <bruno@clisp.org>
1579
1580         * lib/poll.c (poll): Further micro-optimization.
1581
1582 2008-08-06  Jim Meyering  <meyering@redhat.com>
1583
1584         inet_pton.c: use locale-independent tolower
1585         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
1586         (inet_pton6): Use c_tolower rather than tolower.
1587         * modules/inet_pton (Depends-on): Add c-ctype.
1588
1589 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
1590
1591         * lib/poll.c (poll): Avoid division when timeout is 0, cache
1592         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
1593
1594 2008-08-06  Jim Meyering  <meyering@redhat.com>
1595
1596         * modules/inet_pton (License): Relicense under LGPLv2+.
1597
1598 2008-08-03  Bruno Haible  <bruno@clisp.org>
1599
1600         Additional non-aborting API for lock and tls.
1601         * lib/lock.h: Include <errno.h>.
1602         (glthread_lock_init): New macro/function.
1603         (gl_lock_init): Define as wrapper around glthread_lock_init.
1604         (glthread_lock_lock): New macro/function.
1605         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
1606         (glthread_lock_unlock): New macro/function.
1607         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
1608         (glthread_lock_destroy): New macro/function.
1609         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
1610         (glthread_rwlock_init): New macro/function.
1611         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
1612         (glthread_rwlock_rdlock): New macro/function.
1613         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
1614         (glthread_rwlock_wrlock): New macro/function.
1615         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
1616         (glthread_rwlock_unlock): New macro/function.
1617         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
1618         (glthread_rwlock_destroy): New macro/function.
1619         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
1620         (glthread_recursive_lock_init): New macro/function.
1621         (gl_recursive_lock_init): Define as wrapper around
1622         glthread_recursive_lock_init.
1623         (glthread_recursive_lock_lock): New macro/function.
1624         (gl_recursive_lock_lock): Define as wrapper around
1625         glthread_recursive_lock_lock.
1626         (glthread_recursive_lock_unlock): New macro/function.
1627         (gl_recursive_lock_unlock): Define as wrapper around
1628         glthread_recursive_lock_unlock.
1629         (glthread_recursive_lock_destroy): New macro/function.
1630         (gl_recursive_lock_destroy): Define as wrapper around
1631         glthread_recursive_lock_destroy.
1632         (glthread_once): New macro/function.
1633         (gl_once): Define as wrapper around glthread_once.
1634         Update function declarations.
1635         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
1636         glthread_rwlock_init. Return error code.
1637         (glthread_rwlock_rdlock_multithreaded): Renamed from
1638         glthread_rwlock_rdlock. Return error code.
1639         (glthread_rwlock_wrlock_multithreaded): Renamed from
1640         glthread_rwlock_wrlock. Return error code.
1641         (glthread_rwlock_unlock_multithreaded): Renamed from
1642         glthread_rwlock_unlock. Return error code.
1643         (glthread_rwlock_destroy_multithreaded): Renamed from
1644         glthread_rwlock_destroy. Return error code.
1645         (glthread_recursive_lock_init_multithreaded): Renamed from
1646         glthread_recursive_lock_init. Return error code.
1647         (glthread_recursive_lock_lock_multithreaded): Renamed from
1648         glthread_recursive_lock_lock. Return error code.
1649         (glthread_recursive_lock_unlock_multithreaded): Renamed from
1650         glthread_recursive_lock_unlock. Return error code.
1651         (glthread_recursive_lock_destroy_multithreaded): Renamed from
1652         glthread_recursive_lock_destroy. Return error code.
1653         (glthread_once_call): Make static.
1654         (glthread_once_multithreaded): Renamed from glthread_once.
1655         * lib/tls.h: Include <errno.h>.
1656         (glthread_tls_key_init): New macro/function.
1657         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
1658         (glthread_tls_set): New macro/function.
1659         (gl_tls_set): Define as wrapper around glthread_tls_set.
1660         (glthread_tls_key_destroy): New macro/function.
1661         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
1662         Update function declarations.
1663         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
1664         glthread_tls_get.
1665         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1666
1667 2008-08-04  Eric Blake  <ebb9@byu.net>
1668
1669         gnumakefile: use space, not TAB, outside of targets
1670         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
1671
1672 2008-08-02  Jim Meyering  <meyering@redhat.com>
1673
1674         getdate.y: avoid locale-dependent date parsing failure
1675         In Turkish locales, getdate would fail to recognize keywords
1676         containing a lowercase "i".  The solution is not to rely on
1677         locale-sensitive case-conversion.
1678         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
1679         (lookup_word): Use c_toupper in place of toupper.
1680         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
1681         Reported by Vefa Bicakci <bicave@superonline.com> in
1682         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
1683         * modules/getdate (Depends-on): Add c-ctype.
1684
1685 2008-08-02  Bruno Haible  <bruno@clisp.org>
1686
1687         * gnulib-tool (func_import): When updating or creating a .gitignore
1688         file, prepend each added line with a slash, and ignore leading slashes
1689         from the existing lines.
1690         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
1691
1692 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1693
1694         Portability fix for GNU make 3.79.1.
1695         * top/GNUmakefile: Avoid 'else COND', which older GNU make
1696         versions do not understand.
1697
1698 2008-08-01  Bruno Haible  <bruno@clisp.org>
1699
1700         Work around bug of HP-UX 10.20 cc with -0.0 literal.
1701         * tests/test-isnanf.h (zero): New variable.
1702         (main): Avoid literal -0.0f.
1703         * tests/test-isnand.h (zero): New variable.
1704         (main): Avoid literal -0.0.
1705         * tests/test-isnanl.h (zero): New variable.
1706         (main): Avoid literal -0.0L.
1707         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
1708         (test_float, test_double, test_long_double): Avoid literals -0.0f,
1709         -0.0, -0.0L.
1710         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
1711         (test_signbitd): Avoid literal -0.0.
1712         (test_signbitl): Avoid literal -0.0L.
1713         * tests/test-ceilf1.c (zero): New variable.
1714         (main): Avoid literal -0.0f.
1715         * tests/test-ceill.c (zero): New variable.
1716         (main): Avoid literal -0.0L.
1717         * tests/test-floorf1.c (zero): New variable.
1718         (main): Avoid literal -0.0f.
1719         * tests/test-floorl.c (zero): New variable.
1720         (main): Avoid literal -0.0L.
1721         * tests/test-roundf1.c (zero): New variable.
1722         (main): Avoid literal -0.0f.
1723         * tests/test-round1.c (zero): New variable.
1724         (main): Avoid literal -0.0.
1725         * tests/test-roundl.c (zero): New variable.
1726         (main): Avoid literal -0.0L.
1727         * tests/test-truncf1.c (zero): New variable.
1728         (main): Avoid literal -0.0f.
1729         * tests/test-trunc1.c (zero): New variable.
1730         (main): Avoid literal -0.0.
1731         * tests/test-truncl.c (zero): New variable.
1732         (main): Avoid literal -0.0L.
1733         * tests/test-frexp.c (zero): New variable.
1734         (main): Avoid literal -0.0.
1735         * tests/test-frexpl.c (zero): New variable.
1736         (main): Avoid literal -0.0L.
1737         * tests/test-ldexpl.c (zero): New variable.
1738         (main): Avoid literal -0.0L.
1739         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1740         (zerod, zerol): New variables.
1741         (test_function): Avoid literals -0.0, -0.0L.
1742         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1743         (zerod, zerol): New variables.
1744         (test_function): Avoid literals -0.0, -0.0L.
1745         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1746         (zerod, zerol): New variables.
1747         (test_function): Avoid literals -0.0, -0.0L.
1748         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1749         (zerod, zerol): New variables.
1750         (test_function): Avoid literals -0.0, -0.0L.
1751         * tests/test-strtod.c (zero): New variable.
1752         (main): Avoid literal -0.0.
1753         Reported by Jonathan C. Patschke <jp@centtech.com>.
1754
1755 2008-07-31  Jim Meyering  <meyering@redhat.com>
1756
1757         sha256.h: correct definition of SHA224_DIGEST_SIZE
1758         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
1759         Reported by Paulie Pena IV <paulie4@gmail.com>.
1760         Define as 224 / 8, rather than as a literal.
1761         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
1762         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
1763         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
1764
1765 2008-07-31  Bruno Haible  <bruno@clisp.org>
1766
1767         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
1768         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
1769         Reported by Jonathan Patschke <jp@centtech.com>.
1770
1771 2008-07-31  Bruno Haible  <bruno@clisp.org>
1772
1773         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
1774         Reported by Paolo Bonzini <bonzini@gnu.org>.
1775
1776 2008-07-30  Eric Blake  <ebb9@byu.net>
1777
1778         test-strtod: allow compilation without -lm
1779         * tests/test-strtod.c (main): Avoid link dependence on fabs.
1780         Reported by Dennis Clarke <blastwave@gmail.com>.
1781
1782 2008-07-28  Jim Meyering  <meyering@redhat.com>
1783
1784         bootstrap: work also when there are no .po files in po/
1785         * build-aux/bootstrap (update_po_files): Complete the change
1786         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
1787
1788 2008-07-27  Jim Meyering  <meyering@redhat.com>
1789
1790         * users.txt: Add zile.
1791
1792 2008-07-26  Ben Pfaff  <blp@gnu.org>
1793
1794         Add missing dependencies on new m4/exponent[fdl].m4 files.
1795         * modules/isnanf-nolibm: Add m4/exponentf.m4.
1796         * modules/isnand-nolibm: Add m4/exponentd.m4.
1797         * modules/isnanl-nolibm: Add m4/exponentl.m4.
1798         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
1799         m4/isnan[fdl].m4, because the macros actually used moved.
1800         Reported by Jim Meyering.
1801
1802 2008-07-14  Ben Pfaff  <blp@gnu.org>
1803
1804         Add isinf module.
1805         * lib/isinf.c: New file.
1806         * lib/math.in.h: Define isinf macro if we have decided to replace
1807         it.
1808         * m4/isinf.m4: New file.
1809         * m4/math_h.m4: Initialize and substitute variables for isinf
1810         module.
1811         * modules/isinf: New file.
1812         * modules/isinf-tests: New file.
1813         * modules/math: Add substitutions for new module.
1814         * tests/test-isinf.c: New file.
1815         * doc/posix-functions/isinf.texi: Mention new module.
1816         * MODULES.html.sh: Mention new module.
1817
1818 2008-07-14  Ben Pfaff  <blp@gnu.org>
1819
1820         Factor out some macros for use by additional modules.
1821         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
1822         exponentf.m4.
1823         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
1824         exponentd.m4.
1825         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
1826         file exponentl.m4.
1827         * m4/exponentf.m4: New file.
1828         * m4/exponentd.m4: New file.
1829         * m4/exponentl.m4: New file.
1830         * modules/isnanf: Use new file m4/exponentf.m4.
1831         * modules/isnand: Use new file m4/exponentd.m4.
1832         * modules/isnanl: Use new file m4/exponentl.m4.
1833
1834 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
1835
1836         mktime.c: normalize tp->tm_isdst value to -1/0/1.
1837         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
1838         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
1839         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
1840
1841         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
1842         readlink on platforms without PATH_MAX.
1843
1844 2008-07-21  Eric Blake  <ebb9@byu.net>
1845
1846         Warn, not fail, on stale version.
1847         * top/GNUmakefile (_curr-ver): Tone down previous patch.
1848
1849         Don't allow installation with stale devel version number.
1850         * top/GNUmakefile (_is-install-target): New macro.
1851         (_curr-ver): Forbid installation with stale version number.
1852
1853 2008-07-20  Bruno Haible  <bruno@clisp.org>
1854
1855         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
1856         TESTS_ENVIRONMENT.
1857         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
1858
1859 2008-07-20  Bruno Haible  <bruno@clisp.org>
1860
1861         * lib/c-stack.h (c_stack_action): Add documentation.
1862         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
1863
1864 2008-07-20  Bruno Haible  <bruno@clisp.org>
1865
1866         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
1867         * modules/readlink (License): Likewise.
1868
1869 2008-07-17  Eric Blake  <ebb9@byu.net>
1870
1871         * modules/c-stack (Link): Fix typo.
1872
1873         Make c-stack use libsigsegv, when available.
1874         * modules/c-stack (Depends-on): Add libsigsegv.
1875         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
1876         needed.
1877         * lib/c-stack.c (SIGSTKSZ): Define fallback.
1878         (segv_handler, overflow_handler, c_stack_action)
1879         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
1880         implementation when libsigsegv is available, but only when using
1881         the library is necessary.
1882         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
1883         comment, explaining why XSI check fails on Linux.
1884         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
1885         * tests/test-c-stack2.sh: Tweak skip message.
1886         * NEWS: Document new link-time requirements.
1887
1888 2008-07-16  Eric Blake  <ebb9@byu.net>
1889
1890         c-stack: Expose false positives when not using libsigsegv.
1891         * modules/c-stack-tests (Files): Expand test.
1892         * tests/test-c-stack.c (main): Add means to conditionally trigger
1893         non-overflow SIGSEGV.
1894         * tests/test-c-stack2.sh: New file.
1895
1896 2008-07-14  Bruno Haible  <bruno@clisp.org>
1897
1898         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
1899         Reported by Eric Blake.
1900
1901 2008-07-14  Sam Steingold  <sds@gnu.org>
1902             Bruno Haible  <bruno@clisp.org>
1903
1904         New module libsigsegv.
1905         * modules/libsigsegv: New file.
1906         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
1907         modifications.
1908         * MODULES.html.sh (Signal handling): New section.
1909
1910 2008-07-14  Bruno Haible  <bruno@clisp.org>
1911
1912         * modules/unictype/ctype-* (Description): Add the word "function".
1913         Improves the resulting doc in MODULES.html.
1914
1915 2008-07-12  Ben Pfaff  <blp@gnu.org>
1916
1917         Add longlong module.
1918         * modules/longlong: New file.
1919
1920 2008-07-12  Bruno Haible  <bruno@clisp.org>
1921
1922         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
1923         to empty.
1924
1925 2008-07-10  Ben Pfaff  <blp@gnu.org>
1926
1927         Add isnan module.
1928         * doc/posix-functions/isnan.texi: Mention new module.
1929         * lib/math.in.h: Define isnan macro if we have decided to replace
1930         it.
1931         * m4/isnan.m4: New file.
1932         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
1933         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
1934         also.
1935         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
1936         redundancy.
1937         * m4/math_h.m4: Initialize and substitute variables for isnan
1938         module.
1939         * modules/isnan: New file.
1940         * modules/isnan-tests: New file.
1941         * modules/math: Add substitutions for new module.
1942         * tests/test-isnan.c: New file.
1943         * MODULES.html.sh: Mention new module.
1944
1945 2008-07-10  Ben Pfaff  <blp@gnu.org>
1946
1947         Add isnanf module.
1948         * lib/isnanf.m4: New file.
1949         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
1950         (gl_HAVE_ISNANF_IN_LIBM): New macro.
1951         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
1952         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
1953         * modules/isnanf: New file.
1954         * modules/isnanf-tests: New file.
1955         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
1956         files.
1957         * tests/test-isnanf-nolibm.c: factored most of its contents into
1958         new file tests/test-isnanf.h.
1959         * tests/test-isnanf.h: New file.
1960         * tests/test-isnanf.c: New file.
1961         * MODULES.html.sh: Mention new module.
1962         * doc/glibc-functions/isnanf.texi: Mention new module.
1963
1964 2008-07-10  Ben Pfaff  <blp@gnu.org>
1965
1966         Add isnand module.
1967         * lib/isnand.h: New file.
1968         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
1969         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
1970         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
1971         functionality also.
1972         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
1973         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
1974         (gl_HAVE_ISNAND_IN_LIBM): New macro.
1975         * modules/isnand: New file.
1976         * modules/isnand-tests: New file.
1977         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
1978         files.
1979         * tests/test-isnand-nolibm.c: factored most of its contents into
1980         new file tests/test-isnand.h.
1981         * tests/test-isnand.h: New file.
1982         * tests/test-isnand.c: New file.
1983         * MODULES.html.sh: Mention new module.
1984
1985 2008-07-10  Ben Pfaff  <blp@gnu.org>
1986
1987         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
1988         * lib/isnand.h: Rename lib/isnand-nolibm.h.
1989         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
1990         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
1991         * modules/isnanf-nolibm: Update references to renamed files.
1992         * modules/isnand-nolibm: Likewise.
1993         * modules/isnanf-nolibm-tests: Likewise.
1994         * modules/isnand-nolibm-tests: Likewise.
1995         * lib/frexp.c: Likewise.
1996         * lib/isfinite.c: Likewise.
1997         * lib/signbitd.c: Likewise.
1998         * lib/signbitf.c: Likewise.
1999         * lib/vasnprintf.c: Likewise.
2000         * tests/test-ceilf1.c: Likewise.
2001         * tests/test-ceilf2.c: Likewise.
2002         * tests/test-floorf1.c: Likewise.
2003         * tests/test-floorf2.c: Likewise.
2004         * tests/test-frexp.c: Likewise.
2005         * tests/test-round1.c: Likewise.
2006         * tests/test-round2.c: Likewise.
2007         * tests/test-roundf1.c: Likewise.
2008         * tests/test-strtod.c: Likewise.
2009         * tests/test-trunc1.c: Likewise.
2010         * tests/test-trunc2.c: Likewise.
2011         * tests/test-truncf1.c: Likewise.
2012         * tests/test-truncf2.c: Likewise.
2013         * NEWS: Mention the renamed header files.
2014
2015 2008-07-11  Jim Meyering  <meyering@redhat.com>
2016
2017         vc-list-files: make the last-resort awk code more portable
2018         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
2019         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
2020         does not support it.
2021
2022 2008-07-10  Eric Blake  <ebb9@byu.net>
2023
2024         Work with tar's bootstrap.
2025         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
2026         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
2027         an m4 comment.
2028
2029 2008-07-09  Jim Meyering  <meyering@redhat.com>
2030
2031         posix-shell.m4: fix typo that made this test malfunction
2032         * m4/posix-shell.m4: Remove capitalization in variable name.
2033
2034 2008-07-08  Bruno Haible  <bruno@clisp.org>
2035
2036         * m4/onceonly.m4: Update comments.
2037         Reported by Ben Pfaff <blp@cs.stanford.edu>.
2038
2039 2008-07-04  Jim Meyering  <meyering@redhat.com>
2040
2041         * users.txt: Add vc-dwim.
2042         (bison, coreutils): Use the gitweb URL.
2043
2044 2008-07-03  Jim Meyering  <meyering@redhat.com>
2045
2046         * users.txt: Add libffcall.  From Sam Steingold.
2047
2048 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
2049
2050         getdate.y: do not ignore TZ with relative day, month or year offset
2051         * lib/getdate.y (get_date): Move the tz-handling block to follow the
2052         relative-date-handling, since otherwise, the latter would clobber the
2053         sole output (an updated Start value) of the tz-handling block.
2054         * tests/test-getdate.c: Tests for the fix
2055
2056 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2057
2058         Recognize 'foo_LIBRARIES += libgnu.a'.
2059         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
2060         makefile snippet has already specified an installation location,
2061         also using '+='.
2062
2063 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
2064
2065         getdate.y: factor out common actions
2066         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
2067         Use them in place of open-coded actions.
2068
2069 2008-07-01  Simon Josefsson  <simon@josefsson.org>
2070
2071         Add self-test for getdate module.
2072         * modules/getdate-tests: New file.
2073         * tests/test-getdate.c: New file.
2074
2075 2008-06-29  Bruno Haible  <bruno@clisp.org>
2076
2077         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
2078         .gitignore.
2079         Reported by Sylvain Beucler <beuc@beuc.net>.
2080
2081 2008-06-29  Bruno Haible  <bruno@clisp.org>
2082
2083         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
2084         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
2085
2086 2008-06-29  Bruno Haible  <bruno@clisp.org>
2087
2088         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
2089         EXTRA_DIST.
2090         Reported by Sylvain Beucler <beuc@beuc.net>.
2091
2092 2008-06-26  Jim Meyering  <meyering@redhat.com>
2093
2094         make several modules depend on the "open" module
2095         This provides slightly increased consistency when opening-for-write
2096         the name of a non-directory spelled with a trailing slash.
2097         * modules/chdir-safer: Likewise.
2098         * modules/chown: Likewise.
2099         * modules/clean-temp: Likewise.
2100         * modules/copy-file: Likewise.
2101         * modules/fchdir: Likewise.
2102         * modules/fcntl-safer: Likewise.
2103         * modules/pipe: Likewise.
2104         * modules/utime: Likewise.
2105         Prompted by Eric Blake and Bruno Haible.
2106
2107 2008-06-24  Andreas Schwab  <schwab@suse.de>
2108
2109         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
2110         literals can be used as initializers for global variables.
2111
2112 2008-06-23  Eric Blake  <ebb9@byu.net>
2113
2114         Make gnulib-cache.m4 easier to diff.
2115         * gnulib-tool (func_import): Allow newlines when reading cached
2116         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
2117
2118 2008-06-23  Bruno Haible  <bruno@clisp.org>
2119
2120         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
2121         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
2122         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
2123         m4/signalblocking.m4.
2124         (gl_PREREQ_SIGACTION): Don't invoke it.
2125         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
2126         gl_PREREQ_SIG_HANDLER_H.
2127         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2128         Don't check for sigaction here.
2129
2130 2008-06-23  Bruno Haible  <bruno@clisp.org>
2131
2132         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
2133         (install_handlers): Don't set the SA_RESETHAND flag.
2134
2135 2008-06-23  Bruno Haible  <bruno@clisp.org>
2136
2137         * m4/sigaction.m4: Comment fixes.
2138         * lib/signal.in.h: Likewise.
2139
2140 2008-06-23  Eric Blake  <ebb9@byu.net>
2141
2142         Fix typo.
2143         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
2144
2145         Avoid SA_ namespace.
2146         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
2147         Reported by Ralf Wildenhues.
2148
2149         Avoid test failure due to SA_RESTORER.
2150         * tests/test-sigaction.c (SA_MASK): New macro.
2151         (main): Avoid failing due to extension flags being set.
2152         Reported by Jim Meyering.
2153
2154         Revert use of sig-handler.h in sigprocmask.c.
2155         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
2156         it requires the existence of struct sigaction.
2157         * lib/sigprocmask.c (handler_t): Restore typedef.
2158         (rpl_signal, old_handlers): Use local type.
2159
2160 2008-06-22  Bruno Haible  <bruno@clisp.org>
2161
2162         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
2163         conditionally.
2164         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
2165
2166 2008-06-22  Bruno Haible  <bruno@clisp.org>
2167
2168         * doc/posix-functions/siginterrupt.texi: Move note.
2169
2170         * lib/signal.in.h (SA_RESTART): New macro.
2171         * lib/sigaction.c: Update comment.
2172
2173         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
2174
2175         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
2176         (gl_PREREQ_SIGPROCMASK): Invoke it.
2177         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
2178
2179         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
2180
2181         * lib/sigprocmask.c: Update a comment.
2182
2183 2008-06-21  Eric Blake  <ebb9@byu.net>
2184
2185         Use sigaction module rather than signal().
2186         * modules/c-stack (Depends-on): Add sigaction.
2187         * modules/fatal-signal (Depends-on): Likewise.
2188         * modules/nanosleep (Depends-on): Likewise.
2189         * modules/sigprocmask (Files): Add sig-handler.h.
2190         * modules/sigaction (Files): Likewise.
2191         * lib/sig-handler.h (get_handler): New file, suggested by Paul
2192         Eggert.
2193         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
2194         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
2195         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
2196         (init_fatal_signals): Likewise.
2197         * lib/nanosleep.c (rpl_nanosleep): Likewise.
2198         (siginterrupt): Delete fallback.
2199         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
2200         instead.
2201         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
2202         siginterrupt.
2203
2204         New module sigaction, for mingw.
2205         * modules/sigaction: New module...
2206         * modules/sigaction-tests: ...and its test.
2207         * m4/sigaction.m4: New file.
2208         * lib/sigaction.c: Likewise.
2209         * tests/test-sigaction.c: Likewise.
2210         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
2211         * modules/signal (Makefile.am): Likewise.
2212         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
2213         needed.
2214         * doc/posix-headers/signal.texi (signal.h): Mention provided
2215         types.
2216         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
2217         that sigaction is preferable.
2218         * doc/posix-functions/sigaction.texi (sigaction): Mention new
2219         module.
2220         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2221         sigaction.
2222
2223         Improve robustness of sigprocmask by overriding signal.
2224         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
2225         is in use.
2226         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
2227         (SIGKILL, SIGSTOP): Provide fallbacks.
2228         (rpl_signal): Implement.
2229         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
2230         signal can be called inside handlers.
2231
2232         Fix nanosleep module on mingw.
2233         * modules/nanosleep (Depends-on): Add sys_select.
2234         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
2235
2236         Fix licensing of sigprocmask.
2237         * modules/raise (License): Relicense as LGPL.
2238
2239 2008-06-21  Bruno Haible  <bruno@clisp.org>
2240
2241         * lib/propername.c (proper_name_utf8): Don't use the transliterated
2242         result if it contains question marks.
2243         Reported by Michael Geng <linux@michaelgeng.de>.
2244
2245 2008-06-19  Bruno Haible  <bruno@clisp.org>
2246
2247         Fix CVS-ism.
2248         * doc/gnulib.texi: Include updated-stamp.texi.
2249         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
2250         (updated-stamp.texi): New rule.
2251         (gnulib.info): Depend on it.
2252         * doc/.gitignore: Add updated-stamp.texi.
2253         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
2254
2255 2008-06-19  Bruno Haible  <bruno@clisp.org>
2256
2257         * doc/Makefile (gnulib.info): Update and simplify dependencies.
2258         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2259
2260 2008-06-19  Eric Blake  <ebb9@byu.net>
2261
2262         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
2263         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
2264         Reported by Stepan Kasal.
2265
2266 2008-06-18  Bruno Haible  <bruno@clisp.org>
2267
2268         * lib/fatal-signal.c (init_fatal_signals): Add comment.
2269         Reported by Eric Blake.
2270
2271 2008-06-18  Eric Blake  <ebb9@byu.net>
2272
2273         Work around cygwin 1.5.25 strsignal bug.
2274         * tests/test-strsignal.c: Allow for const char *.
2275         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
2276
2277 2008-06-18  Simon Josefsson  <simon@josefsson.org>
2278
2279         * users.txt: Update URL to article and add author/date
2280         information.
2281
2282 2008-06-17  Bruno Haible  <bruno@clisp.org>
2283
2284         New macro gl_DISABLE_THREADS.
2285         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
2286         if the user did not pass --enable-threads or --disable-threads option.
2287         (gl_DISABLE_THREADS): New macro.
2288         Reported by Eric Blake <ebb9@byu.net>.
2289
2290 2008-06-17  Bruno Haible  <bruno@clisp.org>
2291
2292         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
2293         when the macro ignores it.
2294         Based on a patch by Eric Blake <ebb9@byu.net>.
2295
2296 2008-06-17  Bruno Haible  <bruno@clisp.org>
2297
2298         * modules/tls (License): Change to LGPLv2+.
2299         Reported by Eric Blake.
2300
2301 2008-06-17  Eric Blake  <ebb9@byu.net>
2302
2303         Simplify c-stack prerequisites.
2304         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
2305         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
2306         no longer requires <ucontext.h> to exist.  Optimize setrlimit
2307         check.
2308         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
2309         <sys/resource.h>.
2310
2311         Move c-stack test into testsuite.
2312         * modules/c-stack-tests: New file.
2313         * lib/c-stack.c [DEBUG]: Move test program...
2314         * tests/test-c-stack.c: ...into this new file.  Skip rather than
2315         fail test if sigaltstack is lacking.
2316         * tests/test-c-stack.sh: New driver file.
2317
2318 2008-06-16  Eric Blake  <ebb9@byu.net>
2319
2320         Use raise module consistently.
2321         * modules/fatal-signal (Depends-on): Add raise.
2322         * modules/sigprocmask (Depends-on): Likewise.
2323         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
2324         * lib/sigprocmask.c (sigprocmask): Likewise.
2325         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2326         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
2327
2328         Fix compliance bug in sigpending.
2329         * lib/sigprocmask.c (sigpending): Return pending array via
2330         parameter, not return value.
2331
2332 2008-06-14  Eric Blake  <ebb9@byu.net>
2333
2334         Improve obstack-printf test code.
2335         * tests/test-obstack-printf.c (test_function): Fix comment, and
2336         simplify usage of obstack_* in macros.  Add a test for coverage.
2337         Reported by Bruno Haible.
2338
2339 2008-06-14  Bruno Haible  <bruno@clisp.org>
2340
2341         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
2342         array size as a constant, not as a const variable.
2343         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
2344         AC_USE_SYSTEM_EXTENSIONS.
2345         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
2346         Test whether the obstack_printf function actually exists.
2347         * modules/obstack-printf (Depends-on): Add extensions.
2348         (Include): Remove obstack.h.
2349         * modules/obstack-printf-posix (Depends-on): Add extensions.
2350         (Include): Remove obstack.h.
2351
2352 2008-06-13  Eric Blake  <ebb9@byu.net>
2353
2354         Add obstack-printf and obstack-printf-posix modules.
2355         * modules/obstack-printf: New file.
2356         * modules/obstack-printf-posix: Likewise.
2357         * MODULES.html.sh (Misc): Mention them.
2358         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
2359         Likewise.
2360         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
2361         Likewise.
2362         * modules/stdio (Makefile.am): Accomodate new modules.
2363         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
2364         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
2365         Declare.
2366         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
2367         functions.
2368         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
2369         (gl_REPLACE_OBSTACK_PRINTF): New macros
2370         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
2371         * tests/test-obstack-printf.c: New file.
2372         * modules/obstack-printf-tests: Likewise.
2373         * modules/obstack-printf-posix-tests: Likewise.
2374
2375 2008-06-11  Bruno Haible  <bruno@clisp.org>
2376
2377         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
2378         * lib/open.c: Include errno.h.
2379         (open): Fail when attempting to write to a file that has a trailing
2380         slash.
2381         * tests/test-open.c (main): Test against trailing slash bug.
2382         * doc/posix-functions/open.texi: Mention the trailing slash bug.
2383
2384 2008-06-10  Bruno Haible  <bruno@clisp.org>
2385
2386         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
2387         for $? to work inside the trap command, with various /bin/sh-s.
2388         * tests/test-vc-list-files-cvs.sh: Likewise.
2389
2390 2008-06-10  Bruno Haible  <bruno@clisp.org>
2391
2392         * lib/acl-internal.h: Don't include gettext.h here.
2393         * lib/set-mode-acl.c: Include gettext.h here.
2394         * lib/copy-acl.c: Likewise.
2395
2396 2008-06-10  Bruno Haible  <bruno@clisp.org>
2397
2398         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
2399         * lib/wait-process.c (wait_subprocess): Likewise.
2400         * lib/execute.h (execute): Add termsigp argument.
2401         * lib/execute.c (execute): Likewise.
2402         * lib/csharpcomp.c (compile_csharp_using_pnet,
2403         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
2404         * lib/csharpexec.c (execute_csharp_using_pnet,
2405         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
2406         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
2407         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
2408         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
2409         is_jikes_present): Update.
2410         * lib/javaexec.c (execute_java_class): Update.
2411         * lib/javaversion.c (execute_and_read_line): Update.
2412         * NEWS: Document the changes.
2413         Reported by Eric Blake.
2414
2415 2008-06-10  Eric Blake  <ebb9@byu.net>
2416
2417         Add missing include.
2418         * tests/test-strstr.c (includes): Add <signal.h>.
2419         * tests/test-strcasestr.c (includes): Likewise.
2420         * tests/test-memmem.c (includes): Likewise.
2421
2422 2008-06-10  Bruno Haible  <bruno@clisp.org>
2423
2424         * lib/wait-process.c (wait_subprocess): Add an assertion.
2425
2426 2008-06-10  Bruno Haible  <bruno@clisp.org>
2427
2428         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
2429
2430 2008-06-10  Bruno Haible  <bruno@clisp.org>
2431
2432         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
2433         using alarm().
2434         * tests/test-strcasestr.c (main): Likewise.
2435         * tests/test-strstr.c (main): Likewise.
2436
2437 2008-06-09  Bruno Haible  <bruno@clisp.org>
2438
2439         Work around the Solaris 10 ACE ACLs ABI change.
2440         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
2441         declare if ACL_NO_TRIVIAL is present.
2442         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
2443         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
2444         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
2445         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
2446         define if ACL_NO_TRIVIAL is present.
2447         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
2448         and use the current ABI.
2449         (file_has_acl): Use same #if condition as elsewhere.
2450         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
2451         in use, and use the current ABI.
2452         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
2453         Reported by Jim Meyering.
2454
2455 2008-06-09  Eric Blake  <ebb9@byu.net>
2456
2457         Work around environments that (stupidly) ignore SIGALRM.
2458         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
2459         before using alarm().
2460         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
2461         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
2462         Reported by Ian Beckwith <ianb@erislabs.net>.
2463
2464         Produce autobuild blurb earlier in log.
2465         * modules/autobuild (configure.ac-early): Move AB_INIT here.
2466
2467 2008-06-09  Jim Meyering  <meyering@redhat.com>
2468         and OndÅ™ej Vašík  <ovasik@redhat.com>
2469
2470         utimens.c: correct kernel bug work-around
2471         OndÅ™ej Vašík found that the invalid return value of 280 indicates
2472         failure, not success, and the kernel bug we're trying to work
2473         around affects not just the utimensat call, but also the fallback
2474         futimens call.
2475         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
2476         not success.
2477         [HAVE_FUTIMENS]: Use the same work-around, here.
2478
2479 2008-06-09  Jim Meyering  <meyering@redhat.com>
2480
2481         add more guards around definition of ACE_-related code
2482         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
2483         ALLOW and ACE_OWNER are also defined.
2484
2485 2008-06-08  Bruno Haible  <bruno@clisp.org>
2486
2487         * lib/acl-internal.h: Add me as co-author.
2488         * lib/file-has-acl.c: Likewise.
2489         * lib/set-mode-acl.c: Likewise.
2490         * lib/copy-acl.c: Likewise.
2491
2492 2008-06-08  Bruno Haible  <bruno@clisp.org>
2493
2494         Add support for AIX ACLs.
2495         * lib/acl-internal.h (acl_nontrivial): New declaration.
2496         * lib/file-has-acl.c (acl_nontrivial): New function.
2497         (file_has_acl): Add implementation using AIX 4 ACL API.
2498         * lib/set-mode-acl.c (qset_acl): Likewise.
2499         * lib/copy-acl.c (qcopy_acl): Likewise.
2500
2501 2008-06-08  Bruno Haible  <bruno@clisp.org>
2502
2503         Add support for HP-UX ACLs.
2504         * lib/acl-internal.h (acl_nontrivial): New declaration.
2505         * lib/file-has-acl.c (acl_nontrivial): New function.
2506         (file_has_acl): Add implementation using HP-UX 11 ACL API.
2507         * lib/set-mode-acl.c (qset_acl): Likewise.
2508         * lib/copy-acl.c (qcopy_acl): Likewise.
2509
2510 2008-06-08  Bruno Haible  <bruno@clisp.org>
2511
2512         Add support for Cygwin ACLs.
2513         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
2514         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
2515         the chmod_or_fchmod call.
2516         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
2517
2518 2008-06-08  Bruno Haible  <bruno@clisp.org>
2519
2520         Fix bug with setuid modes in Solaris 10+ code.
2521         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
2522         succeeded, when the mode contains some special bits.
2523
2524 2008-06-08  Bruno Haible  <bruno@clisp.org>
2525
2526         Add support for Solaris 7..10 ACLs.
2527         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
2528         declarations.
2529         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
2530         functions.
2531         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
2532         * lib/set-mode-acl.c (qset_acl): Likewise.
2533         * lib/copy-acl.c (qcopy_acl): Likewise.
2534
2535 2008-06-08  Bruno Haible  <bruno@clisp.org>
2536
2537         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
2538         declaration.
2539         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
2540         (acl_access_nontrivial): Remove MacOS X case.
2541         (file_has_acl): Use acl_extended_nontrivial.
2542         * lib/copy-acl.c (qcopy_acl): Likewise.
2543
2544 2008-06-08  Bruno Haible  <bruno@clisp.org>
2545
2546         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
2547
2548 2008-06-08  Jim Meyering  <meyering@redhat.com>
2549
2550         * modules/acl (Maintainer): Add Bruno Haible.
2551
2552 2008-06-07  Bruno Haible  <bruno@clisp.org>
2553
2554         Improve support for Tru64 ACLs.
2555         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
2556         ACL on OSF/1.
2557
2558 2008-06-07  Bruno Haible  <bruno@clisp.org>
2559
2560         Add support for MacOS X ACLs.
2561         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
2562         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
2563         * lib/set-mode-acl.c (qset_acl): Likewise.
2564         * lib/copy-acl.c (qcopy_acl): Likewise.
2565
2566 2008-06-07  Bruno Haible  <bruno@clisp.org>
2567
2568         Fix memory leak introduced on 2008-05-22.
2569         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
2570         use.
2571
2572 2008-06-07  Bruno Haible  <bruno@clisp.org>
2573
2574         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
2575         to construct an empty ACL.
2576
2577 2008-06-07  Bruno Haible  <bruno@clisp.org>
2578
2579         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
2580         precisely.
2581         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
2582
2583 2008-06-07  Bruno Haible  <bruno@clisp.org>
2584
2585         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
2586         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
2587
2588 2008-06-07  Bruno Haible  <bruno@clisp.org>
2589
2590         * doc/posix-functions/_setjmp.texi: Explain the use of this function
2591         regardless of POSIX.
2592         * doc/posix-functions/_longjmp.texi: Likewise.
2593         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
2594         SystemV platform in this case.
2595
2596 2008-06-06  Eric Blake  <ebb9@byu.net>
2597
2598         Document abort() bugs.
2599         * doc/posix-functions/abort.texi (abort): Mention anomalies.
2600
2601         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
2602         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
2603         sigsetjmp.
2604         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
2605         siglongjmp, but only as a macro.
2606         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
2607         is obsolete.
2608         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
2609
2610         Tweak documentation to cover cygwin argz bugs.
2611         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
2612         argz bug fix; no code change needed since no cygwin releases
2613         occurred between the last fix and the bug being tested.
2614         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
2615         module and recently fixed cygwin bugs.
2616         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
2617         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
2618         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
2619         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
2620         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
2621         Likewise.
2622         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
2623         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
2624         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
2625         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
2626         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
2627         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
2628         Likewise.
2629
2630         Avoid gcc warning on cygwin.
2631         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
2632         !ACL_NO_TRIVIAL]: Avoid unused variable.
2633
2634 2008-06-05  Eric Blake  <ebb9@byu.net>
2635
2636         Be tolerant of UNKNOWN version in gnulib-tool test dir.
2637         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
2638         git-version-gen fails to come up with a version.
2639         Reported by Simon Josefsson.
2640
2641 2008-06-05  Jim Meyering  <meyering@redhat.com>
2642             Paul Eggert  <eggert@cs.ucla.edu>
2643
2644         utimens.c: work around a probable Linux kernel bug
2645         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
2646         appears to be a kernel bug that causes utimensat to return 280
2647         instead of 0, indicating success.
2648
2649 2008-06-04  Bruno Haible  <bruno@clisp.org>
2650
2651         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
2652         2008-06-01 commit.
2653
2654 2008-06-04  Bruno Haible  <bruno@clisp.org>
2655
2656         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
2657         * lib/file-has-acl.c (acl_access_nontrivial): New function.
2658         (file_has_acl): Use it. Save errno afterwards.
2659         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
2660
2661 2008-06-03  Bruno Haible  <bruno@clisp.org>
2662
2663         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
2664         draft code. Simplify #ifs.
2665         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
2666         Put Solaris code after POSIX-draft code. Fix comments regarding
2667         Solaris 10, HP-UX. Mention Cygwin.
2668         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
2669
2670 2008-06-03  Eric Blake  <ebb9@byu.net>
2671
2672         Provide fallback for older kernels.
2673         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
2674         Provide runtime fallback if kernel lacks support.
2675         Reported by Mike Frysinger.
2676
2677 2008-06-02  Bruno Haible  <bruno@clisp.org>
2678
2679         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
2680         it exists.
2681
2682 2008-06-02  Bruno Haible  <bruno@clisp.org>
2683
2684         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
2685         * lib/copy-acl.c (qcopy_acl): Update comment.
2686
2687 2008-06-02  Bruno Haible  <bruno@clisp.org>
2688
2689         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
2690         like ACL APIs.
2691
2692 2008-06-02  Bruno Haible  <bruno@clisp.org>
2693
2694         * tests/test-file-has-acl.sh: Use different code for Cygwin.
2695         * tests/test-set-mode-acl.sh: Likewise.
2696         * tests/test-copy-acl.sh: Likewise.
2697         * tests/test-copy-file.sh: Likewise.
2698
2699 2008-06-02  Bruno Haible  <bruno@clisp.org>
2700
2701         * tests/test-file-has-acl.sh: Remove unused code.
2702
2703 2008-06-01  Bruno Haible  <bruno@clisp.org>
2704
2705         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
2706         (copy_acl): Just a wrapper around qcopy_acl that emits the error
2707         messages.
2708         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
2709
2710 2008-06-01  Bruno Haible  <bruno@clisp.org>
2711
2712         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
2713         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
2714         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
2715         APIs.
2716         * modules/acl-tests (configure.ac): Remove tests now contained in
2717         m4/acl.m4.
2718
2719 2008-06-02  Jim Meyering  <meyering@redhat.com>
2720
2721         announce-gen: use a better key-server host name
2722         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
2723         it may be more consistently reliable.  Suggested by Werner Koch
2724         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
2725
2726 2008-06-01  Bruno Haible  <bruno@clisp.org>
2727
2728         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
2729         Reported by Voroskoi Andras <voroskoi@gmail.com>.
2730
2731 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
2732
2733         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
2734
2735 2008-06-01  Bruno Haible  <bruno@clisp.org>
2736
2737         New ACL tests.
2738         * tests/test-file-has-acl.sh: New file.
2739         * tests/test-file-has-acl.c: New file.
2740         * tests/test-set-mode-acl.sh: New file.
2741         * tests/test-set-mode-acl.c: New file.
2742         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
2743         * tests/test-copy-acl.c: New file.
2744         * modules/acl-tests: New file, based on modules/copy-file-tests.
2745         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
2746         (Depends-on): Add acl-tests.
2747         (configure.ac): Remove checks.
2748         (Makefile.am): Don't create test-sameacls program here any more.
2749
2750 2008-06-01  Bruno Haible  <bruno@clisp.org>
2751
2752         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
2753         * tests/test-sameacls.c: Include progname.h.
2754         (main): Invoke set_program_name. Portability fixes for MacOS X,
2755         Solaris, HP-UX.
2756
2757 2008-06-01  Bruno Haible  <bruno@clisp.org>
2758
2759         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
2760         function.
2761         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
2762
2763 2008-06-01  Bruno Haible  <bruno@clisp.org>
2764
2765         * modules/rpmatch (Depends-on): Add strdup.
2766
2767 2008-06-01  Bruno Haible  <bruno@clisp.org>
2768
2769         * lib/pipe.c: Include unistd-safer.h.
2770         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
2771         * modules/pipe (Depends-on): Add unistd-safer.
2772
2773 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2774
2775         * modules/autobuild (configure.ac): Call AB_INIT.
2776
2777 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2778
2779         * tests/test-getaddrinfo.c: Don't print debug messages by default.
2780         Suggested by Bruno Haible <bruno@clisp.org>.
2781
2782 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2783
2784         * tests/test-base64.c: Cast size_t to unsigned long when invoking
2785         printf.  Use %lu instead of %d.  Reported by Bruno Haible
2786         <bruno@clisp.org>.
2787
2788 2008-05-29  Eric Blake  <ebb9@byu.net>
2789
2790         Prefer new POSIX 200x interfaces over futimesat.
2791         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
2792         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
2793         when available.
2794         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
2795
2796 2008-05-28  Bruno Haible  <bruno@clisp.org>
2797
2798         * modules/stpcpy (License): Change to LGPLv2+.
2799         Requested by David Lutterkort <dlutter@redhat.com>.
2800
2801 2008-05-27  Bruno Haible  <bruno@clisp.org>
2802
2803         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
2804         current mingw.
2805         Reported by Jose E. Marchesi <jemarch@gnu.org>.
2806
2807 2008-05-27  Bruno Haible  <bruno@clisp.org>
2808
2809         * modules/iconv_open (Link): New section, from module 'iconv'.
2810         * modules/striconv (Link): Likewise.
2811         * modules/striconveh (Link): Likewise.
2812         * modules/xstriconv (Link): Likewise.
2813         * modules/unicodeio (Link): Likewise.
2814         * modules/propername (Link): Likewise.
2815         Reported by Jim Meyering.
2816
2817 2008-05-26  Jim Meyering  <meyering@redhat.com>
2818
2819         sha256: do not artificially restrict buffer length to be < 2^32
2820         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
2821         uint32_t to size_t.
2822         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
2823         to match.
2824
2825         avoid unaligned access errors, e.g., on sparc
2826         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
2827         direct access through a possibly-unaligned uint64* pointer.
2828         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
2829         direct access through a possibly-unaligned uint32* pointer.
2830         Prompted by this patch from Tom "spot" Callaway:
2831         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
2832
2833         sha512.c: fix typo in comment
2834         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
2835
2836 2008-05-25  Bruno Haible  <bruno@clisp.org>
2837
2838         * lib/set-mode-acl.c: Renamed from lib/acl.c.
2839         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
2840         (Makefile.am): Update lib_SOURCES.
2841
2842 2008-05-25  Bruno Haible  <bruno@clisp.org>
2843
2844         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
2845
2846 2008-05-25  Jim Meyering  <meyering@redhat.com>
2847
2848         useless-if-before-free: freed expr may have white-space differences
2849         * build-aux/useless-if-before-free: Recognize cases in which the
2850         freed expression differs from the tested one in embedded white
2851         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
2852         $1 was used, so we can't make any regexp shy.  Improved tests now
2853         detect this.
2854
2855         useless-if-before-free: accept white space in the expression.
2856         * build-aux/useless-if-before-free: For now, any white space
2857         in the expression must be identical in the free argument.
2858
2859         useless-if-before-free: efficiency tweak
2860         * build-aux/useless-if-before-free: Make the expression-matching
2861         regexp "shy".
2862         Make the *outer* regexp shy, not the expr-matching one.
2863
2864         update code-in-comment to accept cast of free arg
2865         * build-aux/useless-if-before-free: Update regexp.
2866
2867 2008-05-25  Bruno Haible  <bruno@clisp.org>
2868
2869         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
2870         * modules/copy-file-tests (Files, Makefile.am): Update.
2871         * tests/test-copy-file.c (func_test_copy): Update.
2872
2873 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
2874
2875         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
2876
2877 2008-05-23  Bruno Haible  <bruno@clisp.org>
2878
2879         Improve support for ACLs on OSF/1.
2880         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
2881         Remove fallback for unknown flavors of ACLs.
2882
2883 2008-05-22  Bruno Haible  <bruno@clisp.org>
2884
2885         Add support for ACLs on OSF/1.
2886         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
2887         replacements.
2888         (acl_free_text): New macro fallback.
2889         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
2890         acl_free.
2891         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
2892         acl_free_text function. Require AC_C_INLINE.
2893
2894 2008-05-22  Bruno Haible  <bruno@clisp.org>
2895
2896         Make copy_acl work on MacOS X 10.5.
2897         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
2898         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
2899         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
2900         If MODE_INSIDE_ACL, don't assume that every system has the same text
2901         representation for ACLs as FreeBSD.
2902         * lib/copy-acl.c (copy_acl): Add support for platforms with
2903         !MODE_INSIDE_ACL.
2904         * lib/file-has-acl.c (file_has_acl): Likewise.
2905         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
2906         FreeBSD, MacOS X, or IRIX, respectively.
2907
2908 2008-05-22  Bruno Haible  <bruno@clisp.org>
2909
2910         * lib/acl.h: Don't include <sys/acl.h>.
2911         (GETACLCNT): Move fallback to lib/acl-internal.h.
2912         * lib/acl-internal.h: Include <sys/acl.h> here.
2913         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
2914
2915 2008-05-22  Bruno Haible  <bruno@clisp.org>
2916
2917         Split off copy_acl function to separate file.
2918         * lib/copy-acl.c: New file, extracted from lib/acl.c.
2919         * lib/acl.c (copy_acl): Moved function to separate file.
2920         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
2921         * modules/acl (Files): Add lib/copy-acl.c.
2922         (Makefiles.am): Augment lib_SOURCES.
2923
2924 2008-05-22  Bruno Haible  <bruno@clisp.org>
2925
2926         * modules/copy-file-tests: New file.
2927         * tests/test-copy-file.sh: New file.
2928         * tests/test-copy-file.c: New file.
2929         * tests/test-copy-file-sameacls.c: New file.
2930
2931 2008-05-22  Eric Blake  <ebb9@byu.net>
2932
2933         Avoid gcc warning.
2934         * tests/test-memcmp.c (main): Pass NULL indirectly.
2935
2936 2008-05-21  Bruno Haible  <bruno@clisp.org>
2937
2938         Add reference doc about ACLs.
2939         * doc/acl-resources.txt: New file.
2940         * doc/acl-cygwin.txt: New file.
2941
2942 2008-05-21  Bruno Haible  <bruno@clisp.org>
2943
2944         Avoid one more warning from gcc.
2945         * lib/vasnprintf.c (IF_LINT): Update comments.
2946         (VASNPRINTF): Use it also for the 'prefix' array initializer.
2947
2948 2008-05-21  Jim Meyering  <meyering@redhat.com>
2949
2950         avoid a warning from gcc
2951         * lib/vasnprintf.c (IF_LINT): Define.
2952         (scale10_round_decimal_long_double):
2953         Use it to avoid a "may be used uninitialized" warning.
2954         (scale10_round_decimal_double): Likewise.
2955
2956 2008-05-21  Simon Josefsson  <simon@josefsson.org>
2957
2958         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
2959         declared.
2960
2961 2008-05-20  Bruno Haible  <bruno@clisp.org>
2962
2963         * tests/test-memcmp.c (main): Test also the sign of the result. Test
2964         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
2965
2966 2008-05-20  Simon Josefsson  <simon@josefsson.org>
2967
2968         * modules/memcmp-tests: New file.
2969         * tests/test-memcmp.c: New file.
2970
2971 2008-05-19  Bruno Haible  <bruno@clisp.org>
2972
2973         * modules/propername (Notice, configure.ac): Put quoted "..." into
2974         --keyword option.
2975         * lib/propername.h: Update comments accordingly.
2976         Reported by Eric Blake.
2977
2978 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
2979
2980         * modules/getpass-gnu (Depends-on): Add fseeko.
2981
2982 2008-05-19  Simon Josefsson  <simon@josefsson.org>
2983
2984         * modules/base64-tests: New file.
2985
2986 2008-05-19  Bo Borgerson <gigabo@gmail.com>
2987
2988         * lib/base64.c (base64_decode_ctx): If a decode context structure
2989         was passed in use it to ignore newlines.  If a context structure
2990         was _not_ passed in, continue to treat newlines as garbage (this
2991         is the historical behavior).  Formerly base64_decode.
2992         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
2993         takes a decode context structure.
2994         * lib/base64.h (base64_decode): Macro for four-argument calls.
2995         (base64_decode_alloc): Likewise.
2996         * lib/base64.c (base64_decode_ctx): If a decode context structure
2997         was passed in use it to ignore newlines.  If a context structure
2998         was _not_ passed in, continue to treat newlines as garbage (this
2999         is the historical behavior).  Formerly base64_decode.
3000         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
3001         takes a decode context structure.
3002         * lib/base64.h (base64_decode): Macro for four-argument calls.
3003         (base64_decode_alloc): Likewise.
3004
3005 2008-05-19  Jim Meyering  <meyering@redhat.com>
3006
3007         avoid a warning from gcc
3008         * lib/trim.c (IF_LINT): Define.
3009         (trim2): Use it to avoid a "may be used uninitialized" warning.
3010
3011         Fix doc typo.
3012         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
3013
3014 2008-05-19  Bruno Haible  <bruno@clisp.org>
3015
3016         * doc/glibc-functions/getpass.texi: Document limits of other
3017         implementations.
3018
3019 2008-05-19  Simon Josefsson  <simon@josefsson.org>
3020             Bruno Haible <bruno@clisp.org>
3021
3022         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
3023
3024 2008-05-18  Bruno Haible  <bruno@clisp.org>
3025
3026         * modules/propername: New file, from GNU gettext.
3027         * lib/propername.h: New file, from GNU gettext.
3028         * lib/propername.c: New file, from GNU gettext.
3029         * MODULES.html.sh (Internationalization functions): Add propername.
3030
3031 2008-05-16  Jim Meyering  <meyering@redhat.com>
3032             Bruno Haible  <bruno@clisp.org>
3033
3034         Avoid some warnings from "gcc -Wshadow".
3035         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
3036
3037 2008-05-15  Eric Blake  <ebb9@byu.net>
3038
3039         Extend previous patch to cygwin 1.7.0.
3040         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
3041         fast implementation in cygwin >= 1.7.0.
3042         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3043         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3044
3045 2008-05-15  Bruno Haible  <bruno@clisp.org>
3046
3047         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
3048         implementation in glibc >= 2.9.
3049         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3050         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3051
3052 2008-05-15  Bruno Haible  <bruno@clisp.org>
3053
3054         * MODULES.html.sh (Internationalization functions): Remove linebreak.
3055         (Unicode string functions): Add unilbrk/*.
3056         Reported by Karl Berry.
3057
3058 2008-05-15  Eric Blake  <ebb9@byu.net>
3059
3060         Fix violation of <stdbool.h> replacement in regex.
3061         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
3062         * lib/regexec.c (re_search_internal): Likewise.
3063         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
3064
3065 2008-05-15  Jim Meyering  <meyering@redhat.com>
3066
3067         avoid distracting test output when git or cvs is not found
3068         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
3069         * tests/test-vc-list-files-git.sh: Likewise.
3070
3071 2008-05-15  Eric Blake  <ebb9@byu.net>
3072
3073         Glibc finally accepted the memmem speedup code, bugzilla #5514.
3074         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
3075         glibc version.
3076         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
3077         * doc/posix-functions/strstr.texi (strstr): Likewise.
3078         * lib/str-two-way.h (MAX): Sychronize with glibc.
3079
3080 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
3081
3082         * lib/regcomp.c (optimize_utf8): Add a note on why we test
3083         opr.ctx_type.
3084         (calc_first): Initialize constraint field.
3085         (duplicate_node_closure): Use it instead of special casing ANCHORS.
3086         Fix grammar.
3087         (duplicate_node): Merge constraint field for all node types.
3088         (calc_eclosure_iter): Look at constraint field for all node types.
3089         * lib/regex_internal.c (create_cd_newstate): Don't look at
3090         opr.ctx_type.
3091
3092 2008-05-14  Bruno Haible  <bruno@clisp.org>
3093
3094         Help GCC to do better code generation.
3095         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
3096         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
3097         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
3098         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
3099         Declare with attribute 'malloc' if supported.
3100
3101 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
3102
3103         use "echo STR|wc -c" rather than unportable "expr length STR"
3104         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
3105         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
3106
3107 2008-05-14  Jim Meyering  <meyering@redhat.com>
3108
3109         use dd ibs=$n count=1 ... rather than less-portable head -c$n
3110         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
3111         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
3112         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
3113         via Collin Lasse.
3114
3115 2008-05-14  Eric Blake  <ebb9@byu.net>
3116
3117         Avoid quadratic growth in gl_LIBSOURCES.
3118         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
3119         Suggested by Bruno Haible.
3120
3121         Test xmemdup0.
3122         * modules/xmemdup0-tests: New file.
3123         * tests/test-xmemdup0.c: Likewise.
3124
3125 2008-05-13  Eric Blake  <ebb9@byu.net>
3126
3127         Split xmemdup0 into its own module.
3128         * modules/xmemdup0: New file.
3129         * lib/xmemdup0.h: Likewise.
3130         * lib/xmemdup0.c: Likewise.
3131         * MODULES.html.sh (Memory management functions): Add xmemdup0.
3132         * lib/xalloc.h (xmemdup0): Remove.
3133         * lib/xmalloc.c (xmemdup0): Likewise.
3134
3135 2008-05-13  Eric Blake  <ebb9@byu.net>
3136             Bruno Haible  <bruno@clisp.org>
3137
3138         Reduce number of forks required during autoconf.
3139         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
3140         and gl_LIBSOURCES_DIR.
3141         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
3142         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
3143         m4_syscmd per file.
3144         <m4_foreach_w>: Move...
3145         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
3146
3147 2008-05-13  Eric Blake  <ebb9@byu.net>
3148
3149         * gnulib-tool: Fix various comment typos.
3150
3151 2008-05-12  Bruno Haible  <bruno@clisp.org>
3152
3153         Tailor the linebreaking algorithm.
3154         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
3155
3156 2008-05-12  Bruno Haible  <bruno@clisp.org>
3157
3158         Update to Unicode 5.0.0.
3159         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3160         LBP_JV, LBP_JT. Redistribute values.
3161         (unilbrk_table): Change size.
3162         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
3163         Unicode TR#14 rev. 22.
3164         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3165         LBP_JV, LBP_JT. Redistribute values.
3166         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
3167         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
3168         Update.
3169         * lib/unilbrk/lbrkprop1.h: Regenerated.
3170         * lib/unilbrk/lbrkprop2.h: Regenerated.
3171         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
3172         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
3173         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
3174         Likewise.
3175         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
3176         Likewise.
3177         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
3178         result.
3179         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
3180         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
3181         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
3182         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
3183         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
3184         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
3185
3186 2008-05-11  Bruno Haible  <bruno@clisp.org>
3187
3188         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
3189
3190 2008-05-11  Bruno Haible  <bruno@clisp.org>
3191
3192         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
3193         * modules/unilbrk/gen-lbrk: New file.
3194
3195 2008-05-11  Bruno Haible  <bruno@clisp.org>
3196
3197         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
3198         * m4/sha512.m4 (gl_SHA512): Likewise.
3199
3200 2008-05-11  Jim Meyering  <meyering@redhat.com>
3201
3202         New modules: crypto/sha256, crypto/sha512 (from coreutils)
3203         * modules/crypto/sha256: New file.
3204         * modules/crypto/sha512: Likewise.
3205         * lib/sha256.c: Likewise.
3206         * lib/sha256.h: Likewise.
3207         * lib/sha512.c: Likewise.
3208         * lib/sha512.h: Likewise.
3209         * lib/u64.h: Likewise.
3210         * m4/sha256.m4: Likewise.
3211         * m4/sha512.m4: Likewise.
3212         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
3213
3214 2008-05-10  Bruno Haible  <bruno@clisp.org>
3215
3216         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
3217         (Input/Output <stdio.h>): Add xprintf.
3218         (Signal handling <signal.h>): Add strsignal.
3219         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
3220         (Core language properties): Add func.
3221         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
3222         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
3223         strings.
3224         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
3225         (Input/output): New section.
3226         (File system functions): Add openat-die, stat-macros.
3227         (Networking functions): Add sockets.
3228         (Unicode string functions): Add unictype/*.
3229         (Support for building libraries and executables): Add gperf.
3230         (Support for building documentation): Add agpl-3.0.
3231         (Misc): Add nocrash.
3232
3233 2008-05-10  Bruno Haible  <bruno@clisp.org>
3234
3235         * modules/unictype/gen-ctype: New file.
3236
3237 2008-05-10  Jim Meyering  <meyering@redhat.com>
3238
3239         Make chdir-safer.c more efficient on a system with no symlinks.
3240         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
3241         also if ELOOP is zero.  Suggested by Bruno Haible.
3242
3243         Make chdir-safer.c slightly safer.
3244         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
3245         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
3246
3247         Avoid compile failure on systems without ELOOP (like mingw).
3248         * lib/chdir-safer.c (ELOOP): Define if not already defined.
3249         Reported by Bruno Haible.
3250
3251 2008-05-10  Bruno Haible  <bruno@clisp.org>
3252
3253         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
3254         (is_utf8_encoding): Use a case-insensitive comparison.
3255         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
3256         streq.
3257
3258 2008-05-10  Bruno Haible  <bruno@clisp.org>
3259
3260         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
3261         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
3262         * lib/unilbrk/ulc-common.h (iconv_string_length,
3263         iconv_string_keeping_offsets): Remove declarations.
3264         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
3265         Don't include <iconv.h>, streq.h, xsize.h.
3266         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
3267         conversion.
3268         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
3269         <iconv.h>, streq.h, xsize.h.
3270         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
3271         conversion.
3272         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
3273         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
3274         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
3275         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
3276
3277 2008-05-10  Bruno Haible  <bruno@clisp.org>
3278
3279         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
3280         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
3281
3282         * modules/unilbrk/u32-width-linebreaks-tests: New file.
3283         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
3284
3285         * modules/unilbrk/u16-width-linebreaks-tests: New file.
3286         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
3287
3288         * modules/unilbrk/u8-width-linebreaks-tests: New file.
3289         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
3290
3291         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
3292         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
3293
3294         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
3295         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
3296
3297         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
3298         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
3299
3300         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
3301         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
3302
3303 2008-05-10  Bruno Haible  <bruno@clisp.org>
3304
3305         Split up 'linebreak' module.
3306         * lib/unilbrk.h: New file, based on lib/linebreak.h.
3307         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
3308         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
3309         modifications.
3310         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
3311         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
3312         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
3313         lib/linebreak.c.
3314         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
3315         lib/linebreak.c.
3316         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
3317         lib/linebreak.c.
3318         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
3319         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
3320         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
3321         lib/linebreak.c.
3322         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
3323         lib/linebreak.c.
3324         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
3325         lib/linebreak.c.
3326         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
3327         lib/linebreak.c.
3328         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
3329         lib/linebreak.c.
3330         * modules/unilbrk/base: New file.
3331         * modules/unilbrk/tables: New file.
3332         * modules/unilbrk/u8-possible-linebreaks: New file.
3333         * modules/unilbrk/u16-possible-linebreaks: New file.
3334         * modules/unilbrk/u32-possible-linebreaks: New file.
3335         * modules/unilbrk/ulc-common: New file.
3336         * modules/unilbrk/ulc-possible-linebreaks: New file.
3337         * modules/unilbrk/u8-width-linebreaks: New file.
3338         * modules/unilbrk/u16-width-linebreaks: New file.
3339         * modules/unilbrk/u32-width-linebreaks: New file.
3340         * modules/unilbrk/ulc-width-linebreaks: New file.
3341         * lib/linebreak.h: Remove file.
3342         * lib/linebreak.c: Remove file.
3343         * m4/linebreak.m4: Remove file.
3344         * modules/linebreak: Remove file.
3345         * NEWS: Mention the changes.
3346
3347 2008-05-09  Eric Blake  <ebb9@byu.net>
3348
3349         Add xmemdup0.
3350         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
3351         implementation.
3352         * lib/xmalloc.c (xmemdup0): New C implementation.
3353
3354 2008-05-08  Bruno Haible  <bruno@clisp.org>
3355
3356         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
3357
3358 2008-05-07  Eric Blake  <ebb9@byu.net>
3359
3360         Support cross-compilation of <wctype.h>.
3361         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
3362         AC_CACHE_CHECK.
3363
3364 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
3365
3366         * build-aux/vc-list-files: Add support for bzr.
3367
3368 2008-05-03  Jim Meyering  <meyering@redhat.com>
3369
3370         avoid failed assertion with tight malloc
3371         * tests/test-getndelim2.c: Correct an off-by-one assertion.
3372
3373 2008-05-03  Simon Josefsson  <simon@josefsson.org>
3374
3375         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
3376         are needed from arpa/inet.h.
3377         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
3378         Reported by Bruno Haible.
3379
3380 2008-05-02  Jim Meyering  <meyering@redhat.com>
3381
3382         avoid compilation error on FreeBSD 6
3383         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
3384
3385 2008-05-01  Jim Meyering  <meyering@redhat.com>
3386
3387         useless-if-before-free: correct --help's exit status description
3388         * build-aux/useless-if-before-free (usage): Like grep, exit 0
3389         for one or more matches, etc.  Reported by Bruno Haible.
3390
3391         vc-list-files: make the stand-alone gnulib test work
3392         * modules/vc-list-files-tests (configure.ac):
3393         Define and AC_SUBST abs_aux_dir.
3394         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
3395         $(abs_top_srcdir) to each script and having each of them
3396         duplicate the work of setting PATH, set PATH here, using
3397         the new variable, abs_aux_dir instead.
3398         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
3399         * tests/test-vc-list-files-git.sh: Likewise.
3400         Reported by Bruno Haible.
3401
3402 2008-05-01  Bruno Haible  <bruno@clisp.org>
3403
3404         * lib/getndelim2.c (getndelim2): Fix newsize computation during
3405         reallocation. Rename 'done' to 'found_delimiter'.
3406
3407 2008-05-01  Jim Meyering  <meyering@redhat.com>
3408
3409         vc-list-files: accommodate /bin/sh like the one from Solaris 10
3410         * build-aux/vc-list-files: Use `...`, not $(...).
3411
3412 2008-04-30  Jim Meyering  <meyering@redhat.com>
3413
3414         add tests for vc-list-files
3415         * modules/vc-list-files-tests: New module.
3416         * tests/test-vc-list-files-cvs.sh: New file.
3417         * tests/test-vc-list-files-git.sh: New file.
3418
3419         avoid a warning from gcc
3420         * lib/getndelim2.c (IF_LINT): Define.
3421         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
3422
3423         vc-list-files: work properly with build-aux/cvsu, too
3424         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
3425         to all cvs-based clauses.
3426
3427         vc-list-files: work properly in the CVS+awk case, too
3428         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
3429
3430         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
3431         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
3432         take more than one file argument, so .  Add quotes, just in case $dir
3433         ever contains a shell meta-character.  Prompted by Soren Hansen in
3434         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
3435
3436 2008-04-29  Eric Blake  <ebb9@byu.net>
3437
3438         Optimize getndelim2 to use block operations when possible.
3439         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
3440         freadseek, and memchr2.
3441         * lib/getndelim2.c (getndelim2): Use them for block reads.
3442
3443 2008-04-29  Bruno Haible  <bruno@clisp.org>
3444
3445         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
3446         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3447         * modules/inet_ntop (Depends-on): Add extensions.
3448         * modules/inet_pton (Depends-on): Likewise.
3449         Reported by Simon Josefsson.
3450
3451 2008-04-29  Jim Meyering  <meyering@redhat.com>
3452
3453         When the is more than one match in a block, match all of them.
3454         * build-aux/useless-if-before-free: Iterate through each block
3455         until there are no more matches.
3456
3457         Fix broken useless-if-before-free script.
3458         * build-aux/useless-if-before-free: Fix typo: missing "?" after
3459         the expression to match cast of argument to free-like function.
3460
3461 2008-04-29  Eric Blake  <ebb9@byu.net>
3462
3463         Use new header.
3464         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
3465
3466 2008-04-29  Jim Meyering  <meyering@redhat.com>
3467
3468         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
3469         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
3470         by gnulib to exist and to declare e.g., inet_ntop.
3471         Don't include "inet_ntop.h", now removed.
3472
3473         * m4/arpa_inet_h.m4: Remove trailing blanks.
3474
3475 2008-04-29  Eric Blake  <ebb9@byu.net>
3476
3477         Silence valgrind on safe reads beyond potential array bounds.
3478         * lib/rawmemchr.valgrind: New file.
3479         * lib/strchrnul.valgrind: Likewise.
3480         * modules/rawmemchr (Files): Distribute new file.
3481         * modules/strchrnul (Files): Likewise.
3482         Suggested by Bruno Haible.
3483
3484 2008-04-29  Bruno Haible  <bruno@clisp.org>
3485
3486         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
3487         (inet_ntop, inet_pton): Change portability warning's wording.
3488         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
3489         Invoke gl_CHECK_NEXT_HEADERS.
3490         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
3491         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
3492         set ARPA_INET_H.
3493         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3494         * modules/arpa_inet (Description): No longer only for systems that
3495         lack it.
3496         (Depends-on): Add include_next.
3497         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
3498         HAVE_ARPA_INET_H.
3499
3500 2008-04-29  Jim Meyering  <meyering@redhat.com>
3501
3502         * modules/mkdir (License): Re-license as LGPLv2+.
3503
3504 2008-04-29  Bruno Haible  <bruno@clisp.org>
3505
3506         * modules/rawmemchr (Maintainer): Set to Eric.
3507         * modules/strchrnul (Maintainer): Likewise.
3508
3509 2008-04-29  Simon Josefsson  <simon@josefsson.org>
3510
3511         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
3512         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
3513
3514         * modules/arpa_inet (arpa/inet.h): Use them.
3515
3516 2008-04-28  Eric Blake  <ebb9@byu.net>
3517
3518         Test getndelim2.
3519         * modules/getndelim2-tests: New file.
3520         * tests/test-getndelim2.c: Likewise.
3521         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
3522         stream.
3523         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
3524
3525         * MODULES.html.sh: Document new module.
3526
3527 2008-04-20  Bruno Haible  <bruno@clisp.org>
3528
3529         * lib/c-stack.c (die): Use raise.
3530         * modules/c-stack (Depends-on): Add raise.
3531
3532 2008-04-28  Bruno Haible  <bruno@clisp.org>
3533
3534         Expect rpmatch to be declared.
3535         * lib/yesno.c (rpmatch): Remove declaration.
3536
3537         Declare rpmatch.
3538         * lib/stdlib.in.h (rpmatch): New declaration.
3539         * lib/rpmatch.c: Include <stdlib.h> first.
3540         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
3541         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
3542         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
3543         HAVE_RPMATCH.
3544         * modules/rpmatch (Depends-on): Add stdlib, extensions.
3545         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3546         (Include): Set to <stdlib.h>.
3547         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
3548         HAVE_RPMATCH.
3549         * NEWS: Document the change.
3550
3551 2008-04-28  Bruno Haible  <bruno@clisp.org>
3552
3553         Change rpmatch to use nl_langinfo when appropriate.
3554         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
3555         (N_): New macro.
3556         (localized_pattern): New function/macro.
3557         (try): Remove match, nomatch arguments. Copy the pattern into safe
3558         memory before caching it.
3559         (rpmatch): Use localized_pattern. Add translator comments.
3560         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
3561         Suggested by Eric Blake.
3562         * modules/rpmatch (Depends-on): Add stdbool.
3563
3564 2008-04-28  Eric Blake  <ebb9@byu.net>
3565
3566         Add rawmemchr module, matching glibc.
3567         * modules/string (Makefile.am): New indicator.
3568         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
3569         * lib/string.in.h (rawmemchr): Declare when appropriate.
3570         * modules/rawmemchr: New file.
3571         * m4/rawmemchr.m4: Likewise.
3572         * lib/rawmemchr.c: Likewise.
3573         * modules/rawmemchr-tests: Likewise.
3574         * tests/test-rawmemchr.c: Likewise.
3575         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
3576         module.
3577         * modules/strchrnul (Depends-on): Add rawmemchr.
3578         * lib/strchrnul.c (strchrnul): Optimize a corner case.
3579
3580         Whitespace cleanup.
3581         * tests/test-strchrnul.c: Reindent.
3582         * lib/strchrnul.c: Likewise.
3583
3584         Optimize and test strchrnul.
3585         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
3586         * modules/strchrnul-tests: New file.
3587         * tests/test-strchrnul.c: Likewise.
3588
3589         Remove intprops dependency.
3590         * modules/memchr (Depends-on): Remove intprops.
3591         * modules/memrchr (Depends-on): Likewise.
3592         * modules/memchr2 (Depends-on): Likewise.
3593         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
3594         * lib/memrchr.c (__memrchr): Likewise.
3595         * lib/memrchr2.c (memchr2): Likewise.
3596         Reported by Simon Josefsson.
3597
3598 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3599
3600         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
3601         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3602
3603 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3604
3605         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
3606
3607         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
3608
3609         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
3610
3611         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
3612         declarations.
3613         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
3614
3615         * m4/inet_pton.m4: Don't check for header files.
3616
3617         * m4/inet_ntop.m4: Don't check for header files.
3618
3619 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3620
3621         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
3622         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
3623         trigger for cygwin).
3624         Reported by Bruno Haible  <bruno@clisp.org>.
3625
3626 2008-04-28  Bruno Haible  <bruno@clisp.org>
3627
3628         * doc/posix-functions/strdup.texi: Mention mingw problem.
3629
3630 2008-04-27  Bruno Haible  <bruno@clisp.org>
3631
3632         * modules/stat-time-tests (Depends-on): Add sleep.
3633         * tests/test-stat-time.c (force_unlink): New function.
3634         (cleanup): Use it.
3635         (test_mtime): Remove the ctime related tests.
3636         (test_ctime): New function, containing the ctime related tests.
3637         (main): Call test_ctime, except on native Windows platforms.
3638
3639 2008-04-27  Bruno Haible  <bruno@clisp.org>
3640
3641         * lib/rpmatch.c (rpmatch): Add some comments.
3642         Reported by James Youngman <jay@gnu.org>.
3643
3644 2008-04-27  Bruno Haible  <bruno@clisp.org>
3645
3646         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
3647         quiet NaNs.
3648
3649 2008-04-27  Bruno Haible  <bruno@clisp.org>
3650
3651         Make test-yesno.sh work on mingw.
3652         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
3653         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
3654         (main): Set stdin to binary mode.
3655         * modules/yesno-tests (Depends-on): Add binary-io.
3656
3657 2008-04-27  Bruno Haible  <bruno@clisp.org>
3658
3659         Fix 'isfinite' on x86, x86_64, ia64 platforms.
3660         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
3661         argument that lie outside the IEEE 854 domain.
3662         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
3663         (gl_ISFINITE): Use it.
3664         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
3665
3666 2008-04-27  Bruno Haible  <bruno@clisp.org>
3667
3668         Allow local renaming in config.h.
3669         * lib/memrchr.c (memrchr): Don't undefine outside libc.
3670
3671 2008-04-27  Bruno Haible  <bruno@clisp.org>
3672
3673         * lib/memchr.c (__memchr): Change type of 'i'.
3674         * lib/memchr2.c (memchr2): Likewise.
3675
3676 2008-04-26  Eric Blake  <ebb9@byu.net>
3677         and Bruno Haible  <bruno@clisp.org>
3678
3679         Optimize and test memrchr.
3680         * modules/memrchr (Depends-on): Add intprops.
3681         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
3682         * modules/memrchr-tests: New file.
3683         * tests/test-memrchr.c: New file.
3684
3685 2008-04-26  Bruno Haible  <bruno@clisp.org>
3686
3687         Add tentative support for DragonFly BSD.
3688         * lib/stdio-impl.h: Add macros for DragonFly BSD.
3689         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
3690         fp.
3691         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3692         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
3693         * lib/fpurge.c (fpurge): Likewise.
3694         * lib/freadable.c (freaadable): Likewise.
3695         * lib/freadahead.c (freadahead): Likewise.
3696         * lib/freading.c (freading): Likewise.
3697         * lib/freadptr.c (freadptr): Likewise.
3698         * lib/freadseek.c (freadptrinc): Likewise.
3699         * lib/fseeko.c (fseeko): Likewise.
3700         * lib/fseterr.c (fseterr): Likewise.
3701         * lib/fwritable.c (fwritable): Likewise.
3702         * lib/fwriting.c (fwriting): Likewise.
3703
3704 2008-04-26  Bruno Haible  <bruno@clisp.org>
3705
3706         * lib/stdio-impl.h: New file.
3707         * lib/fbufmode.c: Include stdio-impl.h.
3708         (fbufmode): Use fp_, remove redundant #defines.
3709         * lib/fflush.c: Include stdio-impl.h.
3710         (clear_ungetc_buffer): Remove redundant #defines.
3711         * lib/fpurge.c: Include stdio-impl.h.
3712         (fpurge): Remove redundant #defines.
3713         * lib/freadable.c: Include stdio-impl.h.
3714         (freadable): Remove redundant #defines.
3715         * lib/freadahead.c: Include stdio-impl.h.
3716         (freadahead): Remove redundant #defines.
3717         * lib/freading.c: Include stdio-impl.h.
3718         (freading): Remove redundant #defines.
3719         * lib/freadptr.c: Include stdio-impl.h.
3720         (freadptr): Remove redundant #defines.
3721         * lib/freadseek.c: Include stdio-impl.h.
3722         (freadptrinc): Remove redundant #defines.
3723         * lib/fseeko.c: Include stdio-impl.h.
3724         (rpl_fseeko): Remove redundant #defines.
3725         * lib/fseterr.c: Include stdio-impl.h.
3726         (fseterr): Remove redundant #defines.
3727         * lib/fwritable.c: Include stdio-impl.h.
3728         (fwritable: Remove redundant #defines.
3729         * lib/fwriting.c: Include stdio-impl.h.
3730         (fwriting): Remove redundant #defines.
3731         * modules/fbufmode (Files): Add lib/stdio-impl.h.
3732         * modules/fflush (Files): Likewise.
3733         * modules/fpurge (Files): Likewise.
3734         * modules/freadable (Files): Likewise.
3735         * modules/freadahead (Files): Likewise.
3736         * modules/freading (Files): Likewise.
3737         * modules/freadptr (Files): Likewise.
3738         * modules/freadseek (Files): Likewise.
3739         * modules/fseeko (Files): Likewise.
3740         * modules/fseterr (Files): Likewise.
3741         * modules/fwritable (Files): Likewise.
3742         * modules/fwriting (Files): Likewise.
3743
3744 2008-04-26  Bruno Haible  <bruno@clisp.org>
3745
3746         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3747         restore_seek_optimization, update_fpos_cache): New functions, extracted
3748         from rpl_fflush.
3749         (rpl_fflush): Use them.
3750         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
3751         (gl_REPLACE_FFLUSH): Use it.
3752
3753 2008-04-26  Bruno Haible  <bruno@clisp.org>
3754
3755         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
3756         on Solaris.
3757         * tests/test-xstrtoimax.sh: Likewise.
3758         * tests/test-xstrtoumax.sh: Likewise.
3759         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3760
3761 2008-04-26  Bruno Haible  <bruno@clisp.org>
3762
3763         * modules/memchr-tests: New file.
3764         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
3765
3766 2008-04-26  Eric Blake  <ebb9@byu.net>
3767             Bruno Haible  <bruno@clisp.org>
3768
3769         * lib/memchr.c: Include intprops.h.
3770         (__memchr): Optimize parallel detection of matching bytes. Rename local
3771         variables. Add explanatory comments.
3772
3773 2008-04-26  Bruno Haible  <bruno@clisp.org>
3774
3775         Fix module 'memchr', broken since 2000-10-28.
3776         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
3777
3778 2008-04-26  Bruno Haible  <bruno@clisp.org>
3779
3780         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
3781         comments.
3782
3783 2008-04-25  Eric Blake  <ebb9@byu.net>
3784
3785         Use native fstatat on cygwin 1.7.0.
3786         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
3787         first.
3788
3789 2008-04-23  Eric Blake  <ebb9@byu.net>
3790
3791         Improve memchr2 performance.
3792         * lib/memchr2.c (memchr2): Further optimize parallel detection of
3793         NUL bytes.
3794         * modules/memchr2 (Depends-on): Use intprops.h.
3795
3796 2008-04-23  Simon Josefsson  <simon@josefsson.org>
3797
3798         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
3799         an inline function instead of a CPP macro.  Patch by Ben Pfaff
3800         <blp@cs.stanford.edu>.
3801
3802 2008-04-23  Simon Josefsson  <simon@josefsson.org>
3803
3804         * lib/arpa_inet.in.h: New file.
3805
3806         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
3807         (Makefile.am): Sed in substitute header file.
3808
3809         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
3810         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
3811
3812         * modules/inet_ntop (configure.ac): Use
3813         gl_ARPA_INET_MODULE_INDICATOR.
3814
3815         * modules/inet_pton (configure.ac): Use
3816         gl_ARPA_INET_MODULE_INDICATOR.
3817
3818 2008-04-22  Jim Meyering  <meyering@redhat.com>
3819
3820         * modules/verify (License): Re-license as LGPLv2+.
3821
3822 2008-04-22  Simon Josefsson  <simon@josefsson.org>
3823
3824         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
3825         parameter to void* as per POSIX standard (MinGW uses char*).
3826
3827 2008-04-21  Bruno Haible  <bruno@clisp.org>
3828
3829         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
3830         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
3831         Define to replacements if REPLACE_ISWCNTRL is 1.
3832         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
3833         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
3834         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
3835         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
3836         what it fixes.
3837         * doc/posix-functions/iswalpha.texi: Likewise.
3838         * doc/posix-functions/iswblank.texi: Likewise.
3839         * doc/posix-functions/iswcntrl.texi: Likewise.
3840         * doc/posix-functions/iswdigit.texi: Likewise.
3841         * doc/posix-functions/iswgraph.texi: Likewise.
3842         * doc/posix-functions/iswlower.texi: Likewise.
3843         * doc/posix-functions/iswprint.texi: Likewise.
3844         * doc/posix-functions/iswpunct.texi: Likewise.
3845         * doc/posix-functions/iswspace.texi: Likewise.
3846         * doc/posix-functions/iswupper.texi: Likewise.
3847         * doc/posix-functions/iswxdigit.texi: Likewise.
3848         Reported by Alain Guibert.
3849
3850 2008-04-21  Bruno Haible  <bruno@clisp.org>
3851
3852         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
3853         Patch by Alain Guibert.
3854
3855 2008-04-21  Bruno Haible  <bruno@clisp.org>
3856
3857         Fix test failures on mingw.
3858         * tests/test-xstrtol.c (print_no_progname): New function.
3859         (main): Install it in error_print_progname hook.
3860         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
3861         * tests/test-xstrtoimax.sh: Likewise.
3862         * tests/test-xstrtoumax.sh: Likewise.
3863
3864 2008-04-21  Bruno Haible  <bruno@clisp.org>
3865
3866         Fix test failure on mingw.
3867         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
3868
3869 2008-04-21  Bruno Haible  <bruno@clisp.org>
3870
3871         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
3872         Actually assign a value.
3873
3874 2008-04-20  Bruno Haible  <bruno@clisp.org>
3875
3876         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
3877         take 2.
3878         * lib/canonicalize.c (canonicalize_file_name): Elide if the
3879         'canonicalize-lgpl' module is also used.
3880         * lib/canonicalize-lgpl.c: Undo last change.
3881         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
3882
3883 2008-04-20  Bruno Haible  <bruno@clisp.org>
3884
3885         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
3886         config.h. Provide _mkdir based fallback for mingw.
3887         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
3888         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
3889         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
3890         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
3891         rather than defining mkdir in config.h.
3892         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
3893         (gl_SYS_STAT_H_DEFAULTS): New macro.
3894         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
3895         HAVE_IO_H any more.
3896         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
3897         HAVE_DECL_MKDIR and HAVE_IO_H.
3898
3899 2008-04-20  Bruno Haible  <bruno@clisp.org>
3900
3901         * lib/isapipe.c: Port to native Windows platforms.
3902
3903 2008-04-20  Bruno Haible  <bruno@clisp.org>
3904
3905         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
3906
3907 2008-04-21  Eric Blake  <ebb9@byu.net>
3908
3909         Work around preprocessors that don't handle UINTMAX_MAX.
3910         * lib/memchr2.c (memchr2): Avoid embedded #if.
3911         Reported by Alain Guibert, fix suggested by Bruno Haible.
3912
3913 2008-04-21  Simon Josefsson  <simon@josefsson.org>
3914
3915         * doc/posix-functions/strftime.texi (strftime): Explain better
3916         Windows incompatibility.  Suggested by Micah Cowan
3917         <micah@cowan.name>.
3918
3919 2008-04-20  Bruno Haible  <bruno@clisp.org>
3920
3921         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
3922         unistr/u8-mblen.
3923
3924 2008-04-20  Bruno Haible  <bruno@clisp.org>
3925
3926         Fix test failure on platforms with non-GNU iconv.
3927         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
3928         (U_TO_U8): Use it, rather than u16_to_u8.
3929         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
3930         units at the end of the input string.
3931         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
3932
3933 2008-04-20  Bruno Haible  <bruno@clisp.org>
3934
3935         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
3936         when the resulting length is 0.
3937         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
3938
3939 2008-04-20  Bruno Haible  <bruno@clisp.org>
3940
3941         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
3942         works.
3943         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
3944
3945 2008-04-20  Bruno Haible  <bruno@clisp.org>
3946
3947         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
3948         * modules/tsearch-tests (configure.ac): Test for initstate function.
3949
3950 2008-04-20  Bruno Haible  <bruno@clisp.org>
3951
3952         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
3953         for nlink_t if missing.
3954         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
3955
3956 2008-04-19  Bruno Haible  <bruno@clisp.org>
3957
3958         Work around snprintf bug on Linux libc5.
3959         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
3960         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
3961         gl_SNPRINTF_SIZE1.
3962         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3963         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
3964         that test failed.
3965         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
3966         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
3967         * modules/snprintf (Files): Add m4/printf.m4.
3968         * modules/vsnprintf (Files): Likewise.
3969         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
3970         * doc/posix-functions/vsnprintf.texi: Likewise.
3971
3972 2008-04-19  Bruno Haible  <bruno@clisp.org>
3973
3974         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
3975         from 0.0058 to less than 10^-7.
3976
3977 2008-04-19  Bruno Haible  <bruno@clisp.org>
3978
3979         Fix rounding when a precision is given.
3980         * lib/vasnprintf.c (is_borderline): New function.
3981         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
3982         9...9x.
3983         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
3984         %e, %g.
3985         * tests/test-vasprintf-posix.c (test_function): Likewise.
3986         * tests/test-snprintf-posix.h (test_function): Likewise.
3987         * tests/test-sprintf-posix.h (test_function): Likewise.
3988         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
3989         * tests/test-printf-posix.h (test_function): Likewise.
3990         * tests/test-printf-posix.output: Update.
3991         Reported by John Darrington <john@darrington.wattle.id.au> via
3992         Ben Pfaff <blp@cs.stanford.edu>.
3993
3994 2008-04-18  Simon Josefsson  <simon@josefsson.org>
3995
3996         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
3997         Suggested by Bruno Haible <bruno@clisp.org>.
3998
3999 2008-04-17  Bruno Haible  <bruno@clisp.org>
4000
4001         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
4002         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
4003         implementation.
4004         Patch by Bruce Merry <bmerry@gmail.com>.
4005
4006 2008-04-17  Simon Josefsson  <simon@josefsson.org>
4007
4008         * doc/posix-functions/strftime.texi (strftime): Mention that %e
4009         doesn't work under Windows.
4010
4011 2008-04-16  Bruno Haible  <bruno@clisp.org>
4012
4013         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
4014         New macros.
4015         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
4016         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
4017         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
4018         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
4019         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
4020         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
4021         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
4022         macros.
4023         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
4024         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
4025         Northern Sotho, Uighur.
4026
4027 2008-04-16  Bruno Haible  <bruno@clisp.org>
4028
4029         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
4030         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
4031         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
4032         Reported by Daniel Bergström <daniel@octocode.com>.
4033
4034 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
4035             Bruno Haible  <bruno@clisp.org>
4036
4037         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
4038         function.
4039         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
4040         New functions, mostly extracted from gl_locale_name_default.
4041         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
4042
4043 2008-04-16  Eric Blake  <ebb9@byu.net>
4044
4045         Adjust strtod detection to catch glibc 2.7 bug.
4046         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
4047         Reported by John Gatewood Ham.
4048
4049 2008-04-16  Bruno Haible  <bruno@clisp.org>
4050
4051         Add tentative support for Linux libc5.
4052         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
4053         * lib/fpurge.c (fpurge): Likewise.
4054         * lib/freadable.c (freadable): Likewise.
4055         * lib/freadahead.c (freadahead): Likewise.
4056         * lib/freading.c (freading): Likewise.
4057         * lib/freadptr.c (freadptr): Likewise.
4058         * lib/freadseek.c (freadptrinc): Likewise.
4059         * lib/fseeko.c (rpl_fseeko): Likewise.
4060         * lib/fseterr.c (fseterr): Likewise.
4061         * lib/fwritable.c (fwritable): Likewise.
4062         * lib/fwriting.c (fwriting): Likewise.
4063         Reported by Alain Guibert <alguibert+bts@free.fr>.
4064
4065 2008-04-15  Bruno Haible  <bruno@clisp.org>
4066
4067         * modules/mathl (configure.ac): Define module indicator.
4068
4069 2008-04-15  Bruno Haible  <bruno@clisp.org>
4070
4071         * lib/logl.c (logl): Remove unused variables.
4072
4073 2008-04-15  Bruno Haible  <bruno@clisp.org>
4074
4075         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
4076         fails.
4077
4078 2008-04-15  Bruno Haible  <bruno@clisp.org>
4079
4080         * lib/trim.c (trim2): Fix argument of isspace() macro.
4081
4082 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
4083
4084         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
4085         to 0.
4086         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
4087
4088 2008-04-14  Bruno Haible  <bruno@clisp.org>
4089
4090         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
4091         AC_LANG_PROGRAM argument.
4092         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
4093         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
4094         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4095         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4096         * m4/math_h.m4 (gl_MATH_H): Likewise.
4097         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
4098         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
4099         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
4100         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
4101         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
4102         * m4/regex.m4 (gl_REGEX): Likewise.
4103         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
4104         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
4105         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
4106         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
4107         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4108         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
4109         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4110         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
4111
4112 2008-04-14  Jim Meyering  <meyering@redhat.com>
4113
4114         test-strtod: fix typos: s/abs/fabs/
4115         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
4116
4117 2008-04-13  Bruno Haible  <bruno@clisp.org>
4118
4119         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
4120         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
4121         module is also used and while not building the reloc-wrapper.
4122
4123 2008-04-13  Bruno Haible  <bruno@clisp.org>
4124
4125         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
4126
4127 2008-04-13  Bruno Haible  <bruno@clisp.org>
4128
4129         Fix AIX compilation failure introduced on 2008-04-02.
4130         * tests/test-frexp.c (exp): Undefine before redefining.
4131         * tests/test-frexpl.c (exp): Likewise.
4132
4133 2008-04-13  Bruno Haible  <bruno@clisp.org>
4134
4135         Work around a HP-UX stdio bug.
4136         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
4137         * tests/test-ftello.c (main): Likewise.
4138         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
4139         * doc/posix-functions/ftello.texi: Likewise.
4140
4141 2008-04-13  Bruno Haible  <bruno@clisp.org>
4142
4143         Make test-signbit pass on HP-UX/hppa.
4144         * tests/test-signbit.c (minus_zerol): New variable.
4145         (test_signbitl): Use it.
4146
4147 2008-04-13  Bruno Haible  <bruno@clisp.org>
4148
4149         Make truncl work on OSF/1 4.0.
4150         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
4151         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4152         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4153         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
4154         HAVE_DECL_TRUNCL.
4155         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
4156         HAVE_DECL_TRUNCL.
4157         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
4158
4159 2008-04-13  Bruno Haible  <bruno@clisp.org>
4160
4161         * lib/unictype.h: Remove trailing comma from enumeration definitions.
4162
4163 2008-04-13  Bruno Haible  <bruno@clisp.org>
4164
4165         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
4166         expression, so as to avoid HP-UX 11 cc compiler bug.
4167
4168 2008-04-13  Bruno Haible  <bruno@clisp.org>
4169
4170         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
4171
4172 2008-04-13  Bruno Haible  <bruno@clisp.org>
4173
4174         * lib/git-merge-changelog.c: Remove empty declaration outside of
4175         functions.
4176
4177 2008-04-13  Bruno Haible  <bruno@clisp.org>
4178
4179         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
4180
4181 2008-04-13  Bruno Haible  <bruno@clisp.org>
4182
4183         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
4184         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
4185         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
4186         also if it exists but lacks definitions of the SHUT_* macros.
4187         * modules/sys_socket (Description): Update.
4188         Reported by Elbert Pol <e.pol@chello.nl>.
4189
4190 2008-04-13  Bruno Haible  <bruno@clisp.org>
4191
4192         * lib/localcharset.c (OS2): Don't redefine if already defined.
4193         Reported by Elbert Pol <e.pol@chello.nl>.
4194
4195 2008-04-13  Bruno Haible  <bruno@clisp.org>
4196
4197         * lib/binary-io.h [__EMX__]: Include <io.h>.
4198         Reported by Elbert Pol <e.pol@chello.nl>.
4199
4200 2008-04-12  Bruno Haible  <bruno@clisp.org>
4201
4202         * lib/fpucw.h: Enable the definitions also for x86_64.
4203         Needed for NetBSD/x86_64.
4204         Reported by Thomas Klausner <tk@giga.or.at>.
4205
4206 2008-04-12  Bruno Haible  <bruno@clisp.org>
4207
4208         * tests/test-strtod.c: Include isnand.h.
4209         (main): Use isnand instead of isnan.
4210         Reported by Jim Meyering.
4211
4212 2008-04-12  Bruno Haible  <bruno@clisp.org>
4213
4214         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
4215         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4216
4217 2008-04-12  Jim Meyering  <meyering@redhat.com>
4218
4219         * m4/math_h.m4 (gl_MATH_H): Fix typos.
4220
4221 2008-04-12  Bruno Haible  <bruno@clisp.org>
4222
4223         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
4224         Reported by Elbert Pol <e.pol@chello.nl>.
4225
4226 2008-04-12  Eric Blake  <ebb9@byu.net>
4227
4228         Work around Solaris 10 math.h bug.
4229         * m4/math_h.m4 (gl_MATH_H): Check for bug.
4230         (gl_MATH_H_DEFAULTS): Set up default.
4231         * modules/math (Makefile.am): Replace new indicators.
4232         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
4233         * tests/test-math.c (main): Test this.
4234         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
4235         * doc/posix-headers/math.texi (math.h): Mention bug.
4236         Reported by Nelson H. F. Beebe and Jim Meyering.
4237
4238 2008-04-11  Bruno Haible  <bruno@clisp.org>
4239
4240         Adapt to future versions of Apple GCC.
4241         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
4242         Reported by Peter O'Gorman <peter@pogma.com>.
4243
4244 2008-04-11  Bruno Haible  <bruno@clisp.org>
4245
4246         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
4247
4248 2008-04-11  Bruno Haible  <bruno@clisp.org>
4249
4250         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
4251
4252         * modules/getaddrinfo-tests (Makefile.am): Define
4253         test_getaddrinfo_LDADD.
4254
4255 2008-04-11  Bruno Haible  <bruno@clisp.org>
4256
4257         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
4258         (init): Fix syntax error.
4259         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
4260         is declared.
4261
4262 2008-04-11  Bruno Haible  <bruno@clisp.org>
4263
4264         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
4265         * modules/glob (Depends-on): Add stdbool.
4266
4267 2008-04-11  Bruno Haible  <bruno@clisp.org>
4268
4269         * lib/trim.c: Include <string.h>.
4270
4271 2008-04-11  Eric Blake  <ebb9@byu.net>
4272
4273         Avoid compile failure on OS/2.
4274         * lib/regex_internal.h (internal_function): Disable optimization
4275         on OS/2 (__EMX__), where it caused compiler error.
4276         Reported by Elbert Pol.
4277
4278 2008-04-11  Bruno Haible  <bruno@clisp.org>
4279
4280         Flush the standard error stream before aborting. Needed on mingw.
4281         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
4282         * tests/test-array_list.c (ASSERT): Likewise.
4283         * tests/test-array_oset.c (ASSERT): Likewise.
4284         * tests/test-avltree_list.c (ASSERT): Likewise.
4285         * tests/test-avltree_oset.c (ASSERT): Likewise.
4286         * tests/test-avltreehash_list.c (ASSERT): Likewise.
4287         * tests/test-binary-io.c (ASSERT): Likewise.
4288         * tests/test-byteswap.c (ASSERT): Likewise.
4289         * tests/test-c-ctype.c (ASSERT): Likewise.
4290         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
4291         * tests/test-c-strcasestr.c (ASSERT): Likewise.
4292         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
4293         * tests/test-c-strstr.c (ASSERT): Likewise.
4294         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
4295         * tests/test-canonicalize.c (ASSERT): Likewise.
4296         * tests/test-carray_list.c (ASSERT): Likewise.
4297         * tests/test-ceilf1.c (ASSERT): Likewise.
4298         * tests/test-ceilf2.c (ASSERT): Likewise.
4299         * tests/test-ceill.c (ASSERT): Likewise.
4300         * tests/test-count-one-bits.c (ASSERT): Likewise.
4301         * tests/test-fbufmode.c (ASSERT): Likewise.
4302         * tests/test-fflush2.c (ASSERT): Likewise.
4303         * tests/test-floorf1.c (ASSERT): Likewise.
4304         * tests/test-floorf2.c (ASSERT): Likewise.
4305         * tests/test-floorl.c (ASSERT): Likewise.
4306         * tests/test-fopen.c (ASSERT): Likewise.
4307         * tests/test-fpending.c (ASSERT): Likewise.
4308         * tests/test-fprintf-posix.c (ASSERT): Likewise.
4309         * tests/test-fpurge.c (ASSERT): Likewise.
4310         * tests/test-freadable.c (ASSERT): Likewise.
4311         * tests/test-freadahead.c (ASSERT): Likewise.
4312         * tests/test-freading.c (ASSERT): Likewise.
4313         * tests/test-freadptr.c (ASSERT): Likewise.
4314         * tests/test-freadptr2.c (ASSERT): Likewise.
4315         * tests/test-freadseek.c (ASSERT): Likewise.
4316         * tests/test-freopen.c (ASSERT): Likewise.
4317         * tests/test-frexp.c (ASSERT): Likewise.
4318         * tests/test-frexpl.c (ASSERT): Likewise.
4319         * tests/test-fseek.c (ASSERT): Likewise.
4320         * tests/test-fseeko.c (ASSERT): Likewise.
4321         * tests/test-fstrcmp.c (ASSERT): Likewise.
4322         * tests/test-ftell.c (ASSERT): Likewise.
4323         * tests/test-ftello.c (ASSERT): Likewise.
4324         * tests/test-func.c (ASSERT): Likewise.
4325         * tests/test-fwritable.c (ASSERT): Likewise.
4326         * tests/test-fwriting.c (ASSERT): Likewise.
4327         * tests/test-getdelim.c (ASSERT): Likewise.
4328         * tests/test-getline.c (ASSERT): Likewise.
4329         * tests/test-i-ring.c (ASSERT): Likewise.
4330         * tests/test-iconv-utf.c (ASSERT): Likewise.
4331         * tests/test-iconv.c (ASSERT): Likewise.
4332         * tests/test-isfinite.c (ASSERT): Likewise.
4333         * tests/test-isnand.c (ASSERT): Likewise.
4334         * tests/test-isnanf.c (ASSERT): Likewise.
4335         * tests/test-isnanl.h (ASSERT): Likewise.
4336         * tests/test-ldexpl.c (ASSERT): Likewise.
4337         * tests/test-linked_list.c (ASSERT): Likewise.
4338         * tests/test-linkedhash_list.c (ASSERT): Likewise.
4339         * tests/test-localename.c (ASSERT): Likewise.
4340         * tests/test-lseek.c (ASSERT): Likewise.
4341         * tests/test-mbscasecmp.c (ASSERT): Likewise.
4342         * tests/test-mbscasestr1.c (ASSERT): Likewise.
4343         * tests/test-mbscasestr2.c (ASSERT): Likewise.
4344         * tests/test-mbscasestr3.c (ASSERT): Likewise.
4345         * tests/test-mbscasestr4.c (ASSERT): Likewise.
4346         * tests/test-mbschr.c (ASSERT): Likewise.
4347         * tests/test-mbscspn.c (ASSERT): Likewise.
4348         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
4349         * tests/test-mbspbrk.c (ASSERT): Likewise.
4350         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
4351         * tests/test-mbsrchr.c (ASSERT): Likewise.
4352         * tests/test-mbsspn.c (ASSERT): Likewise.
4353         * tests/test-mbsstr1.c (ASSERT): Likewise.
4354         * tests/test-mbsstr2.c (ASSERT): Likewise.
4355         * tests/test-mbsstr3.c (ASSERT): Likewise.
4356         * tests/test-memchr2.c (ASSERT): Likewise.
4357         * tests/test-memmem.c (ASSERT): Likewise.
4358         * tests/test-open.c (ASSERT): Likewise.
4359         * tests/test-printf-frexp.c (ASSERT): Likewise.
4360         * tests/test-printf-frexpl.c (ASSERT): Likewise.
4361         * tests/test-printf-posix.c (ASSERT): Likewise.
4362         * tests/test-quotearg.c (ASSERT): Likewise.
4363         * tests/test-rbtree_list.c (ASSERT): Likewise.
4364         * tests/test-rbtree_oset.c (ASSERT): Likewise.
4365         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
4366         * tests/test-round1.c (ASSERT): Likewise.
4367         * tests/test-roundf1.c (ASSERT): Likewise.
4368         * tests/test-roundl.c (ASSERT): Likewise.
4369         * tests/test-signbit.c (ASSERT): Likewise.
4370         * tests/test-sleep.c (ASSERT): Likewise.
4371         * tests/test-snprintf-posix.c (ASSERT): Likewise.
4372         * tests/test-snprintf.c (ASSERT): Likewise.
4373         * tests/test-sprintf-posix.c (ASSERT): Likewise.
4374         * tests/test-stat-time.c (ASSERT): Likewise.
4375         * tests/test-strcasestr.c (ASSERT): Likewise.
4376         * tests/test-strerror.c (ASSERT): Likewise.
4377         * tests/test-striconv.c (ASSERT): Likewise.
4378         * tests/test-striconveh.c (ASSERT): Likewise.
4379         * tests/test-striconveha.c (ASSERT): Likewise.
4380         * tests/test-strsignal.c (ASSERT): Likewise.
4381         * tests/test-strstr.c (ASSERT): Likewise.
4382         * tests/test-strtod.c (ASSERT): Likewise.
4383         * tests/test-trunc1.c (ASSERT): Likewise.
4384         * tests/test-trunc2.c (ASSERT): Likewise.
4385         * tests/test-truncf1.c (ASSERT): Likewise.
4386         * tests/test-truncf2.c (ASSERT): Likewise.
4387         * tests/test-truncl.c (ASSERT): Likewise.
4388         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
4389         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
4390         * tests/test-vasnprintf.c (ASSERT): Likewise.
4391         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
4392         * tests/test-vasprintf.c (ASSERT): Likewise.
4393         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
4394         * tests/test-vprintf-posix.c (ASSERT): Likewise.
4395         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
4396         * tests/test-vsnprintf.c (ASSERT): Likewise.
4397         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
4398         * tests/test-wcwidth.c (ASSERT): Likewise.
4399         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
4400         * tests/test-xprintf-posix.c (ASSERT): Likewise.
4401         * tests/test-xvasprintf.c (ASSERT): Likewise.
4402         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
4403         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
4404         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
4405         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
4406         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
4407         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
4408         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
4409         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
4410         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
4411         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
4412         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
4413         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
4414         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
4415         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
4416         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
4417         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
4418         * tests/unictype/test-block_list.c (ASSERT): Likewise.
4419         * tests/unictype/test-block_of.c (ASSERT): Likewise.
4420         * tests/unictype/test-block_test.c (ASSERT): Likewise.
4421         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
4422         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
4423         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
4424         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
4425         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
4426         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
4427         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
4428         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
4429         * tests/unictype/test-combining.c (ASSERT): Likewise.
4430         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
4431         * tests/unictype/test-digit.c (ASSERT): Likewise.
4432         * tests/unictype/test-mirror.c (ASSERT): Likewise.
4433         * tests/unictype/test-numeric.c (ASSERT): Likewise.
4434         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
4435         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
4436         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
4437         * tests/unictype/test-scripts.c (ASSERT): Likewise.
4438         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
4439         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
4440         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
4441         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
4442         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
4443         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
4444         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
4445         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
4446         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
4447         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
4448         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
4449         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
4450         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
4451         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
4452         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
4453         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
4454         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
4455         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
4456         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
4457         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
4458         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
4459         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
4460         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
4461         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
4462         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
4463         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
4464         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
4465         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
4466         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
4467         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
4468         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
4469         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
4470         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
4471         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
4472         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
4473         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
4474         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
4475         Reported by Eric Blake.
4476
4477 2008-04-11  Bruno Haible  <bruno@clisp.org>
4478
4479         * lib/wchar.in.h: Tweak comment.
4480
4481 2008-04-11  Bruno Haible  <bruno@clisp.org>
4482
4483         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
4484         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
4485         gl_COMMON.
4486         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
4487
4488 2008-04-11  Bruno Haible  <bruno@clisp.org>
4489
4490         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
4491
4492 2008-04-11  Simon Josefsson  <simon@josefsson.org>
4493
4494         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
4495         of attempting to use non-existing /dev/*random.  Based on patch
4496         from Adam Strzelecki <ono@java.pl> in
4497         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
4498
4499 2008-04-08  Bruno Haible  <bruno@clisp.org>
4500
4501         Add tentative support for emx+gcc.
4502         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
4503         * lib/fpurge.c (fpurge): Likewise.
4504         * lib/freadable.c (freadable): Likewise.
4505         * lib/freadahead.c (freadahead): Likewise.
4506         * lib/freading.c (freading): Likewise.
4507         * lib/freadptr.c (freadptr): Likewise.
4508         * lib/freadseek.c (freadptrinc): Likewise.
4509         * lib/fseeko.c (rpl_fseeko): Likewise.
4510         * lib/fseterr.c (fseterr): Likewise.
4511         * lib/fwritable.c (fwritable): Likewise.
4512         * lib/fwriting.c (fwriting): Likewise.
4513         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
4514
4515 2008-04-09  Eric Blake  <ebb9@byu.net>
4516
4517         Avoid some autoconf warnings.
4518         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
4519         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
4520         * m4/afs.m4 (gl_AFS): Likewise.
4521         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
4522         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
4523         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
4524         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
4525         (gl_INTEGER_TYPE_SUFFIX): Likewise.
4526         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
4527         (AC_CHECK_DECLS_ONCE): Likewise.
4528         Rename file...
4529         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
4530         gnulib-tool requires autoconf 2.59 or better.
4531         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
4532
4533 2008-04-08  Eric Blake  <ebb9@byu.net>
4534
4535         Use 'git describe --match' if present (added in git 1.5.5).
4536         * build-aux/git-version-gen: Limit result to tags that match 'v*'
4537         if possible.
4538
4539 2008-04-08  Bruno Haible  <bruno@clisp.org>
4540
4541         Add tentative support for OpenServer.
4542         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
4543         _ptr, _cnt.
4544         * lib/fpurge.c (fpurge): Likewise.
4545         * lib/freadable.c (freadable): Likewise.
4546         * lib/freadahead.c (freadahead): Likewise.
4547         * lib/freading.c (freading): Likewise.
4548         * lib/freadptr.c (freadptr): Likewise.
4549         * lib/freadseek.c (freadptrinc): Likewise.
4550         * lib/fseeko.c (rpl_fseeko): Likewise.
4551         * lib/fseterr.c (fseterr): Likewise.
4552         * lib/fwritable.c (fwritable): Likewise.
4553         * lib/fwriting.c (fwriting): Likewise.
4554         Reported by Roger Cornelius <rac@tenzing.org> and
4555         Brian K. White <brian@aljex.com>.
4556
4557 2008-04-06  Jim Meyering  <meyering@redhat.com>
4558
4559         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
4560
4561 2008-04-06  Bruno Haible  <bruno@clisp.org>
4562
4563         Avoid possible error with non-ASCII bytes in UTF-8 locales.
4564         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
4565         * tests/test-printf-posix.sh: Likewise.
4566         * tests/test-vfprintf-posix.sh: Likewise.
4567         * tests/test-vprintf-posix.sh: Likewise.
4568         * tests/test-xprintf-posix.sh: Likewise.
4569
4570 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4571
4572         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
4573         hide error from 'ls', needed on OS/2.
4574         Report by Elbert Pol <elbert.pol@gmail.com>.
4575
4576 2008-04-04  Eric Blake  <ebb9@byu.net>
4577
4578         Make test-fseeko.c failures meaningful.
4579         * tests/test-fseeko.c: Print line number on failure.
4580         * tests/test-fseek.c: Likewise.
4581         Reported by Nelson H. F. Beebe.
4582
4583         Improve strtod bug detection check.
4584         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
4585         required for Solaris 10.
4586         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
4587
4588 2008-04-04  Bruno Haible  <bruno@clisp.org>
4589
4590         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
4591         by m4/setenv.m4.
4592
4593 2008-04-03  Eric Blake  <ebb9@byu.net>
4594
4595         Ensure sane .version contents.
4596         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
4597         version string.
4598         * build-aux/git-version-gen: Improve documentation.
4599
4600         Make GNU make output nicer.
4601         * top/GNUmakefile [!_have-Makefile]: Add dependency on
4602         MAKECMDGOALS to enforce message for all command line targets.  Set
4603         srcdir for use in maint.mk.
4604
4605         Another maintainer tweak.
4606         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
4607         a target that regenerates version.
4608
4609 2008-04-03  Jim Meyering  <meyering@redhat.com>
4610
4611         vc-list-files: don't cause coreutils "make po-check" failure
4612         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
4613
4614 2008-04-03  Eric Blake  <ebb9@byu.net>
4615
4616         Allow VPATH usage of vc-list-files.
4617         * build-aux/vc-list-files (scriptversion): Add timestamp.
4618         (options): Add --help, --version, -C.
4619         (CVS): Support installed cvsu.
4620
4621 2008-04-02  Bruno Haible  <bruno@clisp.org>
4622
4623         Avoid some "statement with no effect" warnings from gcc.
4624         * tests/test-wctype.c (main): Explicitly ignore unused values.
4625         Reported by Jim Meyering.
4626
4627 2008-04-02  Jim Meyering  <meyering@redhat.com>
4628
4629         Avoid some warnings from "gcc -Wshadow".
4630         * tests/test-frexp.c (exp): Define to a different identifier.
4631         * tests/test-frexpl.c (exp): Likewise.
4632
4633 2008-04-03  Jim Meyering  <meyering@redhat.com>
4634
4635         bootstrap: remove dangling *.[ch] symlinks from lib
4636         * build-aux/bootstrap [dangling symlink removal]: Move find's
4637         -depth option to precede all others, to avoid a warning.
4638         Remove *.[ch] files too, and from "$source_base" (usually lib/).
4639
4640 2008-04-02  Bruno Haible  <bruno@clisp.org>
4641
4642         Avoid some warnings from "gcc -Wshadow".
4643         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
4644         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
4645         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
4646         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
4647         Reported by Jim Meyering.
4648
4649 2008-04-01  Bruno Haible  <bruno@clisp.org>
4650
4651         Fix test to work on IRIX 6.5 with cc.
4652         * tests/test-math.c (numeric_equal): New function.
4653         (main): Use it.
4654
4655 2008-04-01  Bruno Haible  <bruno@clisp.org>
4656
4657         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
4658
4659 2008-04-01  Bruno Haible  <bruno@clisp.org>
4660
4661         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
4662         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4663         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
4664         (Depends-on): Remove math.
4665
4666         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
4667         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4668         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
4669         (Depends-on): Remove math.
4670
4671         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
4672         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4673         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
4674         (Depends-on): Remove math.
4675         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
4676         (Depends-on): Remove math.
4677
4678         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
4679         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4680         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
4681         (Depends-on): Remove math.
4682         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
4683         (Depends-on): Remove math.
4684
4685         * tests/test-round1.c: Include nan.h.
4686         (main): Use NaNd instead of NAN.
4687         * modules/round-tests (Files): Add tests/nan.h.
4688
4689         * tests/test-trunc1.c: Include nan.h.
4690         (main): Use NaNd instead of NAN.
4691         * modules/trunc-tests (Files): Add tests/nan.h.
4692
4693         * tests/test-roundf1.c: Include nan.h.
4694         (main): Use NaNf instead of NAN.
4695         * modules/roundf-tests (Files): Add tests/nan.h.
4696
4697         * tests/test-truncf1.c: Include nan.h.
4698         (main): Use NaNf instead of NAN.
4699         * modules/truncf-tests (Files): Add tests/nan.h.
4700
4701         * tests/test-ceilf1.c: Include nan.h.
4702         (main): Use NaNf instead of NAN.
4703         * modules/ceilf-tests (Files): Add tests/nan.h.
4704
4705         * tests/test-floorf1.c: Include nan.h.
4706         (main): Use NaNf instead of NAN.
4707         * modules/floorf-tests (Files): Add tests/nan.h.
4708
4709         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
4710         (main): Use NaNf instead of NAN.
4711         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
4712
4713         * tests/test-isnand.c: Include nan.h instead of <math.h>.
4714         (main): Use NaNd instead of NAN.
4715         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
4716
4717         * tests/test-frexp.c: Include nan.h.
4718         (main): Use NaNd instead of NAN.
4719         * modules/frexp-tests (Files): Add tests/nan.h.
4720
4721         * lib/isnan.c: Don't include <math.h>.
4722         (FUNC): Don't use NAN macro.
4723         * modules/isnand-nolibm (Depends-on): Remove math.
4724         * modules/isnanf-nolibm (Depends-on): Remove math.
4725         * modules/isnanl (Depends-on): Remove math.
4726         * modules/isnanl-nolibm (Depends-on): Remove math.
4727
4728         * tests/nan.h: New file.
4729
4730 2008-04-01  Eric Blake  <ebb9@byu.net>
4731
4732         Fix typos.
4733         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
4734         values to be the right type.
4735
4736         For now, cater to gnulib strtod inaccuracies.
4737         * tests/test-strtod.c (main): Allow 1-ulp error on expected
4738         fractional results.  While not as nice from a QoI perspective, it
4739         is a quicker patch than correctly implementing decimal to binary
4740         rounding.
4741
4742 2008-03-31  Eric Blake  <ebb9@byu.net>
4743
4744         Guarantee a definition of NAN.
4745         * lib/math.in.h (NAN): Define if missing.
4746         * tests/test-math.c (main): Test it.
4747         * doc/posix-headers/math.texi (math.h): Document this.
4748         * lib/isnan.c (rpl_isnand): Use it.
4749         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
4750         * tests/test-floorf1.c (NaN): Likewise.
4751         * tests/test-frexp.c (NaN): Likewise.
4752         * tests/test-isnand.c (NaN): Likewise.
4753         * tests/test-isnanf.c (NaN): Likewise.
4754         * tests/test-round1.c (NaN): Likewise.
4755         * tests/test-roundf1.c (NaN): Likewise.
4756         * tests/test-snprintf-posix.h (NaN): Likewise.
4757         * tests/test-sprintf-posix.h (NaN): Likewise.
4758         * tests/test-trunc1.c (NaN): Likewise.
4759         * tests/test-truncf1.c (NaN): Likewise.
4760         * tests/test-vasnprintf-posix.c (NaN): Likewise.
4761         * tests/test-vasprintf-posix.c (NaN): Likewise.
4762         * modules/isnand-nolibm (Depends-on): Add math.
4763         * modules/isnanf-nolibm (Depends-on): Likewise.
4764         * modules/isnanl (Depends-on): Likewise.
4765         * modules/isnanl-nolibm (Depends-on): Likewise.
4766         * modules/snprintf-posix-tests (Depends-on): Likewise.
4767         * modules/sprintf-posix-tests (Depends-on): Likewise.
4768         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
4769         * modules/vsprintf-posix-tests (Depends-on): Likewise.
4770         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
4771         * modules/vasprintf-posix-tests (Depends-on): Likewise.
4772
4773 2008-03-31  Bruno Haible  <bruno@clisp.org>
4774
4775         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
4776         * doc/posix-functions/strtod.texi: Likewise.
4777
4778 2008-03-31  Bruno Haible  <bruno@clisp.org>
4779
4780         * tests/test-strtod.c (main): Don't use C99 syntax.
4781
4782 2008-03-31  Bruno Haible  <bruno@clisp.org>
4783
4784         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
4785         Reported by Eric Blake.
4786
4787 2008-03-31  Jim Meyering  <meyering@redhat.com>
4788
4789         Don't compare actual signbit return values.
4790         * tests/test-strtod.c (main): Rather, compare only their
4791         zero/non-zero nature.
4792
4793 2008-03-31  Eric Blake  <ebb9@byu.net>
4794
4795         More strtod documentation.
4796         * doc/posix-functions/strtod.texi (strtod): Interpret more test
4797         failures as distinct bugs.
4798
4799 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
4800
4801         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
4802         Problem reported by Erik Benada in
4803         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
4804
4805 2008-03-30  Bruno Haible  <bruno@clisp.org>
4806
4807         * tests/test-strtod.c: Add comments about which assertion fails on which
4808         platform.
4809         * doc/posix-functions/strtod.texi: Add info about many more platforms.
4810
4811 2008-03-30  Eric Blake  <ebb9@byu.net>
4812
4813         Test signbit behavior on zeros.
4814         * tests/test-signbit.c (test_signbitf): Add tests for zero.
4815         (test_signbitd, test_signbitl): Likewise.
4816
4817         More strtod touchups.
4818         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
4819         sign of negative underflow, for now.  Use .5, not .1.
4820         * doc/posix-functions/strtod.texi (strtod): Mention these
4821         limitations.
4822         Reported by Jim Meyering.
4823
4824 2008-03-30  Bruno Haible  <bruno@clisp.org>
4825
4826         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
4827         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
4828
4829 2008-03-30  Bruno Haible  <bruno@clisp.org>
4830
4831         Avoid failure when attempting to return empty iconv results on some
4832         platforms.
4833         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
4834         allocation, don't report ENOMEM when the resulting string is empty.
4835
4836 2008-03-30  Bruno Haible  <bruno@clisp.org>
4837
4838         Fix buffer overrun.
4839         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
4840         Don't consider the width for tmp_length. Check count against tmp_length
4841         before doing the padding. Ensure enough allocation during padding.
4842
4843 2008-03-30  Eric Blake  <ebb9@byu.net>
4844
4845         strtod touchups.
4846         * lib/strtod.c (strtod): Avoid compiler warnings.
4847         Reported by Jim Meyering.
4848
4849 2008-03-30  Bruno Haible  <bruno@clisp.org>
4850
4851         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
4852         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
4853         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
4854         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
4855         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
4856         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
4857         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
4858         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
4859
4860         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
4861         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
4862         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
4863         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
4864         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
4865         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
4866         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
4867         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
4868
4869         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
4870         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
4871         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
4872         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
4873         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
4874         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
4875         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
4876         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
4877
4878         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
4879         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
4880
4881         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
4882         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
4883
4884         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
4885         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
4886
4887         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
4888         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
4889         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
4890
4891         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
4892         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
4893         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
4894
4895         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
4896         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
4897         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
4898
4899         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
4900         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
4901         * modules/vasprintf (Depends-on): Add EOVERFLOW.
4902
4903         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
4904         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
4905         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
4906         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
4907         (Depends-on): Add EOVERFLOW.
4908         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
4909         (Depends-on): Add EOVERFLOW.
4910         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
4911         (Depends-on): Add EOVERFLOW.
4912         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
4913         (Depends-on): Add EOVERFLOW.
4914         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
4915         (Depends-on): Add EOVERFLOW.
4916         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
4917         (Depends-on): Add EOVERFLOW.
4918         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
4919         (Depends-on): Add EOVERFLOW.
4920         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
4921         (Depends-on): Add EOVERFLOW.
4922
4923         * lib/sprintf.c (EOVERFLOW): Remove fallback.
4924         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
4925         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
4926
4927         * lib/snprintf.c (EOVERFLOW): Remove fallback.
4928         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
4929         * modules/snprintf (Depends-on): Add EOVERFLOW.
4930
4931         * lib/poll.c (EOVERFLOW): Remove fallback.
4932         * modules/poll (Depends-on): Add EOVERFLOW.
4933
4934         * lib/getugroups.c (EOVERFLOW): Remove fallback.
4935         * modules/getugroups (Depends-on): Add EOVERFLOW.
4936
4937         * lib/getdelim.c (EOVERFLOW): Remove fallback.
4938         * modules/getdelim (Depends-on): Add EOVERFLOW.
4939
4940         * lib/ftell.c (EOVERFLOW): Remove fallback.
4941         * modules/ftell (Depends-on): Add EOVERFLOW.
4942
4943         * lib/fprintf.c (EOVERFLOW): Remove fallback.
4944         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
4945         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
4946
4947         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
4948
4949         * modules/EOVERFLOW-tests: New file.
4950         * tests/test-EOVERFLOW.c: New file.
4951
4952         * modules/EOVERFLOW: New file.
4953         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
4954
4955 2008-03-30  Bruno Haible  <bruno@clisp.org>
4956
4957         Fix bug introduced on 2007-06-10.
4958         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
4959         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
4960
4961 2008-03-30  Bruno Haible  <bruno@clisp.org>
4962
4963         Improve freadseek's efficiency after ungetc.
4964         * lib/freadseek.c: Include freadahead.h.
4965         (freadptrinc): New function, extracted from freadseek.
4966         (freadseek): Use it in a loop. Use freadahead to determine the number
4967         of loop iterations.
4968         * modules/freadseek (Depends-on): Add freadahead.
4969         (configure.ac): Require AC_C_INLINE.
4970
4971 2008-03-30  Bruno Haible  <bruno@clisp.org>
4972
4973         * lib/freadseek.c (freadseek): Don't ignore the return value of
4974         freadptr.
4975
4976 2008-03-29  Eric Blake  <ebb9@byu.net>
4977
4978         Add hex float support.
4979         * modules/strtod (Depends-on): Add c-ctype.
4980         (Link): Mention POW_LIB.
4981         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
4982         whitespace between 'e' and exponent.
4983         * tests/test-strtod.c (main): Enable hex float tests.
4984         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
4985         now provides.
4986
4987         Document various strtod bugs, with some fixes.
4988         * doc/posix-functions/strtod.texi (strtod): Document bugs with
4989         "-0x", "inf", "nan", and hex constants.
4990         * doc/posix-functions/atof.texi (atof): Likewise.
4991         * modules/stdlib (Makefile.am): Support strtod.
4992         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
4993         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
4994         detect additional strtod bugs.
4995         * lib/stdlib.in.h (rpl_strtod): Add declarations.
4996         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
4997         bool where appropriate.  Parse 'inf' and 'nan'.
4998         * tests/test-strtod.c: New file.
4999         * modules/strtod (Depends-on): Add stdbool, stdlib.
5000         (configure.ac): Turn on module indicator.
5001         * modules/strtod-tests: New module.
5002
5003 2008-03-29  Eric Blake  <ebb9@byu.net>
5004
5005         Fix ftell on mingw.
5006         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
5007         * modules/ftell-tests (Depends-on): Add binary-io.
5008         * modules/ftello-tests (Depends-on): Likewise.
5009         * tests/test-ftell.c (main): Enhance test to cover behavior after
5010         ungetc.  Enforce binary mode.
5011         * tests/test-ftello.c (main): Likewise.
5012
5013         Pass test-freadseek on cygwin.
5014         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
5015         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
5016         ungetc buffer.
5017
5018         * tests/test-fflush2.c (main): Fix typo.
5019
5020 2008-03-29  Bruno Haible  <bruno@clisp.org>
5021
5022         * tests/test-fflush2.c (main): Temporarily disable the contents of
5023         this test.
5024         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
5025         Reported by Eric Blake.
5026
5027 2008-03-28  Simon Josefsson  <simon@josefsson.org>
5028
5029         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
5030         (GC_SHA224_DIGEST_SIZE): Add.
5031
5032         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
5033         (gc_hash_digest_length): Likewise.
5034         (gc_hash_buffer): Likewise.
5035
5036 2008-03-25  Bruno Haible  <bruno@clisp.org>
5037
5038         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
5039         detail which gettext release to use.
5040         Reported by Simon Josefsson.
5041
5042 2008-03-26  Jim Meyering  <meyering@redhat.com>
5043
5044         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
5045         * modules/gnumakefile (clean-GNUmakefile): Also, use
5046         test ... && ... || : syntax rather than if-then ... fi.
5047
5048         gnumakefile: Don't double-quote-expand $(VPATH) value.
5049         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
5050
5051 2008-03-24  Eric Blake  <ebb9@byu.net>
5052
5053         Alter GNUmakefile to install into top directory.
5054         * modules/maintainer-makefile: Split, and add dependency...
5055         * modules/gnumakefile: to this new module.
5056         * build-aux/GNUmakefile: Move...
5057         * top/GNUmakefile: ...here.
5058         * build-aux/maint.mk: Move...
5059         * top/maint.mk: ...here.
5060         * MODULES.html.sh (Support for maintaining...): Document new
5061         module.
5062
5063 2008-03-23  Bruno Haible  <bruno@clisp.org>
5064
5065         * gnulib-tool: New options --vc-files, --no-vc-files.
5066         (func_usage): Document them.
5067         (vc_files): New variable.
5068         (func_import): Consider vc_files.
5069         (func_create_testdir): Set vc_files to empty.
5070         Suggested by Jim Meyering and Karl Berry.
5071
5072 2008-03-23  Bruno Haible  <bruno@clisp.org>
5073
5074         Fix regex compilation error on HP-UX 11.
5075         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
5076         * modules/regex (Files): Add m4/mbstate_t.m4.
5077         Reported by Ton Voon <ton.voon@altinity.com>.
5078
5079 2008-03-23  Bruno Haible  <bruno@clisp.org>
5080
5081         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
5082
5083 2008-03-23  Eric Blake  <ebb9@byu.net>
5084             Bruno Haible  <bruno@clisp.org>
5085
5086         Install files from top/ in the destination directory.
5087         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
5088         augmentation also for the files from top/.
5089         (func_import, func_create_testdir): Rewrite file names:
5090         top/filename -> filename.
5091
5092 2008-03-23  Bruno Haible  <bruno@clisp.org>
5093
5094         Tweak "gnulib --version" output.
5095         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
5096
5097 2008-03-23  Bruno Haible  <bruno@clisp.org>
5098
5099         Tweak "gnulib --version" output.
5100         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
5101         rather than contents of ChangeLog, when possible.
5102
5103 2008-03-21  Eric Blake  <ebb9@byu.net>
5104
5105         More --version tweaks.
5106         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
5107         date of last ChangeLog entry.
5108
5109 2008-03-21  Jim Meyering  <meyering@redhat.com>
5110
5111         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
5112
5113 2008-03-20  Eric Blake  <ebb9@byu.net>
5114
5115         VPATH fix.
5116         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
5117
5118 2008-03-20  Simon Josefsson  <simon@josefsson.org>
5119
5120         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
5121         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
5122
5123 2008-03-20  Eric Blake  <ebb9@byu.net>
5124
5125         Sync GNUmakefile with coreutils.
5126         * build-aux/GNUmakefile (have-Makefile): Rename...
5127         (_have-Makefile): ...to this, for namespace consideration.
5128         (GNUmakefile.cfg): Include, if present.
5129         (_autoreconf): Define a default.
5130         (_is-dist-target): New rule for rebuilds to pick up intra-release
5131         version.
5132         (maint-cfg.mk): Rename...
5133         (cfg.mk): ...to this.
5134
5135 2008-03-18  Jim Meyering  <meyering@redhat.com>
5136
5137         New script and module: mktempd
5138         * MODULES.html.sh (maint+release support): Add mktempd.
5139         * build-aux/mktempd: New file.
5140         * modules/mktempd: New file.
5141
5142 2008-03-15  Jim Meyering  <meyering@redhat.com>
5143
5144         Undo last change.
5145         * lib/sha1.c, lib/md5.c: 63 != ~63.
5146         Reported by Andreas Schwab.
5147
5148         sha1.c, md5.c: Hoist a redundant expression.
5149         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
5150         "ctx->buflen" only once, before calling *_process_block.
5151         * lib/md5.c (md5_process_bytes): Likewise.
5152
5153 2008-03-14  Eric Blake  <ebb9@byu.net>
5154
5155         Bump copyright year in files generated by gnulib-tool.
5156         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
5157         gnulib-tool, rather than hard-coding it.
5158
5159         Fix 'gnulib-tool --version' output to work with git.
5160         * gnulib-tool (func_gnulib_dir): New function, extracted from...
5161         (startup): ...here.
5162         (func_version): Use it to invoke git-version-gen, rather than
5163         relying on CVS keyword expansion.  Modernize wording.
5164         (cvsdatestamp, last_checkin_date, version): Kill unused
5165         variables.
5166
5167 2008-03-12  Jim Meyering  <meyering@redhat.com>
5168
5169         Recognize optional cast of the argument to free.
5170         * build-aux/useless-if-before-free: Update regexps.
5171
5172         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
5173
5174 2008-03-11  Bruno Haible  <bruno@clisp.org>
5175
5176         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
5177         by a single package.
5178         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
5179         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
5180         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
5181         Reported by Sam Steingold <sds@gnu.org>.
5182
5183 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5184
5185         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
5186         repositories.
5187
5188 2008-03-11  Bruno Haible  <bruno@clisp.org>
5189
5190         Avoid conflicts between local macro definitions.
5191         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
5192         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
5193
5194 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
5195             Bruno Haible  <bruno@clisp.org>
5196
5197         Make va_copy work with some version of xlc on AIX 5.1.
5198         * lib/stdarg.in.h: New file.
5199         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
5200         On AIX, use a <stdarg.h> file substitute.
5201         * modules/stdarg (Files): Add lib/stdarg.in.h.
5202         (Depends-on): Add include_next.
5203         (Makefile.am): Build a stdarg.h substitute if requested.
5204         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
5205
5206 2008-03-10  Bruno Haible  <bruno@clisp.org>
5207
5208         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
5209         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
5210         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5211
5212 2008-03-10  Bruno Haible  <bruno@clisp.org>
5213
5214         * modules/stdlib (Depends-on): Add include_next, remove
5215         absolute-header.
5216
5217 2008-03-09  Bruno Haible  <bruno@clisp.org>
5218
5219         * lib/freadahead.h (freadahead): Document more precisely.
5220         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
5221         the sum of both buffer sizes.
5222         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
5223         * NEWS: Document the change.
5224
5225 2008-03-09  Bruno Haible  <bruno@clisp.org>
5226
5227         Extend freadptr to return also the buffer size.
5228         * lib/freadptr.h (freadptr): Add sizep argument.
5229         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
5230         (freadptr): Add sizep argument. Determine buffer size like freadahead
5231         does.
5232         * tests/test-freadptr.c: Don't include freadahead.h.
5233         (main): Adapt for new calling convention of freadptr.
5234         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
5235         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
5236         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
5237         tests/test-freadptr2.sh.
5238         (Depends): Remove freadahead.
5239         (TESTS): Add test-freadptr2.sh.
5240         (check_PROGRAMS): Add test-freadptr2.
5241
5242 2008-03-09  Bruno Haible  <bruno@clisp.org>
5243
5244         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
5245         Report and solution by Simon Josefsson.
5246
5247 2008-03-06  Bruno Haible  <bruno@clisp.org>
5248
5249         Make fflush after ungetc work on BSD platforms.
5250         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
5251         * tests/test-fflush2.c: New file.
5252         * tests/test-fflush2.sh: New file.
5253         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
5254         tests/test-fflush2.c.
5255         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
5256         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
5257
5258 2008-03-06  Eric Blake  <ebb9@byu.net>
5259
5260         Likewise for ftello.
5261         * modules/ftello (Dependencies): Add extensions.
5262         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
5263
5264 2008-03-06  Bruno Haible  <bruno@clisp.org>
5265
5266         * modules/fseeko (Dependencies): Add extensions.
5267         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
5268         Needed on glibc systems.
5269
5270 2008-03-06  Bruno Haible  <bruno@clisp.org>
5271
5272         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
5273         email address.
5274         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5275
5276 2008-03-06  Bruno Haible  <bruno@clisp.org>
5277
5278         * users.txt: Add libgnupdf.
5279
5280 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
5281
5282         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
5283         (Header File Substitutes, Function Substitutes,
5284         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
5285         (Build robot for gnulib): Fix typo.
5286
5287 2008-03-06  Bruno Haible  <bruno@clisp.org>
5288
5289         * doc/gnulib-tool.texi (VCS Issues): Small updates.
5290         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5291
5292 2008-03-06  Bruno Haible  <bruno@clisp.org>
5293
5294         * doc/func.texi: New file, extracted from doc/gnulib.texi.
5295         * doc/gnulib.texi: Include it.
5296
5297 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5298
5299         * modules/func (License): Change license to unlimited; there was
5300         no LGPL parts in the module anyway.
5301
5302 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5303
5304         * modules/__func__: Renamed to modules/func.
5305         * modules/__func__-tests: Renamed to modules/func-tests.
5306         * tests/test-__func__.c: Renamed to tests/test-func.c.
5307         * m4/__func__.m4: Renamed to m4/func.m4.
5308         * doc/gnulib.texi (__func__): Section renamed to func.
5309         Suggested by Eric Blake <ebb9@byu.net>.
5310
5311 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5312
5313         * doc/gnulib.texi (__func__): Use C99 terminology when talking
5314         about __func__.  Make example self-contained.  Suggested by Eric
5315         Blake <ebb9@byu.net>.
5316
5317         * tests/test-__func__.c (main): Avoid extraneous () around __func.
5318         Suggested by Eric Blake <ebb9@byu.net>.
5319
5320 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5321
5322         * modules/__func__: New file.
5323         * modules/__func__-tests: New file.
5324         * tests/test-__func__.c: New file.
5325         * m4/__func__.m4: New file.
5326         * doc/gnulib.texi (__func__): Document __func__ module.
5327
5328 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5329
5330         * modules/byteswap (License): Re-license as LGPLv2+.
5331
5332 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5333
5334         * doc/Makefile: Add pdf target.
5335
5336 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5337
5338         * modules/inline (License): Use 'unlimited', since there are only
5339         *.m4 files in this module.
5340
5341 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5342             Bruno Haible  <bruno@clisp.org>
5343
5344         Add support for HP C 7.1 on OpenVMS 8.3.
5345         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
5346
5347 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5348
5349         Update VMS specifics.
5350         * lib/getopt.c [VMS]: Remove include of unixlib.h.
5351
5352 2008-03-02  Jim Meyering  <meyering@redhat.com>
5353
5354         Remove the last dependency on the "free" module.
5355         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
5356         Reported by Bob Proulx.
5357
5358         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
5359
5360         Remove useless "if" tests before free.  Deprecate "free" module.
5361         * doc/posix-functions/free.texi: Mention that this
5362         module is no longer useful.
5363         * modules/free (Notice): Say this module is obsolete.
5364         * modules/readutmp (Depends-on): Remove free.
5365         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
5366         * lib/putenv.c (putenv): Likewise.
5367         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
5368         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
5369         * tests/test-c-strcasestr.c (main): Likewise.
5370         * tests/test-c-strstr.c (main): Likewise.
5371         * tests/test-mbscasestr1.c (main): Likewise.
5372         * tests/test-mbscasestr2.c (main): Likewise.
5373         * tests/test-mbsstr1.c (main): Likewise.
5374         * tests/test-mbsstr2.c (main): Likewise.
5375         * tests/test-memmem.c (main): Likewise.
5376         * tests/test-strcasestr.c (main): Likewise.
5377         * tests/test-striconv.c (main): Likewise.
5378         * tests/test-striconveh.c (main): Likewise.
5379         * tests/test-striconveha.c (main): Likewise.
5380         * tests/test-strstr.c (main): Likewise.
5381
5382         * build-aux/git-version-gen: Adjust a comment and the Usage string.
5383
5384         bootstrap: sync from coreutils again
5385         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
5386
5387 2008-03-01  Jim Meyering  <meyering@redhat.com>
5388
5389         bootstrap: sync from coreutils
5390         * build-aux/bootstrap (update_po_files): Copy a .po file into place
5391         also when the target doesn't exist.
5392
5393 2008-03-01  Eric Blake  <ebb9@byu.net>
5394
5395         Fix bugs in last patch.
5396         * lib/memchr2.c (memchr2): Fix typo.
5397         * tests/test-memchr2.c: Test previous bug, and don't use GNU
5398         extension.
5399         Reported by Bruce Korb.
5400
5401         New module 'memchr2'.
5402         * modules/memchr2: New file.
5403         * modules/memchr2-tests: Likewise.
5404         * lib/memchr2.h: Likewise.
5405         * lib/memchr2.c: Likewise, based on memchr.c.
5406         * tests/test-memchr2.c: New test.
5407         * MODULES.html.sh (String handling): Add memchr2.
5408
5409 2008-02-29  Bruno Haible  <bruno@clisp.org>
5410
5411         * modules/freadseek-tests: New file.
5412         * tests/test-freadseek.sh: New file.
5413         * tests/test-freadseek.c: New file.
5414
5415         New module 'freadseek'.
5416         * modules/freadseek: New file.
5417         * lib/freadseek.h: New file.
5418         * lib/freadseek.c: New file.
5419         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
5420
5421 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
5422
5423         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
5424         wydawca.
5425
5426         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
5427         program_invocation_name and program_invocation_short_name are
5428         present.
5429
5430 2008-02-28  Bruno Haible  <bruno@clisp.org>
5431
5432         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
5433         * tests/test-freadptr.sh: Also test non-seekable stdin.
5434
5435 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
5436
5437         * build-aux/bootstrap (source_base, m4_base)
5438         (doc_base, tests_base): New variables.
5439         (gnulib_tool_options): Do not hardcode base directories, use
5440         the above variables instead.
5441
5442 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
5443
5444         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
5445
5446 2008-02-28  Bruno Haible  <bruno@clisp.org>
5447
5448         * modules/freadptr-tests: New file.
5449         * tests/test-freadptr.sh: New file.
5450         * tests/test-freadptr.c: New file.
5451
5452         New module 'freadptr'.
5453         * modules/freadptr: New file.
5454         * lib/freadptr.h: New file.
5455         * lib/freadptr.c: New file.
5456         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
5457
5458 2008-02-26  Karl Berry  <karl@freefriends.org>
5459
5460         Sync from Libtool:
5461         * libltdl/argz.c (argz_add, argz_count): New functions.
5462         * libltdl/argz.in.h: Declare them.
5463         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
5464
5465 2008-02-22  Bruno Haible  <bruno@clisp.org>
5466
5467         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
5468         is a pointer type.  Needed for HP-UX 10.
5469         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
5470         * doc/posix-functions/gmtime_r.texi: Likewise.
5471         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5472
5473 2008-02-24  Bruno Haible  <bruno@clisp.org>
5474
5475         * modules/environ-tests: New file.
5476         * tests/test-environ.c: New file.
5477
5478         New module 'environ'.
5479         * modules/environ: New file.
5480         * lib/unistd.in.h (environ): New declaration.
5481         * m4/environ.m4: New file.
5482         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
5483         after use.
5484         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
5485         HAVE_DECL_ENVIRON.
5486         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
5487         HAVE_DECL_ENVIRON.
5488         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
5489         wrong claim that 'environ' is missing on some systems.
5490         * modules/execute (Depends-on): Add environ.
5491         * lib/execute.c (environ): Remove fallback declaration.
5492         * modules/pipe (Depends-on): Add environ.
5493         * lib/pipe.c (environ): Remove fallback declaration.
5494         * modules/setenv (Depends-on): Add environ.
5495         * lib/setenv.c (environ): Remove fallback declaration.
5496         * modules/unsetenv (Depends-on): Add environ.
5497         * lib/unsetenv.c (environ): Remove fallback declaration.
5498         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
5499         m4/environ.m4.
5500         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
5501         (gl_PREREQ_UNSETENV): Likewise.
5502
5503 2008-02-24  Bruno Haible  <bruno@clisp.org>
5504
5505         * doc/posix-functions/environ.texi: Document the MacOS X problem.
5506
5507 2008-02-20  Bob Proulx  <bob@proulx.com>
5508
5509         Enable use of older two part flavor 'git describe'.
5510         * build-aux/git-version-gen: If using the older two part flavor of
5511         git version then recreate the third part now present in the
5512         newer three part flavor of git describe.
5513
5514 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
5515
5516         * lib/fts.c (fts_build): Typo correction to comment.
5517
5518 2008-02-17  Bruno Haible  <bruno@clisp.org>
5519
5520         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
5521         generating no-op conflicts.
5522
5523 2008-02-17  Bruno Haible  <bruno@clisp.org>
5524
5525         Speed up by 10%.
5526         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
5527         result_entries, rather than an index-based loop.
5528
5529 2008-02-17  Bruno Haible  <bruno@clisp.org>
5530
5531         Speed up by 25%.
5532         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
5533         'hashcode_cached'.
5534         (entry_create): New function.
5535         (entry_hashcode): Use the cached hashcode if possible.
5536         (read_changelog_file, try_split_merged_entry): Use entry_create.
5537
5538 2008-02-17  Bruno Haible  <bruno@clisp.org>
5539
5540         Speed up from O(n^2) to O(n) for long ChangeLog files.
5541         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
5542         (read_changelog_file): Change implementation of entries_reversed list
5543         to rbtreehash.
5544         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
5545
5546 2008-02-17  Bruno Haible  <bruno@clisp.org>
5547
5548         New option --split-merged-entry.
5549         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
5550         (find_paragraph_end, try_split_merged_entry): New functions.
5551         (long_options): Add option --split-merged-entry.
5552         (usage): Document option --split-merged-entry.
5553         (main): Implement option --split-merged-entry.
5554         Reported by Eric Blake.
5555
5556 2008-02-17  Bruno Haible  <bruno@clisp.org>
5557
5558         * lib/git-merge-changelog.c: Include c-strstr.h.
5559         (main): Support the "git pull --rebase" situation.
5560         * modules/git-merge-changelog (Depends-on): Add c-strstr.
5561         Reported by Eric Blake.
5562
5563 2008-02-16  Eric Blake  <ebb9@byu.net>
5564
5565         Avoid doubling \ in common case of "c-maybe" quoting style.
5566         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
5567         eliding outer quotes.
5568         * lib/quotearg.h: Document this.
5569         * tests/test-quotearg.c (result_strings, inputs, results_g)
5570         (flag_results, locale_results): Test it by adding a new string to
5571         each test group.
5572         (compare_strings): Test new string.
5573
5574 2008-02-13  Eric Blake  <ebb9@byu.net>
5575
5576         Avoid trigraph quoting in default output.
5577         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
5578         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
5579         unless explicitly requested.
5580         * tests/test-quotearg.c (flag_results, main): Add additional tests.
5581
5582 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
5583
5584         Don't rely on signed integer overflowing to negative value.
5585         * lib/getugroups.c (getugroups): Include <limits.h>.
5586         Instead, compare against INT_MAX, and increment only if the test passes.
5587
5588 2008-02-13  Jim Meyering  <meyering@redhat.com>
5589         and Eric Blake  <ebb9@byu.net>
5590
5591         Avoid shadowing warning and compile errors on Linux.
5592         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
5593         forwarding macros on Linux.
5594         (dcgettext): Define a stub, for Linux.
5595         (results_g, main): Avoid warnings.
5596
5597 2008-02-12  Eric Blake  <ebb9@byu.net>
5598
5599         Silence warning in last patch.
5600         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
5601
5602         Quotearg part 4: add tests, fix c-maybe colon quoting.
5603         * lib/quotearg.h: Improve documentation.
5604         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
5605         escapes when adding outer quotes.  When quoting trigraphs, use
5606         valid C notation.  When quoting NUL, omit extra characters if next
5607         character is not digit.  Alter prototype.
5608         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
5609         callers.
5610         * modules/quotearg-tests: New module.
5611         * tests/test-quotearg.c: New test.
5612
5613 2008-02-07  Eric Blake  <ebb9@byu.net>
5614
5615         Quotearg part 3: add flag to control outer quote elision.
5616         * lib/quotearg.h (c_maybe_quoting_style): New style.
5617         (enum quoting_flags): Better documentation of flags.
5618         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
5619         c-maybe style.
5620         (quotearg_buffer_restyled): Handle new flag to elide outer
5621         quotes.
5622
5623         Quotearg part 2: add flag that can control NUL elision.
5624         * lib/quotearg.h (set_quoting_flags): New prototype.
5625         * lib/quotearg.c (struct quoting_options): Add flag field.
5626         (set_quoting_flags): New function.
5627         (quotearg_buffer_restyled): Add flags parameter.
5628         (quotearg_alloc_mem): Set the flag if length cannot be returned.
5629         (quotearg_n_options): Set the flag, since length cannot be
5630         returned.
5631         (quoting_options_from_style): Default flags correctly.
5632
5633         Quotearg part 1: more wrappers, restore quotearg_char state.
5634         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
5635         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
5636         (quotearg_colon_mem): New wrappers.
5637         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
5638         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
5639         functions.
5640         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
5641         (quotearg_colon_mem): New functions.
5642
5643 2008-02-11  Bruno Haible  <bruno@clisp.org>
5644
5645         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
5646         library in the current directory: it does not work with parallel make.
5647         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5648
5649 2008-02-11  Bruno Haible  <bruno@clisp.org>
5650
5651         * .gitattributes: New file.
5652
5653 2008-02-11  Jim Meyering  <meyering@redhat.com>
5654
5655         useless-if-before-free: Fix reversed exit values.
5656         * build-aux/useless-if-before-free: Use correct values
5657         for EXIT_MATCH and EXIT_NO_MATCH.
5658
5659         * build-aux/useless-if-before-free: Close stdout carefully.
5660
5661 2008-02-10  Bruno Haible  <bruno@clisp.org>
5662
5663         New module 'git-merge-changelog'.
5664         * modules/git-merge-changelog: New file.
5665         * lib/git-merge-changelog.c: New file.
5666
5667 2008-02-10  Jim Meyering  <meyering@redhat.com>
5668
5669         useless-if-before-free: New option: --list (-l).
5670
5671         useless-if-before-free: Don't exit immediately upon open failure.
5672         * build-aux/useless-if-before-free: Exit 2 for errors.
5673         Upon failure to open a file, don't exit immediately.
5674         Rather, just warn and continue with any remaining files.
5675
5676 2008-02-10  Bruno Haible  <bruno@clisp.org>
5677
5678         New abstract list operation 'node_set_value'.
5679         * lib/gl_list.h (gl_list_node_set_value): New function.
5680         (struct gl_list_implementation): New field node_set_value.
5681         * lib/gl_list.c (gl_list_node_set_value): New function.
5682         * lib/gl_array_list.c (gl_array_node_set_value): New function.
5683         (gl_array_list_implementation): Update.
5684         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
5685         (gl_carray_list_implementation): Update.
5686         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
5687         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
5688         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
5689         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
5690         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
5691         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
5692         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
5693         Update.
5694         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
5695         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
5696         (gl_sublist_list_implementation): Update.
5697
5698 2008-02-10  Bruno Haible  <bruno@clisp.org>
5699
5700         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
5701         Needed when ELEMENT is #defined to 'some_type *'.
5702
5703 2008-02-10  Jim Meyering  <meyering@redhat.com>
5704
5705         New script and module: useless-if-before-free
5706         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
5707         * build-aux/useless-if-before-free: New file.
5708         * modules/useless-if-before-free: New file.
5709
5710         * build-aux/gitlog-to-changelog: Use committer date, not author date.
5711
5712         xstrtol_error: Fix typo.
5713         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
5714         s/exit_failure/exit_status/.
5715
5716 2008-02-09  Jim Meyering  <meyering@redhat.com>
5717
5718         New script and module: gitlog-to-changelog
5719         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
5720         * modules/gitlog-to-changelog: New file.
5721         * build-aux/gitlog-to-changelog: New file.
5722
5723 2008-02-08  Jim Meyering  <meyering@redhat.com>
5724
5725         Avoid two "parameter unused" warnings.
5726         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
5727         Mark "st" as used.
5728
5729         Use "git COMMAND", not "git-COMMAND".
5730         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
5731         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
5732         * build-aux/git-version-gen: Use "git status", not "git-status".
5733
5734 2008-02-07  Bruno Haible  <bruno@clisp.org>
5735
5736         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
5737         Avoids a crash on Windows Vista.
5738         Reported by Adam Strzelecki <ono@java.pl> via
5739         Simon Josefsson <simon@josefsson.org>.
5740
5741 2008-02-06  Bruno Haible  <bruno@clisp.org>
5742
5743         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
5744         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
5745         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
5746         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
5747         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5748         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5749         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
5750         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
5751         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5752         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5753         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5754         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5755         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5756         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5757         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5758         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
5759         left-adjust flag.
5760         * tests/test-snprintf-posix.h (test_function): Likewise.
5761         * tests/test-sprintf-posix.h (test_function): Likewise.
5762         * tests/test-vasprintf-posix.c (test_function): Likewise.
5763         * doc/posix-functions/fprintf.texi: Update.
5764         * doc/posix-functions/printf.texi: Update.
5765         * doc/posix-functions/snprintf.texi: Update.
5766         * doc/posix-functions/sprintf.texi: Update.
5767         * doc/posix-functions/vfprintf.texi: Update.
5768         * doc/posix-functions/vprintf.texi: Update.
5769         * doc/posix-functions/vsnprintf.texi: Update.
5770         * doc/posix-functions/vsprintf.texi: Update.
5771         Reported by Peter Fales <psfales@alcatel-lucent.com>.
5772
5773 2008-02-06  Bruno Haible  <bruno@clisp.org>
5774
5775         Fix bug introduced on 2008-01-26.
5776         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
5777
5778 2008-02-06  Bruno Haible  <bruno@clisp.org>
5779
5780         Fix bug introduced on 2007-06-10.
5781         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
5782         !NEED_PRINTF_FLAG_ZERO.
5783
5784 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
5785
5786         getloadavg: use libperfstat on AIX5
5787         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
5788
5789 2008-02-03  Bruno Haible  <bruno@clisp.org>
5790
5791         * lib/diffseq.h: Add comments about required #includes.
5792         Reported by Michael Biggs <gnulib@doubleplum.net>.
5793
5794 2008-02-01  Bruno Haible  <bruno@clisp.org>
5795
5796         * users.txt: Add gnuit.
5797
5798 2008-01-31  Bruno Haible  <bruno@clisp.org>
5799
5800         * lib/md4.c (set_uint32): Mark as inline.
5801         * lib/md5.c (set_uint32): Likewise.
5802         * lib/sha1.c (set_uint32): Likewise.
5803         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
5804         * m4/md5.m4 (gl_MD5): Likewise.
5805         * m4/sha1.m4 (gl_SHA1): Likewise.
5806
5807 2008-01-31  Jim Meyering  <meyering@redhat.com>
5808
5809         Use "sizeof VAR", rather than a literal "4".
5810         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
5811         * lib/md4.c (md4_read_ctx): Likewise.
5812         * lib/sha1.c (sha1_read_ctx): Likewise.
5813
5814 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5815
5816         * tests/test-sha1.c: New file, based on test-md5.c.
5817
5818         * modules/crypto/sha1-tests: New file.
5819
5820 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5821
5822         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
5823
5824 2008-01-31  Jim Meyering  <meyering@redhat.com>
5825
5826         Prefer "sizeof v" over the equivalent "4".
5827         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
5828         * lib/md5.c (set_uint32): Likewise.
5829         * lib/sha1.c (set_uint32): Likewise.
5830
5831 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5832
5833         * lib/sha1.c (set_uint32): Mark function as static.
5834
5835 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5836
5837         md2: clarify comments to say that alignment is not required.
5838         * lib/md2.h: Remove warning about alignment in comment.
5839         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
5840         never been required.
5841
5842 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5843
5844         md4: adapt alignment constraint fix from sha1.
5845         * lib/md4.c (set_uint32): New function, from sha1.c
5846         (md4_read_ctx): Use it.
5847         (md4_finish_ctx): Doc fix.
5848         * lib/md4.h: Doc fix.
5849
5850 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5851
5852         md5: adapt alignment constraint fix from sha1.
5853         * lib/md5.c (set_uint32): New function, from sha1.c
5854         (md5_read_ctx): Use it.
5855         (md5_finish_ctx): Doc fix.
5856         * lib/md5.h: Doc fix.
5857
5858 2008-01-30  Peter Palfrader  <weasel@debian.org>
5859
5860         sha1: remove the result buffer alignment constraint
5861         * lib/sha1.c (set_uint32): New function.
5862         (sha1_read_ctx): Rewrite to remove the result buffer alignment
5863         constraint.
5864         (sha1_finish_ctx): Remove comment warning about alignment constraint.
5865         * lib/sha1.h: Likewise.
5866
5867 2008-01-30  Andreas Schwab  <schwab@suse.de>
5868             Bruno Haible  <bruno@clisp.org>
5869
5870         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
5871         correct definition of LDBL_MIN_EXP.
5872
5873 2008-01-30  Karl Berry  <karl@gnu.org>
5874
5875         * config/srclist-update: try to preserve x bit on updates.
5876         * config/srclistvars.sh: update for karl.
5877
5878 2008-01-29  Jim Meyering  <meyering@redhat.com>
5879
5880         vasnprintf.c: Avoid warning about unused label
5881         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
5882         "overflow" label definition and associated code with the
5883         same cpp condition that guards the sole use of that label.
5884
5885 2008-01-26  Bruno Haible  <bruno@clisp.org>
5886
5887         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
5888         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
5889         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
5890         * lib/isnanl-nolibm.h (isnanl): Likewise.
5891         Reported by Paul Eggert <eggert@cs.ucla.edu>.
5892
5893 2008-01-26  Bruno Haible  <bruno@clisp.org>
5894
5895         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
5896         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
5897
5898 2008-01-26  Bruno Haible  <bruno@clisp.org>
5899
5900         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
5901         GCC >= 4.0 built-in.
5902         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
5903
5904 2008-01-26  Bruno Haible  <bruno@clisp.org>
5905
5906         Rename isnan, applicable to 'double' only, to isnand.
5907         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
5908         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
5909         (configure.ac): Update.
5910         (Include): Replace "isnan.h" with "isnand.h".
5911         * m4/isnand.m4: Renamed from m4/isnan.m4.
5912         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
5913         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
5914         instead of isnan.c.
5915         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
5916         instead of HAVE_ISNAN_IN_LIBC.
5917         (isnand): Renamed from isnan.
5918         * lib/isnand.c: New file.
5919         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
5920         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
5921         (Makefile.am): Update.
5922         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
5923         Include isnand.h instead of isnan.h.
5924         (main): Test isnand instead of isnan.
5925         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
5926         isnan-nolibm.
5927         * modules/frexp (Depends-on): Likewise.
5928         * modules/frexp-tests (Depends-on): Likewise.
5929         * modules/frexp-nolibm (Depends-on): Likewise.
5930         * modules/frexp-nolibm-tests (Depends-on): Likewise.
5931         * modules/isfinite (Depends-on): Likewise.
5932         * modules/round-tests (Depends-on): Likewise.
5933         * modules/signbit (Depends-on): Likewise.
5934         * modules/signbit-tests (Depends-on): Likewise.
5935         * modules/snprintf-posix (Depends-on): Likewise.
5936         * modules/sprintf-posix (Depends-on): Likewise.
5937         * modules/trunc-tests (Depends-on): Likewise.
5938         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
5939         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
5940         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
5941         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
5942         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
5943         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
5944         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
5945         * modules/vasnprintf-posix (Depends-on): Likewise.
5946         * modules/vasprintf-posix (Depends-on): Likewise.
5947         * modules/vfprintf-posix (Depends-on): Likewise.
5948         * modules/vsnprintf-posix (Depends-on): Likewise.
5949         * modules/vsprintf-posix (Depends-on): Likewise.
5950         * lib/frexp.c: Include isnand.h instead of isnan.h.
5951         (ISNAN): Set to isnand instead of isnan.
5952         * lib/isfinite.c: Include isnand.h instead of isnan.h.
5953         (gl_isfinited): Use isnand instead of isnan.
5954         * lib/signbitd.c: Include isnand.h instead of isnan.h.
5955         (gl_signbitd): Use isnand instead of isnan.
5956         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
5957         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
5958         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
5959         (main): Use isnand instead of isnan.
5960         * tests/test-round1.c: Include isnand.h.
5961         (main): Use isnand instead of isnan.
5962         * tests/test-round2.c: Include isnand.h instead of isnan.h.
5963         (ISNAN): Set to isnand instead of isnan.
5964         * tests/test-trunc1.c: Include isnand.h.
5965         (main): Use isnand instead of isnan.
5966         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
5967         (equal): Use isnand instead of isnan.
5968         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
5969         isnand-nolibm.
5970         * NEWS: Mention the change.
5971
5972 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
5973             Bruno Haible  <bruno@clisp.org>
5974
5975         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
5976         the GCC builtins for signbits are present and set
5977         REPLACE_SIGNBIT_USING_GCC if so.
5978         * lib/math.in.h (signbit): Define using GCC builtins if
5979         REPLACE_SIGNBIT_USING_GCC is set.
5980         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
5981         REPLACE_SIGNBIT_USING_GCC.
5982         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
5983
5984 2008-01-25  Jim Meyering  <meyering@redhat.com>
5985
5986         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
5987         * lib/poll.c: Include <config.h>, not "config.h".
5988         * tests/test-getaddrinfo.c: Likewise.
5989
5990 2008-01-25  Simon Josefsson  <simon@josefsson.org>
5991
5992         * modules/sockets-tests: New file.
5993
5994 2008-01-24  Simon Josefsson  <simon@josefsson.org>
5995
5996         * modules/sockets: New module, can be used to call WSA_Startup and
5997         WSA_Cleanup when needed.
5998
5999         * lib/sockets.h, lib/sockets.c: New files.
6000
6001         * m4/sockets.m4: New file.
6002
6003         * tests/test-sockets.c: New file.
6004
6005 2008-01-19  Bruno Haible  <bruno@clisp.org>
6006
6007         * doc/posix-headers: Renamed from doc/headers.
6008         * doc/posix-functions: Renamed from doc/functions.
6009         * doc/gnulib.texi: Update.
6010
6011 2008-01-19  Bruno Haible  <bruno@clisp.org>
6012
6013         * doc/glibc-functions/strcasestr.texi: Include contents of
6014         doc/functions/strcasestr.texi, fixing the list of platforms.
6015         * doc/functions/strcasestr.texi: Remove file.
6016
6017 2008-01-19  Bruno Haible  <bruno@clisp.org>
6018
6019         * doc/glibc-functions/memmem.texi: Include contents of
6020         doc/functions/memmem.texi.
6021         * doc/functions/memmem.texi: Remove file.
6022
6023 2008-01-18  Bruno Haible  <bruno@clisp.org>
6024
6025         * doc/glibc-functions/*.texi: New files.
6026         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
6027         to use the new files.
6028
6029 2008-01-17  Bruno Haible  <bruno@clisp.org>
6030
6031         * tests/test-gethostname.c (main): Fix printf statement.
6032
6033 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6034
6035         * modules/gethostname-tests: New file.
6036
6037         * tests/test-gethostname.c: New file.
6038
6039 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6040
6041         * lib/gethostname.c: Include string.h unconditionally, strncpy is
6042         used by the UNAME case.  Reported by Bruno Haible
6043         <bruno@clisp.org>.
6044
6045 2008-01-17  Eric Blake  <ebb9@byu.net>
6046
6047         Convert c-strcasestr to be more efficient.
6048         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
6049         (Depends-on): Add c-strcase, remove malloca, strnlen.
6050         * tests/test-c-strcasestr.c (main): Enhance test.
6051         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
6052
6053 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
6054
6055         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
6056         Use it in creating po/Makevars.
6057
6058 2008-01-15  Simon Josefsson  <simon@josefsson.org>
6059
6060         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
6061         Applications that requires it should initialize libgcrypt
6062         manually.
6063
6064 2008-01-16  Simon Josefsson  <simon@josefsson.org>
6065
6066         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
6067
6068 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
6069
6070         Fix problem with getdate on mingw32 reported by Simon Josefsson
6071         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
6072         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
6073         tzname", when deciding whether to declare tzname.
6074         * lib/strftime.c (tzname): Likewise.
6075
6076 2008-01-15  Bruno Haible  <bruno@clisp.org>
6077
6078         Work around a MacOS X 10.5 bug in frexpl().
6079         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
6080         * doc/functions/frexpl.texi: Document the bug.
6081         Reported by Elias Pipping <pipping@gentoo.org>.
6082
6083 2008-01-14  Eric Blake  <ebb9@byu.net>
6084
6085         Touch up previous patch.
6086         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
6087         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
6088
6089         Convert strcasestr module to use Two-Way algorithm.
6090         * modules/strcasestr-simple: New module, based on the old
6091         strcasestr, but with Two-Way rather than KMP.
6092         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
6093         * lib/string.in.h (rpl_strcasestr): Declare.
6094         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
6095         performance.
6096         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
6097         * modules/string (Makefile.am): Support strcasestr.
6098         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6099         * modules/strcasestr-tests (Depends-on): Check for alarm.
6100         * tests/test-strcasestr.c: Augment test.
6101         * lib/str-two-way.h: Clean up stray macro.
6102         * NEWS: Document new module.
6103         * MODULES.html.sh (string handling): Likewise.
6104         * doc/functions/strcasestr.texi: New file.
6105         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
6106         here, since it is not a POSIX function.
6107
6108 2008-01-14  Colin Watson  <cjwatson@debian.org>
6109             Bruno Haible  <bruno@clisp.org>
6110
6111         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
6112         works fine; if not, set REPLACE_STRSIGNAL.
6113         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
6114         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6115         REPLACE_STRSIGNAL.
6116         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
6117         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
6118         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
6119
6120 2008-01-14  Bruno Haible  <bruno@clisp.org>
6121
6122         * modules/strsignal (Include): Change to <string.h>.
6123
6124 2008-01-14  Colin Watson  <cjwatson@debian.org>
6125
6126         * modules/argp (Notice): Add a notice recommending to change
6127         XGETTEXT_OPTIONS.
6128         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
6129
6130 2008-01-13  Colin Watson  <cjwatson@debian.org>
6131
6132         * modules/strsignal-tests: New file.
6133         * tests/test-strsignal.c: New file.
6134
6135         * lib/strsignal.c: New file, from glibc with modifications.
6136         * lib/siglist.h: New file, from glibc with modifications.
6137         * lib/string.in.h (strsignal): New declaration.
6138         * m4/strsignal.m4: New file.
6139         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6140         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
6141         * modules/strsignal: New file.
6142         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
6143         HAVE_DECL_STRSIGNAL.
6144
6145 2008-01-13  Bruno Haible  <bruno@clisp.org>
6146
6147         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
6148         locale encoding is not ASCII. Needed for OpenBSD 4.0.
6149         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
6150         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
6151
6152 2008-01-13  Bruno Haible  <bruno@clisp.org>
6153
6154         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
6155         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
6156         * lib/argp.h (__attribute__): Likewise.
6157         * lib/c-stack.c (__attribute__): Likewise.
6158         * lib/error.h (__attribute__): Likewise.
6159         * lib/fts.c (__attribute__): Likewise.
6160         * lib/openat.h (__attribute__): Likewise.
6161         * lib/stdio.in.h (__attribute__): Likewise.
6162         * lib/string.in.h (__attribute__): Likewise.
6163         * lib/utimens.c (__attribute__): Likewise.
6164         * lib/vasnprintf.h (__attribute__): Likewise.
6165         * lib/xalloc.h (__attribute__): Likewise.
6166         * lib/xprintf.h (__attribute__): Likewise.
6167         * lib/xstrtol.h (__attribute__): Likewise.
6168         * lib/xvasprintf.h (__attribute__): Likewise.
6169
6170 2008-01-12  Bruno Haible  <bruno@clisp.org>
6171
6172         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
6173         * doc/glibc-headers/a.out.texi: New file.
6174         * doc/glibc-headers/aliases.texi: New file.
6175         * doc/glibc-headers/alloca.texi: New file.
6176         * doc/glibc-headers/ar.texi: New file.
6177         * doc/glibc-headers/argp.texi: New file.
6178         * doc/glibc-headers/argz.texi: New file.
6179         * doc/glibc-headers/byteswap.texi: New file.
6180         * doc/glibc-headers/crypt.texi: New file.
6181         * doc/glibc-headers/endian.texi: New file.
6182         * doc/glibc-headers/envz.texi: New file.
6183         * doc/glibc-headers/err.texi: New file.
6184         * doc/glibc-headers/error.texi: New file.
6185         * doc/glibc-headers/execinfo.texi: New file.
6186         * doc/glibc-headers/fpu_control.texi: New file.
6187         * doc/glibc-headers/fstab.texi: New file.
6188         * doc/glibc-headers/fts.texi: New file.
6189         * doc/glibc-headers/getopt.texi: New file.
6190         * doc/glibc-headers/ieee754.texi: New file.
6191         * doc/glibc-headers/ifaddrs.texi: New file.
6192         * doc/glibc-headers/libintl.texi: New file.
6193         * doc/glibc-headers/mcheck.texi: New file.
6194         * doc/glibc-headers/mntent.texi: New file.
6195         * doc/glibc-headers/obstack.texi: New file.
6196         * doc/glibc-headers/paths.texi: New file.
6197         * doc/glibc-headers/printf.texi: New file.
6198         * doc/glibc-headers/pty.texi: New file.
6199         * doc/glibc-headers/resolv.texi: New file.
6200         * doc/glibc-headers/shadow.texi: New file.
6201         * doc/glibc-headers/sysexits.texi: New file.
6202         * doc/glibc-headers/ttyent.texi: New file.
6203
6204 2008-01-12  Jim Meyering  <meyering@redhat.com>
6205
6206         announce-gen: emit Gnulib's git-based version string.
6207         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
6208         New option --gnulib-version=V, where V is expected to be
6209         the output of running git describe in the gnulib directory.
6210         (get_tool_versions): Request feedback on xdelta.  I suspect it's
6211         not useful, and plan to stop publishing an xdelta file with each
6212         coreutils release.
6213
6214         * build-aux/announce-gen: Also check for lzma-compressed files.
6215
6216 2008-01-11  Bruno Haible  <bruno@clisp.org>
6217
6218         * tests/test-memmem.c (main): Increase maximum allowed time.
6219         * tests/test-strstr.c (main): Likewise.
6220
6221 2008-01-11  Bruno Haible  <bruno@clisp.org>
6222
6223         * doc/functions/memmem.texi: Add more precisions about platforms.
6224         * doc/functions/strstr.texi: Likewise.
6225
6226 2008-01-10  Eric Blake  <ebb9@byu.net>
6227
6228         * m4/strstr.m4: Delete cruft from copy-n-paste.
6229         Reported by Bruno Haible.
6230
6231 2008-01-10  Bruno Haible  <bruno@clisp.org>
6232
6233         Make c-strstr rely on strstr.
6234         * lib/c-strstr.c: Don't include str-kmp.h.
6235         (c_strstr): Define in terms of strstr.
6236         * modules/c-strstr (Files): Remove lib/str-kmp.h.
6237         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
6238
6239 2008-01-10  Bruno Haible  <bruno@clisp.org>
6240
6241         * doc/gnulib.texi (String Functions in C Locale): New section.
6242         * doc/c-ctype.texi: New file.
6243         * doc/c-strcase.texi: New file.
6244         * doc/c-strcaseeq.texi: New file.
6245         * doc/c-strcasestr.texi: New file.
6246         * doc/c-strstr.texi: New file.
6247         * doc/c-strtod.texi: New file.
6248         * doc/c-strtold.texi: New file.
6249
6250 2008-01-10  Eric Blake  <ebb9@byu.net>
6251
6252         * lib/relocatable.h: Fix a comment.
6253
6254 2008-01-10  Eric Blake  <ebb9@byu.net>
6255
6256         Share two-way algorithm.
6257         * lib/str-two-way.h: New file, merged from...
6258         * lib/memmem.c: ...here...
6259         * lib/strstr.c: ...and here.
6260         * modules/memmem (Files): Use it.
6261         * modules/strstr (Files): Likewise.
6262
6263         Avoid quadratic strstr implementations.
6264         * lib/strstr.c: New file.
6265         * m4/strstr.m4: Likewise.
6266         * modules/strstr: Likewise.
6267         * modules/strstr-tests: Likewise.
6268         * tests/test-strstr.c: Likewise.
6269         * lib/string.in.h (rpl_strstr): Declare.
6270         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
6271         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
6272         * modules/string (Makefile.am): Likewise.
6273         * MODULES.html.sh (string handling): Mention new module.
6274         * doc/functions/strstr.texi (strstr): Document the bug.
6275
6276 2008-01-10  Bruno Haible  <bruno@clisp.org>
6277
6278         * lib/relocatable.h (relocate): State whether result is freshly
6279         allocated or not.
6280         * lib/relocatable.c (relocate): Return a freshly allocated string
6281         instead of a pointer to a privately held string.
6282         Reported by Sylvain Beucler <beuc@gnu.org>.
6283
6284 2008-01-10  Colin Watson  <cjwatson@debian.org>
6285
6286         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
6287         s/S_ISNLK/S_ISLNK/.
6288
6289 2008-01-09  Bruno Haible  <bruno@clisp.org>
6290
6291         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
6292         and other files.
6293         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
6294         if it's only a guess.
6295         * modules/memmem: Simplify by depending on memmem-simple.
6296
6297 2008-01-09  Bruno Haible  <bruno@clisp.org>
6298
6299         Work around OpenBSD 4.0 tdelete() bug.
6300         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
6301         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
6302         macros and don't redefine the enum values.
6303         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
6304         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
6305         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
6306
6307 2008-01-09  Bruno Haible  <bruno@clisp.org>
6308
6309         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
6310         (main): Don't perform the tests if setlocale did not install a UTF-8
6311         locale. Needed on OpenBSD 4.0.
6312         * modules/wcwidth-tests (Depends-on): Add localcharset.
6313
6314 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6315
6316         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
6317         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
6318         * NEWS: announce this.
6319         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
6320
6321 2008-01-09  Simon Josefsson  <simon@josefsson.org>
6322         and Eric Blake  <ebb9@byu.net>
6323
6324         Add memmem-simple module.
6325         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
6326         (gl_FUNC_MEMMEM): Separate performance from presence checks.
6327         * modules/memmem-simple: New file.
6328         * modules/memmem (Description): Tweak.
6329         * MODULES.html.sh (string handling): Mention new module.
6330         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
6331         addressed by memmem-simple.
6332         * NEWS: Document the difference.
6333
6334 2008-01-09  Eric Blake  <ebb9@byu.net>
6335
6336         Give gcc some memmem optimization hints.
6337         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
6338         (strcasestr): Declare as pure.
6339         * modules/memmem (Maintainer): Claim my implementation.
6340
6341 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6342
6343         Support AIX 6.1 and higher.
6344         * build-aux/config.libpath: Likewise.
6345         * build-aux/config.rpath: Likewise.
6346
6347 2008-01-08  Jim Meyering  <meyering@redhat.com>
6348             Bruno Haible  <bruno@clisp.org>
6349
6350         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
6351         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
6352         Reported by Peter Fales in
6353         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
6354
6355 2008-01-08  Bruno Haible  <bruno@clisp.org>
6356
6357         * modules/unictype/category-of (Depends-on): Add
6358         unictype/category-none.
6359         * modules/unictype/category-and-tests (Depends-on): Add
6360         unictype/category-{L,N,Lu,Nd}.
6361         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
6362         * modules/unictype/category-or-tests (Depends-on): Add
6363         unictype/category-{L,N}.
6364         * modules/unictype/category-name-tests (Depends-on): Add
6365         unictype/category-{Z,Nl}.
6366         Reported by Simon Josefsson.
6367
6368 2008-01-08  Bruno Haible  <bruno@clisp.org>
6369
6370         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
6371         convention better.
6372         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
6373         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
6374         Reported by Peter Miller <millerp@canb.auug.org.au>.
6375
6376 2008-01-08  Eric Blake  <ebb9@byu.net>
6377
6378         Rewrite memmem to guarantee linear complexity without malloc.
6379         * lib/memmem.c (memmem): Use Two-Way rather than
6380         Knuth-Morris-Pratt, to allow O(1) space usage.
6381         (critical_factorization, two_way_short_needle)
6382         (two_way_long_needle): New functions.
6383         (knuth_morris_pratt): Delete.
6384         * modules/memmem (Depends-on): No longer need malloca or stdbool.
6385         Add stdint.
6386         * tests/test-memmem.c (main): Add tests for periodic needle and
6387         sublinear performance.
6388         * doc/functions/memmem.texi (memmem): Document other deficiencies
6389         in cygwin and older glibc.
6390
6391 2008-01-08  Bruno Haible  <bruno@clisp.org>
6392
6393         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
6394         augmentation.
6395
6396 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
6397
6398         Add a configure time option: --disable-acl.
6399         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
6400         AC_ARG_ENABLE(acl).
6401
6402 2008-01-06  Simon Josefsson  <simon@josefsson.org>
6403
6404         * tests/test-localename.c: Don't include obsolete "setenv.h".
6405
6406         * modules/localename-tests (Depends-on): Need unsetenv.
6407
6408 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6409
6410         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
6411
6412 2008-01-06  Colin Watson  <cjwatson@debian.org>
6413
6414         * users.txt: Add man-db.
6415
6416 2008-01-07  Bruno Haible  <bruno@clisp.org>
6417
6418         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
6419         previous section name.
6420
6421 2008-01-07  Bruno Haible  <bruno@clisp.org>
6422
6423         * lib/progname.c (set_program_name): Don't strip off a leading
6424         "lt-" prefix outside a .libs directory.
6425         Suggested by Paul Eggert.
6426
6427 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
6428             Bruno Haible  <bruno@clisp.org>
6429
6430         Improve memory cleanup in 'relocatable' module.
6431         * lib/relocatable.h (compute_curr_prefix): Change return type to
6432         'char *'.
6433         * lib/relocatable.c (compute_curr_prefix): Change return type to
6434         'char *'. Free curr_installdir after use.
6435         (relocate): Free curr_prefix_better after use.
6436         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
6437
6438 2008-01-01  Bruno Haible  <bruno@clisp.org>
6439
6440         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
6441         failure on older glibc systems.
6442         Reported by Peter Fales <psfales@alcatel-lucent.com>.
6443
6444 2008-01-05  Eric Blake  <ebb9@byu.net>
6445
6446         Avoid quadratic system memmem.
6447         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
6448         Reported by Ralf Wildenhues.
6449
6450         Fix memmem test for mingw.
6451         * modules/memmem-tests (configure.ac): Check for alarm.
6452         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
6453         it.
6454         * doc/functions/memmem.texi: New file.
6455         * doc/gnulib.texi (Function Substitutes): Add memmem.
6456         Reported by Bruno Haible.
6457
6458 2008-01-04  Bruno Haible  <bruno@clisp.org>
6459
6460         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
6461         Require gl_HEADER_STRINGS_H_DEFAULTS, not
6462         gl_HEADER_STRING_H_DEFAULTS.
6463
6464 2008-01-04  Eric Blake  <ebb9@byu.net>
6465
6466         Shorten duration of memmem test.
6467         * tests/test-memmem.c (main): Use alarm to declare failure if test
6468         is taking too long.
6469         Reported by Ralf Wildenhues.
6470
6471 2007-12-21  Simon Josefsson  <simon@josefsson.org>
6472
6473         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
6474         string, needed by strerror.
6475
6476 2008-01-03  Colin Watson  <cjwatson@debian.org>
6477             Bruno Haible  <bruno@clisp.org>
6478
6479         * doc/gnulib-tool.texi (Localization): New section.
6480
6481 2008-01-02  Bruno Haible  <bruno@clisp.org>
6482
6483         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
6484         variables to 'unsigned char *' type.
6485         Reported by Paul Eggert.
6486
6487 2008-01-02  Jim Meyering  <jim@meyering.net>
6488
6489         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
6490
6491 2007-12-31  Jim Meyering  <jim@meyering.net>
6492
6493         Avoid use of private FTS type name.
6494         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
6495
6496 2007-12-30  Karl Berry  <karl@gnu.org>
6497
6498         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
6499         work around defect in Texinfo and/or the standalone Info browser.
6500
6501 2007-12-30  Bruno Haible  <bruno@clisp.org>
6502
6503         Unify 5 copies of the KMP code.
6504         * lib/str-kmp.h: New file.
6505         * lib/c-strcasestr.c: Include str-kmp.h.
6506         (knuth_morris_pratt): Remove function.
6507         (c_strcasestr): Update.
6508         * lib/c-strstr.c: Include str-kmp.h.
6509         (knuth_morris_pratt): Remove function.
6510         (c_strcasestr): Update.
6511         * lib/mbscasestr.c: Include str-kmp.h.
6512         (knuth_morris_pratt_unibyte): Remove function.
6513         * lib/mbsstr.c: Include str-kmp.h.
6514         (knuth_morris_pratt_unibyte): Remove function.
6515         * lib/strcasestr.c: Include str-kmp.h.
6516         (knuth_morris_pratt): Remove function.
6517         (strcasestr): Update.
6518         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
6519         * modules/c-strstr (Files): Likewise.
6520         * modules/mbscasestr (Files): Likewise.
6521         * modules/mbsstr (Files): Likewise.
6522         * modules/strcasestr (Files): Likewise.
6523         Suggested by Paul Eggert.
6524
6525 2007-12-30  Bruno Haible  <bruno@clisp.org>
6526
6527         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
6528         defined.
6529
6530 2007-12-30  Bruno Haible  <bruno@clisp.org>
6531
6532         * lib/xmalloca.h: Include xalloc.h.
6533         (xnmalloca): New macro.
6534
6535 2007-12-30  Bruno Haible  <bruno@clisp.org>
6536
6537         * lib/malloca.h (nmalloca): New macro.
6538         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
6539         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
6540         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
6541         knuth_morris_pratt_multibyte): Likewise.
6542         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
6543         knuth_morris_pratt_multibyte): Likewise.
6544         * lib/memmem.c (knuth_morris_pratt): Likewise.
6545         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
6546
6547 2007-12-25  Bruno Haible  <bruno@clisp.org>
6548
6549         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
6550         * lib/glob.c: Don't include openat.h.
6551         (link_exists2_p): Add back the code that deals with the
6552         !GLOB_ALTDIRFUNC case.
6553         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
6554         let it do the filename concatenation.
6555         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
6556         * modules/glob (Depends-on): Remove openat.
6557
6558 2007-12-31  Bruno Haible  <bruno@clisp.org>
6559
6560         * modules/dirfd (License): Change to LGPLv2+.
6561         Approved by Jim Meyering.
6562
6563 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6564
6565         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
6566         when multiplying M by sizeof (size_t).
6567
6568 2007-12-10  Martin Lambers  <marlam@marlam.de>
6569
6570         Override getpagesize on mingw.
6571         * lib/getpagesize.c: New file.
6572         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
6573         * modules/getpagesize (Files): Add lib/getpagesize.c.
6574         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
6575         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6576         REPLACE_GETPAGESIZE.
6577         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
6578
6579 2007-12-25  Bruno Haible  <bruno@clisp.org>
6580
6581         * modules/localcharset (Notice): New field.
6582         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
6583         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
6584
6585 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6586             Bruno Haible  <bruno@clisp.org>
6587
6588         Avoid using the syntax symbol() in formatted documentation.
6589         * MODULES.html.sh (func_module): When replacing symbol() with a
6590         hyperlink, remove the parentheses. Show an error if some remain.
6591         Recognize and render the '...' syntax.
6592         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
6593         Rework. Add paragraph about GCC's inlining.
6594         * doc/alloca.texi: Likewise.
6595         * doc/error.texi: Remove parentheses from symbol reference.
6596         * doc/gnulib-intro.texi: Likewise.
6597         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
6598         * modules/fnmatch (Description): Reword to say "the ... function".
6599         * modules/full-read (Description): Likewise.
6600         * modules/full-write (Description): Likewise.
6601         * modules/safe-read (Description): Likewise.
6602         * modules/safe-write (Description): Likewise.
6603         * modules/strchrnul (Description): Likewise.
6604         * modules/trim (Description): Likewise.
6605         * modules/error (Description): Remove parentheses from symbol
6606         references.
6607         * modules/verror (Description): Likewise.
6608         Reported by Karl Berry.
6609
6610 2007-12-25  Bruno Haible  <bruno@clisp.org>
6611
6612         Fixup after 2007-10-16 commit.
6613         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
6614
6615 2007-12-24  Bruno Haible  <bruno@clisp.org>
6616
6617         Make --enable-relocatable work with DESTDIR.
6618         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
6619         to compute installdir from destprog.
6620         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
6621         also set the RELOC_DESTDIR variable.
6622         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
6623
6624 2007-12-24  Bruno Haible  <bruno@clisp.org>
6625
6626         Fix link error due to xalloc_die().
6627         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
6628         of xreadlink.
6629         * lib/relocwrapper.c: Update comments.
6630         * build-aux/install-reloc: Remove xreadlink.c from file list.
6631         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
6632         xreadlink.c.
6633         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
6634
6635 2007-12-24  Bruno Haible  <bruno@clisp.org>
6636
6637         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
6638         * lib/setenv.h: Remove file.
6639         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
6640         lib/setenv.h.
6641         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
6642         (Depends-on): Add stdlib.
6643         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
6644         gl_FUNC_UNSETENV.
6645         (Include): Replace setenv.h with <stdlib.h>.
6646         * modules/unsetenv: New file.
6647         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
6648         * lib/unsetenv.c: Include <stdlib.h> first.
6649         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
6650         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
6651         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
6652         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
6653         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
6654         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6655         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
6656         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6657         * doc/functions/unsetenv.texi: Update.
6658         * modules/xsetenv (Depends-on): Add unsetenv.
6659         * modules/getdate (Depends-on): Likewise.
6660         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
6661         * lib/xsetenv.c: Don't include setenv.h.
6662         * lib/getdate.y: Likewise.
6663         * lib/relocwrapper.c: Likewise.
6664         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
6665         (Depends-on): Add stdlib.
6666         * NEWS: Mention the changes.
6667         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
6668
6669 2007-12-23  Bruno Haible  <bruno@clisp.org>
6670
6671         * lib/memmem.c (memmem): Use lowercase variable names. Tab
6672         indentation.
6673
6674 2007-12-23  Bruno Haible  <bruno@clisp.org>
6675
6676         * lib/c-strcasestr.c: Add more comments.
6677         * lib/c-strstr.c: Likewise.
6678         * lib/mbscasestr.c: Likewise.
6679         * lib/mbsstr.c: Likewise.
6680         * lib/strcasestr.c: Likewise.
6681         * lib/memmem.c: Likewise.
6682
6683 2007-12-23  Bruno Haible  <bruno@clisp.org>
6684
6685         * tests/test-memmem.c: Include <string.h> first.
6686
6687 2007-12-22  Bruno Haible  <bruno@clisp.org>
6688
6689         * gnulib-tool (func_create_testdir): Change $auxdir while generating
6690         the contents of $testsbase.
6691         Reported by Ralf Wildenhues.
6692
6693 2007-12-22  Bruno Haible  <bruno@clisp.org>
6694
6695         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
6696         two variables local_ldadd_before, local_ldadd_last.
6697
6698 2007-12-20  Eric Blake  <ebb9@byu.net>
6699
6700         Work around circular library issue when cross-compiling.
6701         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
6702         that progname.o does not need to pull in rpl_memcmp.
6703
6704 2007-12-19  Eric Blake  <ebb9@byu.net>
6705
6706         Fix memmem to avoid O(n^2) worst-case complexity.
6707         * lib/memmem.c (knuth_morris_pratt): New function.
6708         (memmem): Use it if first few naive iterations fail.
6709         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
6710         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
6711         * modules/memchr (License): Likewise.
6712         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
6713         malloca.
6714         * tests/test-memmem.c: Rewrite, borrowing ideas from
6715         test-mbsstr1.c; the old version wouldn't even compile!
6716         * modules/memmem-tests: New file.
6717         * lib/string.in.h (rpl_memmem): Add declaration.
6718         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
6719         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
6720         REPLACE_MEMMEM.
6721
6722 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6723
6724         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
6725         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
6726         before any system include files, and undef after them all.  This
6727         should fix a problem on VMS reported by John E. Malmberg in
6728         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
6729
6730 2007-12-17  Eric Blake  <ebb9@byu.net>
6731
6732         Revert addition of verify, for BSD/OS.
6733         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
6734         can't handle large files, for the sake of obsolete platforms.
6735         * modules/fseeko (Depends-on): Remove verify.
6736         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
6737         * doc/functions/ftello.texi (ftello): Likewise.
6738         * doc/functions/fgetpos.texi (fgetpos): Likewise.
6739         Reported by Larry Jones.
6740
6741 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
6742
6743         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
6744         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
6745
6746 2007-12-17  Jim Meyering  <meyering@redhat.com>
6747
6748         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
6749         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
6750         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
6751         * modules/getcwd (Depends-on): Add openat.
6752         Reported by Petr Salinger.
6753
6754 2007-12-17  Bruno Haible  <bruno@clisp.org>
6755
6756         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
6757         avoid a segmentation fault of the configure test on x86_64 systems.
6758
6759 2007-12-15  Jim Meyering  <meyering@redhat.com>
6760
6761         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
6762
6763 2007-12-13  Eric Blake  <ebb9@byu.net>
6764
6765         Another fseek test.
6766         * tests/test-fseek.c (main): Also test ungetc handling.
6767         * tests/test-fseeko.c (main): Likewise.
6768         * modules/fseeko (Depends-on): Add verify.
6769         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
6770         large.
6771         Reported by Larry Jones.
6772
6773         Fix fseeko on mingw.
6774         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
6775         seek.
6776
6777         Beef up fseek tests.
6778         * tests/test-fseek.c (main): Also test eof handling.
6779         * tests/test-fseeko.c (main): Likewise.
6780         Reported by Larry Jones.
6781
6782 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
6783
6784         Fix fseeko on BSD-based platforms.
6785         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
6786         successful seek.
6787
6788 2007-12-12  Eric Blake  <ebb9@byu.net>
6789
6790         Allow circular dependency of separate libtests.a
6791         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
6792         when use_libtests.
6793
6794 2007-12-11  Eric Blake  <ebb9@byu.net>
6795
6796         Fix bug with -0.0L in previous patch.
6797         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
6798         * tests/test-isnan.c (main): Also test on zeroes.
6799         * tests/test-isnanf.c (main): Likewise.
6800         * tests/test-isnanl.h (main): Likewise.
6801
6802         Detect pseudo-denormals on x86 even when cross-compiling.
6803         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
6804         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
6805         invalid bit patterns that happen to satisfy ==.
6806
6807         Avoid link failures with separate libtests.a.
6808         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
6809         last, to satisfy circular dependencies.
6810
6811 2007-12-11  Eric Blake  <ebb9@byu.net>
6812         and Bruno Haible  <bruno@clisp.org>
6813
6814         Fix OpenBSD 4.0 <float.h> handling of long double.
6815         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
6816         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
6817         * doc/headers/float.texi (float.h): Document OpenBSD bug.
6818
6819 2007-12-11  Jim Meyering  <meyering@redhat.com>
6820
6821         * users.txt: Add libvirt.
6822
6823         Support versions of autoconf prior to 2.59c.
6824         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
6825         if it is not already defined.
6826
6827 2007-12-09  Bruno Haible  <bruno@clisp.org>
6828
6829         Let 'gnulib-tool --import' collect sources needed for the tests in
6830         tests/ rather than in lib/.
6831         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
6832         argument. If true, add rules to generate libtests.a, and put libtests.a
6833         into $(LDADD). Consider source files in subdirectories and set
6834         uses_subdirs.
6835         (func_emit_initmacro_start, func_emit_initmacro_end,
6836         func_emit_initmacro_done): Pass all arguments explicitly.
6837         (func_import): Determine two module lists main_modules,
6838         testsrelated_modules. Determine use_libtests. Determine two variables
6839         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
6840         instead of just sed_transform_lib_file. Determine two variables
6841         main_files and testsrelated_files. Compute 'files' as the union of
6842         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
6843         func_add_or_update. In the generated gnulib-comp.m4, collect the
6844         object files for tests/ in different variables than those for lib/.
6845         Substitute LIBTESTS_LIBDEPS.
6846         (func_create_testdir): Combine the uses_subdirs results from
6847         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
6848
6849 2007-12-09  Bruno Haible  <bruno@clisp.org>
6850
6851         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
6852         the build-aux directory.
6853
6854 2007-12-09  Bruno Haible  <bruno@clisp.org>
6855
6856         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
6857         introduced on 2006-09-09.
6858
6859 2007-12-07  Jim Meyering  <meyering@redhat.com>
6860
6861         Let these macros work also with autoconf-2.59.
6862         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
6863         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
6864         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
6865
6866 2007-12-06  Jim Meyering  <meyering@redhat.com>
6867
6868         Avoid a configure-time syntax error in gl_FUNC_ACL.
6869         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
6870         function in each branch, before testing the cache variable.
6871
6872 2007-12-04  Eric Blake  <ebb9@byu.net>
6873
6874         Make scripts executable.
6875         * build-aux/config.guess: Add execute permissions.
6876         * build-aux/config.sub: Likewise.
6877         * build-aux/gendocs.sh: Likewise.
6878
6879         Fix frexp on mingw.
6880         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
6881         cross-compiling.
6882         * doc/functions/frexp.texi (frexp): Document the bug.
6883
6884         Make cygwin fseeko check more reliable.
6885         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
6886         version numbers, rather than unrelated feature check.
6887         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
6888         * doc/functions/ftello.texi (ftello): Likewise.
6889         Reported by Bruno Haible.
6890
6891         * m4/strerror.m4: Bump version number.
6892
6893 2007-12-03  Bruno Haible  <bruno@clisp.org>
6894
6895         * doc/functions/mprotect.texi: Mention the mingw problem.
6896
6897 2007-12-03  Eric Blake  <ebb9@byu.net>
6898
6899         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
6900         REPLACE_STRERROR is initialized before this macro.
6901
6902 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
6903
6904         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
6905         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
6906         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
6907         put -lsec in even for programs other than 'ls'.  This fixes a problem
6908         for gettext reported by Bruno Haible in
6909         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
6910         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
6911         Add support for Solaris 10.  This isn't efficient, but should get the
6912         job done for now.
6913
6914 2007-12-03  James Youngman  <jay@gnu.org>
6915
6916         * doc/regexprops-generic.texi: change "an close-group" to "a
6917         close-group" and "illegal" to "not allowed".
6918
6919 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6920
6921         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
6922         pr_byname.h. Needed for the rare case when the maintainer has done
6923         "make maintainer-clean" in the source directory and then attempts a
6924         build outside the source directory.
6925         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
6926         scripts_byname.h.
6927
6928 2007-12-02  Martin Lambers <marlam@marlam.de>
6929             Bruno Haible  <bruno@clisp.org>
6930
6931         * lib/getpagesize.h: Remove file.
6932         * lib/unistd.in.h: Include declaration of getpagesize here.
6933         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
6934         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
6935         HAVE_SYS_PARAM_H.
6936         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
6937         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
6938         * modules/getpagesize (Files): Remove lib/getpagesize.h.
6939         (Depends-on): Add unistd.
6940         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
6941         (Include): Use <unistd.h> instead of getpagesize.h.
6942         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
6943         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
6944         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
6945         gl_GETPAGESIZE invocation, already handled by module dependency.
6946         * lib/pagealign_alloc.c: Don't include getpagesize.h.
6947
6948 2007-12-02  Bruno Haible  <bruno@clisp.org>
6949
6950         * modules/strings-tests: New file.
6951         * tests/test-strings.c: New file.
6952
6953         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
6954         * lib/strings.in.h: New file.
6955         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
6956         * m4/strings_h.m4: New file.
6957         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
6958         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
6959         * modules/strings: New file.
6960         * modules/string (Makefile.am): Update.
6961         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
6962         Reported by Karl Berry.
6963
6964 2007-12-01  Eric Blake  <ebb9@byu.net>
6965
6966         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
6967         accomodate fix in cygwin 1.5.25.
6968
6969 2007-12-01  Jim Meyering  <meyering@redhat.com>
6970
6971         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
6972         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
6973         that would inhibit utf8-optimization of a regexp containing line-
6974         or buffer-anchors, e.g., `^', `$'.
6975
6976 2007-11-30  Bruno Haible  <bruno@clisp.org>
6977
6978         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
6979         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
6980         glthread_recursive_lock_init.
6981         * lib/lock.c (glthread_recursive_lock_init)
6982         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
6983         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6984
6985 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
6986
6987         New function qset_acl, like set_acl but with syscall semantics.
6988         * lib/acl.h (qset_acl): New decl.
6989         * lib/acl.c (qset_acl): New function.
6990         (set_acl): Use new function.  Use more-consistent diagnostics.
6991
6992 2007-11-28  Jim Meyering  <meyering@redhat.com>
6993
6994         * modules/physmem (License): Change from GPL to LGPLv2+.
6995
6996 2007-11-26  Bruno Haible  <bruno@clisp.org>
6997
6998         * lib/vasnprintf.c (decode_long_double): Don't abort if the
6999         'long double' type has excess precision.
7000         Reported by Jim Meyering in
7001         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
7002
7003 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7004
7005         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
7006         Sync from <http://gnu.org/licenses>.
7007         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
7008         with license text from same location.
7009         * doc/maintain.texi, doc/standards.texi:  Sync from
7010         <http://savannah.gnu.org/projects/gnustandards>.
7011
7012 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
7013         and Jim Meyering  <meyering@redhat.com>
7014
7015         Adjust getdate' grammar to accept a slightly more regular language.
7016         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
7017         Before, the former was rejected.
7018         * lib/getdate.y (digits_to_date_time): New function, factored
7019         out of ...
7020         (number): ...here.  Just call digits_to_date_time.
7021         (hybrid): New non-terminal to handle an <unsigned number,
7022         signed relative offset> sequence consistently.
7023
7024 2007-11-18  Jim Meyering  <meyering@redhat.com>
7025
7026         Pull my changes from coreutils:
7027         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
7028         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
7029         use of $gnulib_tool_option_extras, so that it's separated from the
7030         preceding argument.
7031
7032         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
7033         * build-aux/bootstrap (cp_mark_as_generated): Create any required
7034         parent destination directories before copying a file into place.
7035
7036 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7037
7038         bootstrap: work also with 4-argument variant of AC_INIT
7039         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
7040
7041 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
7042
7043         Port test-getaddrinfo to Solaris.
7044         Problem reported by Bruno Haible in
7045         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
7046         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
7047         explanation of setting 'hints'.
7048         Don't reject an implementation merely because it returns EAI_SERVICE.
7049         (EAI_SERVICE): Define to 0 if not defined.
7050
7051 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
7052
7053         The license of gnu-make and posix-shell is now "GPLed build tool".
7054         * modules/gnu-make (License): Likewise.
7055         * modules/posix-shell (License): Likewise.
7056
7057         New module posix-shell, for determining a POSIX shell
7058         or perhaps something that is close enough to a POSIX shell.
7059         * m4/posix-shell.m4: New file.
7060         * modules/posix-shell: New file.
7061
7062         * MODULES.html.sh: Mention new module.
7063
7064         New module gnu-make, for determining whether we're using GNU Make.
7065         * m4/gnu-make.m4: New file.
7066         * modules/gnu-make: New file.
7067         * MODULES.html.sh: Mention new module.
7068
7069 2007-11-14  Jim Meyering  <meyering@redhat.com>
7070
7071         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
7072         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
7073         use this macro to create a function _definition_.
7074         Remove useless "#undef ARGMATCH_DIE".
7075
7076 2007-11-14  Bruno Haible  <bruno@clisp.org>
7077
7078         * lib/config.charset: Update for OpenBSD 4.1.
7079         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
7080
7081 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
7082
7083         Document 64-bit #if problems in stdint.texi.
7084         * doc/headers/stdint.texi (stdint.h): Mention problems with
7085         64-bit-#if, and how to work around them.
7086
7087         Don't insist on 'long long int' support in the preprocessor.  It
7088         breaks too many things.  For example, PRIdMAX still uses a 'long
7089         long int' format with the latest Sun compiler, even though
7090         HAVE_LONG_LONG_INT isn't defined due to that compiler's
7091         preprocessor problem.  This causes the latest coreutils to dump
7092         core on Solaris 10 sparc with the Sun C compiler.
7093         Instead, fix the 2007-10-16 problem in a different way, by evaluating
7094         the troublesome expressions at configure-time, not at #if-time.
7095         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
7096         preprocessor.
7097         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
7098         compile-time C checks, done at 'configure'-time.
7099         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
7100         * modules/inttypes (Makefile): Substitute the new symbols that
7101         gl_INTTYPES_H now generates.
7102         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
7103
7104 2007-11-12  Bruno Haible  <bruno@clisp.org>
7105
7106         Tests for Unicode character classification functions.
7107
7108         * modules/unictype/bidicategory-byname-tests: New file.
7109         * modules/unictype/bidicategory-name-tests: New file.
7110         * modules/unictype/bidicategory-of-tests: New file.
7111         * modules/unictype/bidicategory-test-tests: New file.
7112         * modules/unictype/block-list-tests: New file.
7113         * modules/unictype/block-of-tests: New file.
7114         * modules/unictype/block-test-tests: New file.
7115         * modules/unictype/category-C-tests: New file.
7116         * modules/unictype/category-Cc-tests: New file.
7117         * modules/unictype/category-Cf-tests: New file.
7118         * modules/unictype/category-Cn-tests: New file.
7119         * modules/unictype/category-Co-tests: New file.
7120         * modules/unictype/category-Cs-tests: New file.
7121         * modules/unictype/category-L-tests: New file.
7122         * modules/unictype/category-Ll-tests: New file.
7123         * modules/unictype/category-Lm-tests: New file.
7124         * modules/unictype/category-Lo-tests: New file.
7125         * modules/unictype/category-Lt-tests: New file.
7126         * modules/unictype/category-Lu-tests: New file.
7127         * modules/unictype/category-M-tests: New file.
7128         * modules/unictype/category-Mc-tests: New file.
7129         * modules/unictype/category-Me-tests: New file.
7130         * modules/unictype/category-Mn-tests: New file.
7131         * modules/unictype/category-N-tests: New file.
7132         * modules/unictype/category-Nd-tests: New file.
7133         * modules/unictype/category-Nl-tests: New file.
7134         * modules/unictype/category-No-tests: New file.
7135         * modules/unictype/category-P-tests: New file.
7136         * modules/unictype/category-Pc-tests: New file.
7137         * modules/unictype/category-Pd-tests: New file.
7138         * modules/unictype/category-Pe-tests: New file.
7139         * modules/unictype/category-Pf-tests: New file.
7140         * modules/unictype/category-Pi-tests: New file.
7141         * modules/unictype/category-Po-tests: New file.
7142         * modules/unictype/category-Ps-tests: New file.
7143         * modules/unictype/category-S-tests: New file.
7144         * modules/unictype/category-Sc-tests: New file.
7145         * modules/unictype/category-Sk-tests: New file.
7146         * modules/unictype/category-Sm-tests: New file.
7147         * modules/unictype/category-So-tests: New file.
7148         * modules/unictype/category-Z-tests: New file.
7149         * modules/unictype/category-Zl-tests: New file.
7150         * modules/unictype/category-Zp-tests: New file.
7151         * modules/unictype/category-Zs-tests: New file.
7152         * modules/unictype/category-and-not-tests: New file.
7153         * modules/unictype/category-and-tests: New file.
7154         * modules/unictype/category-byname-tests: New file.
7155         * modules/unictype/category-name-tests: New file.
7156         * modules/unictype/category-none-tests: New file.
7157         * modules/unictype/category-of-tests: New file.
7158         * modules/unictype/category-or-tests: New file.
7159         * modules/unictype/category-test-withtable-tests: New file.
7160         * modules/unictype/combining-class-tests: New file.
7161         * modules/unictype/ctype-alnum-tests: New file.
7162         * modules/unictype/ctype-alpha-tests: New file.
7163         * modules/unictype/ctype-blank-tests: New file.
7164         * modules/unictype/ctype-cntrl-tests: New file.
7165         * modules/unictype/ctype-digit-tests: New file.
7166         * modules/unictype/ctype-graph-tests: New file.
7167         * modules/unictype/ctype-lower-tests: New file.
7168         * modules/unictype/ctype-print-tests: New file.
7169         * modules/unictype/ctype-punct-tests: New file.
7170         * modules/unictype/ctype-space-tests: New file.
7171         * modules/unictype/ctype-upper-tests: New file.
7172         * modules/unictype/ctype-xdigit-tests: New file.
7173         * modules/unictype/decimal-digit-tests: New file.
7174         * modules/unictype/digit-tests: New file.
7175         * modules/unictype/mirror-tests: New file.
7176         * modules/unictype/numeric-tests: New file.
7177         * modules/unictype/property-alphabetic-tests: New file.
7178         * modules/unictype/property-ascii-hex-digit-tests: New file.
7179         * modules/unictype/property-bidi-arabic-digit-tests: New file.
7180         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
7181         * modules/unictype/property-bidi-block-separator-tests: New file.
7182         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
7183         * modules/unictype/property-bidi-common-separator-tests: New file.
7184         * modules/unictype/property-bidi-control-tests: New file.
7185         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
7186         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
7187         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
7188         * modules/unictype/property-bidi-european-digit-tests: New file.
7189         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
7190         * modules/unictype/property-bidi-left-to-right-tests: New file.
7191         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
7192         * modules/unictype/property-bidi-other-neutral-tests: New file.
7193         * modules/unictype/property-bidi-pdf-tests: New file.
7194         * modules/unictype/property-bidi-segment-separator-tests: New file.
7195         * modules/unictype/property-bidi-whitespace-tests: New file.
7196         * modules/unictype/property-byname-tests: New file.
7197         * modules/unictype/property-combining-tests: New file.
7198         * modules/unictype/property-composite-tests: New file.
7199         * modules/unictype/property-currency-symbol-tests: New file.
7200         * modules/unictype/property-dash-tests: New file.
7201         * modules/unictype/property-decimal-digit-tests: New file.
7202         * modules/unictype/property-default-ignorable-code-point-tests: New file.
7203         * modules/unictype/property-deprecated-tests: New file.
7204         * modules/unictype/property-diacritic-tests: New file.
7205         * modules/unictype/property-extender-tests: New file.
7206         * modules/unictype/property-format-control-tests: New file.
7207         * modules/unictype/property-grapheme-base-tests: New file.
7208         * modules/unictype/property-grapheme-extend-tests: New file.
7209         * modules/unictype/property-grapheme-link-tests: New file.
7210         * modules/unictype/property-hex-digit-tests: New file.
7211         * modules/unictype/property-hyphen-tests: New file.
7212         * modules/unictype/property-id-continue-tests: New file.
7213         * modules/unictype/property-id-start-tests: New file.
7214         * modules/unictype/property-ideographic-tests: New file.
7215         * modules/unictype/property-ids-binary-operator-tests: New file.
7216         * modules/unictype/property-ids-trinary-operator-tests: New file.
7217         * modules/unictype/property-ignorable-control-tests: New file.
7218         * modules/unictype/property-iso-control-tests: New file.
7219         * modules/unictype/property-join-control-tests: New file.
7220         * modules/unictype/property-left-of-pair-tests: New file.
7221         * modules/unictype/property-line-separator-tests: New file.
7222         * modules/unictype/property-logical-order-exception-tests: New file.
7223         * modules/unictype/property-lowercase-tests: New file.
7224         * modules/unictype/property-math-tests: New file.
7225         * modules/unictype/property-non-break-tests: New file.
7226         * modules/unictype/property-not-a-character-tests: New file.
7227         * modules/unictype/property-numeric-tests: New file.
7228         * modules/unictype/property-other-alphabetic-tests: New file.
7229         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
7230         * modules/unictype/property-other-grapheme-extend-tests: New file.
7231         * modules/unictype/property-other-id-continue-tests: New file.
7232         * modules/unictype/property-other-id-start-tests: New file.
7233         * modules/unictype/property-other-lowercase-tests: New file.
7234         * modules/unictype/property-other-math-tests: New file.
7235         * modules/unictype/property-other-uppercase-tests: New file.
7236         * modules/unictype/property-paired-punctuation-tests: New file.
7237         * modules/unictype/property-paragraph-separator-tests: New file.
7238         * modules/unictype/property-pattern-syntax-tests: New file.
7239         * modules/unictype/property-pattern-white-space-tests: New file.
7240         * modules/unictype/property-private-use-tests: New file.
7241         * modules/unictype/property-punctuation-tests: New file.
7242         * modules/unictype/property-quotation-mark-tests: New file.
7243         * modules/unictype/property-radical-tests: New file.
7244         * modules/unictype/property-sentence-terminal-tests: New file.
7245         * modules/unictype/property-soft-dotted-tests: New file.
7246         * modules/unictype/property-space-tests: New file.
7247         * modules/unictype/property-terminal-punctuation-tests: New file.
7248         * modules/unictype/property-test-tests: New file.
7249         * modules/unictype/property-titlecase-tests: New file.
7250         * modules/unictype/property-unassigned-code-value-tests: New file.
7251         * modules/unictype/property-unified-ideograph-tests: New file.
7252         * modules/unictype/property-uppercase-tests: New file.
7253         * modules/unictype/property-variation-selector-tests: New file.
7254         * modules/unictype/property-white-space-tests: New file.
7255         * modules/unictype/property-xid-continue-tests: New file.
7256         * modules/unictype/property-xid-start-tests: New file.
7257         * modules/unictype/property-zero-width-tests: New file.
7258         * modules/unictype/scripts-tests: New file.
7259         * modules/unictype/syntax-c-ident-tests: New file.
7260         * modules/unictype/syntax-c-whitespace-tests: New file.
7261         * modules/unictype/syntax-java-ident-tests: New file.
7262         * modules/unictype/syntax-java-whitespace-tests: New file.
7263         * tests/unictype/test-bidi_byname.c: New file.
7264         * tests/unictype/test-bidi_name.c: New file.
7265         * tests/unictype/test-bidi_of.c: New file.
7266         * tests/unictype/test-bidi_test.c: New file.
7267         * tests/unictype/test-block_list.c: New file.
7268         * tests/unictype/test-block_of.c: New file.
7269         * tests/unictype/test-block_test.c: New file.
7270         * tests/unictype/test-categ_and.c: New file.
7271         * tests/unictype/test-categ_and_not.c: New file.
7272         * tests/unictype/test-categ_byname.c: New file.
7273         * tests/unictype/test-categ_name.c: New file.
7274         * tests/unictype/test-categ_none.c: New file.
7275         * tests/unictype/test-categ_of.c: New file.
7276         * tests/unictype/test-categ_or.c: New file.
7277         * tests/unictype/test-categ_test_withtable.c: New file.
7278         * tests/unictype/test-combining.c: New file.
7279         * tests/unictype/test-decdigit.c: New file.
7280         * tests/unictype/test-digit.c: New file.
7281         * tests/unictype/test-mirror.c: New file.
7282         * tests/unictype/test-numeric.c: New file.
7283         * tests/unictype/test-pr_byname.c: New file.
7284         * tests/unictype/test-pr_test.c: New file.
7285         * tests/unictype/test-predicate-part1.h: New file.
7286         * tests/unictype/test-predicate-part2.h: New file.
7287         * tests/unictype/test-scripts.c: New file.
7288         * tests/unictype/test-sy_c_ident.c: New file.
7289         * tests/unictype/test-sy_java_ident.c: New file.
7290
7291         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
7292         for Unicode 5.0.0.
7293         * tests/unictype/test-categ_Cc.c: Likewise.
7294         * tests/unictype/test-categ_Cf.c: Likewise.
7295         * tests/unictype/test-categ_Cn.c: Likewise.
7296         * tests/unictype/test-categ_Co.c: Likewise.
7297         * tests/unictype/test-categ_Cs.c: Likewise.
7298         * tests/unictype/test-categ_L.c: Likewise.
7299         * tests/unictype/test-categ_Ll.c: Likewise.
7300         * tests/unictype/test-categ_Lm.c: Likewise.
7301         * tests/unictype/test-categ_Lo.c: Likewise.
7302         * tests/unictype/test-categ_Lt.c: Likewise.
7303         * tests/unictype/test-categ_Lu.c: Likewise.
7304         * tests/unictype/test-categ_M.c: Likewise.
7305         * tests/unictype/test-categ_Mc.c: Likewise.
7306         * tests/unictype/test-categ_Me.c: Likewise.
7307         * tests/unictype/test-categ_Mn.c: Likewise.
7308         * tests/unictype/test-categ_N.c: Likewise.
7309         * tests/unictype/test-categ_Nd.c: Likewise.
7310         * tests/unictype/test-categ_Nl.c: Likewise.
7311         * tests/unictype/test-categ_No.c: Likewise.
7312         * tests/unictype/test-categ_P.c: Likewise.
7313         * tests/unictype/test-categ_Pc.c: Likewise.
7314         * tests/unictype/test-categ_Pd.c: Likewise.
7315         * tests/unictype/test-categ_Pe.c: Likewise.
7316         * tests/unictype/test-categ_Pf.c: Likewise.
7317         * tests/unictype/test-categ_Pi.c: Likewise.
7318         * tests/unictype/test-categ_Po.c: Likewise.
7319         * tests/unictype/test-categ_Ps.c: Likewise.
7320         * tests/unictype/test-categ_S.c: Likewise.
7321         * tests/unictype/test-categ_Sc.c: Likewise.
7322         * tests/unictype/test-categ_Sk.c: Likewise.
7323         * tests/unictype/test-categ_Sm.c: Likewise.
7324         * tests/unictype/test-categ_So.c: Likewise.
7325         * tests/unictype/test-categ_Z.c: Likewise.
7326         * tests/unictype/test-categ_Zl.c: Likewise.
7327         * tests/unictype/test-categ_Zp.c: Likewise.
7328         * tests/unictype/test-categ_Zs.c: Likewise.
7329         * tests/unictype/test-ctype_alnum.c: Likewise.
7330         * tests/unictype/test-ctype_alpha.c: Likewise.
7331         * tests/unictype/test-ctype_blank.c: Likewise.
7332         * tests/unictype/test-ctype_cntrl.c: Likewise.
7333         * tests/unictype/test-ctype_digit.c: Likewise.
7334         * tests/unictype/test-ctype_graph.c: Likewise.
7335         * tests/unictype/test-ctype_lower.c: Likewise.
7336         * tests/unictype/test-ctype_print.c: Likewise.
7337         * tests/unictype/test-ctype_punct.c: Likewise.
7338         * tests/unictype/test-ctype_space.c: Likewise.
7339         * tests/unictype/test-ctype_upper.c: Likewise.
7340         * tests/unictype/test-ctype_xdigit.c: Likewise.
7341         * tests/unictype/test-decdigit.h: Likewise.
7342         * tests/unictype/test-digit.h: Likewise.
7343         * tests/unictype/test-numeric.h: Likewise.
7344         * tests/unictype/test-pr_alphabetic.c: Likewise.
7345         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
7346         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
7347         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
7348         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
7349         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
7350         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
7351         * tests/unictype/test-pr_bidi_control.c: Likewise.
7352         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
7353         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
7354         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
7355         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
7356         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
7357         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
7358         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
7359         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
7360         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
7361         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
7362         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
7363         * tests/unictype/test-pr_combining.c: Likewise.
7364         * tests/unictype/test-pr_composite.c: Likewise.
7365         * tests/unictype/test-pr_currency_symbol.c: Likewise.
7366         * tests/unictype/test-pr_dash.c: Likewise.
7367         * tests/unictype/test-pr_decimal_digit.c: Likewise.
7368         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
7369         * tests/unictype/test-pr_deprecated.c: Likewise.
7370         * tests/unictype/test-pr_diacritic.c: Likewise.
7371         * tests/unictype/test-pr_extender.c: Likewise.
7372         * tests/unictype/test-pr_format_control.c: Likewise.
7373         * tests/unictype/test-pr_grapheme_base.c: Likewise.
7374         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
7375         * tests/unictype/test-pr_grapheme_link.c: Likewise.
7376         * tests/unictype/test-pr_hex_digit.c: Likewise.
7377         * tests/unictype/test-pr_hyphen.c: Likewise.
7378         * tests/unictype/test-pr_id_continue.c: Likewise.
7379         * tests/unictype/test-pr_id_start.c: Likewise.
7380         * tests/unictype/test-pr_ideographic.c: Likewise.
7381         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
7382         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
7383         * tests/unictype/test-pr_ignorable_control.c: Likewise.
7384         * tests/unictype/test-pr_iso_control.c: Likewise.
7385         * tests/unictype/test-pr_join_control.c: Likewise.
7386         * tests/unictype/test-pr_left_of_pair.c: Likewise.
7387         * tests/unictype/test-pr_line_separator.c: Likewise.
7388         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
7389         * tests/unictype/test-pr_lowercase.c: Likewise.
7390         * tests/unictype/test-pr_math.c: Likewise.
7391         * tests/unictype/test-pr_non_break.c: Likewise.
7392         * tests/unictype/test-pr_not_a_character.c: Likewise.
7393         * tests/unictype/test-pr_numeric.c: Likewise.
7394         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
7395         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
7396         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
7397         * tests/unictype/test-pr_other_id_continue.c: Likewise.
7398         * tests/unictype/test-pr_other_id_start.c: Likewise.
7399         * tests/unictype/test-pr_other_lowercase.c: Likewise.
7400         * tests/unictype/test-pr_other_math.c: Likewise.
7401         * tests/unictype/test-pr_other_uppercase.c: Likewise.
7402         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
7403         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
7404         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
7405         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
7406         * tests/unictype/test-pr_private_use.c: Likewise.
7407         * tests/unictype/test-pr_punctuation.c: Likewise.
7408         * tests/unictype/test-pr_quotation_mark.c: Likewise.
7409         * tests/unictype/test-pr_radical.c: Likewise.
7410         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
7411         * tests/unictype/test-pr_soft_dotted.c: Likewise.
7412         * tests/unictype/test-pr_space.c: Likewise.
7413         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
7414         * tests/unictype/test-pr_titlecase.c: Likewise.
7415         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
7416         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
7417         * tests/unictype/test-pr_uppercase.c: Likewise.
7418         * tests/unictype/test-pr_variation_selector.c: Likewise.
7419         * tests/unictype/test-pr_white_space.c: Likewise.
7420         * tests/unictype/test-pr_xid_continue.c: Likewise.
7421         * tests/unictype/test-pr_xid_start.c: Likewise.
7422         * tests/unictype/test-pr_zero_width.c: Likewise.
7423         * tests/unictype/test-sy_c_whitespace.c: Likewise.
7424         * tests/unictype/test-sy_java_whitespace.c: Likewise.
7425
7426 2007-11-12  Bruno Haible  <bruno@clisp.org>
7427
7428         Unicode character classification functions.
7429         * lib/unictype.h: New file.
7430         * modules/unictype/base: New file.
7431         * modules/unictype/category-L: New file.
7432         * modules/unictype/category-Lu: New file.
7433         * modules/unictype/category-Ll: New file.
7434         * modules/unictype/category-Lt: New file.
7435         * modules/unictype/category-Lm: New file.
7436         * modules/unictype/category-Lo: New file.
7437         * modules/unictype/category-M: New file.
7438         * modules/unictype/category-Mn: New file.
7439         * modules/unictype/category-Mc: New file.
7440         * modules/unictype/category-Me: New file.
7441         * modules/unictype/category-N: New file.
7442         * modules/unictype/category-Nd: New file.
7443         * modules/unictype/category-Nl: New file.
7444         * modules/unictype/category-No: New file.
7445         * modules/unictype/category-P: New file.
7446         * modules/unictype/category-Pc: New file.
7447         * modules/unictype/category-Pd: New file.
7448         * modules/unictype/category-Ps: New file.
7449         * modules/unictype/category-Pe: New file.
7450         * modules/unictype/category-Pi: New file.
7451         * modules/unictype/category-Pf: New file.
7452         * modules/unictype/category-Po: New file.
7453         * modules/unictype/category-S: New file.
7454         * modules/unictype/category-Sm: New file.
7455         * modules/unictype/category-Sc: New file.
7456         * modules/unictype/category-Sk: New file.
7457         * modules/unictype/category-So: New file.
7458         * modules/unictype/category-Z: New file.
7459         * modules/unictype/category-Zs: New file.
7460         * modules/unictype/category-Zl: New file.
7461         * modules/unictype/category-Zp: New file.
7462         * modules/unictype/category-C: New file.
7463         * modules/unictype/category-Cc: New file.
7464         * modules/unictype/category-Cf: New file.
7465         * modules/unictype/category-Cs: New file.
7466         * modules/unictype/category-Co: New file.
7467         * modules/unictype/category-Cn: New file.
7468         * modules/unictype/category-or: New file.
7469         * modules/unictype/category-of: New file.
7470         * modules/unictype/category-test: New file.
7471         * modules/unictype/category-test-withtable: New file.
7472         * modules/unictype/category-byname: New file.
7473         * modules/unictype/category-none: New file.
7474         * modules/unictype/category-and: New file.
7475         * modules/unictype/category-and-not: New file.
7476         * modules/unictype/category-name: New file.
7477         * modules/unictype/combining-class: New file.
7478         * modules/unictype/category-all: New file.
7479         * modules/unictype/bidicategory-all: New file.
7480         * modules/unictype/bidicategory-byname: New file.
7481         * modules/unictype/bidicategory-name: New file.
7482         * modules/unictype/bidicategory-of: New file.
7483         * modules/unictype/bidicategory-test: New file.
7484         * modules/unictype/decimal-digit: New file.
7485         * modules/unictype/digit: New file.
7486         * modules/unictype/numeric: New file.
7487         * modules/unictype/mirror: New file.
7488         * modules/unictype/property-white-space: New file.
7489         * modules/unictype/property-alphabetic: New file.
7490         * modules/unictype/property-other-alphabetic: New file.
7491         * modules/unictype/property-not-a-character: New file.
7492         * modules/unictype/property-default-ignorable-code-point: New file.
7493         * modules/unictype/property-other-default-ignorable-code-point: New
7494         file.
7495         * modules/unictype/property-deprecated: New file.
7496         * modules/unictype/property-logical-order-exception: New file.
7497         * modules/unictype/property-variation-selector: New file.
7498         * modules/unictype/property-private-use: New file.
7499         * modules/unictype/property-unassigned-code-value: New file.
7500         * modules/unictype/property-uppercase: New file.
7501         * modules/unictype/property-other-uppercase: New file.
7502         * modules/unictype/property-lowercase: New file.
7503         * modules/unictype/property-other-lowercase: New file.
7504         * modules/unictype/property-titlecase: New file.
7505         * modules/unictype/property-soft-dotted: New file.
7506         * modules/unictype/property-id-start: New file.
7507         * modules/unictype/property-other-id-start: New file.
7508         * modules/unictype/property-id-continue: New file.
7509         * modules/unictype/property-other-id-continue: New file.
7510         * modules/unictype/property-xid-start: New file.
7511         * modules/unictype/property-xid-continue: New file.
7512         * modules/unictype/property-pattern-white-space: New file.
7513         * modules/unictype/property-pattern-syntax: New file.
7514         * modules/unictype/property-join-control: New file.
7515         * modules/unictype/property-grapheme-base: New file.
7516         * modules/unictype/property-grapheme-extend: New file.
7517         * modules/unictype/property-other-grapheme-extend: New file.
7518         * modules/unictype/property-grapheme-link: New file.
7519         * modules/unictype/property-bidi-control: New file.
7520         * modules/unictype/property-bidi-left-to-right: New file.
7521         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
7522         * modules/unictype/property-bidi-arabic-right-to-left: New file.
7523         * modules/unictype/property-bidi-european-digit: New file.
7524         * modules/unictype/property-bidi-eur-num-separator: New file.
7525         * modules/unictype/property-bidi-eur-num-terminator: New file.
7526         * modules/unictype/property-bidi-arabic-digit: New file.
7527         * modules/unictype/property-bidi-common-separator: New file.
7528         * modules/unictype/property-bidi-block-separator: New file.
7529         * modules/unictype/property-bidi-segment-separator: New file.
7530         * modules/unictype/property-bidi-whitespace: New file.
7531         * modules/unictype/property-bidi-non-spacing-mark: New file.
7532         * modules/unictype/property-bidi-boundary-neutral: New file.
7533         * modules/unictype/property-bidi-pdf: New file.
7534         * modules/unictype/property-bidi-embedding-or-override: New file.
7535         * modules/unictype/property-bidi-other-neutral: New file.
7536         * modules/unictype/property-hex-digit: New file.
7537         * modules/unictype/property-ascii-hex-digit: New file.
7538         * modules/unictype/property-ideographic: New file.
7539         * modules/unictype/property-unified-ideograph: New file.
7540         * modules/unictype/property-radical: New file.
7541         * modules/unictype/property-ids-binary-operator: New file.
7542         * modules/unictype/property-ids-trinary-operator: New file.
7543         * modules/unictype/property-zero-width: New file.
7544         * modules/unictype/property-space: New file.
7545         * modules/unictype/property-non-break: New file.
7546         * modules/unictype/property-iso-control: New file.
7547         * modules/unictype/property-format-control: New file.
7548         * modules/unictype/property-dash: New file.
7549         * modules/unictype/property-hyphen: New file.
7550         * modules/unictype/property-punctuation: New file.
7551         * modules/unictype/property-line-separator: New file.
7552         * modules/unictype/property-paragraph-separator: New file.
7553         * modules/unictype/property-quotation-mark: New file.
7554         * modules/unictype/property-sentence-terminal: New file.
7555         * modules/unictype/property-terminal-punctuation: New file.
7556         * modules/unictype/property-currency-symbol: New file.
7557         * modules/unictype/property-math: New file.
7558         * modules/unictype/property-other-math: New file.
7559         * modules/unictype/property-paired-punctuation: New file.
7560         * modules/unictype/property-left-of-pair: New file.
7561         * modules/unictype/property-combining: New file.
7562         * modules/unictype/property-composite: New file.
7563         * modules/unictype/property-decimal-digit: New file.
7564         * modules/unictype/property-numeric: New file.
7565         * modules/unictype/property-diacritic: New file.
7566         * modules/unictype/property-extender: New file.
7567         * modules/unictype/property-ignorable-control: New file.
7568         * modules/unictype/property-test: New file.
7569         * modules/unictype/property-byname: New file.
7570         * modules/unictype/property-all: New file.
7571         * modules/unictype/scripts: New file.
7572         * modules/unictype/scripts-all: New file.
7573         * modules/unictype/block-of: New file.
7574         * modules/unictype/block-test: New file.
7575         * modules/unictype/block-list: New file.
7576         * modules/unictype/block-all: New file.
7577         * modules/unictype/syntax-c-whitespace: New file.
7578         * modules/unictype/syntax-java-whitespace: New file.
7579         * modules/unictype/syntax-c-ident: New file.
7580         * modules/unictype/syntax-java-ident: New file.
7581         * modules/unictype/ctype-alnum: New file.
7582         * modules/unictype/ctype-alpha: New file.
7583         * modules/unictype/ctype-cntrl: New file.
7584         * modules/unictype/ctype-digit: New file.
7585         * modules/unictype/ctype-graph: New file.
7586         * modules/unictype/ctype-lower: New file.
7587         * modules/unictype/ctype-print: New file.
7588         * modules/unictype/ctype-punct: New file.
7589         * modules/unictype/ctype-space: New file.
7590         * modules/unictype/ctype-upper: New file.
7591         * modules/unictype/ctype-xdigit: New file.
7592         * modules/unictype/ctype-blank: New file.
7593         * lib/unictype/bidi_byname.c: New file.
7594         * lib/unictype/bidi_name.c: New file.
7595         * lib/unictype/bidi_of.c: New file.
7596         * lib/unictype/bidi_test.c: New file.
7597         * lib/unictype/bitmap.h: New file.
7598         * lib/unictype/block_test.c: New file.
7599         * lib/unictype/blocks.c: New file.
7600         * lib/unictype/categ_C.c: New file.
7601         * lib/unictype/categ_Cc.c: New file.
7602         * lib/unictype/categ_Cf.c: New file.
7603         * lib/unictype/categ_Cn.c: New file.
7604         * lib/unictype/categ_Co.c: New file.
7605         * lib/unictype/categ_Cs.c: New file.
7606         * lib/unictype/categ_L.c: New file.
7607         * lib/unictype/categ_Ll.c: New file.
7608         * lib/unictype/categ_Lm.c: New file.
7609         * lib/unictype/categ_Lo.c: New file.
7610         * lib/unictype/categ_Lt.c: New file.
7611         * lib/unictype/categ_Lu.c: New file.
7612         * lib/unictype/categ_M.c: New file.
7613         * lib/unictype/categ_Mc.c: New file.
7614         * lib/unictype/categ_Me.c: New file.
7615         * lib/unictype/categ_Mn.c: New file.
7616         * lib/unictype/categ_N.c: New file.
7617         * lib/unictype/categ_Nd.c: New file.
7618         * lib/unictype/categ_Nl.c: New file.
7619         * lib/unictype/categ_No.c: New file.
7620         * lib/unictype/categ_P.c: New file.
7621         * lib/unictype/categ_Pc.c: New file.
7622         * lib/unictype/categ_Pd.c: New file.
7623         * lib/unictype/categ_Pe.c: New file.
7624         * lib/unictype/categ_Pf.c: New file.
7625         * lib/unictype/categ_Pi.c: New file.
7626         * lib/unictype/categ_Po.c: New file.
7627         * lib/unictype/categ_Ps.c: New file.
7628         * lib/unictype/categ_S.c: New file.
7629         * lib/unictype/categ_Sc.c: New file.
7630         * lib/unictype/categ_Sk.c: New file.
7631         * lib/unictype/categ_Sm.c: New file.
7632         * lib/unictype/categ_So.c: New file.
7633         * lib/unictype/categ_Z.c: New file.
7634         * lib/unictype/categ_Zl.c: New file.
7635         * lib/unictype/categ_Zp.c: New file.
7636         * lib/unictype/categ_Zs.c: New file.
7637         * lib/unictype/categ_and.c: New file.
7638         * lib/unictype/categ_and_not.c: New file.
7639         * lib/unictype/categ_byname.c: New file.
7640         * lib/unictype/categ_name.c: New file.
7641         * lib/unictype/categ_none.c: New file.
7642         * lib/unictype/categ_of.c: New file.
7643         * lib/unictype/categ_or.c: New file.
7644         * lib/unictype/categ_test.c: New file.
7645         * lib/unictype/combining.c: New file.
7646         * lib/unictype/ctype_alnum.c: New file.
7647         * lib/unictype/ctype_alpha.c: New file.
7648         * lib/unictype/ctype_blank.c: New file.
7649         * lib/unictype/ctype_cntrl.c: New file.
7650         * lib/unictype/ctype_digit.c: New file.
7651         * lib/unictype/ctype_graph.c: New file.
7652         * lib/unictype/ctype_lower.c: New file.
7653         * lib/unictype/ctype_print.c: New file.
7654         * lib/unictype/ctype_punct.c: New file.
7655         * lib/unictype/ctype_space.c: New file.
7656         * lib/unictype/ctype_upper.c: New file.
7657         * lib/unictype/ctype_xdigit.c: New file.
7658         * lib/unictype/decdigit.c: New file.
7659         * lib/unictype/digit.c: New file.
7660         * lib/unictype/identsyntaxmap.h: New file.
7661         * lib/unictype/mirror.c: New file.
7662         * lib/unictype/numeric.c: New file.
7663         * lib/unictype/pr_alphabetic.c: New file.
7664         * lib/unictype/pr_ascii_hex_digit.c: New file.
7665         * lib/unictype/pr_bidi_arabic_digit.c: New file.
7666         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
7667         * lib/unictype/pr_bidi_block_separator.c: New file.
7668         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
7669         * lib/unictype/pr_bidi_common_separator.c: New file.
7670         * lib/unictype/pr_bidi_control.c: New file.
7671         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
7672         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
7673         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
7674         * lib/unictype/pr_bidi_european_digit.c: New file.
7675         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
7676         * lib/unictype/pr_bidi_left_to_right.c: New file.
7677         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
7678         * lib/unictype/pr_bidi_other_neutral.c: New file.
7679         * lib/unictype/pr_bidi_pdf.c: New file.
7680         * lib/unictype/pr_bidi_segment_separator.c: New file.
7681         * lib/unictype/pr_bidi_whitespace.c: New file.
7682         * lib/unictype/pr_byname.c: New file.
7683         * lib/unictype/pr_byname.gperf: New file.
7684         * lib/unictype/pr_combining.c: New file.
7685         * lib/unictype/pr_composite.c: New file.
7686         * lib/unictype/pr_currency_symbol.c: New file.
7687         * lib/unictype/pr_dash.c: New file.
7688         * lib/unictype/pr_decimal_digit.c: New file.
7689         * lib/unictype/pr_default_ignorable_code_point.c: New file.
7690         * lib/unictype/pr_deprecated.c: New file.
7691         * lib/unictype/pr_diacritic.c: New file.
7692         * lib/unictype/pr_extender.c: New file.
7693         * lib/unictype/pr_format_control.c: New file.
7694         * lib/unictype/pr_grapheme_base.c: New file.
7695         * lib/unictype/pr_grapheme_extend.c: New file.
7696         * lib/unictype/pr_grapheme_link.c: New file.
7697         * lib/unictype/pr_hex_digit.c: New file.
7698         * lib/unictype/pr_hyphen.c: New file.
7699         * lib/unictype/pr_id_continue.c: New file.
7700         * lib/unictype/pr_id_start.c: New file.
7701         * lib/unictype/pr_ideographic.c: New file.
7702         * lib/unictype/pr_ids_binary_operator.c: New file.
7703         * lib/unictype/pr_ids_trinary_operator.c: New file.
7704         * lib/unictype/pr_ignorable_control.c: New file.
7705         * lib/unictype/pr_iso_control.c: New file.
7706         * lib/unictype/pr_join_control.c: New file.
7707         * lib/unictype/pr_left_of_pair.c: New file.
7708         * lib/unictype/pr_line_separator.c: New file.
7709         * lib/unictype/pr_logical_order_exception.c: New file.
7710         * lib/unictype/pr_lowercase.c: New file.
7711         * lib/unictype/pr_math.c: New file.
7712         * lib/unictype/pr_non_break.c: New file.
7713         * lib/unictype/pr_not_a_character.c: New file.
7714         * lib/unictype/pr_numeric.c: New file.
7715         * lib/unictype/pr_other_alphabetic.c: New file.
7716         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
7717         * lib/unictype/pr_other_grapheme_extend.c: New file.
7718         * lib/unictype/pr_other_id_continue.c: New file.
7719         * lib/unictype/pr_other_id_start.c: New file.
7720         * lib/unictype/pr_other_lowercase.c: New file.
7721         * lib/unictype/pr_other_math.c: New file.
7722         * lib/unictype/pr_other_uppercase.c: New file.
7723         * lib/unictype/pr_paired_punctuation.c: New file.
7724         * lib/unictype/pr_paragraph_separator.c: New file.
7725         * lib/unictype/pr_pattern_syntax.c: New file.
7726         * lib/unictype/pr_pattern_white_space.c: New file.
7727         * lib/unictype/pr_private_use.c: New file.
7728         * lib/unictype/pr_punctuation.c: New file.
7729         * lib/unictype/pr_quotation_mark.c: New file.
7730         * lib/unictype/pr_radical.c: New file.
7731         * lib/unictype/pr_sentence_terminal.c: New file.
7732         * lib/unictype/pr_soft_dotted.c: New file.
7733         * lib/unictype/pr_space.c: New file.
7734         * lib/unictype/pr_terminal_punctuation.c: New file.
7735         * lib/unictype/pr_test.c: New file.
7736         * lib/unictype/pr_titlecase.c: New file.
7737         * lib/unictype/pr_unassigned_code_value.c: New file.
7738         * lib/unictype/pr_unified_ideograph.c: New file.
7739         * lib/unictype/pr_uppercase.c: New file.
7740         * lib/unictype/pr_variation_selector.c: New file.
7741         * lib/unictype/pr_white_space.c: New file.
7742         * lib/unictype/pr_xid_continue.c: New file.
7743         * lib/unictype/pr_xid_start.c: New file.
7744         * lib/unictype/pr_zero_width.c: New file.
7745         * lib/unictype/scripts.c: New file.
7746         * lib/unictype/sy_c_ident.c: New file.
7747         * lib/unictype/sy_c_whitespace.c: New file.
7748         * lib/unictype/sy_java_ident.c: New file.
7749         * lib/unictype/sy_java_whitespace.c: New file.
7750
7751         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
7752         Unicode 5.0.0.
7753         * lib/unictype/blocks.h: Likewise.
7754         * lib/unictype/categ_C.h: Likewise.
7755         * lib/unictype/categ_Cc.h: Likewise.
7756         * lib/unictype/categ_Cf.h: Likewise.
7757         * lib/unictype/categ_Cn.h: Likewise.
7758         * lib/unictype/categ_Co.h: Likewise.
7759         * lib/unictype/categ_Cs.h: Likewise.
7760         * lib/unictype/categ_L.h: Likewise.
7761         * lib/unictype/categ_Ll.h: Likewise.
7762         * lib/unictype/categ_Lm.h: Likewise.
7763         * lib/unictype/categ_Lo.h: Likewise.
7764         * lib/unictype/categ_Lt.h: Likewise.
7765         * lib/unictype/categ_Lu.h: Likewise.
7766         * lib/unictype/categ_M.h: Likewise.
7767         * lib/unictype/categ_Mc.h: Likewise.
7768         * lib/unictype/categ_Me.h: Likewise.
7769         * lib/unictype/categ_Mn.h: Likewise.
7770         * lib/unictype/categ_N.h: Likewise.
7771         * lib/unictype/categ_Nd.h: Likewise.
7772         * lib/unictype/categ_Nl.h: Likewise.
7773         * lib/unictype/categ_No.h: Likewise.
7774         * lib/unictype/categ_P.h: Likewise.
7775         * lib/unictype/categ_Pc.h: Likewise.
7776         * lib/unictype/categ_Pd.h: Likewise.
7777         * lib/unictype/categ_Pe.h: Likewise.
7778         * lib/unictype/categ_Pf.h: Likewise.
7779         * lib/unictype/categ_Pi.h: Likewise.
7780         * lib/unictype/categ_Po.h: Likewise.
7781         * lib/unictype/categ_Ps.h: Likewise.
7782         * lib/unictype/categ_S.h: Likewise.
7783         * lib/unictype/categ_Sc.h: Likewise.
7784         * lib/unictype/categ_Sk.h: Likewise.
7785         * lib/unictype/categ_Sm.h: Likewise.
7786         * lib/unictype/categ_So.h: Likewise.
7787         * lib/unictype/categ_Z.h: Likewise.
7788         * lib/unictype/categ_Zl.h: Likewise.
7789         * lib/unictype/categ_Zp.h: Likewise.
7790         * lib/unictype/categ_Zs.h: Likewise.
7791         * lib/unictype/categ_of.h: Likewise.
7792         * lib/unictype/combining.h: Likewise.
7793         * lib/unictype/ctype_alnum.h: Likewise.
7794         * lib/unictype/ctype_alpha.h: Likewise.
7795         * lib/unictype/ctype_blank.h: Likewise.
7796         * lib/unictype/ctype_cntrl.h: Likewise.
7797         * lib/unictype/ctype_digit.h: Likewise.
7798         * lib/unictype/ctype_graph.h: Likewise.
7799         * lib/unictype/ctype_lower.h: Likewise.
7800         * lib/unictype/ctype_print.h: Likewise.
7801         * lib/unictype/ctype_punct.h: Likewise.
7802         * lib/unictype/ctype_space.h: Likewise.
7803         * lib/unictype/ctype_upper.h: Likewise.
7804         * lib/unictype/ctype_xdigit.h: Likewise.
7805         * lib/unictype/decdigit.h: Likewise.
7806         * lib/unictype/digit.h: Likewise.
7807         * lib/unictype/mirror.h: Likewise.
7808         * lib/unictype/numeric.h: Likewise.
7809         * lib/unictype/pr_alphabetic.h: Likewise.
7810         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
7811         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
7812         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
7813         * lib/unictype/pr_bidi_block_separator.h: Likewise.
7814         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
7815         * lib/unictype/pr_bidi_common_separator.h: Likewise.
7816         * lib/unictype/pr_bidi_control.h: Likewise.
7817         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
7818         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
7819         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
7820         * lib/unictype/pr_bidi_european_digit.h: Likewise.
7821         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
7822         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
7823         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
7824         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
7825         * lib/unictype/pr_bidi_pdf.h: Likewise.
7826         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
7827         * lib/unictype/pr_bidi_whitespace.h: Likewise.
7828         * lib/unictype/pr_combining.h: Likewise.
7829         * lib/unictype/pr_composite.h: Likewise.
7830         * lib/unictype/pr_currency_symbol.h: Likewise.
7831         * lib/unictype/pr_dash.h: Likewise.
7832         * lib/unictype/pr_decimal_digit.h: Likewise.
7833         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
7834         * lib/unictype/pr_deprecated.h: Likewise.
7835         * lib/unictype/pr_diacritic.h: Likewise.
7836         * lib/unictype/pr_extender.h: Likewise.
7837         * lib/unictype/pr_format_control.h: Likewise.
7838         * lib/unictype/pr_grapheme_base.h: Likewise.
7839         * lib/unictype/pr_grapheme_extend.h: Likewise.
7840         * lib/unictype/pr_grapheme_link.h: Likewise.
7841         * lib/unictype/pr_hex_digit.h: Likewise.
7842         * lib/unictype/pr_hyphen.h: Likewise.
7843         * lib/unictype/pr_id_continue.h: Likewise.
7844         * lib/unictype/pr_id_start.h: Likewise.
7845         * lib/unictype/pr_ideographic.h: Likewise.
7846         * lib/unictype/pr_ids_binary_operator.h: Likewise.
7847         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
7848         * lib/unictype/pr_ignorable_control.h: Likewise.
7849         * lib/unictype/pr_iso_control.h: Likewise.
7850         * lib/unictype/pr_join_control.h: Likewise.
7851         * lib/unictype/pr_left_of_pair.h: Likewise.
7852         * lib/unictype/pr_line_separator.h: Likewise.
7853         * lib/unictype/pr_logical_order_exception.h: Likewise.
7854         * lib/unictype/pr_lowercase.h: Likewise.
7855         * lib/unictype/pr_math.h: Likewise.
7856         * lib/unictype/pr_non_break.h: Likewise.
7857         * lib/unictype/pr_not_a_character.h: Likewise.
7858         * lib/unictype/pr_numeric.h: Likewise.
7859         * lib/unictype/pr_other_alphabetic.h: Likewise.
7860         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
7861         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
7862         * lib/unictype/pr_other_id_continue.h: Likewise.
7863         * lib/unictype/pr_other_id_start.h: Likewise.
7864         * lib/unictype/pr_other_lowercase.h: Likewise.
7865         * lib/unictype/pr_other_math.h: Likewise.
7866         * lib/unictype/pr_other_uppercase.h: Likewise.
7867         * lib/unictype/pr_paired_punctuation.h: Likewise.
7868         * lib/unictype/pr_paragraph_separator.h: Likewise.
7869         * lib/unictype/pr_pattern_syntax.h: Likewise.
7870         * lib/unictype/pr_pattern_white_space.h: Likewise.
7871         * lib/unictype/pr_private_use.h: Likewise.
7872         * lib/unictype/pr_punctuation.h: Likewise.
7873         * lib/unictype/pr_quotation_mark.h: Likewise.
7874         * lib/unictype/pr_radical.h: Likewise.
7875         * lib/unictype/pr_sentence_terminal.h: Likewise.
7876         * lib/unictype/pr_soft_dotted.h: Likewise.
7877         * lib/unictype/pr_space.h: Likewise.
7878         * lib/unictype/pr_terminal_punctuation.h: Likewise.
7879         * lib/unictype/pr_titlecase.h: Likewise.
7880         * lib/unictype/pr_unassigned_code_value.h: Likewise.
7881         * lib/unictype/pr_unified_ideograph.h: Likewise.
7882         * lib/unictype/pr_uppercase.h: Likewise.
7883         * lib/unictype/pr_variation_selector.h: Likewise.
7884         * lib/unictype/pr_white_space.h: Likewise.
7885         * lib/unictype/pr_xid_continue.h: Likewise.
7886         * lib/unictype/pr_xid_start.h: Likewise.
7887         * lib/unictype/pr_zero_width.h: Likewise.
7888         * lib/unictype/scripts.h: Likewise.
7889         * lib/unictype/scripts_byname.gperf: Likewise.
7890         * lib/unictype/sy_c_ident.h: Likewise.
7891         * lib/unictype/sy_c_whitespace.h: Likewise.
7892         * lib/unictype/sy_java_ident.h: Likewise.
7893         * lib/unictype/sy_java_whitespace.h: Likewise.
7894
7895         * lib/unictype/Makefile: New file.
7896         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
7897         glibc.
7898         * lib/unictype/3level.h: New file, copied from glibc.
7899         * lib/unictype/3levelbit.h: New file.
7900
7901 2007-11-11  Bruno Haible  <bruno@clisp.org>
7902
7903         * modules/gperf: New file.
7904         * modules/iconv_open (Depends-on): Add it.
7905         (Makefile.am): Remove the GPERF definition.
7906
7907 2007-11-11  Bruno Haible  <bruno@clisp.org>
7908
7909         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
7910         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
7911
7912 2007-11-11  Bruno Haible  <bruno@clisp.org>
7913
7914         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
7915         (usage): Remove function.
7916
7917 2007-11-11  Bruno Haible  <bruno@clisp.org>
7918
7919         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
7920         gl_FUNC_CEILF_LIBS.
7921         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
7922         gl_FUNC_CEIL_LIBS.
7923         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
7924         gl_FUNC_CEILL_LIBS.
7925         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
7926         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
7927         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
7928
7929 2007-11-11  Bruno Haible  <bruno@clisp.org>
7930
7931         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
7932         roundf were declared but do not exist on functions.
7933         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
7934         roundl were declared but do not exist on functions.
7935         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
7936         HAVE_FLOORL_AND_CEILL, respectively.
7937         Needed for Sun C on Solaris 10.
7938
7939 2007-11-11  Bruno Haible  <bruno@clisp.org>
7940
7941         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
7942         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
7943         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
7944         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
7945         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
7946         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
7947         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
7948         HAVE_DECL_ROUNDF.
7949         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
7950         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
7951         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
7952         of HAVE_DECL_ROUND*.
7953         * modules/math (Makefile.am): Update.
7954
7955 2007-11-10  Bruno Haible  <bruno@clisp.org>
7956
7957         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
7958         ptrdiff_t as m4/intl.m4.
7959
7960 2007-11-10  Jim Meyering  <meyering@redhat.com>
7961
7962         Avoid link failure for the argmatch test.
7963         * tests/test-argmatch.c (usage): Define function to avoid a link
7964         failure: argmatch_die requires a usage function.
7965
7966 2007-11-09  Bruno Haible  <bruno@clisp.org>
7967
7968         * doc/functions/snprintf.texi: Mention BeOS deficiency.
7969         * doc/functions/vsnprintf.texi: Likewise.
7970         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
7971         with a size argument < 2.
7972
7973 2007-11-09  Bruno Haible  <bruno@clisp.org>
7974
7975         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
7976         buffer. Fixes an inefficiency introduced on 2007-11-03.
7977
7978 2007-11-09  Bruno Haible  <bruno@clisp.org>
7979
7980         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
7981         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
7982
7983 2007-11-08  Jim Meyering  <meyering@redhat.com>
7984
7985         Change cache variable name prefix "jm_" to "gl_" everywhere.
7986         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
7987         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
7988         * m4/uptime.m4: s/gl_/jm_/
7989
7990 2007-11-07  Bruno Haible  <bruno@clisp.org>
7991
7992         Update to GNU gettext 0.17.
7993         * m4/intl.m4: Update to GNU gettext 0.17.
7994         * m4/po.m4: Likewise.
7995         * modules/gettext (Files): Remove m4/ulonglong.m4.
7996         (configure.ac): Require gettext infrastructure from version 0.17.
7997
7998 2007-11-06  Bruno Haible  <bruno@clisp.org>
7999
8000         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
8001         symbolic values are not defined in a public header.
8002         * lib/freadable.c (freadable) [QNX]: Likewise.
8003         * lib/freadahead.c (freadahead) [QNX]: Likewise.
8004         * lib/freading.c (freading) [QNX]: Likewise.
8005         * lib/fseterr.c (fseterr) [QNX]: Likewise.
8006         * lib/fwritable.c (fwritable) [QNX]: Likewise.
8007         * lib/fwriting.c (fwriting) [QNX]: Likewise.
8008         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
8009         Reported by Alain Magloire.
8010
8011         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
8012
8013 2007-11-05  Bruno Haible  <bruno@clisp.org>
8014
8015         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
8016         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
8017         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
8018         Reported by Eric Blake.
8019
8020 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8021             Bruno Haible  <bruno@clisp.org>
8022
8023         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
8024         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
8025         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
8026         (malloc): Undefine also before including <stdlib.h>.
8027         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
8028         Needed on OSF/1 4.0.
8029
8030 2007-11-05  Jim Meyering  <meyering@redhat.com>
8031
8032         git-version-gen: sync from coreutils.
8033         * build-aux/git-version-gen: Add comments.
8034         Change the first '-' to '.' in the snapshot version string,
8035         e.g., 6.9-377-08144 -> 6.9.377-08144
8036         Remove first parameter.
8037         Don't declare a version "-dirty" merely because a time
8038         stamp has changed.
8039
8040 2007-11-04  Bruno Haible  <bruno@clisp.org>
8041
8042         * lib/lock.h: Protect all macro definitions containing an 'if'
8043         statement through a "do { ... } while (0)".
8044         * lib/tls.h: Likewise.
8045
8046 2007-11-04  Bruno Haible  <bruno@clisp.org>
8047
8048         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
8049
8050 2007-11-04  Bruno Haible  <bruno@clisp.org>
8051
8052         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
8053         * modules/fprintf-posix (Depends-on): Add nocrash.
8054         * modules/snprintf-posix (Depends-on): Likewise.
8055         * modules/sprintf-posix (Depends-on): Likewise.
8056         * modules/vasnprintf-posix (Depends-on): Likewise.
8057         * modules/vasprintf-posix (Depends-on): Likewise.
8058         * modules/vfprintf-posix (Depends-on): Likewise.
8059         * modules/vsnprintf-posix (Depends-on): Likewise.
8060         * modules/vsprintf-posix (Depends-on): Likewise.
8061         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
8062         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
8063         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
8064         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
8065         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
8066         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
8067         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
8068
8069 2007-11-04  Bruno Haible  <bruno@clisp.org>
8070
8071         * modules/nocrash: New file.
8072         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
8073         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
8074
8075 2007-11-04  Bruno Haible  <bruno@clisp.org>
8076
8077         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
8078         precision handling.
8079         * tests/test-vasprintf-posix.c (test_function): Likewise.
8080         * tests/test-snprintf-posix.h (test_function): Likewise.
8081         * tests/test-sprintf-posix.h (test_function): Likewise.
8082
8083         Fix *printf behaviour for large precisions on mingw and BeOS.
8084         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
8085         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
8086         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
8087         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8088         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8089         gl_PRINTF_PRECISION and test its result. Invoke
8090         gl_PREREQ_VASNPRINTF_PRECISION.
8091         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8092         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8093         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8094         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8095         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8096         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8097         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8098         * doc/functions/fprintf.texi: Update.
8099         * doc/functions/printf.texi: Update.
8100         * doc/functions/snprintf.texi: Update.
8101         * doc/functions/sprintf.texi: Update.
8102         * doc/functions/vfprintf.texi: Update.
8103         * doc/functions/vprintf.texi: Update.
8104         * doc/functions/vsnprintf.texi: Update.
8105         * doc/functions/vsprintf.texi: Update.
8106
8107 2007-11-04  Bruno Haible  <bruno@clisp.org>
8108
8109         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
8110
8111 2007-11-04  Bruno Haible  <bruno@clisp.org>
8112
8113         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
8114         Reported by Sylvain Beucler <beuc@gnu.org>.
8115
8116 2007-11-03  Bruno Haible  <bruno@clisp.org>
8117
8118         * tests/test-fprintf-posix2.sh: New file.
8119         * tests/test-fprintf-posix2.c: New file.
8120         * modules/fprintf-posix-tests (Files): Add them.
8121         (TESTS): Add test-fprintf-posix2.sh.
8122         (configure.ac): Check for getrlimit and setrlimit.
8123         (check_PROGRAMS): Add test-fprintf-posix2.
8124
8125         * tests/test-printf-posix2.sh: New file.
8126         * tests/test-printf-posix2.c: New file.
8127         * modules/printf-posix-tests (Files): Add them.
8128         (TESTS): Add test-printf-posix2.sh.
8129         (configure.ac): Check for getrlimit and setrlimit.
8130         (check_PROGRAMS): Add test-printf-posix2.
8131
8132         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
8133         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
8134         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
8135         (decode_double): New function, copied from decode_long_double.
8136         (scale10_round_decimal_decoded): New function, extracted from
8137         scale10_round_decimal_long_double.
8138         (scale10_round_decimal_long_double): Use it.
8139         (scale10_round_decimal_double): New function.
8140         (floorlog10): New function.
8141         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
8142         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
8143         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8144         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8145         gl_PRINTF_ENOMEM and test its result. Invoke
8146         gl_PREREQ_VASNPRINTF_ENOMEM.
8147         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8148         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8149         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8150         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8151         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8152         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8153         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8154         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
8155         * modules/snprintf-posix (Depends-on): Likewise.
8156         * modules/sprintf-posix (Depends-on): Likewise.
8157         * modules/vasnprintf-posix (Depends-on): Likewise.
8158         * modules/vasprintf-posix (Depends-on): Likewise.
8159         * modules/vfprintf-posix (Depends-on): Likewise.
8160         * modules/vsnprintf-posix (Depends-on): Likewise.
8161         * modules/vsprintf-posix (Depends-on): Likewise.
8162         * doc/functions/fprintf.texi: Update.
8163         * doc/functions/printf.texi: Update.
8164         * doc/functions/snprintf.texi: Update.
8165         * doc/functions/sprintf.texi: Update.
8166         * doc/functions/vfprintf.texi: Update.
8167         * doc/functions/vprintf.texi: Update.
8168         * doc/functions/vsnprintf.texi: Update.
8169         * doc/functions/vsprintf.texi: Update.
8170
8171 2007-11-03  Bruno Haible  <bruno@clisp.org>
8172
8173         * modules/frexp-nolibm-tests: New file.
8174
8175         * modules/frexp-nolibm: New file.
8176         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
8177
8178 2007-11-03  Bruno Haible  <bruno@clisp.org>
8179
8180         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
8181         value is C99 compliant.
8182         Needed for OSF/1 5.1.
8183
8184 2007-11-03  Bruno Haible  <bruno@clisp.org>
8185
8186         Fix out-of-memory handling of vasnprintf.
8187         * lib/printf-parse.c: Include <errno.h>.
8188         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
8189         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
8190         is already set.
8191
8192 2007-11-02  Eric Blake  <ebb9@byu.net>
8193
8194         Fix tests on cygwin.
8195         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
8196
8197 2007-11-01  Bruno Haible  <bruno@clisp.org>
8198
8199         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
8200         warning.
8201         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
8202         needed for POSIX compatibility.
8203
8204 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
8205
8206         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
8207         for compatibility with GNU.
8208
8209 2007-11-01  Bruno Haible  <bruno@clisp.org>
8210
8211         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
8212         (putenv): Renamed from rpl_putenv. Change argument type from
8213         'const char *' to 'char *'.
8214         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
8215         of defining putenv in config.h, just set REPLACE_PUTENV.
8216         * modules/putenv (Depends-on): Add stdlib.
8217         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
8218         (Include): Use <stdlib.h>.
8219         * lib/stdlib.in.h (putenv): New declaration.
8220         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
8221         REPLACE_PUTENV.
8222         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
8223         REPLACE_PUTENV.
8224         Needed for MacOS X 10.5.0.
8225         Reported by Peter O'Gorman <peter@pogma.com>.
8226
8227 2007-11-01  Jim Meyering  <meyering@redhat.com>
8228
8229         Treat an empty date string exactly like "0".
8230         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
8231         if the remaining date string (to be parsed) is empty, use "0".
8232         Reported by Mischa Molhoek and discussed in this thread:
8233         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
8234
8235 2007-10-31  Bruno Haible  <bruno@clisp.org>
8236
8237         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
8238         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
8239         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
8240         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
8241         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
8242         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
8243
8244 2007-10-31  Bruno Haible  <bruno@clisp.org>
8245
8246         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
8247         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
8248         (AC_TYPE_LONG_LONG_INT): Use it.
8249         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
8250         it as well.
8251         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
8252         to m4/longlong.m4.
8253         * modules/stdint (Files): Remove m4/ulonglong.m4.
8254         * modules/strtoull (Files): Use m4/longlong.m4 instead of
8255         m4/ulonglong.m4.
8256         * modules/strtoumax (Files): Likewise.
8257
8258 2007-10-30  Bruno Haible  <bruno@clisp.org>
8259
8260         * modules/xvasprintf-posix: New file.
8261         Suggested by Eric Blake.
8262
8263 2007-10-30  Bruno Haible  <bruno@clisp.org>
8264
8265         * modules/xprintf-posix-tests: New file.
8266         * tests/test-xprintf-posix.sh: New file.
8267         * tests/test-xprintf-posix.c: New file.
8268         * tests/test-xfprintf-posix.c: New file.
8269
8270         * modules/xprintf-posix: New file.
8271
8272 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8273
8274         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
8275         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
8276         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
8277
8278 2007-10-29  Bruno Haible  <bruno@clisp.org>
8279
8280         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
8281         contain the special marker '_cv_'.
8282         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
8283         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
8284         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
8285         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
8286         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
8287         Reported by Ralf Wildenhues.
8288
8289 2007-10-29  Bruno Haible  <bruno@clisp.org>
8290
8291         * gnulib-tool (func_import): When --lgpl is not specified, set
8292         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
8293         GPLv3.
8294         Reported by Simon Josefsson.
8295
8296 2007-10-28  Bruno Haible  <bruno@clisp.org>
8297
8298         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
8299         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
8300         HAVE_DECL_ISFINITE.
8301         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8302         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
8303         HAVE_DECL_ISFINITE.
8304
8305 2007-10-28  Bruno Haible  <bruno@clisp.org>
8306
8307         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
8308         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
8309
8310 2007-10-28  Bruno Haible  <bruno@clisp.org>
8311
8312         Fix link errors with Sun C 5.0 on Solaris 10.
8313         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
8314         function is declared but not present in the compiler's libm.
8315         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
8316         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
8317         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
8318         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
8319         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
8320         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
8321         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
8322         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8323         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
8324         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
8325         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
8326         HAVE_DECL_FLOORL.
8327
8328 2007-10-28  Bruno Haible  <bruno@clisp.org>
8329
8330         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
8331         gl_FUNC_FLOORL. Cache the result.
8332         (gl_FUNC_FLOORL): Use it.
8333         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
8334         gl_FUNC_CEILL. Cache the result.
8335         (gl_FUNC_CEILL): Use it.
8336
8337         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
8338         gl_FUNC_FLOOR. Cache the result.
8339         (gl_FUNC_FLOOR): Use it.
8340         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
8341         gl_FUNC_CEIL. Cache the result.
8342         (gl_FUNC_CEIL): Use it.
8343
8344         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
8345         gl_FUNC_FLOORF. Cache the result.
8346         (gl_FUNC_FLOORF): Use it.
8347         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
8348         gl_FUNC_CEILF. Cache the result.
8349         (gl_FUNC_CEILF): Use it.
8350
8351 2007-10-28  Bruno Haible  <bruno@clisp.org>
8352
8353         * gnulib-tool: Allow specifying the LGPL version number through
8354         --lgpl=2 or --lgpl=3.
8355         (func_usage): Document --lgpl with argument.
8356         Handle --lgpl=... arguments.
8357         (func_import): Recognize also gl_LGPL calls with an argument. When
8358         --lgpl=2 is used and the module's license is just LGPL, report an
8359         error. Set sed_transform_lib_file according to the lgpl variable. In
8360         the generated files, use --lgpl or gl_LGPL invocations with argument,
8361         if necessary.
8362         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
8363         an LGPv2+ license.
8364         * doc/gnulib-tool.texi (Modified imports): Update explanation of
8365         gl_LGPL macro.
8366
8367 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8368             Bruno Haible  <bruno@clisp.org>
8369
8370         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
8371         (u16_uctomb_aux): Likewise.
8372         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
8373         !HAVE_INLINE.
8374         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
8375
8376 2007-10-28  Bruno Haible  <bruno@clisp.org>
8377
8378         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
8379         Invoke AM_GETTEXT_OPTION if it exists.
8380         * modules/vasprintf: Likewise.
8381         * modules/verror: Likewise.
8382         * modules/xprintf: Likewise.
8383         * modules/xvasprintf: Likewise.
8384
8385 2007-10-27  Ben Pfaff  <blp@gnu.org>
8386
8387         * lib/math.in.h: Define isfinite macro and prototypes for
8388         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
8389         implementations.
8390         * m4/math_h.m4: New substitutions for isfinite module.
8391         * lib/isfinite.c: New file.
8392         * m4/isfinite.m4: New file.
8393         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
8394         * modules/isfinite: New file.
8395         * modules/isfinite-tests: New file.
8396         * tests/tests-isfinite.c: New file.
8397         * doc/functions/isfinite.texi: Mention isfinite module.
8398         * MODULES.html.sh: Mention new module.
8399
8400 2007-10-27  Ben Pfaff  <blp@gnu.org>
8401
8402         Ralf Wildenhues reported that Tru64 4.0D declares the round
8403         functions but does not have definitions.
8404         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
8405         cannot be found in any library, set the output variable to
8406         "missing" instead of "".
8407         * m4/round.m4: Also use our substitute if we cannot find round in
8408         any library, even if it is declared.
8409         * m4/roundf.m4: Likewise for roundf.
8410         * m4/roundl.m4: Likewise for roundl.
8411         * lib/math.in.h: Undefine roundf, round, roundl before defining
8412         their replacements, to allow for hypothetical systems where these
8413         may be defined as macros but not available in libraries.
8414
8415 2007-10-27  Bruno Haible  <bruno@clisp.org>
8416
8417         * doc/gnulib.texi: Invoke @firstparagraphindent.
8418         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
8419         changes in gnulib.
8420         (Source changes): New section.
8421
8422 2007-10-26  Bruno Haible  <bruno@clisp.org>
8423
8424         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
8425         borrowed from autoconf.
8426
8427 2007-10-26  Bruno Haible  <bruno@clisp.org>
8428
8429         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
8430         strerror returned the empty string. Needed on HP-UX 11.00.
8431
8432 2007-10-24  Micah Cowan  <micah@cowan.name>
8433
8434         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
8435         * build-aux/bootstrap: Remove support for now-unnecessary option,
8436         --cvs-user, and envvars CVS_USER, CVS_RSH.
8437
8438 2007-10-24  Jim Meyering  <meyering@redhat.com>
8439
8440         Avoid diagnostics from sha1sum when there is no cached checksum.
8441         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
8442         if the po.s1 file hasn't been created yet.
8443
8444         * build-aux/bootstrap: Sync from coreutils:
8445         2007-10-24  Jim Meyering  <meyering@redhat.com>
8446         Get gnulib from the git repository, not from an obsolete cvs one.
8447         * build-aux/bootstrap: Suggestion from Micah Cowan.
8448         2007-10-04  Jim Meyering  <jim@meyering.net>
8449         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
8450         (update_po_files): Work also when there are no .po files in po/.
8451
8452 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8453
8454         * README: Append ".git" to git and cg examples.
8455         Problem reported by Benoit Sigoure.
8456
8457 2007-10-23  Micah Cowan  <micah@cowan.name>
8458
8459         * users.txt: Add wget.
8460
8461 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8462
8463         Fix linking of some unistdio tests on FreeBSD.
8464         * modules/unistdio/u16-vsnprintf-tests
8465         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
8466         * modules/unistdio/u16-vsprintf-tests
8467         (test_u16_vsnprintf1_LDADD): Likewise.
8468         * modules/unistdio/u32-vsnprintf-tests
8469         (test_u32_vsnprintf1_LDADD): Likewise.
8470         * modules/unistdio/u32-vsprintf-tests
8471         (test_u32_vsprintf1_LDADD): Likewise.
8472         * modules/unistdio/u8-vsnprintf-tests
8473         (test_u8_vsnprintf1_LDADD): Likewise.
8474         * modules/unistdio/u8-vsprintf-tests
8475         (test_u8_vsprintf1_LDADD): Likewise.
8476         * modules/unistdio/ulc-vsnprintf-tests
8477         (test_ulc_vsnprintf1_LDADD): Likewise.
8478         * modules/unistdio/ulc-vsprintf-tests
8479         (test_ulc_vsprintf1_LDADD): Likewise.
8480
8481         Fix linking of some uniconv tests on FreeBSD.
8482         * modules/uniconv/u16-conv-from-enc-tests
8483         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
8484         * modules/uniconv/u16-conv-to-enc-tests
8485         (test_u16_conv_to_enc_LDADD): Likewise.
8486         * modules/uniconv/u16-strconv-from-enc-tests
8487         (test_u16_strconv_from_enc_LDADD): Likewise.
8488         * modules/uniconv/u16-strconv-to-enc-tests
8489         (test_u16_strconv_to_enc_LDADD): Likewise.
8490         * modules/uniconv/u32-conv-from-enc-tests
8491         (test_u32_conv_from_enc_LDADD): Likewise.
8492         * modules/uniconv/u32-conv-to-enc-tests
8493         (test_u32_conv_to_enc_LDADD): Likewise.
8494         * modules/uniconv/u32-strconv-from-enc-tests
8495         (test_u32_strconv_from_enc_LDADD): Likewise.
8496         * modules/uniconv/u32-strconv-to-enc-tests
8497         (test_u32_strconv_to_enc_LDADD): Likewise.
8498         * modules/uniconv/u8-conv-from-enc-tests
8499         (test_u8_conv_from_enc_LDADD): Likewise.
8500         * modules/uniconv/u8-conv-to-enc-tests
8501         (test_u8_conv_to_enc_LDADD): Likewise.
8502         * modules/uniconv/u8-strconv-from-enc-tests
8503         (test_u8_strconv_from_enc_LDADD): Likewise.
8504         * modules/uniconv/u8-strconv-to-enc-tests
8505         (test_u8_strconv_to_enc_LDADD): Likewise.
8506
8507 2007-10-22  Bruno Haible  <bruno@clisp.org>
8508
8509         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
8510         size.
8511
8512 2007-10-22  Eric Blake  <ebb9@byu.net>
8513
8514         Tweak x*printf documentation.
8515         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
8516         variable name and comments.
8517         Suggested by Bruno Haible.
8518
8519 2007-10-22  Bruno Haible  <bruno@clisp.org>
8520
8521         * lib/acl.c (copy_acl): Fix file name in comment.
8522
8523 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8524
8525         Fix Tru64 problem with stdbool.h.
8526         * lib/stdbool.in.h (false, true):
8527         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
8528         Don't declare as an enum in this situation; it runs afoul of Tru64.
8529         Problem reported by Steven M. Schweda in
8530         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
8531
8532 2007-10-22  Eric Blake  <ebb9@byu.net>
8533
8534         Also wrap vf?printf.
8535         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
8536         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
8537         (xvprintf, xvfprintf): New functions.
8538
8539 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8540
8541         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
8542         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
8543
8544         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
8545         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
8546
8547 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8548
8549         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
8550         by Bruno Haible.
8551
8552 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8553
8554         * lib/getloadavg.c
8555         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
8556         Undef `sys' after including sys/table.h, for Tru64 4.0D.
8557
8558         * tests/test-i-ring.c: Work for C89.
8559
8560 2007-10-22  Bruno Haible  <bruno@clisp.org>
8561
8562         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
8563         -1u, in preprocessor expression, so that we don't test for the bug
8564         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
8565         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
8566
8567 2007-10-22  Eric Blake  <ebb9@byu.net>
8568
8569         * tests/test-yesno.sh: Silence stderr during test.
8570
8571 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8572
8573         * modules/crypto/gc-camellia: New file.
8574
8575         * m4/gc-camellia.m4: New file.
8576
8577         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
8578
8579         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
8580
8581 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8582
8583         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
8584         --help to stdout.  Reported by sms@antinode.org (Steven
8585         M. Schweda).
8586
8587 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8588
8589         * users.txt: Fix link to libksba.
8590
8591 2007-10-21  Ben Pfaff  <blp@gnu.org>
8592
8593         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
8594         round.c roundf implementation that depends on floorf and ceilf to
8595         be tested unconditionally.
8596
8597 2007-10-21  Ben Pfaff  <blp@gnu.org>
8598
8599         * m4/check-libm-func.m4: Removed.
8600         * m4/check-math-lib.m4: New file.
8601         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
8602         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
8603         definition and lack of AC_LIBOBJ([roundf]).
8604         * m4/roundl.m4: Ditto, and similarly for roundl.
8605         * modules/round: Reference new m4 file.
8606         * modules/roundf: Ditto.
8607         * modules/roundl: Ditto.
8608         * tests/test-round2.c (main): Use ROUND instead of round.
8609         Bug report from Bruno Haible.
8610
8611 2007-10-21  Bruno Haible  <bruno@clisp.org>
8612
8613         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
8614         context.
8615
8616 2007-10-21  Bruno Haible  <bruno@clisp.org>
8617
8618         * tests/test-wcwidth.c (main): Allow negative result for some control
8619         characters.
8620
8621         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
8622         Needed on OSF/1 5.1.
8623
8624 2007-10-21  Bruno Haible  <bruno@clisp.org>
8625
8626         * tests/test-floorf1.c: Include isnanf.h.
8627         (main): Use isnanf() instead of isnan().
8628         * tests/test-ceilf1.c: Include isnanf.h.
8629         (main): Use isnanf() instead of isnan().
8630         * tests/test-truncf1.c: Include isnanf.h.
8631         (main): Use isnanf() instead of isnan().
8632         * tests/test-roundf1.c: Include isnanf.h.
8633         (main): Use isnanf() instead of isnan().
8634
8635 2007-10-21  Eric Blake  <ebb9@byu.net>
8636
8637         * users.txt: Update URL for m4.
8638
8639 2007-10-21  Bruno Haible  <bruno@clisp.org>
8640
8641         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
8642
8643 2007-10-21  Bruno Haible  <bruno@clisp.org>
8644
8645         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
8646         Git's management files if the CVS files are not present.
8647
8648 2007-10-20  Bruno Haible  <bruno@clisp.org>
8649
8650         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
8651         gcc-3.4.x.
8652
8653 2007-10-20  Ben Pfaff  <blp@gnu.org>
8654
8655         * lib/math.in.h: Declare round, roundf, roundl if we are providing
8656         implementations.
8657         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
8658         * lib/round.c: New file.
8659         * lib/roundf.c: New file.
8660         * lib/roundl.c: New file.
8661         * m4/round.m4: New file.
8662         * m4/roundf.m4: New file.
8663         * m4/roundl.m4: New file.
8664         * m4/check-libm-func-m4: New file.
8665         * modules/math: Replace round, roundf, roundl related @VARS@ in
8666         math.in.h.
8667         * modules/round: New file.
8668         * modules/round-tests: New file.
8669         * modules/roundf: New file.
8670         * modules/roundf-tests: New file.
8671         * modules/roundl: New file.
8672         * modules/roundl-tests: New file.
8673         * tests/test-round1.c: New file.
8674         * tests/test-round2.c: New file.
8675         * tests/test-roundf1.c: New file.
8676         * tests/test-roundf2.c: New file.
8677         * tests/test-roundl.c: New file.
8678         * doc/functions/round.texi: Mention round module.
8679         * doc/functions/roundf.texi: Mention roundf module.
8680         * doc/functions/roundl.texi: Mention roundl module.
8681         * MODULES.html.sh: Mention new modules.
8682         Thanks to Bruno Haible for suggestions.
8683
8684 2007-10-20  Jim Meyering  <meyering@redhat.com>
8685
8686         * lib/xprintf.c: Include <config.h> unconditionally.
8687
8688         Change xprintf's license to GPL.
8689         * modules/xprintf (License): s/LGPL/GPL/, since this module
8690         depends on modules (exit and exitfail) which are GPL.
8691         Suggestion from Bruno Haible.
8692
8693         xprintf fixes.
8694         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
8695         Use a clearer diagnostic.
8696         Patch from Bruno Haible.
8697
8698 2007-10-20  Bruno Haible  <bruno@clisp.org>
8699
8700         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
8701         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
8702         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8703
8704 2007-10-20  Bruno Haible  <bruno@clisp.org>
8705
8706         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
8707         precision in the comparison result > x - 1 or similar.
8708         * tests/test-ceilf2.c (correct_result_p): Likewise.
8709         * tests/test-truncf2.c (correct_result_p): Likewise.
8710         * tests/test-trunc2.c (correct_result_p): Likewise.
8711         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8712
8713 2007-10-20  Bruno Haible  <bruno@clisp.org>
8714
8715         * modules/ceil: New file.
8716         * m4/ceil.m4: New file.
8717         * doc/functions/ceil.texi: Mention the 'ceil' module.
8718
8719 2007-10-20  Bruno Haible  <bruno@clisp.org>
8720
8721         * modules/floor: New file.
8722         * m4/floor.m4: New file.
8723         * doc/functions/floor.texi: Mention the 'floor' module.
8724
8725 2007-10-20  Bruno Haible  <bruno@clisp.org>
8726
8727         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
8728         of %a.
8729         * modules/floorf-tests (Depends-on): Likewise.
8730         * modules/truncf-tests (Depends-on): Likewise.
8731         * modules/trunc-tests (Depends-on): Likewise.
8732         Reported by Ben Pfaff.
8733
8734 2007-10-19  Jim Meyering  <meyering@redhat.com>
8735
8736         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
8737         Don't bother testing specific errno values.  Just test ferror.
8738
8739         New module: xprintf
8740         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
8741
8742 2007-10-19  Bruno Haible  <bruno@clisp.org>
8743
8744         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
8745         syntax.
8746         * modules/javaexec (Makefile.am): Likewise.
8747         * modules/relocatable-prog (Makefile.am): Likewise.
8748         Suggested by Jim Meyering.
8749
8750 2007-10-18  Bruno Haible  <bruno@clisp.org>
8751
8752         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
8753         Reported by Jim Meyering.
8754
8755 2007-10-18  Eric Blake  <ebb9@byu.net>
8756
8757         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
8758
8759 2007-10-18  Bruno Haible  <bruno@clisp.org>
8760
8761         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
8762         the format string into writable memory. Needed in Fortify conditions.
8763
8764 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
8765             Bruno Haible  <bruno@clisp.org>
8766
8767         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
8768         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
8769         * modules/trim (Depends-on): Add mbchar.
8770         (configure.ac): Add gl_FUNC_MBRTOWC.
8771         (Makefile.am): Augment lib_SOURCES.
8772
8773 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
8774
8775         Modify glob.c to use fstatat and dirfd, to simplify it.
8776         Suggested by Eric Blake.
8777         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
8778         Don't include <stdbool.h>; not used.
8779         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
8780         (link_exists_p): Simplify implementation, since we can now assume
8781         dirfd and fstatat.
8782         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
8783
8784 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8785
8786         * gnulib-tool (func_get_dependencies): Fix sed script to
8787         match only tests.
8788
8789 2007-10-17  Bruno Haible  <bruno@clisp.org>
8790
8791         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
8792         allow locale names without encoding suffix.
8793         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
8794         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
8795
8796 2007-10-16  Bruno Haible  <bruno@clisp.org>
8797
8798         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
8799         * lib/getgroups.c (getgroups): Likewise.
8800         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
8801
8802 2007-10-16  Bruno Haible  <bruno@clisp.org>
8803
8804         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
8805         * modules/malloc-posix (License): Likewise.
8806         * modules/realloc-posix (License): Likewise.
8807         * modules/calloc-posix (License): Likewise.
8808         * modules/intprops (License): Change from GPL to LGPL, with
8809         Paul Eggert's approval.
8810
8811 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8812
8813         Merge glibc changes into lib/glob.c.
8814
8815         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
8816         2007-10-15 04:59:03 UTC.  Here are the changes:
8817
8818         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
8819
8820         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
8821
8822         * lib/glob.c: Add some branch prediction throughout.
8823
8824         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
8825
8826         [BZ #5103]
8827         * lib/glob.c (glob): Recognize patterns starting \/.
8828
8829         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
8830
8831         [BZ #3996]
8832         * lib/glob.c (attribute_hidden): Define if not defined.
8833         (glob): Unescape dirname, filename or username when needed and not
8834         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
8835         is NULL.  Handle unescaped [ in pattern without closing ].
8836         Don't pass GLOB_CHECK down to recursive glob for directories.
8837         (__glob_pattern_type): New function.
8838         (__glob_pattern_p): Implement using __glob_pattern_type.
8839         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8840         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8841         Remove unreachable code.
8842
8843         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
8844
8845         * lib/glob.c (glob_in_dir): Add some comments and asserts to
8846         explain why there are no leaks.
8847
8848         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
8849
8850         [BZ #3253]
8851         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
8852         time, rather allocate increasingly bigger arrays of pointers, if
8853         possible with alloca, if too large with malloc.
8854
8855 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8856
8857         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
8858         Problem reported by H.Merijn Brand in
8859         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
8860         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
8861         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
8862
8863 2007-10-15  Bruno Haible  <bruno@clisp.org>
8864
8865         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
8866         with explicit rpl_ prefix.
8867         * lib/fopen.c (fopen): Likewise.
8868         * lib/freopen.c (freopen): Likewise.
8869         * lib/iconv.c (iconv): Likewise.
8870         * lib/iconv_close.c (iconv_close): Likewise.
8871
8872 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8873
8874         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
8875
8876 2007-10-15  Bruno Haible  <bruno@clisp.org>
8877
8878         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
8879         <stddef.h> instead of <stdlib.h> since we only need NULL.
8880         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8881
8882 2007-10-15  Bruno Haible  <bruno@clisp.org>
8883
8884         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
8885         Replace paragraph talking about LIBOBJS.
8886         Reported by Colin Watson <cjwatson@debian.org>.
8887
8888 2007-10-15  Bruno Haible  <bruno@clisp.org>
8889
8890         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
8891         <stdlib.h> before using NULL.
8892
8893 2007-10-15  Simon Josefsson  <simon@josefsson.org>
8894
8895         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
8896         Reported by Albert Chin <china@thewrittenword.com>.
8897
8898 2007-10-14  Bruno Haible  <bruno@clisp.org>
8899
8900         * modules/iconv_open-utf-tests: New file.
8901         * tests/test-iconv-utf.c: New file.
8902
8903         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
8904         * modules/iconv_open-utf: New file.
8905         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
8906         (iconv, iconv_close): New declarations.
8907         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
8908         be defined.
8909         (iconv_open): Add special handling of conversion between UTF-8 and
8910         UTF-{16,32}{BE,LE}.
8911         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
8912         * lib/iconv_close.c: New file.
8913         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
8914         gl_FUNC_ICONV_OPEN.
8915         (gl_FUNC_ICONV_OPEN): Use it.
8916         (gl_FUNC_ICONV_OPEN_UTF): New macro.
8917         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
8918         and REPLACE_ICONV_UTF.
8919         * modules/iconv_open (Depends-on): Add c-strcase.
8920         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
8921         ICONV_CONST.
8922         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
8923
8924 2007-10-13  Albert Chin  <china@thewrittenword.com>
8925             Bruno Haible  <bruno@clisp.org>
8926
8927         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
8928         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
8929
8930 2007-10-13  Bruno Haible  <bruno@clisp.org>
8931
8932         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
8933         defined, use the ISO C99 inline semantics.
8934         * lib/argp.h (ARGP_EI): Likewise.
8935
8936 2007-10-13  Bruno Haible  <bruno@clisp.org>
8937
8938         Handle 'inline' change in gcc 4.3.0.
8939         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
8940         argp_fmtstream_write, argp_fmtstream_set_lmargin,
8941         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
8942         argp_fmtstream_point): Disable 'extern' declaration if the function
8943         definition is going to be provided inline.
8944         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
8945         semantics, not the ISO C99 inline semantics.
8946         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
8947         'extern' declaration if the function definition is going to be provided
8948         inline.
8949         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
8950         the GNU C inline semantics, not the ISO C99 inline semantics. With
8951         GCC 4.2, avoid a warning.
8952
8953 2007-10-13  Bruno Haible  <bruno@clisp.org>
8954
8955         * lib/freading.h (freading): Enable the use of __freading for
8956         glibc >= 2.7.
8957         * lib/freading.c (freading): Likewise.
8958
8959 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
8960
8961         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
8962         "warning: C99 inline functions are not supported; using GNU89".
8963
8964 2007-10-12  Bruno Haible  <bruno@clisp.org>
8965
8966         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
8967         of 2.
8968         * tests/test-ceilf2.c: New file.
8969         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
8970
8971         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
8972         * modules/ceilf-tests: Update.
8973
8974 2007-10-12  Bruno Haible  <bruno@clisp.org>
8975
8976         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
8977         of 2.
8978         * tests/test-floorf2.c: New file.
8979         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
8980
8981         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
8982         * modules/floorf-tests: Update.
8983
8984 2007-10-12  Bruno Haible  <bruno@clisp.org>
8985
8986         * tests/test-trunc2.c: New file.
8987         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
8988
8989         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
8990         * modules/trunc-tests: Update.
8991
8992 2007-10-12  Bruno Haible  <bruno@clisp.org>
8993
8994         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
8995         of 2.
8996         * tests/test-truncf2.c: New file.
8997         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
8998
8999         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
9000         * modules/truncf-tests: Update.
9001
9002 2007-10-11  Eric Blake  <ebb9@byu.net>
9003
9004         Don't claim strerror is broken on Interix.
9005         * doc/functions/strerror.texi (strerror): Known broken systems are
9006         now Solaris 8, and not Interix.
9007         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
9008         Interix on cross-compile.
9009         Reported by Martin Koeppe in
9010         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
9011
9012 2007-10-11  Bruno Haible  <bruno@clisp.org>
9013
9014         * modules/i-ring-tests: New file.
9015         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
9016         instead of assert.
9017
9018 2007-10-11  Bruno Haible  <bruno@clisp.org>
9019
9020         * modules/filenamecat-tests: New file.
9021         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
9022         * lib/filenamecat.c: Remove test code.
9023
9024 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9025
9026         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
9027
9028         * lib/strerror.c: Include <string.h> always, to test interface,
9029         and to remove the need for the dummy.
9030         Include intprops.h to compute width instead of doing it ourselves
9031         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
9032         (strerror): Define it to return NULL if there's no system strerror.
9033         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
9034         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
9035         ancient pre-strerror Unix systems well any more.  Saying "unknown
9036         system error" is enough.
9037         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
9038         simpler strerror.c implementation.
9039         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
9040         Simplify the tests to reflect the simpler strerror implementation.
9041         * modules/strerror (Depends-on): Add intprops.
9042
9043 2007-10-09  Eric Blake  <ebb9@byu.net>
9044
9045         Silence test-fpending.
9046         * modules/fpending-tests (Files): Add wrapper script.
9047         * tests/test-fpending.sh: New file.
9048
9049 2007-10-09  Bruno Haible  <bruno@clisp.org>
9050
9051         * MODULES.html.sh (func_module): Don't create a hyperlink for
9052         function names like 'printf_frexp'.
9053         (Misc): Add crc, memxor.
9054         (Characteristics of floating types): New section.
9055         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
9056         isnanf-nolibm, signbit, trunc, truncf, truncl.
9057         (Enhancements for ISO C 99 functions): New subsection Input/output.
9058         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
9059         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
9060         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
9061         (Compatibility checks for POSIX:2001 functions): Add clock-time.
9062         (Enhancements for POSIX:2001 functions): Add chdir-long.
9063         (File system functions): Add areadlink, chdir-safer, read-file.
9064         Remove cycle-check.
9065         (File system as inode set): New section.
9066         (Date and time): Add gethrxtime.
9067         (Multithreading): Add openmp.
9068         (Internationalization functions): Add localename.
9069         (Unicode string functions): Add unistr/u*-mbsnlen.
9070         (Support for maintaining and releasing projects): Add git-version-gen.
9071         (Lone files): Remove directories.
9072
9073 2007-10-08  Ben Pfaff  <blp@gnu.org>
9074
9075         * lib/xmalloca.h: Fix typo in comment.
9076
9077 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
9078
9079         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
9080         when avoiding problems with integer overflow.  Use a portable test
9081         instead.
9082
9083 2007-10-08  Simon Josefsson  <simon@josefsson.org>
9084
9085         * modules/dummy (License): Change to LGPLv2+.
9086         * modules/float (License): Likewise
9087         * modules/realloc (License): Likewise
9088         * modules/stdlib (License): Likewise
9089
9090 2007-10-07  Bruno Haible  <bruno@clisp.org>
9091
9092         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
9093         * floor.c (TWO_MANT_DIG): Likewise.
9094         * ceil.c (TWO_MANT_DIG): Likewise.
9095         Reported by Ben Pfaff.
9096
9097 2007-10-07  Bruno Haible  <bruno@clisp.org>
9098
9099         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
9100         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
9101         * lib/frexp.c (FUNC): Likewise.
9102         * lib/printf-frexp.h (printf_frexp): Likewise.
9103         * lib/printf-frexpl.h (printf_frexpl): Likewise.
9104         * lib/printf-frexp.c (FUNC): Likewise.
9105         Suggested by Jim Meyering.
9106
9107 2007-10-07  Jim Meyering  <meyering@redhat.com>
9108
9109         Make xnanosleep's integer overflow test more robust.
9110         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
9111         so that gcc-4.3.0 doesn't optimize away this test for overflow.
9112
9113 2007-10-07  Bruno Haible  <bruno@clisp.org>
9114
9115         * NEWS: Mention the license change.
9116
9117         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
9118         abbreviations in the modules files.
9119
9120         Change copyright notice from GPLv2+ to GPLv3+.
9121         * README: Change copyright notice.
9122         * MODULES.html.sh: Likewise.
9123         * build-aux/bootstrap.conf: Likewise.
9124         * build-aux/config.libpath: Likewise.
9125         * build-aux/csharpcomp.sh.in: Likewise.
9126         * build-aux/csharpexec.sh.in: Likewise.
9127         * build-aux/install-reloc: Likewise.
9128         * build-aux/javacomp.sh.in: Likewise.
9129         * build-aux/javaexec.sh.in: Likewise.
9130         * build-aux/ldd.sh.in: Likewise.
9131         * build-aux/reloc-ldflags: Likewise.
9132         * build-aux/relocatable.sh.in: Likewise.
9133         * build-aux/x-to-1.in: Likewise.
9134         * check-module: Likewise.
9135         * config/srclistvars.sh: Likewise.
9136         * gnulib-tool: Likewise.
9137         * lib/acl-internal.h: Likewise.
9138         * lib/acl.c: Likewise.
9139         * lib/acl.h: Likewise.
9140         * lib/acl_entries.c: Likewise.
9141         * lib/areadlink-with-size.c: Likewise.
9142         * lib/areadlink.c: Likewise.
9143         * lib/areadlink.h: Likewise.
9144         * lib/argmatch.c: Likewise.
9145         * lib/argmatch.h: Likewise.
9146         * lib/argp-ba.c: Likewise.
9147         * lib/argp-eexst.c: Likewise.
9148         * lib/argp-fmtstream.c: Likewise.
9149         * lib/argp-fmtstream.h: Likewise.
9150         * lib/argp-fs-xinl.c: Likewise.
9151         * lib/argp-help.c: Likewise.
9152         * lib/argp-namefrob.h: Likewise.
9153         * lib/argp-parse.c: Likewise.
9154         * lib/argp-pin.c: Likewise.
9155         * lib/argp-pv.c: Likewise.
9156         * lib/argp-pvh.c: Likewise.
9157         * lib/argp-xinl.c: Likewise.
9158         * lib/argp.h: Likewise.
9159         * lib/at-func.c: Likewise.
9160         * lib/atanl.c: Likewise.
9161         * lib/backupfile.c: Likewise.
9162         * lib/backupfile.h: Likewise.
9163         * lib/basename.c: Likewise.
9164         * lib/binary-io.h: Likewise.
9165         * lib/byteswap.in.h: Likewise.
9166         * lib/c-stack.c: Likewise.
9167         * lib/c-stack.h: Likewise.
9168         * lib/c-strcasestr.c: Likewise.
9169         * lib/c-strcasestr.h: Likewise.
9170         * lib/c-strstr.c: Likewise.
9171         * lib/c-strstr.h: Likewise.
9172         * lib/c-strtod.c: Likewise.
9173         * lib/calloc.c: Likewise.
9174         * lib/canon-host.c: Likewise.
9175         * lib/canon-host.h: Likewise.
9176         * lib/canonicalize-lgpl.c: Likewise.
9177         * lib/canonicalize.c: Likewise.
9178         * lib/canonicalize.h: Likewise.
9179         * lib/ceil.c: Likewise.
9180         * lib/ceilf.c: Likewise.
9181         * lib/ceill.c: Likewise.
9182         * lib/chdir-long.c: Likewise.
9183         * lib/chdir-long.h: Likewise.
9184         * lib/chdir-safer.c: Likewise.
9185         * lib/chdir-safer.h: Likewise.
9186         * lib/chown.c: Likewise.
9187         * lib/classpath.c: Likewise.
9188         * lib/classpath.h: Likewise.
9189         * lib/clean-temp.c: Likewise.
9190         * lib/clean-temp.h: Likewise.
9191         * lib/cloexec.c: Likewise.
9192         * lib/close-stream.c: Likewise.
9193         * lib/closein.c: Likewise.
9194         * lib/closein.h: Likewise.
9195         * lib/closeout.c: Likewise.
9196         * lib/closeout.h: Likewise.
9197         * lib/concat-filename.c: Likewise.
9198         * lib/copy-file.c: Likewise.
9199         * lib/copy-file.h: Likewise.
9200         * lib/count-one-bits.h: Likewise.
9201         * lib/crc.c: Likewise.
9202         * lib/crc.h: Likewise.
9203         * lib/creat-safer.c: Likewise.
9204         * lib/csharpcomp.c: Likewise.
9205         * lib/csharpcomp.h: Likewise.
9206         * lib/csharpexec.c: Likewise.
9207         * lib/csharpexec.h: Likewise.
9208         * lib/cycle-check.c: Likewise.
9209         * lib/cycle-check.h: Likewise.
9210         * lib/diacrit.c: Likewise.
9211         * lib/diacrit.h: Likewise.
9212         * lib/diffseq.h: Likewise.
9213         * lib/dirchownmod.c: Likewise.
9214         * lib/dirent.in.h: Likewise.
9215         * lib/dirfd.c: Likewise.
9216         * lib/dirfd.h: Likewise.
9217         * lib/dirname.c: Likewise.
9218         * lib/dirname.h: Likewise.
9219         * lib/dummy.c: Likewise.
9220         * lib/dup-safer.c: Likewise.
9221         * lib/dup2.c: Likewise.
9222         * lib/eealloc.h: Likewise.
9223         * lib/error.c: Likewise.
9224         * lib/error.h: Likewise.
9225         * lib/euidaccess.c: Likewise.
9226         * lib/exclude.c: Likewise.
9227         * lib/exclude.h: Likewise.
9228         * lib/execute.c: Likewise.
9229         * lib/execute.h: Likewise.
9230         * lib/exitfail.c: Likewise.
9231         * lib/exitfail.h: Likewise.
9232         * lib/expl.c: Likewise.
9233         * lib/fatal-signal.c: Likewise.
9234         * lib/fatal-signal.h: Likewise.
9235         * lib/fbufmode.c: Likewise.
9236         * lib/fbufmode.h: Likewise.
9237         * lib/fchdir.c: Likewise.
9238         * lib/fchmodat.c: Likewise.
9239         * lib/fchownat.c: Likewise.
9240         * lib/fcntl--.h: Likewise.
9241         * lib/fcntl-safer.h: Likewise.
9242         * lib/fcntl.in.h: Likewise.
9243         * lib/fd-safer.c: Likewise.
9244         * lib/fflush.c: Likewise.
9245         * lib/file-has-acl.c: Likewise.
9246         * lib/file-set.c: Likewise.
9247         * lib/file-type.c: Likewise.
9248         * lib/file-type.h: Likewise.
9249         * lib/fileblocks.c: Likewise.
9250         * lib/filemode.c: Likewise.
9251         * lib/filemode.h: Likewise.
9252         * lib/filename.h: Likewise.
9253         * lib/filenamecat.c: Likewise.
9254         * lib/filenamecat.h: Likewise.
9255         * lib/findprog.c: Likewise.
9256         * lib/findprog.h: Likewise.
9257         * lib/float.in.h: Likewise.
9258         * lib/floor.c: Likewise.
9259         * lib/floorf.c: Likewise.
9260         * lib/floorl.c: Likewise.
9261         * lib/fopen-safer.c: Likewise.
9262         * lib/fopen.c: Likewise.
9263         * lib/fpending.c: Likewise.
9264         * lib/fpending.h: Likewise.
9265         * lib/fprintf.c: Likewise.
9266         * lib/fprintftime.h: Likewise.
9267         * lib/fpucw.h: Likewise.
9268         * lib/fpurge.c: Likewise.
9269         * lib/fpurge.h: Likewise.
9270         * lib/freadable.c: Likewise.
9271         * lib/freadable.h: Likewise.
9272         * lib/freadahead.c: Likewise.
9273         * lib/freadahead.h: Likewise.
9274         * lib/freading.c: Likewise.
9275         * lib/freading.h: Likewise.
9276         * lib/free.c: Likewise.
9277         * lib/freopen.c: Likewise.
9278         * lib/frexp.c: Likewise.
9279         * lib/frexpl.c: Likewise.
9280         * lib/fseek.c: Likewise.
9281         * lib/fseterr.c: Likewise.
9282         * lib/fseterr.h: Likewise.
9283         * lib/fstatat.c: Likewise.
9284         * lib/fstrcmp.c: Likewise.
9285         * lib/fstrcmp.h: Likewise.
9286         * lib/fsusage.c: Likewise.
9287         * lib/fsusage.h: Likewise.
9288         * lib/ftell.c: Likewise.
9289         * lib/ftello.c: Likewise.
9290         * lib/fts-cycle.c: Likewise.
9291         * lib/fts.c: Likewise.
9292         * lib/fts_.h: Likewise.
9293         * lib/full-read.c: Likewise.
9294         * lib/full-read.h: Likewise.
9295         * lib/full-write.c: Likewise.
9296         * lib/full-write.h: Likewise.
9297         * lib/fwritable.c: Likewise.
9298         * lib/fwritable.h: Likewise.
9299         * lib/fwriteerror.c: Likewise.
9300         * lib/fwriteerror.h: Likewise.
9301         * lib/fwriting.c: Likewise.
9302         * lib/fwriting.h: Likewise.
9303         * lib/gcd.c: Likewise.
9304         * lib/gcd.h: Likewise.
9305         * lib/getcwd.c: Likewise.
9306         * lib/getdate.h: Likewise.
9307         * lib/getdate.y: Likewise.
9308         * lib/getdomainname.c: Likewise.
9309         * lib/getdomainname.h: Likewise.
9310         * lib/getgroups.c: Likewise.
9311         * lib/gethostname.c: Likewise.
9312         * lib/gethrxtime.c: Likewise.
9313         * lib/gethrxtime.h: Likewise.
9314         * lib/getloadavg.c: Likewise.
9315         * lib/getndelim2.c: Likewise.
9316         * lib/getndelim2.h: Likewise.
9317         * lib/getnline.c: Likewise.
9318         * lib/getnline.h: Likewise.
9319         * lib/getopt.c: Likewise.
9320         * lib/getopt.in.h: Likewise.
9321         * lib/getopt1.c: Likewise.
9322         * lib/getopt_int.h: Likewise.
9323         * lib/getpagesize.h: Likewise.
9324         * lib/getsubopt.c: Likewise.
9325         * lib/gettime.c: Likewise.
9326         * lib/getugroups.c: Likewise.
9327         * lib/getugroups.h: Likewise.
9328         * lib/getusershell.c: Likewise.
9329         * lib/gl_anyavltree_list1.h: Likewise.
9330         * lib/gl_anyavltree_list2.h: Likewise.
9331         * lib/gl_anyhash_list1.h: Likewise.
9332         * lib/gl_anyhash_list2.h: Likewise.
9333         * lib/gl_anylinked_list1.h: Likewise.
9334         * lib/gl_anylinked_list2.h: Likewise.
9335         * lib/gl_anyrbtree_list1.h: Likewise.
9336         * lib/gl_anyrbtree_list2.h: Likewise.
9337         * lib/gl_anytree_list1.h: Likewise.
9338         * lib/gl_anytree_list2.h: Likewise.
9339         * lib/gl_anytree_oset.h: Likewise.
9340         * lib/gl_anytreehash_list1.h: Likewise.
9341         * lib/gl_anytreehash_list2.h: Likewise.
9342         * lib/gl_array_list.c: Likewise.
9343         * lib/gl_array_list.h: Likewise.
9344         * lib/gl_array_oset.c: Likewise.
9345         * lib/gl_array_oset.h: Likewise.
9346         * lib/gl_avltree_list.c: Likewise.
9347         * lib/gl_avltree_list.h: Likewise.
9348         * lib/gl_avltree_oset.c: Likewise.
9349         * lib/gl_avltree_oset.h: Likewise.
9350         * lib/gl_avltreehash_list.c: Likewise.
9351         * lib/gl_avltreehash_list.h: Likewise.
9352         * lib/gl_carray_list.c: Likewise.
9353         * lib/gl_carray_list.h: Likewise.
9354         * lib/gl_linked_list.c: Likewise.
9355         * lib/gl_linked_list.h: Likewise.
9356         * lib/gl_linkedhash_list.c: Likewise.
9357         * lib/gl_linkedhash_list.h: Likewise.
9358         * lib/gl_list.c: Likewise.
9359         * lib/gl_list.h: Likewise.
9360         * lib/gl_oset.c: Likewise.
9361         * lib/gl_oset.h: Likewise.
9362         * lib/gl_rbtree_list.c: Likewise.
9363         * lib/gl_rbtree_list.h: Likewise.
9364         * lib/gl_rbtree_oset.c: Likewise.
9365         * lib/gl_rbtree_oset.h: Likewise.
9366         * lib/gl_rbtreehash_list.c: Likewise.
9367         * lib/gl_rbtreehash_list.h: Likewise.
9368         * lib/gl_sublist.c: Likewise.
9369         * lib/gl_sublist.h: Likewise.
9370         * lib/group-member.c: Likewise.
9371         * lib/group-member.h: Likewise.
9372         * lib/hard-locale.c: Likewise.
9373         * lib/hard-locale.h: Likewise.
9374         * lib/hash-pjw.c: Likewise.
9375         * lib/hash-pjw.h: Likewise.
9376         * lib/hash-triple.c: Likewise.
9377         * lib/hash.c: Likewise.
9378         * lib/hash.h: Likewise.
9379         * lib/human.c: Likewise.
9380         * lib/human.h: Likewise.
9381         * lib/i-ring.c: Likewise.
9382         * lib/i-ring.h: Likewise.
9383         * lib/idcache.c: Likewise.
9384         * lib/imaxabs.c: Likewise.
9385         * lib/imaxdiv.c: Likewise.
9386         * lib/inet_pton.c: Likewise.
9387         * lib/inet_pton.h: Likewise.
9388         * lib/intprops.h: Likewise.
9389         * lib/inttostr.c: Likewise.
9390         * lib/inttostr.h: Likewise.
9391         * lib/inttypes.in.h: Likewise.
9392         * lib/isapipe.c: Likewise.
9393         * lib/isdir.c: Likewise.
9394         * lib/isnan.c: Likewise.
9395         * lib/isnan.h: Likewise.
9396         * lib/isnanf.c: Likewise.
9397         * lib/isnanf.h: Likewise.
9398         * lib/isnanl-nolibm.h: Likewise.
9399         * lib/isnanl.c: Likewise.
9400         * lib/isnanl.h: Likewise.
9401         * lib/javacomp.c: Likewise.
9402         * lib/javacomp.h: Likewise.
9403         * lib/javaexec.c: Likewise.
9404         * lib/javaexec.h: Likewise.
9405         * lib/javaversion.c: Likewise.
9406         * lib/javaversion.h: Likewise.
9407         * lib/javaversion.java: Likewise.
9408         * lib/lbrkprop.h: Likewise.
9409         * lib/lchmod.h: Likewise.
9410         * lib/lchown.c: Likewise.
9411         * lib/ldexpl.c: Likewise.
9412         * lib/linebreak.c: Likewise.
9413         * lib/linebreak.h: Likewise.
9414         * lib/linebuffer.c: Likewise.
9415         * lib/linebuffer.h: Likewise.
9416         * lib/locale.in.h: Likewise.
9417         * lib/logl.c: Likewise.
9418         * lib/long-options.c: Likewise.
9419         * lib/long-options.h: Likewise.
9420         * lib/lstat.c: Likewise.
9421         * lib/lstat.h: Likewise.
9422         * lib/math.in.h: Likewise.
9423         * lib/mbchar.c: Likewise.
9424         * lib/mbchar.h: Likewise.
9425         * lib/mbfile.h: Likewise.
9426         * lib/mbiter.h: Likewise.
9427         * lib/mbscasecmp.c: Likewise.
9428         * lib/mbscasestr.c: Likewise.
9429         * lib/mbschr.c: Likewise.
9430         * lib/mbscspn.c: Likewise.
9431         * lib/mbslen.c: Likewise.
9432         * lib/mbsncasecmp.c: Likewise.
9433         * lib/mbsnlen.c: Likewise.
9434         * lib/mbspbrk.c: Likewise.
9435         * lib/mbspcasecmp.c: Likewise.
9436         * lib/mbsrchr.c: Likewise.
9437         * lib/mbssep.c: Likewise.
9438         * lib/mbsspn.c: Likewise.
9439         * lib/mbsstr.c: Likewise.
9440         * lib/mbstok_r.c: Likewise.
9441         * lib/mbswidth.c: Likewise.
9442         * lib/mbswidth.h: Likewise.
9443         * lib/mbuiter.h: Likewise.
9444         * lib/memcasecmp.c: Likewise.
9445         * lib/memcasecmp.h: Likewise.
9446         * lib/memchr.c: Likewise.
9447         * lib/memcmp.c: Likewise.
9448         * lib/memcoll.c: Likewise.
9449         * lib/memcoll.h: Likewise.
9450         * lib/memcpy.c: Likewise.
9451         * lib/memrchr.c: Likewise.
9452         * lib/mkancesdirs.c: Likewise.
9453         * lib/mkdir-p.c: Likewise.
9454         * lib/mkdir-p.h: Likewise.
9455         * lib/mkdir.c: Likewise.
9456         * lib/mkdirat.c: Likewise.
9457         * lib/mkdtemp.c: Likewise.
9458         * lib/mkstemp-safer.c: Likewise.
9459         * lib/mkstemp.c: Likewise.
9460         * lib/modechange.c: Likewise.
9461         * lib/modechange.h: Likewise.
9462         * lib/mountlist.c: Likewise.
9463         * lib/mountlist.h: Likewise.
9464         * lib/mpsort.c: Likewise.
9465         * lib/nanosleep.c: Likewise.
9466         * lib/obstack.c: Likewise.
9467         * lib/obstack.h: Likewise.
9468         * lib/open-safer.c: Likewise.
9469         * lib/open.c: Likewise.
9470         * lib/openat-die.c: Likewise.
9471         * lib/openat-priv.h: Likewise.
9472         * lib/openat-proc.c: Likewise.
9473         * lib/openat.c: Likewise.
9474         * lib/openat.h: Likewise.
9475         * lib/pagealign_alloc.c: Likewise.
9476         * lib/pagealign_alloc.h: Likewise.
9477         * lib/physmem.c: Likewise.
9478         * lib/physmem.h: Likewise.
9479         * lib/pipe-safer.c: Likewise.
9480         * lib/pipe.c: Likewise.
9481         * lib/pipe.h: Likewise.
9482         * lib/posixtm.c: Likewise.
9483         * lib/posixtm.h: Likewise.
9484         * lib/posixver.c: Likewise.
9485         * lib/printf-frexp.c: Likewise.
9486         * lib/printf-frexp.h: Likewise.
9487         * lib/printf-frexpl.c: Likewise.
9488         * lib/printf-frexpl.h: Likewise.
9489         * lib/printf.c: Likewise.
9490         * lib/progname.c: Likewise.
9491         * lib/progname.h: Likewise.
9492         * lib/progreloc.c: Likewise.
9493         * lib/putenv.c: Likewise.
9494         * lib/quote.c: Likewise.
9495         * lib/quote.h: Likewise.
9496         * lib/quotearg.c: Likewise.
9497         * lib/quotearg.h: Likewise.
9498         * lib/raise.c: Likewise.
9499         * lib/readline.c: Likewise.
9500         * lib/readline.h: Likewise.
9501         * lib/readlink.c: Likewise.
9502         * lib/readtokens.c: Likewise.
9503         * lib/readtokens.h: Likewise.
9504         * lib/readtokens0.c: Likewise.
9505         * lib/readtokens0.h: Likewise.
9506         * lib/readutmp.c: Likewise.
9507         * lib/readutmp.h: Likewise.
9508         * lib/realloc.c: Likewise.
9509         * lib/relocwrapper.c: Likewise.
9510         * lib/rename-dest-slash.c: Likewise.
9511         * lib/rename.c: Likewise.
9512         * lib/rmdir.c: Likewise.
9513         * lib/rpmatch.c: Likewise.
9514         * lib/safe-read.c: Likewise.
9515         * lib/safe-read.h: Likewise.
9516         * lib/safe-write.c: Likewise.
9517         * lib/safe-write.h: Likewise.
9518         * lib/same-inode.h: Likewise.
9519         * lib/same.c: Likewise.
9520         * lib/same.h: Likewise.
9521         * lib/save-cwd.c: Likewise.
9522         * lib/save-cwd.h: Likewise.
9523         * lib/savedir.c: Likewise.
9524         * lib/savedir.h: Likewise.
9525         * lib/savewd.c: Likewise.
9526         * lib/savewd.h: Likewise.
9527         * lib/search.in.h: Likewise.
9528         * lib/setenv.c: Likewise.
9529         * lib/setenv.h: Likewise.
9530         * lib/settime.c: Likewise.
9531         * lib/sh-quote.c: Likewise.
9532         * lib/sh-quote.h: Likewise.
9533         * lib/sig2str.c: Likewise.
9534         * lib/sig2str.h: Likewise.
9535         * lib/signal.in.h: Likewise.
9536         * lib/signbitd.c: Likewise.
9537         * lib/signbitf.c: Likewise.
9538         * lib/signbitl.c: Likewise.
9539         * lib/sigprocmask.c: Likewise.
9540         * lib/sincosl.c: Likewise.
9541         * lib/sleep.c: Likewise.
9542         * lib/sprintf.c: Likewise.
9543         * lib/sqrtl.c: Likewise.
9544         * lib/stat-time.h: Likewise.
9545         * lib/stdio--.h: Likewise.
9546         * lib/stdio-safer.h: Likewise.
9547         * lib/stdlib--.h: Likewise.
9548         * lib/stdlib-safer.h: Likewise.
9549         * lib/stdlib.in.h: Likewise.
9550         * lib/stpcpy.c: Likewise.
9551         * lib/stpncpy.c: Likewise.
9552         * lib/strchrnul.c: Likewise.
9553         * lib/strcspn.c: Likewise.
9554         * lib/strerror.c: Likewise.
9555         * lib/strftime.c: Likewise.
9556         * lib/strftime.h: Likewise.
9557         * lib/striconveh.c: Likewise.
9558         * lib/striconveh.h: Likewise.
9559         * lib/striconveha.c: Likewise.
9560         * lib/striconveha.h: Likewise.
9561         * lib/stripslash.c: Likewise.
9562         * lib/strnlen1.c: Likewise.
9563         * lib/strnlen1.h: Likewise.
9564         * lib/strtod.c: Likewise.
9565         * lib/strtoimax.c: Likewise.
9566         * lib/strtok_r.c: Likewise.
9567         * lib/strtol.c: Likewise.
9568         * lib/strtoll.c: Likewise.
9569         * lib/strtoul.c: Likewise.
9570         * lib/strtoull.c: Likewise.
9571         * lib/sysexits.in.h: Likewise.
9572         * lib/tempname.c: Likewise.
9573         * lib/tempname.h: Likewise.
9574         * lib/timespec.h: Likewise.
9575         * lib/tls.c: Likewise.
9576         * lib/tls.h: Likewise.
9577         * lib/tmpdir.c: Likewise.
9578         * lib/tmpdir.h: Likewise.
9579         * lib/tmpfile-safer.c: Likewise.
9580         * lib/tmpfile.c: Likewise.
9581         * lib/trigl.c: Likewise.
9582         * lib/trigl.h: Likewise.
9583         * lib/trim.c: Likewise.
9584         * lib/trim.h: Likewise.
9585         * lib/trunc.c: Likewise.
9586         * lib/truncf.c: Likewise.
9587         * lib/truncl.c: Likewise.
9588         * lib/tsearch.c: Likewise.
9589         * lib/unicodeio.c: Likewise.
9590         * lib/unicodeio.h: Likewise.
9591         * lib/unistd--.h: Likewise.
9592         * lib/unistd-safer.h: Likewise.
9593         * lib/unistdio/ulc-fprintf.c: Likewise.
9594         * lib/unistdio/ulc-vfprintf.c: Likewise.
9595         * lib/unlinkdir.c: Likewise.
9596         * lib/unlinkdir.h: Likewise.
9597         * lib/unlocked-io.h: Likewise.
9598         * lib/unsetenv.c: Likewise.
9599         * lib/userspec.c: Likewise.
9600         * lib/utime.c: Likewise.
9601         * lib/utimecmp.c: Likewise.
9602         * lib/utimecmp.h: Likewise.
9603         * lib/utimens.c: Likewise.
9604         * lib/verify.h: Likewise.
9605         * lib/verror.c: Likewise.
9606         * lib/verror.h: Likewise.
9607         * lib/version-etc-fsf.c: Likewise.
9608         * lib/version-etc.c: Likewise.
9609         * lib/version-etc.h: Likewise.
9610         * lib/vfprintf.c: Likewise.
9611         * lib/vprintf.c: Likewise.
9612         * lib/vsprintf.c: Likewise.
9613         * lib/w32spawn.h: Likewise.
9614         * lib/wait-process.c: Likewise.
9615         * lib/wait-process.h: Likewise.
9616         * lib/wcwidth.c: Likewise.
9617         * lib/write-any-file.c: Likewise.
9618         * lib/xalloc-die.c: Likewise.
9619         * lib/xalloc.h: Likewise.
9620         * lib/xasprintf.c: Likewise.
9621         * lib/xgetcwd.c: Likewise.
9622         * lib/xgetcwd.h: Likewise.
9623         * lib/xgetdomainname.c: Likewise.
9624         * lib/xgetdomainname.h: Likewise.
9625         * lib/xgethostname.c: Likewise.
9626         * lib/xmalloc.c: Likewise.
9627         * lib/xmalloca.c: Likewise.
9628         * lib/xmalloca.h: Likewise.
9629         * lib/xmemcoll.c: Likewise.
9630         * lib/xnanosleep.c: Likewise.
9631         * lib/xreadlink.c: Likewise.
9632         * lib/xreadlink.h: Likewise.
9633         * lib/xsetenv.c: Likewise.
9634         * lib/xsetenv.h: Likewise.
9635         * lib/xstriconv.c: Likewise.
9636         * lib/xstriconv.h: Likewise.
9637         * lib/xstrndup.c: Likewise.
9638         * lib/xstrndup.h: Likewise.
9639         * lib/xstrtod.c: Likewise.
9640         * lib/xstrtod.h: Likewise.
9641         * lib/xstrtol-error.c: Likewise.
9642         * lib/xstrtol.c: Likewise.
9643         * lib/xstrtol.h: Likewise.
9644         * lib/xtime.h: Likewise.
9645         * lib/xvasprintf.c: Likewise.
9646         * lib/xvasprintf.h: Likewise.
9647         * lib/yesno.c: Likewise.
9648         * lib/yesno.h: Likewise.
9649         * posix-modules: Likewise.
9650         * tests/test-alloca-opt.c: Likewise.
9651         * tests/test-arcfour.c: Likewise.
9652         * tests/test-arctwo.c: Likewise.
9653         * tests/test-argmatch.c: Likewise.
9654         * tests/test-argp-2.sh: Likewise.
9655         * tests/test-argp.c: Likewise.
9656         * tests/test-arpa_inet.c: Likewise.
9657         * tests/test-array_list.c: Likewise.
9658         * tests/test-array_oset.c: Likewise.
9659         * tests/test-atexit.c: Likewise.
9660         * tests/test-avltree_list.c: Likewise.
9661         * tests/test-avltree_oset.c: Likewise.
9662         * tests/test-avltreehash_list.c: Likewise.
9663         * tests/test-base64.c: Likewise.
9664         * tests/test-binary-io.c: Likewise.
9665         * tests/test-byteswap.c: Likewise.
9666         * tests/test-c-ctype.c: Likewise.
9667         * tests/test-c-strcasecmp.c: Likewise.
9668         * tests/test-c-strcasestr.c: Likewise.
9669         * tests/test-c-strncasecmp.c: Likewise.
9670         * tests/test-c-strstr.c: Likewise.
9671         * tests/test-canonicalize-lgpl.c: Likewise.
9672         * tests/test-canonicalize.c: Likewise.
9673         * tests/test-carray_list.c: Likewise.
9674         * tests/test-ceilf.c: Likewise.
9675         * tests/test-ceill.c: Likewise.
9676         * tests/test-count-one-bits.c: Likewise.
9677         * tests/test-crc.c: Likewise.
9678         * tests/test-dirname.c: Likewise.
9679         * tests/test-fbufmode.c: Likewise.
9680         * tests/test-fcntl.c: Likewise.
9681         * tests/test-fflush.c: Likewise.
9682         * tests/test-floorf.c: Likewise.
9683         * tests/test-floorl.c: Likewise.
9684         * tests/test-fopen.c: Likewise.
9685         * tests/test-fprintf-posix.c: Likewise.
9686         * tests/test-fprintf-posix.h: Likewise.
9687         * tests/test-fpurge.c: Likewise.
9688         * tests/test-freadable.c: Likewise.
9689         * tests/test-freadahead.c: Likewise.
9690         * tests/test-freading.c: Likewise.
9691         * tests/test-freopen.c: Likewise.
9692         * tests/test-frexp.c: Likewise.
9693         * tests/test-frexpl.c: Likewise.
9694         * tests/test-fseek.c: Likewise.
9695         * tests/test-fseeko.c: Likewise.
9696         * tests/test-fseterr.c: Likewise.
9697         * tests/test-fstrcmp.c: Likewise.
9698         * tests/test-ftell.c: Likewise.
9699         * tests/test-ftello.c: Likewise.
9700         * tests/test-fwritable.c: Likewise.
9701         * tests/test-fwriting.c: Likewise.
9702         * tests/test-getaddrinfo.c: Likewise.
9703         * tests/test-getpass.c: Likewise.
9704         * tests/test-gettimeofday.c: Likewise.
9705         * tests/test-hmac-md5.c: Likewise.
9706         * tests/test-hmac-sha1.c: Likewise.
9707         * tests/test-iconv.c: Likewise.
9708         * tests/test-iconvme.c: Likewise.
9709         * tests/test-inttypes.c: Likewise.
9710         * tests/test-isnan.c: Likewise.
9711         * tests/test-isnanf.c: Likewise.
9712         * tests/test-isnanl-nolibm.c: Likewise.
9713         * tests/test-isnanl.c: Likewise.
9714         * tests/test-isnanl.h: Likewise.
9715         * tests/test-ldexpl.c: Likewise.
9716         * tests/test-linked_list.c: Likewise.
9717         * tests/test-linkedhash_list.c: Likewise.
9718         * tests/test-locale.c: Likewise.
9719         * tests/test-localename.c: Likewise.
9720         * tests/test-lock.c: Likewise.
9721         * tests/test-lseek.c: Likewise.
9722         * tests/test-malloca.c: Likewise.
9723         * tests/test-math.c: Likewise.
9724         * tests/test-mbscasecmp.c: Likewise.
9725         * tests/test-mbscasestr1.c: Likewise.
9726         * tests/test-mbscasestr2.c: Likewise.
9727         * tests/test-mbscasestr3.c: Likewise.
9728         * tests/test-mbscasestr4.c: Likewise.
9729         * tests/test-mbschr.c: Likewise.
9730         * tests/test-mbscspn.c: Likewise.
9731         * tests/test-mbsncasecmp.c: Likewise.
9732         * tests/test-mbspbrk.c: Likewise.
9733         * tests/test-mbspcasecmp.c: Likewise.
9734         * tests/test-mbsrchr.c: Likewise.
9735         * tests/test-mbsspn.c: Likewise.
9736         * tests/test-mbsstr1.c: Likewise.
9737         * tests/test-mbsstr2.c: Likewise.
9738         * tests/test-mbsstr3.c: Likewise.
9739         * tests/test-md5.c: Likewise.
9740         * tests/test-memmem.c: Likewise.
9741         * tests/test-netinet_in.c: Likewise.
9742         * tests/test-open.c: Likewise.
9743         * tests/test-printf-frexp.c: Likewise.
9744         * tests/test-printf-frexpl.c: Likewise.
9745         * tests/test-printf-posix.c: Likewise.
9746         * tests/test-printf-posix.h: Likewise.
9747         * tests/test-rbtree_list.c: Likewise.
9748         * tests/test-rbtree_oset.c: Likewise.
9749         * tests/test-rbtreehash_list.c: Likewise.
9750         * tests/test-read-file.c: Likewise.
9751         * tests/test-rijndael.c: Likewise.
9752         * tests/test-search.c: Likewise.
9753         * tests/test-signbit.c: Likewise.
9754         * tests/test-sleep.c: Likewise.
9755         * tests/test-snprintf-posix.c: Likewise.
9756         * tests/test-snprintf-posix.h: Likewise.
9757         * tests/test-snprintf.c: Likewise.
9758         * tests/test-sprintf-posix.c: Likewise.
9759         * tests/test-sprintf-posix.h: Likewise.
9760         * tests/test-stat-time.c: Likewise.
9761         * tests/test-stdbool.c: Likewise.
9762         * tests/test-stdint.c: Likewise.
9763         * tests/test-stdio.c: Likewise.
9764         * tests/test-stdlib.c: Likewise.
9765         * tests/test-stpncpy.c: Likewise.
9766         * tests/test-strcasestr.c: Likewise.
9767         * tests/test-striconv.c: Likewise.
9768         * tests/test-striconveh.c: Likewise.
9769         * tests/test-striconveha.c: Likewise.
9770         * tests/test-string.c: Likewise.
9771         * tests/test-sys_select.c: Likewise.
9772         * tests/test-sys_socket.c: Likewise.
9773         * tests/test-sys_stat.c: Likewise.
9774         * tests/test-sys_time.c: Likewise.
9775         * tests/test-sysexits.c: Likewise.
9776         * tests/test-time.c: Likewise.
9777         * tests/test-tls.c: Likewise.
9778         * tests/test-trunc.c: Likewise.
9779         * tests/test-truncf.c: Likewise.
9780         * tests/test-truncl.c: Likewise.
9781         * tests/test-unistd.c: Likewise.
9782         * tests/test-vasnprintf-posix.c: Likewise.
9783         * tests/test-vasnprintf-posix2.c: Likewise.
9784         * tests/test-vasnprintf.c: Likewise.
9785         * tests/test-vasprintf-posix.c: Likewise.
9786         * tests/test-vasprintf.c: Likewise.
9787         * tests/test-verify.c: Likewise.
9788         * tests/test-vfprintf-posix.c: Likewise.
9789         * tests/test-vprintf-posix.c: Likewise.
9790         * tests/test-vsnprintf-posix.c: Likewise.
9791         * tests/test-vsnprintf.c: Likewise.
9792         * tests/test-vsprintf-posix.c: Likewise.
9793         * tests/test-wchar.c: Likewise.
9794         * tests/test-wctype.c: Likewise.
9795         * tests/test-wcwidth.c: Likewise.
9796         * tests/test-xstrtol.c: Likewise.
9797         * tests/test-xvasprintf.c: Likewise.
9798         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
9799         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
9800         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
9801         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
9802         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
9803         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
9804         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
9805         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
9806         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
9807         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
9808         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
9809         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
9810         * tests/uniname/test-uninames.c: Likewise.
9811         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
9812         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
9813         * tests/unistdio/test-u16-printf1.h: Likewise.
9814         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
9815         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
9816         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
9817         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
9818         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
9819         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
9820         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
9821         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
9822         * tests/unistdio/test-u32-printf1.h: Likewise.
9823         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
9824         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
9825         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
9826         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
9827         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
9828         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
9829         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
9830         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
9831         * tests/unistdio/test-u8-printf1.h: Likewise.
9832         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
9833         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
9834         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
9835         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
9836         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
9837         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
9838         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
9839         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
9840         * tests/unistdio/test-ulc-printf1.h: Likewise.
9841         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
9842         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
9843         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
9844         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
9845         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
9846         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
9847         * tests/uniwidth/test-u16-strwidth.c: Likewise.
9848         * tests/uniwidth/test-u16-width.c: Likewise.
9849         * tests/uniwidth/test-u32-strwidth.c: Likewise.
9850         * tests/uniwidth/test-u32-width.c: Likewise.
9851         * tests/uniwidth/test-u8-strwidth.c: Likewise.
9852         * tests/uniwidth/test-u8-width.c: Likewise.
9853         * tests/uniwidth/test-uc_width.c: Likewise.
9854         * config/srclist-update: Likewise.
9855         (fixlicense): Update to GPLv3+.
9856
9857         Change copyright notice from LGPLv2.1+ to LGPLv3+.
9858         * tests/test-tsearch.c: Change copyright notice.
9859
9860         Change copyright notice from LGPLv2.0+ to LGPLv3+.
9861         * lib/c-strcaseeq.h: Change copyright notice.
9862         * lib/streq.h: Likewise.
9863         * lib/uniconv.h: Likewise.
9864         * lib/uniconv/u-conv-from-enc.h: Likewise.
9865         * lib/uniconv/u-conv-to-enc.h: Likewise.
9866         * lib/uniconv/u-strconv-from-enc.h: Likewise.
9867         * lib/uniconv/u-strconv-to-enc.h: Likewise.
9868         * lib/uniconv/u16-conv-from-enc.c: Likewise.
9869         * lib/uniconv/u16-conv-to-enc.c: Likewise.
9870         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
9871         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
9872         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
9873         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
9874         * lib/uniconv/u32-conv-from-enc.c: Likewise.
9875         * lib/uniconv/u32-conv-to-enc.c: Likewise.
9876         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
9877         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
9878         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
9879         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
9880         * lib/uniconv/u8-conv-from-enc.c: Likewise.
9881         * lib/uniconv/u8-conv-to-enc.c: Likewise.
9882         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
9883         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
9884         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
9885         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
9886         * lib/uniname.h: Likewise.
9887         * lib/uniname/uniname.c: Likewise.
9888         * lib/unistdio.h: Likewise.
9889         * lib/unistdio/u-asnprintf.h: Likewise.
9890         * lib/unistdio/u-asprintf.h: Likewise.
9891         * lib/unistdio/u-printf-args.c: Likewise.
9892         * lib/unistdio/u-printf-args.h: Likewise.
9893         * lib/unistdio/u-printf-parse.h: Likewise.
9894         * lib/unistdio/u-snprintf.h: Likewise.
9895         * lib/unistdio/u-sprintf.h: Likewise.
9896         * lib/unistdio/u-vasprintf.h: Likewise.
9897         * lib/unistdio/u-vsnprintf.h: Likewise.
9898         * lib/unistdio/u-vsprintf.h: Likewise.
9899         * lib/unistdio/u16-asnprintf.c: Likewise.
9900         * lib/unistdio/u16-asprintf.c: Likewise.
9901         * lib/unistdio/u16-printf-parse.c: Likewise.
9902         * lib/unistdio/u16-snprintf.c: Likewise.
9903         * lib/unistdio/u16-sprintf.c: Likewise.
9904         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
9905         * lib/unistdio/u16-u16-asprintf.c: Likewise.
9906         * lib/unistdio/u16-u16-snprintf.c: Likewise.
9907         * lib/unistdio/u16-u16-sprintf.c: Likewise.
9908         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
9909         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
9910         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
9911         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
9912         * lib/unistdio/u16-vasnprintf.c: Likewise.
9913         * lib/unistdio/u16-vasprintf.c: Likewise.
9914         * lib/unistdio/u16-vsnprintf.c: Likewise.
9915         * lib/unistdio/u16-vsprintf.c: Likewise.
9916         * lib/unistdio/u32-asnprintf.c: Likewise.
9917         * lib/unistdio/u32-asprintf.c: Likewise.
9918         * lib/unistdio/u32-printf-parse.c: Likewise.
9919         * lib/unistdio/u32-snprintf.c: Likewise.
9920         * lib/unistdio/u32-sprintf.c: Likewise.
9921         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
9922         * lib/unistdio/u32-u32-asprintf.c: Likewise.
9923         * lib/unistdio/u32-u32-snprintf.c: Likewise.
9924         * lib/unistdio/u32-u32-sprintf.c: Likewise.
9925         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
9926         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
9927         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
9928         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
9929         * lib/unistdio/u32-vasnprintf.c: Likewise.
9930         * lib/unistdio/u32-vasprintf.c: Likewise.
9931         * lib/unistdio/u32-vsnprintf.c: Likewise.
9932         * lib/unistdio/u32-vsprintf.c: Likewise.
9933         * lib/unistdio/u8-asnprintf.c: Likewise.
9934         * lib/unistdio/u8-asprintf.c: Likewise.
9935         * lib/unistdio/u8-printf-parse.c: Likewise.
9936         * lib/unistdio/u8-snprintf.c: Likewise.
9937         * lib/unistdio/u8-sprintf.c: Likewise.
9938         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
9939         * lib/unistdio/u8-u8-asprintf.c: Likewise.
9940         * lib/unistdio/u8-u8-snprintf.c: Likewise.
9941         * lib/unistdio/u8-u8-sprintf.c: Likewise.
9942         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
9943         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
9944         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
9945         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
9946         * lib/unistdio/u8-vasnprintf.c: Likewise.
9947         * lib/unistdio/u8-vasprintf.c: Likewise.
9948         * lib/unistdio/u8-vsnprintf.c: Likewise.
9949         * lib/unistdio/u8-vsprintf.c: Likewise.
9950         * lib/unistdio/ulc-asnprintf.c: Likewise.
9951         * lib/unistdio/ulc-asprintf.c: Likewise.
9952         * lib/unistdio/ulc-printf-parse.c: Likewise.
9953         * lib/unistdio/ulc-snprintf.c: Likewise.
9954         * lib/unistdio/ulc-sprintf.c: Likewise.
9955         * lib/unistdio/ulc-vasnprintf.c: Likewise.
9956         * lib/unistdio/ulc-vasprintf.c: Likewise.
9957         * lib/unistdio/ulc-vsnprintf.c: Likewise.
9958         * lib/unistdio/ulc-vsprintf.c: Likewise.
9959         * lib/unistr.h: Likewise.
9960         * lib/unistr/u-cpy-alloc.h: Likewise.
9961         * lib/unistr/u-cpy.h: Likewise.
9962         * lib/unistr/u-endswith.h: Likewise.
9963         * lib/unistr/u-move.h: Likewise.
9964         * lib/unistr/u-set.h: Likewise.
9965         * lib/unistr/u-startswith.h: Likewise.
9966         * lib/unistr/u-stpcpy.h: Likewise.
9967         * lib/unistr/u-stpncpy.h: Likewise.
9968         * lib/unistr/u-strcat.h: Likewise.
9969         * lib/unistr/u-strcpy.h: Likewise.
9970         * lib/unistr/u-strcspn.h: Likewise.
9971         * lib/unistr/u-strdup.h: Likewise.
9972         * lib/unistr/u-strlen.h: Likewise.
9973         * lib/unistr/u-strncat.h: Likewise.
9974         * lib/unistr/u-strncpy.h: Likewise.
9975         * lib/unistr/u-strnlen.h: Likewise.
9976         * lib/unistr/u-strpbrk.h: Likewise.
9977         * lib/unistr/u-strspn.h: Likewise.
9978         * lib/unistr/u-strstr.h: Likewise.
9979         * lib/unistr/u-strtok.h: Likewise.
9980         * lib/unistr/u16-check.c: Likewise.
9981         * lib/unistr/u16-chr.c: Likewise.
9982         * lib/unistr/u16-cmp.c: Likewise.
9983         * lib/unistr/u16-cpy-alloc.c: Likewise.
9984         * lib/unistr/u16-cpy.c: Likewise.
9985         * lib/unistr/u16-endswith.c: Likewise.
9986         * lib/unistr/u16-mblen.c: Likewise.
9987         * lib/unistr/u16-mbsnlen.c: Likewise.
9988         * lib/unistr/u16-mbtouc-aux.c: Likewise.
9989         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
9990         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
9991         * lib/unistr/u16-mbtouc.c: Likewise.
9992         * lib/unistr/u16-mbtoucr.c: Likewise.
9993         * lib/unistr/u16-move.c: Likewise.
9994         * lib/unistr/u16-next.c: Likewise.
9995         * lib/unistr/u16-prev.c: Likewise.
9996         * lib/unistr/u16-set.c: Likewise.
9997         * lib/unistr/u16-startswith.c: Likewise.
9998         * lib/unistr/u16-stpcpy.c: Likewise.
9999         * lib/unistr/u16-stpncpy.c: Likewise.
10000         * lib/unistr/u16-strcat.c: Likewise.
10001         * lib/unistr/u16-strchr.c: Likewise.
10002         * lib/unistr/u16-strcmp.c: Likewise.
10003         * lib/unistr/u16-strcpy.c: Likewise.
10004         * lib/unistr/u16-strcspn.c: Likewise.
10005         * lib/unistr/u16-strdup.c: Likewise.
10006         * lib/unistr/u16-strlen.c: Likewise.
10007         * lib/unistr/u16-strmblen.c: Likewise.
10008         * lib/unistr/u16-strmbtouc.c: Likewise.
10009         * lib/unistr/u16-strncat.c: Likewise.
10010         * lib/unistr/u16-strncmp.c: Likewise.
10011         * lib/unistr/u16-strncpy.c: Likewise.
10012         * lib/unistr/u16-strnlen.c: Likewise.
10013         * lib/unistr/u16-strpbrk.c: Likewise.
10014         * lib/unistr/u16-strrchr.c: Likewise.
10015         * lib/unistr/u16-strspn.c: Likewise.
10016         * lib/unistr/u16-strstr.c: Likewise.
10017         * lib/unistr/u16-strtok.c: Likewise.
10018         * lib/unistr/u16-to-u32.c: Likewise.
10019         * lib/unistr/u16-to-u8.c: Likewise.
10020         * lib/unistr/u16-uctomb-aux.c: Likewise.
10021         * lib/unistr/u16-uctomb.c: Likewise.
10022         * lib/unistr/u32-check.c: Likewise.
10023         * lib/unistr/u32-chr.c: Likewise.
10024         * lib/unistr/u32-cmp.c: Likewise.
10025         * lib/unistr/u32-cpy-alloc.c: Likewise.
10026         * lib/unistr/u32-cpy.c: Likewise.
10027         * lib/unistr/u32-endswith.c: Likewise.
10028         * lib/unistr/u32-mblen.c: Likewise.
10029         * lib/unistr/u32-mbsnlen.c: Likewise.
10030         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
10031         * lib/unistr/u32-mbtouc.c: Likewise.
10032         * lib/unistr/u32-mbtoucr.c: Likewise.
10033         * lib/unistr/u32-move.c: Likewise.
10034         * lib/unistr/u32-next.c: Likewise.
10035         * lib/unistr/u32-prev.c: Likewise.
10036         * lib/unistr/u32-set.c: Likewise.
10037         * lib/unistr/u32-startswith.c: Likewise.
10038         * lib/unistr/u32-stpcpy.c: Likewise.
10039         * lib/unistr/u32-stpncpy.c: Likewise.
10040         * lib/unistr/u32-strcat.c: Likewise.
10041         * lib/unistr/u32-strchr.c: Likewise.
10042         * lib/unistr/u32-strcmp.c: Likewise.
10043         * lib/unistr/u32-strcpy.c: Likewise.
10044         * lib/unistr/u32-strcspn.c: Likewise.
10045         * lib/unistr/u32-strdup.c: Likewise.
10046         * lib/unistr/u32-strlen.c: Likewise.
10047         * lib/unistr/u32-strmblen.c: Likewise.
10048         * lib/unistr/u32-strmbtouc.c: Likewise.
10049         * lib/unistr/u32-strncat.c: Likewise.
10050         * lib/unistr/u32-strncmp.c: Likewise.
10051         * lib/unistr/u32-strncpy.c: Likewise.
10052         * lib/unistr/u32-strnlen.c: Likewise.
10053         * lib/unistr/u32-strpbrk.c: Likewise.
10054         * lib/unistr/u32-strrchr.c: Likewise.
10055         * lib/unistr/u32-strspn.c: Likewise.
10056         * lib/unistr/u32-strstr.c: Likewise.
10057         * lib/unistr/u32-strtok.c: Likewise.
10058         * lib/unistr/u32-to-u16.c: Likewise.
10059         * lib/unistr/u32-to-u8.c: Likewise.
10060         * lib/unistr/u32-uctomb.c: Likewise.
10061         * lib/unistr/u8-check.c: Likewise.
10062         * lib/unistr/u8-chr.c: Likewise.
10063         * lib/unistr/u8-cmp.c: Likewise.
10064         * lib/unistr/u8-cpy-alloc.c: Likewise.
10065         * lib/unistr/u8-cpy.c: Likewise.
10066         * lib/unistr/u8-endswith.c: Likewise.
10067         * lib/unistr/u8-mblen.c: Likewise.
10068         * lib/unistr/u8-mbsnlen.c: Likewise.
10069         * lib/unistr/u8-mbtouc-aux.c: Likewise.
10070         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
10071         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
10072         * lib/unistr/u8-mbtouc.c: Likewise.
10073         * lib/unistr/u8-mbtoucr.c: Likewise.
10074         * lib/unistr/u8-move.c: Likewise.
10075         * lib/unistr/u8-next.c: Likewise.
10076         * lib/unistr/u8-prev.c: Likewise.
10077         * lib/unistr/u8-set.c: Likewise.
10078         * lib/unistr/u8-startswith.c: Likewise.
10079         * lib/unistr/u8-stpcpy.c: Likewise.
10080         * lib/unistr/u8-stpncpy.c: Likewise.
10081         * lib/unistr/u8-strcat.c: Likewise.
10082         * lib/unistr/u8-strchr.c: Likewise.
10083         * lib/unistr/u8-strcmp.c: Likewise.
10084         * lib/unistr/u8-strcpy.c: Likewise.
10085         * lib/unistr/u8-strcspn.c: Likewise.
10086         * lib/unistr/u8-strdup.c: Likewise.
10087         * lib/unistr/u8-strlen.c: Likewise.
10088         * lib/unistr/u8-strmblen.c: Likewise.
10089         * lib/unistr/u8-strmbtouc.c: Likewise.
10090         * lib/unistr/u8-strncat.c: Likewise.
10091         * lib/unistr/u8-strncmp.c: Likewise.
10092         * lib/unistr/u8-strncpy.c: Likewise.
10093         * lib/unistr/u8-strnlen.c: Likewise.
10094         * lib/unistr/u8-strpbrk.c: Likewise.
10095         * lib/unistr/u8-strrchr.c: Likewise.
10096         * lib/unistr/u8-strspn.c: Likewise.
10097         * lib/unistr/u8-strstr.c: Likewise.
10098         * lib/unistr/u8-strtok.c: Likewise.
10099         * lib/unistr/u8-to-u16.c: Likewise.
10100         * lib/unistr/u8-to-u32.c: Likewise.
10101         * lib/unistr/u8-uctomb-aux.c: Likewise.
10102         * lib/unistr/u8-uctomb.c: Likewise.
10103         * lib/unitypes.h: Likewise.
10104         * lib/uniwidth.h: Likewise.
10105         * lib/uniwidth/cjk.h: Likewise.
10106         * lib/uniwidth/u16-strwidth.c: Likewise.
10107         * lib/uniwidth/u16-width.c: Likewise.
10108         * lib/uniwidth/u32-strwidth.c: Likewise.
10109         * lib/uniwidth/u32-width.c: Likewise.
10110         * lib/uniwidth/u8-strwidth.c: Likewise.
10111         * lib/uniwidth/u8-width.c: Likewise.
10112         * lib/uniwidth/width.c: Likewise.
10113
10114 2007-10-07  Bruno Haible  <bruno@clisp.org>
10115
10116         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
10117         The file is still under LGPL (see modules/inttypes).
10118
10119 2007-10-06  Bruno Haible  <bruno@clisp.org>
10120
10121         * modules/trunc (Dependencies): Add 'extensions'.
10122         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
10123         Reported by Ben Pfaff <blp@gnu.org>.
10124
10125 2007-10-06  Bruno Haible  <bruno@clisp.org>
10126
10127         * modules/freopen-tests: New file.
10128         * tests/test-freopen.c: New file.
10129
10130         * modules/fopen-tests: New file.
10131         * tests/test-fopen.c: New file.
10132
10133         * modules/fopen: New file.
10134         * lib/fopen.c: New file.
10135         * m4/fopen.m4: New file.
10136         * modules/freopen: New file.
10137         * lib/freopen.c: New file.
10138         * m4/freopen.m4: New file.
10139         * lib/stdio.in.h (fopen, freopen): New declarations.
10140         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
10141         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10142         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
10143         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10144         * doc/functions/fopen.texi: Mention the 'fopen' module.
10145         * doc/functions/freopen.texi: Mention the 'freopen' module.
10146
10147 2007-10-06  Bruno Haible  <bruno@clisp.org>
10148
10149         * modules/open-tests: New file.
10150         * tests/test-open.c: New file.
10151
10152         * modules/open: New file.
10153         * lib/open.c: New file.
10154         * m4/open.m4: New file.
10155         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
10156         lib/open.c does.
10157         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
10158         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
10159         macros.
10160         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
10161         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
10162         REPLACE_OPEN.
10163         * doc/functions/open.texi: Mention the 'open' module.
10164
10165 2007-10-04  Bruno Haible  <bruno@clisp.org>
10166
10167         * modules/ceill-tests: New file.
10168         * tests/test-ceill.c: New file.
10169
10170         * modules/ceill: New file.
10171         * lib/ceill.c: Replace entire file.
10172         * m4/ceill.m4: New file.
10173         * lib/math.in.h (ceill): Replace declaration.
10174         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
10175         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
10176         * doc/functions/ceill.texi: Mention the 'ceill' module.
10177         * modules/mathl (Files): Remove lib/ceill.c.
10178         (Depends-on): Add ceill.
10179
10180 2007-10-04  Bruno Haible  <bruno@clisp.org>
10181
10182         * modules/ceilf-tests: New file.
10183         * tests/test-ceilf.c: New file.
10184
10185         * modules/ceilf: New file.
10186         * lib/ceil.c: New file.
10187         * lib/ceilf.c: New file.
10188         * m4/ceilf.m4: New file.
10189         * lib/math.in.h (ceilf): New declaration.
10190         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
10191         HAVE_DECL_CEILF.
10192         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
10193         HAVE_DECL_CEILF.
10194         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
10195
10196 2007-10-04  Bruno Haible  <bruno@clisp.org>
10197
10198         * modules/floorl-tests: New file.
10199         * tests/test-floorl.c: New file.
10200
10201         * modules/floorl: New file.
10202         * lib/floorl.c: Replace entire file.
10203         * m4/floorl.m4: New file.
10204         * lib/math.in.h (floorl): Replace declaration.
10205         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
10206         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
10207         * doc/functions/floorl.texi: Mention the 'floorl' module.
10208         * modules/mathl (Files): Remove lib/floorl.c.
10209         (Depends-on): Add floorl.
10210
10211 2007-10-04  Bruno Haible  <bruno@clisp.org>
10212
10213         * modules/floorf-tests: New file.
10214         * tests/test-floorf.c: New file.
10215
10216         * modules/floorf: New file.
10217         * lib/floor.c: New file.
10218         * lib/floorf.c: New file.
10219         * m4/floorf.m4: New file.
10220         * lib/math.in.h (floorf): New declaration.
10221         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
10222         HAVE_DECL_FLOORF.
10223         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
10224         HAVE_DECL_FLOORF.
10225         * doc/functions/floorf.texi: Mention the 'floorf' module.
10226
10227 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
10228             Bruno Haible  <bruno@clisp.org>
10229
10230         Advertise for the Git server instead of the CVS server.
10231         * doc/gnulib-intro.texi (Steady Development): Mention the Git
10232         repository instead of the CVS one.
10233         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
10234         about all VCS systems generically.
10235         * doc/gnulib.texi (Introduction): Capitalize `Git'.
10236
10237 2007-10-04  Bruno Haible  <bruno@clisp.org>
10238
10239         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
10240         means.
10241         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
10242
10243 2007-10-04  Bruno Haible  <bruno@clisp.org>
10244
10245         * modules/truncl-tests: New file.
10246         * tests/test-truncl.c: New file.
10247
10248         * modules/truncl: New file.
10249         * lib/truncl.c: New file.
10250         * m4/truncl.m4: New file.
10251         * lib/math.in.h (truncl): New declaration.
10252         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
10253         HAVE_DECL_TRUNCL.
10254         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
10255         HAVE_DECL_TRUNCL.
10256         * doc/functions/truncl.texi: Mention the 'truncl' module.
10257
10258 2007-10-04  Bruno Haible  <bruno@clisp.org>
10259
10260         * modules/truncf-tests: New file.
10261         * tests/test-truncf.c: New file.
10262
10263         * modules/truncf: New file.
10264         * lib/trunc.c: Make paramerizable through USE_* macros.
10265         * lib/truncf.c: New file.
10266         * m4/truncf.m4: New file.
10267         * lib/math.in.h (truncf): New declaration.
10268         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
10269         HAVE_DECL_TRUNCF.
10270         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
10271         HAVE_DECL_TRUNCF.
10272         * doc/functions/truncf.texi: Mention the 'truncf' module.
10273
10274 2007-10-03  Bruno Haible  <bruno@clisp.org>
10275
10276         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
10277         augmentation also for tests modules.
10278         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
10279         * modules/atexit-tests (Makefile.am): Likewise.
10280         * modules/binary-io-tests (Makefile.am): Likewise.
10281         * modules/c-strcase-tests (Makefile.am): Likewise.
10282         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
10283         * modules/canonicalize-tests (Makefile.am): Likewise.
10284         * modules/closein-tests (Makefile.am): Likewise.
10285         * modules/fprintf-posix-tests (Makefile.am): Likewise.
10286         * modules/freadahead-tests (Makefile.am): Likewise.
10287         * modules/fseek-tests (Makefile.am): Likewise.
10288         * modules/fseeko-tests (Makefile.am): Likewise.
10289         * modules/ftell-tests (Makefile.am): Likewise.
10290         * modules/ftello-tests (Makefile.am): Likewise.
10291         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
10292         * modules/isnanl-tests (Makefile.am): Likewise.
10293         * modules/lseek-tests (Makefile.am): Likewise.
10294         * modules/mbscasecmp-tests (Makefile.am): Likewise.
10295         * modules/mbscasestr-tests (Makefile.am): Likewise.
10296         * modules/mbschr-tests (Makefile.am): Likewise.
10297         * modules/mbscspn-tests (Makefile.am): Likewise.
10298         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
10299         * modules/mbspbrk-tests (Makefile.am): Likewise.
10300         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
10301         * modules/mbsrchr-tests (Makefile.am): Likewise.
10302         * modules/mbsspn-tests (Makefile.am): Likewise.
10303         * modules/mbsstr-tests (Makefile.am): Likewise.
10304         * modules/printf-posix-tests (Makefile.am): Likewise.
10305         * modules/snprintf-posix-tests (Makefile.am): Likewise.
10306         * modules/sprintf-posix-tests (Makefile.am): Likewise.
10307         * modules/tsearch-tests (Makefile.am): Likewise.
10308         * modules/uniname/uniname-tests (Makefile.am): Likewise.
10309         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
10310         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
10311         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
10312         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
10313         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
10314         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
10315         * modules/vprintf-posix-tests (Makefile.am): Likewise.
10316         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
10317         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
10318         * modules/xstrtoimax-tests (Makefile.am): Likewise.
10319         * modules/xstrtol-tests (Makefile.am): Likewise.
10320         * modules/xstrtoumax-tests (Makefile.am): Likewise.
10321         * modules/yesno-tests (Makefile.am): Likewise.
10322
10323 2007-10-03  Bruno Haible  <bruno@clisp.org>
10324
10325         * modules/trunc-tests: New file.
10326         * tests/test-trunc.c: New file.
10327
10328         * modules/trunc: New file.
10329         * lib/trunc.c: New file.
10330         * m4/trunc.m4: New file.
10331         * lib/math.in.h (trunc): New declaration.
10332         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
10333         HAVE_DECL_TRUNC.
10334         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
10335         HAVE_DECL_TRUNC.
10336         * doc/functions/trunc.texi: Mention the 'trunc' module.
10337
10338 2007-10-03  Bruno Haible  <bruno@clisp.org>
10339
10340         * tests/test-fpending.c: New file, mostly copied
10341         from coreutils/lib/t-fpending.c.
10342         * modules/fpending-tests: New file.
10343
10344 2007-10-03  Bruno Haible  <bruno@clisp.org>
10345
10346         Port the stdio extensions to QNX (untested).
10347         * lib/fseterr.c (fseterr): Add support for QNX.
10348         * lib/fbufmode.c (fbufmode): Likewise.
10349         * lib/freadable.c (freadable): Likewise.
10350         * lib/fwritable.c (fwritable): Likewise.
10351         * lib/freading.c (freading): Likewise.
10352         * lib/fwriting.c (fwriting): Likewise.
10353         * lib/freadahead.c (freadahed): Likewise.
10354         * lib/fpurge.c (fpurge): Likewise.
10355         * lib/fseeko.c (rpl_fseeko): Likewise.
10356
10357 2007-10-03  Bruno Haible  <bruno@clisp.org>
10358             Jim Meyering  <jim@meyering.net>
10359             Eric Blake  <ebb9@byu.net>
10360
10361         * doc/relocatable.texi: Use @command instead of @program.
10362
10363 2007-10-02  Jim Meyering  <jim@meyering.net>
10364
10365         Perform one more "_.h" -> ".in.h" substitution.
10366         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
10367         instead of unistd_.h here, too.
10368
10369 2007-10-01  Bruno Haible  <bruno@clisp.org>
10370
10371         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
10372         Needed for the alloca-opt module.
10373
10374 2007-09-30  Bruno Haible  <bruno@clisp.org>
10375
10376         * lib/alloca.in.h: Renamed from lib/alloca_.h.
10377         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
10378         alloca_.h.
10379         * lib/argz.in.h: Renamed from lib/argz_.h.
10380         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
10381         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
10382         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
10383         byteswap_.h.
10384         * lib/dirent.in.h: Renamed from lib/dirent_.h.
10385         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
10386         dirent_.h.
10387         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
10388         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
10389         fcntl_.h.
10390         * lib/float.in.h: Renamed from lib/float_.h.
10391         * modules/float (Files, Makefile.am): Use float.in.h instead of
10392         float_.h.
10393         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
10394         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
10395         fnmatch_.h.
10396         * lib/getopt.in.h: Renamed from lib/getopt_.h.
10397         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
10398         getopt_.h.
10399         * lib/glob.in.h: Renamed from lib/glob_.h.
10400         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
10401         * lib/iconv.in.h: Renamed from lib/iconv_.h.
10402         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
10403         iconv_.h.
10404         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
10405         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
10406         inttypes_.h.
10407         * lib/locale.in.h: Renamed from lib/locale_.h.
10408         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
10409         locale_.h.
10410         * lib/math.in.h: Renamed from lib/math_.h.
10411         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
10412         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
10413         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
10414         of netinet_in_.h. Add dependency.
10415         * lib/poll.in.h: Renamed from lib/poll_.h.
10416         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
10417         * lib/search.in.h: Renamed from lib/search_.h.
10418         * modules/search (Files, Makefile.am): Use search.in.h instead of
10419         search_.h.
10420         * lib/signal.in.h: Renamed from lib/signal_.h.
10421         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
10422         _signal.h.
10423         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
10424         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
10425         stdbool_.h.
10426         * lib/stdint.in.h: Renamed from lib/stdint_.h.
10427         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
10428         stdint_.h.
10429         * lib/stdio.in.h: Renamed from lib/stdio_.h.
10430         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
10431         stdio_.h.
10432         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
10433         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
10434         stdlib_.h.
10435         * lib/string.in.h: Renamed from lib/string_.h.
10436         * modules/string (Files, Makefile.am): Use string.in.h instead of
10437         string_.h.
10438         * doc/gnulib-tool.texi (Initial import): Update.
10439         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
10440         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
10441         of sys_select_.h. Add dependency.
10442         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
10443         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
10444         of sys_socket_.h.
10445         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
10446         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
10447         sys_stat_.h.
10448         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
10449         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
10450         sys_time_.h.
10451         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
10452         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
10453         sysexits_.h.
10454         * lib/time.in.h: Renamed from lib/time_.h.
10455         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
10456         * lib/unistd.in.h: Renamed from lib/unistd_.h.
10457         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
10458         unistd_.h.
10459         * lib/wchar.in.h: Renamed from lib/wchar_.h.
10460         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
10461         wchar_.h.
10462         * lib/wctype.in.h: Renamed from lib/wctype_.h.
10463         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
10464         wctype_.h.
10465         * build-aux/bootstrap (slurp): Update.
10466         * lib/.cppi-disable: Update.
10467
10468 2007-09-30  Bruno Haible  <bruno@clisp.org>
10469
10470         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
10471         Needed on BeOS.
10472
10473 2007-09-30  Bruno Haible  <bruno@clisp.org>
10474
10475         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
10476
10477 2007-09-29  Bruno Haible  <bruno@clisp.org>
10478
10479         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
10480
10481 2007-09-29  Bruno Haible  <bruno@clisp.org>
10482
10483         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
10484         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
10485         * build-aux/install-reloc: Compile also areadlink.c.
10486         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
10487
10488 2007-09-29  Bruno Haible  <bruno@clisp.org>
10489
10490         * gnulib-tool (func_emit_initmacro_done): Indentation.
10491
10492 2007-09-29  Bruno Haible  <bruno@clisp.org>
10493
10494         * README: Add CVS checkout update instructions.
10495         Info from Bob Proulx <bob@proulx.com>.
10496
10497 2007-09-28  Eric Blake  <ebb9@byu.net>
10498
10499         Provide move-if-change.
10500         * build-aux/move-if-change: New file, based on best practice
10501         rather than any canonical upstream location.
10502
10503 2007-09-28  Jim Meyering  <jim@meyering.net>
10504
10505         Fix canonicalize loop-detection corner case.
10506         Do not attempt to stat the symlink values stored via seen_triple.
10507         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
10508         on linux-2.6.18, (but not 2.6.22).
10509         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
10510         triple_compare.  The former compares dev,ino,filename, while the latter
10511         would actually stat dirname(filename) when dev and ino were equal.
10512         * lib/hash-triple.c: Install <string.h>.
10513         (STREQ): Define.
10514         (triple_compare_ino_str): New function.
10515         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
10516
10517 2007-09-28  Eric Blake  <ebb9@byu.net>
10518
10519         Enforce that AC_REPLACE_FUNCS files exist.
10520         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
10521         override check for typos.
10522
10523         Fix test-closein on Solaris 10.
10524         * tests/test-closein.c (main): Don't assume stdin can be inherited
10525         closed on all systems.
10526         * tests/test-closein.sh: Likewise.
10527         Reported by Piotr Tarnowski.
10528
10529 2007-09-28  Jim Meyering  <jim@meyering.net>
10530
10531         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
10532
10533 2007-09-27  Jim Meyering  <jim@meyering.net>
10534
10535         canonicalize: Avoid a false-positive cycle failure.
10536         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
10537         Sort.  Remove cycle-check.
10538         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
10539         not cycle-check.h.
10540         (seen_triple): New function.
10541         (canonicalize_filename_mode): Use it instead of cycle-check.
10542         * tests/test-canonicalize.c: Add a test for this bug.
10543         * tests/test-canonicalize.sh: Set up and run the test.
10544
10545         New module, file-set, from coreutils.
10546         * modules/file-set: Define it.
10547         * lib/file-set.c, lib/file-set.h: Implement.
10548
10549         New module, hash-triple, from coreutils.
10550         * modules/hash-triple: Define it.
10551         * lib/hash-triple.c, lib/hash-triple.h: Implement.
10552
10553 2007-09-25  Eric Blake  <ebb9@byu.net>
10554
10555         Fix strerror on Interix.
10556         * lib/string_.h (strerror): Declare replacement.
10557         * doc/functions/strerror.texi (strerror): Document the Interix
10558         shortcoming.
10559         * modules/string (Makefile.am): Support new hooks.
10560         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
10561         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
10562         gl_FUNC_STRERROR_SEPARATE.
10563         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
10564         * lib/strerror.c (rpl_strerror): Provide replacement.
10565         * modules/strerror (Depends-on): Add string.
10566         (configure.ac): Detect use of module.
10567         * tests/test-strerror.c: New file.
10568         * modules/strerror-tests: New test module.
10569         * modules/argp (Depends-on): Add strerror.
10570         * modules/error (Depends-on): Likewise.
10571         Reported by Martin Koeppe.
10572
10573 2007-09-24  Bruno Haible  <bruno@clisp.org>
10574
10575         * README: Update git instructions.
10576
10577 2007-09-24  Eric Blake  <ebb9@byu.net>
10578
10579         Revert fpending breakage from 2007-09-08.
10580         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
10581         __fpending.c.
10582
10583 2007-09-24  Jim Meyering  <jim@meyering.net>
10584
10585         filenamecat.c: Add a test.
10586         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
10587         showing how the function works when DIR is the empty string.
10588
10589 2007-09-21  Simon Josefsson  <simon@josefsson.org>
10590
10591         * tests/test-canonicalize.sh: Turn on executable bit.
10592
10593 2007-09-19  Eric Blake  <ebb9@byu.net>
10594
10595         * README: Update CVS instructions.
10596
10597 2007-09-18  Bruno Haible  <bruno@clisp.org>
10598
10599         * modules/areadlink: New file.
10600         * lib/areadlink.h (areadlink): New declaration.
10601         * lib/areadlink.c: New file, based on lib/xreadlink.c.
10602
10603 2007-09-17  Jim Meyering  <jim@meyering.net>
10604
10605         * lib/savewd.c (ESTALE) [!defined]: Define.
10606         Reported to be required on Interix by Martin Koeppe.
10607
10608 2007-09-17  Bruno Haible  <bruno@clisp.org>
10609
10610         * gnulib-tool (func_version): Use $version.
10611
10612 2007-09-16  Bruno Haible  <bruno@clisp.org>
10613
10614         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
10615         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
10616         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
10617         Reported by Greg Schafer <gschafer@zip.com.au>.
10618
10619 2007-09-15  Bruno Haible  <bruno@clisp.org>
10620
10621         * gnulib-tool (sed): Try a little harder to make bash understand the
10622         alias.
10623         Reported by Bruce Korb <bruce.korb@gmail.com>.
10624
10625 2007-09-13  Eric Blake  <ebb9@byu.net>
10626
10627         * ChangeLog: Remove conflict markers.
10628
10629 2007-09-13  Simon Josefsson  <simon@josefsson.org>
10630
10631         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
10632         Reported by Bruno Haible <bruno@clisp.org>.
10633
10634 2007-09-12  Bruno Haible  <bruno@clisp.org>
10635
10636         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
10637         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
10638         is not defined.
10639
10640 2007-09-12  Eric Blake  <ebb9@byu.net>
10641
10642         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
10643         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
10644         Autoconf definition.
10645         * modules/euidaccess (Depends-on): Add extensions, for
10646         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
10647         * modules/fnmatch (Depends-on): Likewise.
10648         * modules/getaddrinfo (Depends-on): Likewise.
10649         * modules/getdelim (Depends-on): Likewise.
10650         * modules/getline (Depends-on): Likewise.
10651         * modules/getsubopt (Depends-on): Likewise.
10652         * modules/gettext (Depends-on): Likewise.
10653         * modules/group-member (Depends-on): Likewise.
10654         * modules/mbchar (Depends-on): Likewise.
10655         * modules/memmem (Depends-on): Likewise.
10656         * modules/mempcpy (Depends-on): Likewise.
10657         * modules/memrchr (Depends-on): Likewise.
10658         * modules/pagealign_alloc (Depends-on): Likewise.
10659         * modules/readutmp (Depends-on): Likewise.
10660         * modules/stpcpy (Depends-on): Likewise.
10661         * modules/stpncpy (Depends-on): Likewise.
10662         * modules/strchrnul (Depends-on): Likewise.
10663         * modules/strndup (Depends-on): Likewise.
10664         * modules/strsep (Depends-on): Likewise.
10665         * modules/strverscmp (Depends-on): Likewise.
10666         * modules/vasprintf (Depends-on): Likewise.
10667         * modules/wcwidth (Depends-on): Likewise.
10668         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
10669         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
10670         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
10671         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
10672         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
10673         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10674         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
10675         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
10676         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
10677         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
10678         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
10679         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
10680         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
10681         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
10682         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
10683         * m4/readutmp.m4 (gl_READUTMP): Likewise.
10684         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10685         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
10686         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
10687         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
10688         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
10689         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
10690         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
10691         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
10692         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
10693         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
10694         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
10695         so that lock.m4 can be used in gettext without extensions module.
10696
10697 2007-09-11  Bruno Haible  <bruno@clisp.org>
10698
10699         * m4/isc-posix.m4: Remove file.
10700         Suggested by Eric Blake.
10701
10702 2007-09-11  Eric Blake  <ebb9@byu.net>
10703
10704         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
10705
10706 2007-09-10  Bruno Haible  <bruno@clisp.org>
10707
10708         * posix-modules: Fix typo in error message.
10709         Reported by Matt <mkraai@beckman.com>.
10710
10711 2007-09-09  Bruno Haible  <bruno@clisp.org>
10712
10713         * doc/functions/getdelim.texi: Update list of platforms lacking the
10714         function.
10715         * doc/functions/getline.texi: Likewise.
10716
10717 2007-09-09  Jim Meyering  <jim@meyering.net>
10718
10719         * lib/hash.c (hash_initialize): Detect calloc failure.
10720         Reported by Bruno Haible.
10721
10722 2007-09-09  Bruno Haible  <bruno@clisp.org>
10723
10724         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
10725         malloc or realloc fails.
10726
10727 2007-09-09  Bruno Haible  <bruno@clisp.org>
10728
10729         * modules/getcwd (Depends-on): Add malloc-posix.
10730         * modules/glob (Depends-on): Likewise.
10731         * modules/putenv (Depends-on): Likewise.
10732         * modules/strdup (Depends-on): Likewise.
10733         * modules/getdelim (Depends-on): Add realloc-posix.
10734         * modules/read-file (Depends-on): Likewise.
10735
10736 2007-09-09  Bruno Haible  <bruno@clisp.org>
10737
10738         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
10739         (gl_FUNC_MALLOC_POSIX): Require it.
10740         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
10741         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
10742         * modules/realloc (Files): Add m4/malloc.m4.
10743         * modules/calloc (Files): Likewise.
10744
10745 2007-09-09  Bruno Haible  <bruno@clisp.org>
10746
10747         * modules/malloc-posix: New file.
10748         * modules/malloc (Depends-on): Add malloc-posix.
10749         * lib/malloc.c: Include errno.h.
10750         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
10751         and a POSIX-compatible malloc into a single function. Set ENOMEM
10752         when returning NULL.
10753         * m4/malloc.m4: New file.
10754         * doc/functions/malloc.texi: Mention the malloc-posix module.
10755         * lib/stdlib_.h (malloc): New declaration.
10756         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10757         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
10758         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
10759         and HAVE_MALLOC_POSIX.
10760
10761 2007-09-09  Bruno Haible  <bruno@clisp.org>
10762
10763         * modules/realloc-posix: New file.
10764         * modules/realloc (Depends-on): Add realloc-posix.
10765         * lib/realloc.c: Include errno.h.
10766         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
10767         and a POSIX-compatible realloc into a single function. Set ENOMEM
10768         when returning NULL.
10769         * m4/realloc.m4: New file.
10770         * doc/functions/realloc.texi: Mention the realloc-posix module.
10771         * lib/stdlib_.h (realloc): New declaration.
10772         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10773         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
10774         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
10775         and HAVE_REALLOC_POSIX.
10776
10777 2007-09-09  Bruno Haible  <bruno@clisp.org>
10778
10779         * modules/calloc-posix: New file.
10780         * modules/calloc (Depends-on): Add calloc-posix.
10781         * lib/calloc.c: Include errno.h.
10782         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
10783         and a POSIX-compatible calloc into a single function. Set ENOMEM
10784         when returning NULL.
10785         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
10786         * doc/functions/calloc.texi: Mention the calloc-posix module.
10787         * lib/stdlib_.h (calloc): New declaration.
10788         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10789         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
10790         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
10791         and HAVE_CALLOC_POSIX.
10792
10793 2007-09-09  Bruno Haible  <bruno@clisp.org>
10794
10795         Allow for modules to show an arbitrary notice.
10796         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
10797         * gnulib-tool: New option --extract-notice.
10798         (func_usage): Document it.
10799         (sed_extract_prog): Update.
10800         (func_get_notice): New function.
10801         (func_modules_notice): New function.
10802         (func_import, func_create_testdir): Invoke it.
10803         Suggested by Jim Meyering.
10804
10805 2007-09-09  Bruno Haible  <bruno@clisp.org>
10806
10807         * gnulib-tool: New options --verbose, --quiet.
10808         (func_usage): Document them.
10809         (verbose): New variable.
10810         (func_execute_command): New function.
10811         (func_import): Don't show the module list and the file list if
10812         $verbose < 0.
10813         (func_create_testdir): Likewise. Use func_execute_command.
10814         (func_create_megatestdir): Use func_execute_command.
10815
10816 2007-09-08  Bruno Haible  <bruno@clisp.org>
10817
10818         * gnulib-tool (func_import): Prefer rsync over wget when available,
10819         for fetching the PO files.
10820
10821 2007-09-08  Bruno Haible  <bruno@clisp.org>
10822
10823         * posix-modules: New file. Portions copied from gnulib-tool.
10824         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
10825
10826 2007-09-08  Jim Meyering  <jim@meyering.net>
10827
10828         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
10829         * lib/fpending.h: Rename from __fpending.h.
10830         * lib/fpending.c: Rename from __fpending.c.
10831         Include "fpending.h", not "__fpending.h".
10832         * lib/__fpending.h, lib/__fpending.c: Remove files.
10833         * modules/fpending (Files): Reflect new file names.
10834         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
10835
10836 2007-09-08  Bruno Haible  <bruno@clisp.org>
10837
10838         * m4/inttypes-h.m4: Remove stub file.
10839
10840 2007-09-07  Simon Josefsson  <simon@josefsson.org>
10841
10842         * doc/headers/stdint.texi: Discuss #include_next issue.
10843
10844 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10845
10846         * build-aux/bootstrap: Remove obsolete comment about wget --help.
10847
10848 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10849
10850         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
10851         in variable name.
10852
10853 2007-09-03  Jim Meyering  <jim@meyering.net>
10854
10855         New module: git-version-gen.
10856         * modules/git-version-gen: New file.
10857
10858         Import changes from coreutils for bootstrap script.
10859
10860         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
10861
10862         bootstrap: uses rsync to download the .po files
10863         * build-aux/bootstrap (po_download_command_format): New global.
10864         (download_po_files): Use rsync.
10865         (update_po_files): Don't remove .po files after download,
10866         so future rsync runs can take advantage of the copies.
10867
10868         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
10869
10870         Solve the unnecessary-.po-file-regeneration problem once and for all.
10871         * build-aux/bootstrap (download_po_files): New function, renamed from
10872         get_translations.  Now, downloads, but doesn't update LINGUAS.
10873         (update_po_files): New function.
10874
10875         bootstrap: Ignore more.
10876         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
10877         uniwidth to e.g., lib/.gitignore.
10878         (slurp): Handle the sys_stat_.h -> sys mapping, too.
10879
10880         * build-aux/bootstrap: New setting: vc_ignore.
10881         (insert_sorted_if_absent): Create $file if absent.
10882         Adapt to new, possibly empty, list: $vc_ignore.
10883
10884         bootstrap: generate more ignorable names
10885         * build-aux/bootstrap (slurp): When generating ignorable names,
10886         also map .sin to .sed, .gperf to .c, and .y to .c.
10887
10888 2007-09-03  Jim Meyering  <jim@meyering.net>
10889
10890         * build-aux/git-version-gen: New file, from coreutils.  For details, see
10891         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
10892
10893 2007-09-02  Bruno Haible  <bruno@clisp.org>
10894
10895         Fix mis-recognition of 'mcs' on QNX 6.
10896         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
10897         output contains the string "Mono".
10898         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
10899         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
10900
10901 2007-09-01  Bruno Haible  <bruno@clisp.org>
10902
10903         Fix collision between uniwidth/* and linebreak modules.
10904         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
10905         u32_width): Remove declarations.
10906         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
10907         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
10908         streq3, streq2, streq1, streq0): Remove functions.
10909         (STREQ): Remove macro.
10910         (is_cjk_encoding): Remove function.
10911         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
10912         (uc_width, u8_width, u16_width, u32_width): Remove functions.
10913         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
10914         * NEWS: Document the change.
10915
10916 2007-09-01  Bruno Haible  <bruno@clisp.org>
10917
10918         * lib/streq.h: Add double-inclusion guard.
10919
10920 2007-09-01  Karl Berry  <karl@gnu.org>
10921
10922         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
10923
10924 2007-08-28  Jim Meyering  <jim@meyering.net>
10925
10926         Rename mreadlink_with_size to areadlink_with_size.
10927         * NEWS: Document the change.
10928         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
10929         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
10930         * lib/mreadlink.h: Rename this to...
10931         * lib/areadlink.h: ...this.
10932         * modules/mreadlink-with-size: Rename this to...
10933         * modules/areadlink-with-size: ...this.
10934         * lib/canonicalize.c: Reflect the renaming.
10935         * modules/canonicalize: Likewise.
10936
10937 2007-08-26  Bruno Haible  <bruno@clisp.org>
10938
10939         * gnulib-tool (func_import): When deciding which files to remove,
10940         consider also dangling symbolic links.
10941         Reported by Eric Blake.
10942
10943 2007-08-26  Bruno Haible  <bruno@clisp.org>
10944
10945         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
10946
10947 2007-08-23  Simon Josefsson  <simon@josefsson.org>
10948
10949         * lib/readline.c: Don't include getline.h, the prototype is now
10950         found in stdio.h.
10951
10952 2007-08-23  Jim Meyering  <jim@meyering.net>
10953
10954         Getdelim touchup.
10955         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
10956         around the funlockfile call, since funlockfile never sets errno.
10957         Don't set errno upon failed realloc.
10958
10959 2007-08-22  Eric Blake  <ebb9@byu.net>
10960
10961         Getline touchups.
10962         * lib/getdelim.c (getdelim): Revert regression that required *n to
10963         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
10964         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
10965         getdelim, rather than whether implementation is missing.
10966         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
10967         * lib/stdio_.h (getline): Also declare if replacement is
10968         required.
10969         * doc/functions/getdelim.texi: New file.
10970         * doc/functions/getline.texi: Likewise.
10971         * doc/gnulib.texi (Function Substitutes): Add new files.
10972         Reported by Bruno Haible.
10973
10974 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
10975
10976         * users.txt: Add Guile.
10977
10978 2007-08-22  Eric Blake  <ebb9@byu.net>
10979
10980         * tests/test-getdelim.c (main): Use remove, not unlink.
10981         * tests/test-getline.c (main): Likewise.
10982
10983         Move getline and getdelim into stdio.h, per POSIX 200x.
10984         * modules/getline (Files): Remove getline.h.
10985         (Depends-on): Add stdio.
10986         (configure.ac): Add module indicator.
10987         * modules/getdelim (Files): Remove getdelim.h.
10988         (Depends-on): Add stdio.
10989         (configure.ac): Add module indicator.
10990         * modules/stdio (Makefile.am): Work with new indicators.
10991         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
10992         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
10993         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10994         * lib/getdelim.h: Delete.
10995         * lib/getline.h: Delete.
10996         * lib/stdio_.h (getdelim, getline): Declare.
10997         * modules/getdelim-tests: New module.
10998         * modules/getline-tests: Likewise.
10999         * tests/test-getdelim.c: New file.
11000         * tests/test-getline.c: Likewise.
11001         * NEWS: Document the change.
11002         * lib/getline.c: Update choice of header.
11003         * lib/csharpcomp.c: Likewise.
11004         * lib/getpass.c: Likewise.
11005         * lib/javacomp.c: Likewise.
11006         * lib/javaversion.c: Likewise.
11007         * lib/yesno.c: Likewise.
11008         * lib/getdelim.c: Likewise.
11009         (getdelim): Set errno on failure, and avoid memory leak.
11010
11011 2007-08-19  Bruno Haible  <bruno@clisp.org>
11012
11013         * modules/closein (Depends-on): Add freadahead.
11014         * lib/closein.c: Include freadahead.h.
11015         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
11016         is zero.
11017
11018 2007-08-19  Bruno Haible  <bruno@clisp.org>
11019
11020         * modules/freadahead-tests: New file.
11021         * tests/test-freadahead.sh: New file.
11022         * tests/test-freadahead.c: New file.
11023
11024         * modules/freadahead: New file.
11025         * lib/freadahead.h: New file.
11026         * lib/freadahead.c: New file.
11027         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
11028         fbufmode, fpurge, freadable, fwritable.
11029
11030 2007-08-19  Eric Blake  <ebb9@byu.net>
11031
11032         Test yesno in combination with closein.
11033         * lib/yesno.c (yesno): Document use of stdin.
11034         * modules/yesno-tests (Files): New module.
11035         * tests/test-yesno.c (main): New file.
11036         * tests/test-yesno.sh: Likewise.
11037
11038 2007-08-19  Bruno Haible  <bruno@clisp.org>
11039
11040         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
11041         * lib/fseeko.c (rpl_fseeko): Likewise.
11042         * lib/fseterr.c (fseterr): Likewise.
11043
11044 2007-08-19  Bruno Haible  <bruno@clisp.org>
11045
11046         * tests/test-lseek.c (main): Disable a test for BeOS.
11047         * doc/functions/lseek.texi: Document the BeOS bug.
11048
11049 2007-08-19  Bruno Haible  <bruno@clisp.org>
11050             Eric Blake  <ebb9@byu.net>
11051
11052         * lib/lseek.c: Include <sys/stat.h>.
11053         (rpl_lseek): Add workaround code also for Unix platforms.
11054         Needed for BeOS.
11055         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
11056         * doc/functions/lseek.texi: Document BeOS definiency.
11057
11058 2007-08-18  Bruno Haible  <bruno@clisp.org>
11059
11060         * modules/fstrcmp-tests: New file.
11061         * tests/test-fstrcmp.c: New file.
11062
11063 2007-08-18  Bruno Haible  <bruno@clisp.org>
11064
11065         * modules/fstrcmp: New file, from GNU gettext with modifications.
11066         * lib/fstrcmp.h: New file, from GNU gettext.
11067         * lib/fstrcmp.c: New file, from GNU gettext.
11068         * MODULES.html.sh (String handling): Add fstrcmp.
11069
11070 2007-08-18  Bruno Haible  <bruno@clisp.org>
11071
11072         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
11073         'bool'.
11074         (diag, compareseq): Remove const from the ctxt argument.
11075         (USE_HEURISTIC): Undefine at the end.
11076
11077 2007-08-18  Jim Meyering  <jim@meyering.net>
11078
11079         New file: lib/idcache.h
11080         * NEWS: Mention the addition.
11081         * modules/idcache (Files): Add lib/idcache.h
11082         * lib/idcache.c: Include "idcache.h".
11083         Don't include <sys/types.h>.
11084         Add a FIXME comment.
11085         Move file-scoped "static" declarations to the top.
11086         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
11087
11088 2007-08-17  Bruno Haible  <bruno@clisp.org>
11089         and Paul Eggert  <eggert@cs.ucla.edu>
11090
11091         * MODULES.html.sh: Add diffseq.
11092         * modules/diffseq: New file.
11093         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
11094         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
11095
11096 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11097
11098         Import changes from coreutils for bootstrap script.
11099
11100         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
11101
11102         * build-aux/bootstrap (slurp): Work even in environments where
11103         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
11104         current code does not slurp files whose names start with ".", and
11105         this looks like it might be a troublesome area.
11106
11107         2007-07-11  Jim Meyering  <jim@meyering.net>
11108
11109         If there's a GPL vN copyright comment, require that N == 3.
11110
11111         2007-07-08  Jim Meyering  <jim@meyering.net>
11112
11113         Run the coreutils-specific code only if tests/Makefile.am.in exists.
11114         * build-aux/bootstrap (mam_template): Move definition out of loop.
11115
11116         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
11117
11118         * build-aux/bootstrap (symlink_to_dir): Rename function from
11119         symlink_to_gnulib.  Add a directory parameter.  Update all
11120         callers.
11121         (cp_mark_as_generated): Also check for -- and link to -- files in
11122         gl/.
11123
11124         2007-07-08  Jim Meyering  <jim@meyering.net>
11125
11126         Adapt to deeper hierarchy in gnulib.
11127         * build-aux/bootstrap (symlink_to_dir): If the destination
11128         directory doesn't exist, create it. This is required at least for
11129         "lib/uniwidth/cjk.h".
11130
11131         2007-05-15  Jim Meyering  <jim@meyering.net>
11132
11133         * build-aux/bootstrap: Now that generated Makefile.am files
11134         are no longer under version control, they must be created at
11135         bootstrap time.
11136
11137 2007-08-14  Ben Pfaff  <blp@gnu.org>
11138
11139         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
11140
11141 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11142
11143         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
11144         given the changes below.
11145         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
11146         even on hosts that have padding bits beyond the supported 64.
11147
11148 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
11149
11150         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
11151         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
11152         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
11153         depends on it.
11154         (xstrtol_error): Remove.
11155         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
11156         but with a different signature.
11157         (ATTRIBUTE_NORETURN, __attribute__): New macros.
11158         * lib/xstrtol-error.c: Include exitfail.h.
11159         (xstrtol_fatal): New function, with a different signature from the
11160         old xstrtol_error, so that the caller need not worry about passing
11161         in an exit status, or about storage management of the option argument.
11162         (xstrtol_error): Now a static function.  Redo signature to
11163         implement xstrtol_fatal.  Output the correct number of hyphens in
11164         front of the option so that the caller need not worry about
11165         storage management.
11166         (N_): New macro.
11167         (_): Remove; not used now.
11168         * modules/xstrtol: Depend on getopt.
11169         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
11170         of old STRTOL_FATAL_ERROR macro.
11171         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
11172         of test program.
11173         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
11174         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
11175
11176 2007-08-08  Eric Blake  <ebb9@byu.net>
11177
11178         * lib/xstrtol-error.c: Add missing include.
11179
11180         Move xstrtol messages into gnulib domain, when --pobase is used.
11181         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
11182         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
11183         * modules/xstrtol (Files): Distribute new file.
11184         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
11185         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
11186         * tests/test-xstrtol.c: ...into new file.
11187         * tests/test-xstrtoul.c: Also test xstrtoul.
11188         * tests/test-xstrtoimax.c: Also test xstrtoimax.
11189         * tests/test-xstrtoumax.c: Also test xstrtoumax.
11190         * tests/test-xstrtol.sh: Drive the tests.
11191         * tests/test-xstrtoimax.sh: Likewise.
11192         * tests/test-xstrtoumax.sh: Likewise.
11193         * modules/xstrtol-tests: New module.
11194         * modules/xstrtoimax-tests: Likewise.
11195         * modules/xstrtoumax-tests: Likewise.
11196
11197 2007-08-08  Jim Meyering  <jim@meyering.net>
11198
11199         New function: mfile_name_concat.
11200         * lib/filenamecat.c (mfile_name_concat): New function, just like
11201         file_name_concat, but return NULL upon failure rather than exiting
11202         with a diagnostic.
11203         * lib/filenamecat.h: Declare it.
11204
11205 2007-08-07  Bruno Haible  <bruno@clisp.org>
11206
11207         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
11208         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
11209         warning from gcc.
11210         Reported by Eric Blake.
11211
11212 2007-08-07  Simon Josefsson  <simon@josefsson.org>
11213
11214         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
11215         * modules/crypto/arcfour (License): Likewise.
11216         * modules/crypto/des-tests (License): Likewise.
11217         * modules/crypto/gc-arctwo-tests (License): Likewise.
11218         * modules/crypto/gc-des-tests (License): Likewise.
11219         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
11220         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
11221         * modules/crypto/gc-md2-tests (License): Likewise.
11222         * modules/crypto/gc-md4-tests (License): Likewise.
11223         * modules/crypto/gc-md5-tests (License): Likewise.
11224         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
11225         * modules/crypto/gc-rijndael-tests (License): Likewise.
11226         * modules/crypto/gc-sha1-tests (License): Likewise.
11227         * modules/crypto/gc-tests (License): Likewise.
11228         * modules/crypto/hmac-md5 (License): Likewise.
11229         * modules/crypto/hmac-sha1 (License): Likewise.
11230         * modules/crypto/md2-tests (License): Likewise.
11231         * modules/crypto/md4-tests (License): Likewise.
11232         * modules/crypto/md5 (License): Likewise.
11233         * modules/crypto/rijndael (License): Likewise.
11234         * modules/crypto/sha1 (License): Likewise.
11235         * modules/memxor (License): Likewise.
11236
11237 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
11238         and Bruno Haible  <bruno@clisp.org>
11239
11240         * NEWS: Describe interface changes to human, xstrtol.
11241         * lib/human.h: Include <xstrtol.h>.
11242         (human_options): Return enum strtol_error, not int.  Remove
11243         bool arg; take int * instead.
11244         * lib/human.c: Don't include "gettext.h".
11245         (_): Remove; no longer used.
11246         Don't include <xstrtol.h>, since human.h does it.
11247         (human_options): Adjust to abovementioned interface changes.
11248         Do not report error to stderr; that's now the caller's
11249         responsibility.
11250         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
11251         interface change.
11252         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
11253         Str, Argument_type_string.  All uses changed.  Put " argument"
11254         in diagnostics to make them clearer.  Change wording of suffix
11255         message for clarity.
11256         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
11257         Argument_type_string.
11258         (STRTOL_FATAL_WARN): Remove; no longer used.
11259         * modules/human (Depends-on): Remove gettext-h.
11260
11261 2007-08-06  Simon Josefsson  <simon@josefsson.org>
11262
11263         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
11264
11265 2007-07-31  Bruno Haible  <bruno@clisp.org>
11266
11267         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
11268         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
11269         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
11270
11271 2007-07-31  Bruno Haible  <bruno@clisp.org>
11272
11273         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
11274         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
11275
11276 2007-07-30  Bruno Haible  <bruno@clisp.org>
11277
11278         * modules/base64 (License): Use the synonymous term "LGPLv2+".
11279         * modules/c-ctype (License): Likewise.
11280         * modules/c-strcase (License): Likewise.
11281         * modules/check-version (License): Likewise.
11282         * modules/iconv (License): Likewise.
11283         * modules/iconv_open (License): Likewise.
11284         * modules/read-file (License): Likewise.
11285         * modules/striconv (License): Likewise.
11286         * modules/strverscmp (License): Likewise.
11287         * modules/vasprintf (License): Likewise.
11288         * modules/crypto/des (License): Likewise.
11289         * modules/crypto/gc (License): Likewise.
11290         * modules/crypto/gc-arcfour (License): Likewise.
11291         * modules/crypto/gc-arctwo (License): Likewise.
11292         * modules/crypto/gc-des (License): Likewise.
11293         * modules/crypto/gc-hmac-md5 (License): Likewise.
11294         * modules/crypto/gc-hmac-sha1 (License): Likewise.
11295         * modules/crypto/gc-md2 (License): Likewise.
11296         * modules/crypto/gc-md4 (License): Likewise.
11297         * modules/crypto/gc-md5 (License): Likewise.
11298         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
11299         * modules/crypto/gc-random (License): Likewise.
11300         * modules/crypto/gc-rijndael (License): Likewise.
11301         * modules/crypto/gc-sha1 (License): Likewise.
11302         * modules/crypto/md2 (License): Likewise.
11303         * modules/crypto/md4 (License): Likewise.
11304
11305 2007-07-30  Jim Meyering  <jim@meyering.net>
11306
11307         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
11308         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
11309         it has valid stat data.  This bug would cause du not to count the
11310         sizes of inaccessible directories.
11311         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
11312         in <http://bugzilla.redhat.com/250077>.
11313
11314 2007-07-25  Peter O'Gorman  <peter@pogma.com>
11315             Bruno Haible  <bruno@clisp.org>
11316
11317         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
11318         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
11319         #include_next, gives a diagnostic about it, but reports no error in
11320         the exit code.
11321         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
11322
11323 2007-07-24  Ben Pfaff  <blp@gnu.org>
11324
11325         Improve name: "count-one-bits" is better than "popcount".
11326         * MODULES.html.sh: Update name.
11327         * lib/popcount.h: Renamed lib/count-one-bits.h.
11328         (popcount): Renamed count_one_bits.
11329         (popcountl): Renamed count_one_bits_l.
11330         (popcountll): Renamed count_one_bits_ll.
11331         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
11332         * modules/popcount: Renamed module/count-one-bits.
11333         * modules/popcount-tests: Renamed module/count-one-bits-tests.
11334         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
11335
11336 2007-07-23  Ben Pfaff  <blp@gnu.org>
11337
11338         * lib/popcount.h (popcount32): Reduce size of constants, to allow
11339         better code generation, and add U to large constants to avoid
11340         warnings, in non-GCC case.
11341         Suggested by Bruno Haible.
11342
11343 2007-07-23  Ben Pfaff  <blp@gnu.org>
11344
11345         * lib/popcount.h: Use verify_true instead of if...abort.
11346         * modules/popcount: Depend on verify module.
11347         Suggested by Jim Meyering.
11348
11349 2007-07-23  Bruno Haible  <bruno@clisp.org>
11350
11351         * gnulib-tool (func_import): Create a .cvsignore file also when the
11352         directory is not yet in CVS but the toplevel directory is. When
11353         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
11354         Reported by Karl Berry.
11355
11356 2007-07-22  Ben Pfaff  <blp@gnu.org>
11357
11358         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
11359         case.
11360         Suggested by Eric Blake.
11361
11362 2007-07-22  Ben Pfaff  <blp@gnu.org>
11363
11364         New module: popcount.
11365         * MODULES.html.sh: Add popcount.
11366         * modules/popcount: New file.
11367         * modules/popcount-tests: New file.
11368         * tests/test-popcount.c: New file.
11369         * lib/popcount.h: New file.
11370         * m4/popcount.m4: New file.
11371
11372 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11373
11374         * build-aux/announce-gen: Update to GPLv3.
11375
11376         * build-aux/config.guess: Update from config.
11377
11378 2007-07-21  Bruno Haible  <bruno@clisp.org>
11379
11380         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
11381         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
11382
11383 2007-07-20  Jim Meyering  <jim@meyering.net>
11384
11385         * check-module: Diagnose a self-dependency.
11386
11387 2007-07-19  Bruno Haible  <bruno@clisp.org>
11388
11389         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
11390         empty.
11391         Reported by Eric Blake.
11392
11393 2007-07-18  Bruno Haible  <bruno@clisp.org>
11394
11395         * gnulib-tool: New options --po-base, --po-domain.
11396         (func_usage): Document them.
11397         (pobase, po_domain): New variables.
11398         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
11399         DEFAULT_TEXT_DOMAIN.
11400         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
11401         (func_import): Consider pobase and po_domain. Create a po/ directory.
11402         (func_create_testdir): Set pobase and po_domain to empty.
11403         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
11404         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
11405
11406 2007-07-18  Bruno Haible  <bruno@clisp.org>
11407
11408         * gnulib-tool (func_get_automake_snippet): Synthesize also an
11409         EXTRA_DIST augmentation for files in build-aux/.
11410
11411 2007-07-16  Bruno Haible  <bruno@clisp.org>
11412
11413         * modules/lseek (License): Use the synonymous term "LGPLv2+".
11414         * modules/getdelim (License): Likewise.
11415
11416 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11417
11418         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
11419         * modules/d-type (License): Likewise.
11420         * modules/extensions (License): Likewise.
11421         * modules/fnmatch (License): Likewise.
11422         * modules/fseeko (License): Likewise.
11423         * modules/getaddrinfo (License): Likewise.
11424         * modules/getline (License): Likewise.
11425         * modules/getlogin_r (License): Likewise.
11426         * modules/getpass (License): Likewise.
11427         * modules/gettimeofday (License): Likewise.
11428         * modules/glob (License): Likewise.
11429         * modules/inet_ntop (License): Likewise.
11430         * modules/malloc (License): Likewise.
11431         * modules/malloca (License): Likewise.
11432         * modules/memmem (License): Likewise.
11433         * modules/mempcpy (License): Likewise.
11434         * modules/memset (License): Likewise.
11435         * modules/minmax (License): Likewise.
11436         * modules/mktime (License): Likewise.
11437         * modules/netinet_in (License): Likewise.
11438         * modules/pathmax (License): Likewise.
11439         * modules/poll (License): Likewise.
11440         * modules/regex (License): Likewise.
11441         * modules/snprintf (License): Likewise.
11442         * modules/stdbool (License): Likewise.
11443         * modules/stdint (License): Likewise.
11444         * modules/stdio (License): Likewise.
11445         * modules/strcase (License): Likewise.
11446         * modules/strcasestr (License): Likewise.
11447         * modules/strdup (License): Likewise.
11448         * modules/string (License): Likewise.
11449         * modules/strndup (License): Likewise.
11450         * modules/strnlen (License): Likewise.
11451         * modules/strpbrk (License): Likewise.
11452         * modules/strptime (License): Likewise.
11453         * modules/strsep (License): Likewise.
11454         * modules/sys_select (License): Likewise.
11455         * modules/sys_socket (License): Likewise.
11456         * modules/sys_stat (License): Likewise.
11457         * modules/sys_time (License): Likewise.
11458         * modules/time (License): Likewise.
11459         * modules/time_r (License): Likewise.
11460         * modules/timegm (License): Likewise.
11461         * modules/unistd (License): Likewise.
11462         * modules/vsnprintf (License): Likewise.
11463         * modules/wctype (License): Likewise.
11464
11465 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11466
11467         * modules/argz (License): LGPLv2+.
11468
11469 2007-07-15  Karl Berry  <karl@gnu.org>
11470
11471         * doc/gnulib.texi: revise node structure per new fdl.texi.
11472
11473 2007-07-14  Bruno Haible  <bruno@clisp.org>
11474
11475         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
11476         the output file.
11477         * lib/uniname/uninames.h: Regenerated.
11478
11479 2007-07-14  Karl Berry  <karl@gnu.org>
11480
11481         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
11482         omitting sectioning and index commands.
11483
11484 2007-07-13  Bruno Haible  <bruno@clisp.org>
11485
11486         New gnulib-tool option --more-symlinks.
11487         * gnulib-tool (func_usage): Document --more-symlinks.
11488         (do_copyrights): New variable.
11489         Recognize option --more-symlinks.
11490         (func_import): Don't add a copyright notice transform to
11491         sed_transform_lib_file if do_copyrights is empty.
11492
11493 2007-07-13  Bruno Haible  <bruno@clisp.org>
11494
11495         * lib/vasnprintf.c (decimal_point_char): Define also if
11496         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
11497         && !NEED_PRINTF_DIRECTIVE_A.
11498         Reported by Clemens Koller <clemens.koller@anagramm.de> via
11499         Gary V. Vaughan <gary@gnu.org>.
11500
11501 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
11502
11503         * lib/inttypes_.h: Undo previous change, since it was fixed
11504         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
11505
11506 2007-07-13  Bruno Haible  <bruno@clisp.org>
11507
11508         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
11509         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
11510
11511 2007-07-13  Jim Meyering  <jim@meyering.net>
11512
11513         df: Don't fail for Tru64's "file-on-file mount".
11514         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
11515         so we fall through and use statfs instead.  Details here:
11516         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
11517         Reported by Albert Chin.
11518
11519 2007-07-13  Bruno Haible  <bruno@clisp.org>
11520
11521         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
11522         * modules/configmake (License): Likewise.
11523         * modules/gettext (License): Likewise.
11524         * modules/gettext-h (License): Likewise.
11525         * modules/include_next (License): Likewise.
11526         * modules/link-warning (License): Likewise.
11527         * modules/localcharset (License): Likewise.
11528         * modules/localename (License): Likewise.
11529         * modules/lock (License): Likewise.
11530         * modules/relocatable-lib-lgpl (License): Likewise.
11531         * modules/size_max (License): Likewise.
11532         * modules/vasnprintf (License): Likewise.
11533         * modules/wchar (License): Likewise.
11534         * modules/xsize (License): Likewise.
11535
11536 2007-07-13  Bruno Haible  <bruno@clisp.org>
11537
11538         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
11539         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
11540
11541 2007-07-12  Bruno Haible  <bruno@clisp.org>
11542
11543         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
11544         in the modules files.
11545
11546 2007-07-11  Karl Berry  <karl@gnu.org>
11547
11548         * MODULES.html.sh (func_module): use
11549          sed -e '\|^'"${includefile}"'$|d'
11550          instead of /.../d, to avoid errors on $includefile's containing /.
11551
11552 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
11553
11554         * gnulib-tool (func_import): Avoid duplication of --avoid
11555         statements
11556         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
11557         names to `_' in variable names.
11558
11559 2007-07-10  Eric Blake  <ebb9@byu.net>
11560
11561         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
11562         * NEWS: Document this change.
11563
11564 2007-07-08  Bruno Haible  <bruno@clisp.org>
11565
11566         Update to Unicode 5.0.
11567         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
11568         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
11569         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
11570         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
11571         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
11572         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
11573         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
11574         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
11575         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
11576         U+10A3F, U+1D242..U+1D244.
11577         (nonspacing_table_ind): Update.
11578         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
11579         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
11580
11581 2007-07-08  Bruno Haible  <bruno@clisp.org>
11582
11583         Update to Unicode 5.0.
11584         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
11585         code transform. Extend the name index field of unicode_name_to_code and
11586         unicode_code_to_name from 16 to 24 bits.
11587         * lib/uniname/uniname.c (unicode_character_name,
11588         unicode_name_character): Add the range 0x12xxx to the code transform.
11589         * lib/uniname/uninames.h: Regenerated.
11590         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
11591
11592 2007-07-07  Bruno Haible  <bruno@clisp.org>
11593
11594         * modules/wcwidth-tests: New file.
11595         * tests/test-wcwidth.c: New file.
11596
11597         Work around MacOS X wcwidth() bug.
11598         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
11599         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
11600         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
11601         original wcwidth in non-UTF-8 locales.
11602         * modules/wcwidth (Depends-on): Add localcharset, streq,
11603         uniwidth/width.
11604         * doc/functions/wcwidth.texi: Update.
11605
11606 2007-07-07  Bruno Haible  <bruno@clisp.org>
11607
11608         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
11609         (wcwidth): New declaration.
11610         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
11611         macros.
11612         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
11613         here. Prepare for creating <wchar.h> unconditionally.
11614         * modules/wchar (Depends-on): Add link-warning.
11615         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
11616         REPLACE_WCWIDTH, and GL_LINK_WARNING.
11617         * lib/wcwidth.h: Remove file.
11618         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
11619         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
11620         * modules/wcwidth (Files): Remove lib/wcwidth.h.
11621         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
11622         (Include): Replace wcwidth.h with <wchar.h>.
11623         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
11624         * lib/mbchar.h: Don't include wcwidth.h.
11625         * lib/mbswidth.c: Likewise.
11626         * NEWS: Mention the change.
11627
11628 2007-07-07  Bruno Haible  <bruno@clisp.org>
11629
11630         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
11631         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
11632         definition with an external declaration.
11633         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
11634         defined as a function. Remove AC_C_INLINE requirement.
11635         * modules/wcwidth (Files): Add lib/wcwidth.c.
11636         (Makefile.am): Remove redundant statement.
11637
11638 2007-07-07  Bruno Haible  <bruno@clisp.org>
11639
11640         * MODULES.html.sh (Unicode string functions): Add the new modules.
11641
11642         * tests/uniwidth/test-u32-strwidth.c: New file.
11643         * modules/uniwidth/u32-strwidth-tests: New file.
11644
11645         * lib/uniwidth/u32-strwidth.c: New file.
11646         * modules/uniwidth/u32-strwidth: New file.
11647
11648         * tests/uniwidth/test-u16-strwidth.c: New file.
11649         * modules/uniwidth/u16-strwidth-tests: New file.
11650
11651         * lib/uniwidth/u16-strwidth.c: New file.
11652         * modules/uniwidth/u16-strwidth: New file.
11653
11654         * tests/uniwidth/test-u8-strwidth.c: New file.
11655         * modules/uniwidth/u8-strwidth-tests: New file.
11656
11657         * lib/uniwidth/u8-strwidth.c: New file.
11658         * modules/uniwidth/u8-strwidth: New file.
11659
11660         * tests/uniwidth/test-u32-width.c: New file.
11661         * modules/uniwidth/u32-width-tests: New file.
11662
11663         * lib/uniwidth/u32-width.c: New file.
11664         * modules/uniwidth/u32-width: New file.
11665
11666         * tests/uniwidth/test-u16-width.c: New file.
11667         * modules/uniwidth/u16-width-tests: New file.
11668
11669         * lib/uniwidth/u16-width.c: New file.
11670         * modules/uniwidth/u16-width: New file.
11671
11672         * tests/uniwidth/test-u8-width.c: New file.
11673         * modules/uniwidth/u8-width-tests: New file.
11674
11675         * lib/uniwidth/u8-width.c: New file.
11676         * modules/uniwidth/u8-width: New file.
11677
11678         * tests/uniwidth/test-uc_width.c: New file.
11679         * modules/uniwidth/width-tests: New file.
11680
11681         * lib/uniwidth/width.c: New file, from GNU libiconv.
11682         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
11683         * modules/uniwidth/width: New file.
11684
11685         * lib/uniwidth.h: New file, from GNU libiconv.
11686         * modules/uniwidth/base: New file.
11687
11688 2007-07-07  Bruno Haible  <bruno@clisp.org>
11689
11690         * lib/uniname.h: New file, from GNU gettext.
11691         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
11692         * lib/uniname/uninames.h: New file, from GNU gettext.
11693         * lib/uniname/uniname.c: New file, from GNU gettext.
11694         * tests/uniname/test-uninames.sh: New file.
11695         * tests/uniname/test-uninames.c: New file, from GNU gettext.
11696         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
11697         * modules/uniname/base: New file.
11698         * modules/uniname/uniname: New file.
11699         * modules/uniname/uniname-tests: New file.
11700         * MODULES.html.sh (Unicode string functions): Add the new modules.
11701
11702 2007-07-06  Bruno Haible  <bruno@clisp.org>
11703
11704         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
11705
11706 2007-07-06  Bruno Haible  <bruno@clisp.org>
11707
11708         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
11709         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
11710         includes <cygwin/sys_time.h> which includes <sys/select.h> which
11711         include <sys/time.h>.
11712         Reported by Eric Blake.
11713
11714 2007-07-06  Eric Blake  <ebb9@byu.net>
11715
11716         Fix testing canonicalize on cygwin.
11717         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
11718         Revert patch from 2007-06-19.
11719         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
11720         canonicalize module is also in use.
11721         * tests/test-canonicalize.c: New file.
11722         * tests/test-canonicalize.sh: Likewise.
11723         * modules/canonicalize-tests: Likewise.
11724
11725 2007-07-06  Jim Meyering  <jim@meyering.net>
11726
11727         * lib/getugroups.c (getugroups): Detect getgrent failure.
11728         Adjust comment to reflect reality: this function may return -1.
11729
11730 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
11731
11732         * build-aux/bootstrap (TP_URL,get_translations): Update to use
11733         the new TP address.
11734         (usage): Fix typo
11735         (gnulib_mk): New variable.
11736
11737 2007-07-05  Jim Meyering  <jim@meyering.net>
11738
11739         Don't let endgrent clobber errno, no matter how improbable.
11740         * lib/getugroups.c (getugroups): Save and restore errno around
11741         endgrent call.
11742
11743         Close the group DB even when failing with 2^31 or more members.
11744         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
11745
11746 2007-07-04  Jim Meyering  <jim@meyering.net>
11747
11748         * lib/getugroups.h: New file.
11749         * lib/getugroups.c: Include "getugroups.h".
11750         Remove uses of "register" keyword.
11751         Move local variable, "cp", down into scope where used.
11752         Give "username" parameter the "const" attribute.
11753         * modules/getugroups (Files): Add lib/getugroups.h
11754
11755 2007-07-04  Karl Berry  <karl@gnu.org>
11756
11757         * MODULES.html.sh (func_all_modules): Complete rename of
11758         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
11759
11760 2007-07-02  Bruno Haible  <bruno@clisp.org>
11761
11762         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
11763         mode, when inttypes.h comes from gnulib.
11764         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
11765
11766 2007-07-02  Simon Josefsson  <simon@josefsson.org>
11767
11768         * NEWS: Mention lgpl module name change.
11769
11770         * modules/lgpl-2.1: Renamed from lgpl.
11771
11772         * NEWS: Mention gpl module name change.
11773
11774         * modules/gpl-3.0: New file, based on gpl-2.0.
11775
11776         * modules/gpl-2.0: Renamed from gpl.
11777
11778         * modules/gpl: Fix filename, doc/gpl.texi is now found at
11779         doc/gpl-2.0.texi.
11780
11781 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11782
11783         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
11784         #define __STDC_LIMIT_MACROS temporarily while including
11785         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
11786         Problem reported by Joel E. Denny in
11787         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
11788
11789 2007-07-01  Bruno Haible  <bruno@clisp.org>
11790
11791         * lib/unistdio.h: New file.
11792         * lib/unistdio/u-asnprintf.h: New file.
11793         * lib/unistdio/u-asprintf.h: New file.
11794         * lib/unistdio/u-printf-args.c: New file.
11795         * lib/unistdio/u-printf-args.h: New file.
11796         * lib/unistdio/u-printf-parse.h: New file.
11797         * lib/unistdio/u-snprintf.h: New file.
11798         * lib/unistdio/u-sprintf.h: New file.
11799         * lib/unistdio/u-vasprintf.h: New file.
11800         * lib/unistdio/u-vsnprintf.h: New file.
11801         * lib/unistdio/u-vsprintf.h: New file.
11802         * lib/unistdio/ulc-asnprintf.c: New file.
11803         * lib/unistdio/ulc-asprintf.c: New file.
11804         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
11805         * lib/unistdio/ulc-printf-parse.c: New file.
11806         * lib/unistdio/ulc-snprintf.c: New file.
11807         * lib/unistdio/ulc-sprintf.c: New file.
11808         * lib/unistdio/ulc-vasnprintf.c: New file.
11809         * lib/unistdio/ulc-vasprintf.c: New file.
11810         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
11811         * lib/unistdio/ulc-vsnprintf.c: New file.
11812         * lib/unistdio/ulc-vsprintf.c: New file.
11813         * lib/unistdio/u8-asnprintf.c: New file.
11814         * lib/unistdio/u8-asprintf.c: New file.
11815         * lib/unistdio/u8-printf-parse.c: New file.
11816         * lib/unistdio/u8-snprintf.c: New file.
11817         * lib/unistdio/u8-sprintf.c: New file.
11818         * lib/unistdio/u8-vasnprintf.c: New file.
11819         * lib/unistdio/u8-vasprintf.c: New file.
11820         * lib/unistdio/u8-vsnprintf.c: New file.
11821         * lib/unistdio/u8-vsprintf.c: New file.
11822         * lib/unistdio/u8-u8-asnprintf.c: New file.
11823         * lib/unistdio/u8-u8-asprintf.c: New file.
11824         * lib/unistdio/u8-u8-snprintf.c: New file.
11825         * lib/unistdio/u8-u8-sprintf.c: New file.
11826         * lib/unistdio/u8-u8-vasnprintf.c: New file.
11827         * lib/unistdio/u8-u8-vasprintf.c: New file.
11828         * lib/unistdio/u8-u8-vsnprintf.c: New file.
11829         * lib/unistdio/u8-u8-vsprintf.c: New file.
11830         * lib/unistdio/u16-asnprintf.c: New file.
11831         * lib/unistdio/u16-asprintf.c: New file.
11832         * lib/unistdio/u16-printf-parse.c: New file.
11833         * lib/unistdio/u16-snprintf.c: New file.
11834         * lib/unistdio/u16-sprintf.c: New file.
11835         * lib/unistdio/u16-vasnprintf.c: New file.
11836         * lib/unistdio/u16-vasprintf.c: New file.
11837         * lib/unistdio/u16-vsnprintf.c: New file.
11838         * lib/unistdio/u16-vsprintf.c: New file.
11839         * lib/unistdio/u16-u16-asnprintf.c: New file.
11840         * lib/unistdio/u16-u16-asprintf.c: New file.
11841         * lib/unistdio/u16-u16-snprintf.c: New file.
11842         * lib/unistdio/u16-u16-sprintf.c: New file.
11843         * lib/unistdio/u16-u16-vasnprintf.c: New file.
11844         * lib/unistdio/u16-u16-vasprintf.c: New file.
11845         * lib/unistdio/u16-u16-vsnprintf.c: New file.
11846         * lib/unistdio/u16-u16-vsprintf.c: New file.
11847         * lib/unistdio/u32-asnprintf.c: New file.
11848         * lib/unistdio/u32-asprintf.c: New file.
11849         * lib/unistdio/u32-printf-parse.c: New file.
11850         * lib/unistdio/u32-snprintf.c: New file.
11851         * lib/unistdio/u32-sprintf.c: New file.
11852         * lib/unistdio/u32-vasnprintf.c: New file.
11853         * lib/unistdio/u32-vasprintf.c: New file.
11854         * lib/unistdio/u32-vsnprintf.c: New file.
11855         * lib/unistdio/u32-vsprintf.c: New file.
11856         * lib/unistdio/u32-u32-asnprintf.c: New file.
11857         * lib/unistdio/u32-u32-asprintf.c: New file.
11858         * lib/unistdio/u32-u32-snprintf.c: New file.
11859         * lib/unistdio/u32-u32-sprintf.c: New file.
11860         * lib/unistdio/u32-u32-vasnprintf.c: New file.
11861         * lib/unistdio/u32-u32-vasprintf.c: New file.
11862         * lib/unistdio/u32-u32-vsnprintf.c: New file.
11863         * lib/unistdio/u32-u32-vsprintf.c: New file.
11864         * tests/unistdio/test-ulc-asnprintf1.c: New file.
11865         * tests/unistdio/test-ulc-asnprintf1.h: New file.
11866         * tests/unistdio/test-ulc-printf1.h: New file.
11867         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
11868         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
11869         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
11870         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
11871         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
11872         * tests/unistdio/test-ulc-vasprintf1.c: New file.
11873         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
11874         * tests/unistdio/test-ulc-vsprintf1.c: New file.
11875         * tests/unistdio/test-u8-asnprintf1.c: New file.
11876         * tests/unistdio/test-u8-asnprintf1.h: New file.
11877         * tests/unistdio/test-u8-printf1.h: New file.
11878         * tests/unistdio/test-u8-vasnprintf1.c: New file.
11879         * tests/unistdio/test-u8-vasnprintf2.c: New file.
11880         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
11881         * tests/unistdio/test-u8-vasnprintf3.c: New file.
11882         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
11883         * tests/unistdio/test-u8-vasprintf1.c: New file.
11884         * tests/unistdio/test-u8-vsnprintf1.c: New file.
11885         * tests/unistdio/test-u8-vsprintf1.c: New file.
11886         * tests/unistdio/test-u16-asnprintf1.c: New file.
11887         * tests/unistdio/test-u16-asnprintf1.h: New file.
11888         * tests/unistdio/test-u16-printf1.h: New file.
11889         * tests/unistdio/test-u16-vasnprintf1.c: New file.
11890         * tests/unistdio/test-u16-vasnprintf2.c: New file.
11891         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
11892         * tests/unistdio/test-u16-vasnprintf3.c: New file.
11893         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
11894         * tests/unistdio/test-u16-vasprintf1.c: New file.
11895         * tests/unistdio/test-u16-vsnprintf1.c: New file.
11896         * tests/unistdio/test-u16-vsprintf1.c: New file.
11897         * tests/unistdio/test-u32-asnprintf1.c: New file.
11898         * tests/unistdio/test-u32-asnprintf1.h: New file.
11899         * tests/unistdio/test-u32-printf1.h: New file.
11900         * tests/unistdio/test-u32-vasnprintf1.c: New file.
11901         * tests/unistdio/test-u32-vasnprintf2.c: New file.
11902         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
11903         * tests/unistdio/test-u32-vasnprintf3.c: New file.
11904         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
11905         * tests/unistdio/test-u32-vasprintf1.c: New file.
11906         * tests/unistdio/test-u32-vsnprintf1.c: New file.
11907         * tests/unistdio/test-u32-vsprintf1.c: New file.
11908         * modules/unistdio/base: New file.
11909         * modules/unistdio/u-printf-args: New file.
11910         * modules/unistdio/ulc-asnprintf: New file.
11911         * modules/unistdio/ulc-asprintf: New file.
11912         * modules/unistdio/ulc-fprintf: New file.
11913         * modules/unistdio/ulc-printf-parse: New file.
11914         * modules/unistdio/ulc-snprintf: New file.
11915         * modules/unistdio/ulc-sprintf: New file.
11916         * modules/unistdio/ulc-vasnprintf: New file.
11917         * modules/unistdio/ulc-vasprintf: New file.
11918         * modules/unistdio/ulc-vfprintf: New file.
11919         * modules/unistdio/ulc-vsnprintf: New file.
11920         * modules/unistdio/ulc-vsprintf: New file.
11921         * modules/unistdio/u8-asnprintf: New file.
11922         * modules/unistdio/u8-asprintf: New file.
11923         * modules/unistdio/u8-printf-parse: New file.
11924         * modules/unistdio/u8-snprintf: New file.
11925         * modules/unistdio/u8-sprintf: New file.
11926         * modules/unistdio/u8-vasnprintf: New file.
11927         * modules/unistdio/u8-vasprintf: New file.
11928         * modules/unistdio/u8-vsnprintf: New file.
11929         * modules/unistdio/u8-vsprintf: New file.
11930         * modules/unistdio/u8-u8-asnprintf: New file.
11931         * modules/unistdio/u8-u8-asprintf: New file.
11932         * modules/unistdio/u8-u8-snprintf: New file.
11933         * modules/unistdio/u8-u8-sprintf: New file.
11934         * modules/unistdio/u8-u8-vasnprintf: New file.
11935         * modules/unistdio/u8-u8-vasprintf: New file.
11936         * modules/unistdio/u8-u8-vsnprintf: New file.
11937         * modules/unistdio/u8-u8-vsprintf: New file.
11938         * modules/unistdio/u16-asnprintf: New file.
11939         * modules/unistdio/u16-asprintf: New file.
11940         * modules/unistdio/u16-printf-parse: New file.
11941         * modules/unistdio/u16-snprintf: New file.
11942         * modules/unistdio/u16-sprintf: New file.
11943         * modules/unistdio/u16-vasnprintf: New file.
11944         * modules/unistdio/u16-vasprintf: New file.
11945         * modules/unistdio/u16-vsnprintf: New file.
11946         * modules/unistdio/u16-vsprintf: New file.
11947         * modules/unistdio/u16-u16-asnprintf: New file.
11948         * modules/unistdio/u16-u16-asprintf: New file.
11949         * modules/unistdio/u16-u16-snprintf: New file.
11950         * modules/unistdio/u16-u16-sprintf: New file.
11951         * modules/unistdio/u16-u16-vasnprintf: New file.
11952         * modules/unistdio/u16-u16-vasprintf: New file.
11953         * modules/unistdio/u16-u16-vsnprintf: New file.
11954         * modules/unistdio/u16-u16-vsprintf: New file.
11955         * modules/unistdio/u32-asnprintf: New file.
11956         * modules/unistdio/u32-asprintf: New file.
11957         * modules/unistdio/u32-printf-parse: New file.
11958         * modules/unistdio/u32-snprintf: New file.
11959         * modules/unistdio/u32-sprintf: New file.
11960         * modules/unistdio/u32-vasnprintf: New file.
11961         * modules/unistdio/u32-vasprintf: New file.
11962         * modules/unistdio/u32-vsnprintf: New file.
11963         * modules/unistdio/u32-vsprintf: New file.
11964         * modules/unistdio/u32-u32-asnprintf: New file.
11965         * modules/unistdio/u32-u32-asprintf: New file.
11966         * modules/unistdio/u32-u32-snprintf: New file.
11967         * modules/unistdio/u32-u32-sprintf: New file.
11968         * modules/unistdio/u32-u32-vasnprintf: New file.
11969         * modules/unistdio/u32-u32-vasprintf: New file.
11970         * modules/unistdio/u32-u32-vsnprintf: New file.
11971         * modules/unistdio/u32-u32-vsprintf: New file.
11972         * modules/unistdio/ulc-asnprintf-tests: New file.
11973         * modules/unistdio/ulc-vasnprintf-tests: New file.
11974         * modules/unistdio/ulc-vasprintf-tests: New file.
11975         * modules/unistdio/ulc-vsnprintf-tests: New file.
11976         * modules/unistdio/ulc-vsprintf-tests: New file.
11977         * modules/unistdio/u8-asnprintf-tests: New file.
11978         * modules/unistdio/u8-vasnprintf-tests: New file.
11979         * modules/unistdio/u8-vasprintf-tests: New file.
11980         * modules/unistdio/u8-vsnprintf-tests: New file.
11981         * modules/unistdio/u8-vsprintf-tests: New file.
11982         * modules/unistdio/u16-asnprintf-tests: New file.
11983         * modules/unistdio/u16-vasnprintf-tests: New file.
11984         * modules/unistdio/u16-vasprintf-tests: New file.
11985         * modules/unistdio/u16-vsnprintf-tests: New file.
11986         * modules/unistdio/u16-vsprintf-tests: New file.
11987         * modules/unistdio/u32-asnprintf-tests: New file.
11988         * modules/unistdio/u32-vasnprintf-tests: New file.
11989         * modules/unistdio/u32-vasprintf-tests: New file.
11990         * modules/unistdio/u32-vsnprintf-tests: New file.
11991         * modules/unistdio/u32-vsprintf-tests: New file.
11992         * MODULES.html.sh (Unicode string functions): Add the new modules.
11993
11994 2007-07-01  Bruno Haible  <bruno@clisp.org>
11995
11996         * lib/sprintf.c (sprintf): Limit the available length estimation,
11997         to avoid address wraparound.
11998         * lib/vsprintf.c (vsprintf): Likewise.
11999         * modules/sprintf-posix (Dependencies): Add stdint.
12000         * modules/vsprintf-posix (Dependencies): Likewise.
12001
12002 2007-07-01  Bruno Haible  <bruno@clisp.org>
12003
12004         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
12005         Windows PATH as well. Conservative double-quoting. Comments.
12006
12007 2007-07-01  Bruno Haible  <bruno@clisp.org>
12008             Eric Blake  <ebb9@byu.net>
12009             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12010
12011         * gnulib-tool (self_abspathname): Fix algorithm to cope with
12012         empty components in $PATH, denoting '.'.
12013
12014 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12015
12016         * gnulib-tool: Fix indentation.
12017         (func_create_megatestdir): Likewise.
12018         Report by Bruno Haible.
12019
12020 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12021
12022         Sync from Automake.
12023         * build-aux/gnupload: Fix shell portability issues with for loops.
12024         Report by Karl Berry.
12025
12026 2007-06-29  Simon Josefsson  <simon@josefsson.org>
12027
12028         * build-aux/maint.mk (POURL): Use translationproject.org.
12029
12030 2007-06-27  Simon Josefsson  <simon@josefsson.org>
12031             Bruno Haible  <bruno@clisp.org>
12032
12033         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
12034         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
12035         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
12036         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
12037         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
12038
12039 2007-06-27  Bruno Haible  <bruno@clisp.org>
12040
12041         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
12042         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
12043
12044 2007-06-26  Karl Berry  <karl@gnu.org>
12045
12046         * MODULES.html.sh: remove xreadlink-with-size.
12047
12048 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12049
12050         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
12051         method that I hope also handles the double-include problem noted
12052         by Bruno Haible in
12053         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
12054
12055 2007-06-23  Bruno Haible  <bruno@clisp.org>
12056
12057         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12058         Don't let the 'mostlyclean' target fail if the last subdirectory could
12059         not be removed.
12060         Reported by Karl Berry.
12061
12062 2007-06-23  Bruno Haible  <bruno@clisp.org>
12063
12064         * gnulib-tool (echo): Add a speedier workaround for ksh.
12065         * tests/test-echo.sh: Likewise.
12066
12067 2007-06-23  Bruno Haible  <bruno@clisp.org>
12068
12069         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
12070         * tests/test-echo.sh: Likewise.
12071
12072 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12073
12074         * gnulib-tool (IFS): Initialize early, so we don't set it to
12075         empty later.
12076         (self_abspathname): Rewrite algorithm to set it, reindent.
12077         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
12078         (func_create_megatestdir): Merge some sed scripts.
12079
12080 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12081
12082         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
12083         exposed by Sun Studio 11 cc on Solaris 8.
12084
12085 2007-06-22  Bruno Haible  <bruno@clisp.org>
12086
12087         * gnulib-tool (echo): Ensure the echo primitive does not interpret
12088         backslashes.
12089         * tests/test-echo.sh: New file.
12090
12091 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12092
12093         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
12094         simplify `sed_replace_build_aux' scripts, they are portable but
12095         echoing them with `echo' is not.
12096         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
12097
12098 2007-06-21  Karl Berry  <karl@gnu.org>
12099
12100         * config/srclist.txt: guess we can't handle the licenses via
12101         srclist at the moment.
12102
12103 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12104
12105         * MODULES.html.sh: Add include_next.
12106         * modules/include_next: New file.
12107
12108 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12109
12110         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
12111         INCLUDE_NEXT.
12112         (gl_CHECK_NEXT_HEADERS): New macro.
12113         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
12114         the obsolescent gl_ABSOLUTE_HEADER.
12115         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
12116         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
12117         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
12118         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
12119         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
12120         * m4/math_h.m4 (gl_MATH_H): Likewise.
12121         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
12122         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
12123         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
12124         * m4/stdint.m4 (gl_STDINT_H): Likewise.
12125         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
12126         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
12127         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
12128         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12129         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
12130         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
12131         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
12132         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
12133         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
12134         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
12135         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
12136         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
12137         * m4/inttypes.m4 (gl_INTTYPES_H): Define
12138         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
12139         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
12140         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
12141         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
12142         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
12143         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
12144         * lib/float_.h: Likewise.
12145         * lib/inttypes_.h: Likewise.
12146         * lib/math_.h: Likewise.
12147         * lib/search_.h: Likewise.
12148         * lib/signal_.h: Likewise.
12149         * lib/stdint_.h: Likewise.
12150         * lib/stdio_.h: Likewise.
12151         * lib/stdlib_.h: Likewise.
12152         * lib/string_.h: Likewise.
12153         * lib/sys_stat_.h: Likewise.
12154         * lib/sys_time_.h: Likewise.
12155         * lib/time_.h: Likewise.
12156         * lib/unistd_.h: Likewise.
12157         * lib/wchar_.h: Likewise.
12158         * lib/wctype_.h: Likewise.
12159         * lib/dirent_.h: Likewise.
12160         * lib/iconv_.h: Likewise.
12161         * lib/locale_.h: Likewise.
12162         * lib/netinet_in_.h: Likewise.
12163         * lib/sys_select_.h: Likewise.
12164         * lib/sys_socket_.h: Likewise.
12165         * lib/sysexits_.h: Likewise.
12166         * modules/fcntl (Depends-on): Depend on include_next, not
12167         absolute_header.
12168         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
12169         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
12170         * modules/fchdir: Likewise.
12171         * modules/float: Likewise.
12172         * modules/iconv_open: Likewise.
12173         * modules/inttypes: Likewise.
12174         * modules/locale: Likewise.
12175         * modules/math: Likewise.
12176         * modules/netinet_in: Likewise.
12177         * modules/search: Likewise.
12178         * modules/signal: Likewise.
12179         * modules/stdint: Likewise.
12180         * modules/stdio: Likewise.
12181         * modules/stdlib: Likewise.
12182         * modules/string: Likewise.
12183         * modules/sys_select: Likewise.
12184         * modules/sys_socket: Likewise.
12185         * modules/sys_stat: Likewise.
12186         * modules/sys_time: Likewise.
12187         * modules/sysexits: Likewise.
12188         * modules/time: Likewise.
12189         * modules/unistd: Likewise.
12190         * modules/wchar: Likewise.
12191         * modules/wctype: Likewise.
12192         * modules/sys_stat: Change maintainer to "all".
12193         * modules/unistd: Likewise.
12194
12195 2007-06-20  Karl Berry  <karl@gnu.org>
12196
12197         * config/srclist.txt: track www changes in license files.
12198
12199 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
12200
12201         * build-aux/bootstrap: Remove stray dot.
12202         Make sure build_aux settings are honored when linking
12203         gnulib_extra_files.
12204
12205 2007-06-19  Eric Blake  <ebb9@byu.net>
12206
12207         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
12208         Allow compilation on cygwin.
12209
12210 2007-06-19  Jim Meyering  <jim@meyering.net>
12211
12212         xreadlink-with-size: Remove module.  No longer used.
12213         Ex-callers now use xreadlink or mreadlink-with-size.
12214         * modules/xreadlink-with-size: Remove module.
12215         * lib/xreadlink-with-size.c: Remove file.
12216         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
12217         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
12218         just before the function definition *is* accurate.
12219
12220         Eliminate one way canonicalize_filename_mode could exit.
12221         * lib/canonicalize.c (canonicalize_filename_mode):
12222         Use mreadlink_with_size, not xreadlink_with_size.
12223
12224 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
12225
12226         Detect porting problems to FreeBSD/arm, which has time_t wider than
12227         long int.  Original problem reported for GNU diff by Xin Li in
12228         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
12229         * modules/getdate (Depends-on): Add intprops, verify.
12230         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
12231         is an integer type no wider than long int.
12232
12233 2007-06-18  Jim Meyering  <jim@meyering.net>
12234
12235         New module: mreadlink-with-size.
12236         * MODULES.html.sh: Add mreadlink-with-size.
12237         * modules/mreadlink-with-size: New module
12238         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
12239         not xreadlink-with-size.
12240         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
12241
12242 2007-06-16  Bruno Haible  <bruno@clisp.org>
12243
12244         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
12245         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
12246         Reported by Gary V. Vaughan <gary@gnu.org>.
12247
12248 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
12249
12250         Revamp lchown so that it lives in unistd.h where it belongs.
12251         * lib/lchown.h: Remove.
12252         * lib/dirchownmod.c: Don't include lib/lchown.h.
12253         * lib/fchownat.c: Likewise.
12254         * lib/openat.c: Likewise.
12255         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
12256         does not follow symlinks.
12257         (EOPNOTSUPP): Define if not defined.
12258         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
12259         is defined to 0.
12260         (lchown): New decl.
12261         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
12262         Do not check for lchown decl.
12263         Set REPLACE_LCHOWN.
12264         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
12265         REPLACE_LCHOWN.
12266         * modules/chown: Make it clear it follows symlinks.
12267         * modules/lchown: Make it clear it doesn't follow symlinks.
12268         (Files): Remove lib/lchown.h
12269         (Depends-on): Add unistd.
12270         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
12271         (Include): Include <unistd.h>, not "lchown.h".
12272         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
12273         REPLACE_LCHOWN.
12274
12275 2007-06-15  Jim Meyering  <jim@meyering.net>
12276
12277         Change license (GPL to LGPL) of fsusage and dependents.
12278         * modules/fsusage (License): Change to LGPL.
12279         * modules/full-read (License): Likewise.
12280         * modules/full-write (License): Likewise.
12281         * modules/safe-read (License): Likewise.
12282         * modules/safe-write (License): Likewise.
12283
12284 2007-06-14  Ben Pfaff  <blp@gnu.org>
12285
12286         Missing part of allocsa -> malloca transition.
12287         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
12288         gl_MALLOCA.
12289
12290 2007-06-12  Bruno Haible  <bruno@clisp.org>
12291
12292         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
12293         to ia64, x86_64, i386.
12294         Reported by Eric Blake.
12295
12296 2007-06-12  Bruno Haible  <bruno@clisp.org>
12297
12298         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
12299         cross-compiling to x86_64.
12300
12301 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
12302
12303         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
12304         glitch reported by Ralf Wildenhues in
12305         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
12306
12307         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
12308         Vin Shelton.
12309
12310 2007-06-11  Bruno Haible  <bruno@clisp.org>
12311
12312         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
12313         replacement string.
12314         Reported by Eric Blake.
12315
12316 2007-06-10  Bruno Haible  <bruno@clisp.org>
12317
12318         Prepare vasnprintf code for use with Unicode strings.
12319         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
12320         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
12321         TYPE_U32_STRING.
12322         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
12323         a_u32_string variants.
12324         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12325         * lib/printf-args.c: Don't include config.h and the specification
12326         header if PRINTF_FETCHARGS is already defined.
12327         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12328         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
12329         TYPE_U16_STRING, TYPE_U32_STRING.
12330         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
12331         u16_directive, u16_directives, u32_directive, u32_directives): New
12332         types.
12333         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
12334         New declarations.
12335         * lib/printf-parse.c: Don't include config.h and the specification
12336         header if PRINTF_PARSE is already defined. Eliminate the set of
12337         parameters for WIDE_CHAR_VERSION; the user of this file must provide
12338         them now. Include c-ctype.h.
12339         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
12340         directive and CHAR_T_ONLY_ASCII.
12341         * lib/vasnprintf.c: Don't include config.h and the specification header
12342         if VASNPRINTF is already defined.
12343         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
12344         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
12345         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
12346         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
12347         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
12348         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
12349         code accordingly.
12350         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
12351         pad_ourselves also in this case, with the 'c' and 's' directives, and
12352         with a different notion of "width".
12353         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
12354
12355 2007-06-10  Bruno Haible  <bruno@clisp.org>
12356
12357         * modules/unistr/u32-mbsnlen: New file.
12358         * lib/unistr/u32-mbsnlen.c: New file.
12359
12360         * modules/unistr/u16-mbsnlen: New file.
12361         * lib/unistr/u16-mbsnlen.c: New file.
12362
12363         * modules/unistr/u8-mbsnlen: New file.
12364         * lib/unistr/u8-mbsnlen.c: New file.
12365
12366         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
12367         declarations.
12368
12369 2007-06-10  Bruno Haible  <bruno@clisp.org>
12370
12371         * lib/string_.h (mbsnlen): New declaration.
12372         * lib/mbsnlen.c: New file.
12373         * m4/mbsnlen.m4: New file.
12374         * modules/mbsnlen: New file.
12375         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
12376         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
12377         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
12378
12379 2007-06-10  Bruno Haible  <bruno@clisp.org>
12380
12381         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
12382
12383 2007-06-10  Bruno Haible  <bruno@clisp.org>
12384
12385         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
12386         * lib/mbuiter.h: Likewise.
12387
12388 2007-06-10  Bruno Haible  <bruno@clisp.org>
12389
12390         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
12391         declaration.
12392
12393 2007-06-10  Karl Berry  <karl@gnu.org>
12394
12395         * config/srclist.txt: remove gettext entries, Bruno prefers
12396         to update individually.
12397
12398 2007-06-10  Bruno Haible  <bruno@clisp.org>
12399
12400         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
12401         'maxlen'. Ensure only length + width bytes are allocated, not
12402         length + 1 + width.
12403
12404 2007-06-09  Bruno Haible  <bruno@clisp.org>
12405
12406         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
12407         (CHAR_T): Remove macro.
12408         (VASNPRINTF): Update.
12409
12410 2007-06-09  Bruno Haible  <bruno@clisp.org>
12411
12412         * MODULES.html.sh (Unicode string functions): Add the new modules.
12413
12414         * modules/uniconv/u32-conv-to-enc: New file.
12415         * lib/uniconv/u32-conv-to-enc.c: New file.
12416         * modules/uniconv/u32-conv-to-enc-tests: New file.
12417         * tests/uniconv/test-u32-conv-to-enc.c: New file.
12418
12419         * modules/uniconv/u16-conv-to-enc: New file.
12420         * lib/uniconv/u16-conv-to-enc.c: New file.
12421         * lib/uniconv/u-conv-to-enc.h: New file.
12422         * modules/uniconv/u16-conv-to-enc-tests: New file.
12423         * tests/uniconv/test-u16-conv-to-enc.c: New file.
12424
12425         * modules/uniconv/u8-conv-to-enc: New file.
12426         * lib/uniconv/u8-conv-to-enc.c: New file.
12427         * modules/uniconv/u8-conv-to-enc-tests: New file.
12428         * tests/uniconv/test-u8-conv-to-enc.c: New file.
12429
12430         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
12431         u32_conv_to_encoding): New declarations.
12432
12433 2007-06-09  Bruno Haible  <bruno@clisp.org>
12434
12435         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
12436
12437 2007-06-09  Bruno Haible  <bruno@clisp.org>
12438
12439         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
12440         * modules/malloca: Renamed from modules/allocsa, updated.
12441         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
12442         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
12443         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
12444         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
12445         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
12446         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
12447         * modules/xmalloca: Renamed from modules/xallocsa, updated.
12448         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
12449         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
12450         * modules/c-strcasestr (Depends-on): Update.
12451         * lib/c-strcasestr.c: Update.
12452         * modules/c-strstr (Depends-on): Update.
12453         * lib/c-strstr.c: Update.
12454         * modules/canonicalize-lgpl (Depends-on): Update.
12455         * lib/canonicalize-lgpl.c: Update.
12456         * modules/clean-temp (Depends-on): Update.
12457         * lib/clean-temp.c: Update.
12458         * modules/csharpcomp (Depends-on): Update.
12459         * lib/csharpcomp.c: Update.
12460         * modules/csharpexec (Depends-on): Update.
12461         * lib/csharpexec.c: Update.
12462         * modules/javacomp (Depends-on): Update.
12463         * lib/javacomp.c: Update.
12464         * modules/javaexec (Depends-on): Update.
12465         * lib/javaexec.c: Update.
12466         * modules/mbscasestr (Depends-on): Update.
12467         * lib/mbscasestr.c: Update.
12468         * modules/mbsstr (Depends-on): Update.
12469         * lib/mbsstr.c: Update.
12470         * modules/setenv (Depends-on): Update.
12471         * lib/setenv.c: Update.
12472         * modules/strcasestr (Depends-on): Update.
12473         * lib/strcasestr.c: Update.
12474         * modules/striconveha (Depends-on): Update.
12475         * lib/striconveha.c: Update.
12476         * modules/relocatable-prog-wrapper (Files): Update.
12477         * lib/relocwrapper.c: Update.
12478         * build-aux/install-reloc: Update.
12479         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
12480
12481 2007-06-08  Bruno Haible  <bruno@clisp.org>
12482
12483         Port to uClibc.
12484         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
12485         * lib/fpurge.c (fpurge): Likewise.
12486         * lib/freading.c (freading): Likewise.
12487         * lib/fseeko.c (rpl_fseeko): Likewise.
12488         * lib/fseterr.c (fseterr): Likewise.
12489         * lib/fwriting.c (fwriting): Likewise.
12490         * tests/test-fflush.c (main): Avoid a failure on uClibc.
12491
12492 2007-06-08  Bruno Haible  <bruno@clisp.org>
12493
12494         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
12495         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
12496         * modules/gettext (Files): Add m4/intlmacosx.m4.
12497
12498 2007-06-07  Bruno Haible  <bruno@clisp.org>
12499
12500         * modules/localename-tests: New file.
12501         * tests/test-localename.c: New file.
12502
12503         New module 'localename'.
12504         * lib/localename.h: New file.
12505         * lib/localename.c: New file, from GNU gettext.
12506         * m4/localename.m4: New file.
12507         * modules/localename: New file.
12508
12509 2007-06-07  Bruno Haible  <bruno@clisp.org>
12510
12511         Work around the lack of <wchar.h> on some builds of uClibc.
12512         * doc/headers/wchar.texi: Update.
12513         * lib/wchar_.h: Include <wchar.h> only if it exists.
12514         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
12515         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
12516         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
12517         doesn't exist.
12518         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
12519         * modules/mbfile (Depends-on): Add wchar.
12520         * modules/mbiter (Depends-on): Likewise.
12521         * modules/mbuiter (Depends-on): Likewise.
12522         Reported by Simon Josefsson.
12523
12524 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
12525
12526         Work around problem reported by Steven M. Schweda in
12527         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
12528         Tru64 5.1B with the Compaq compiler environment installed declares
12529         an 'isblank' function but does not define it in the C library.
12530         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
12531         * lib/regex_internal.h (isblank): Likewise.
12532         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
12533         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
12534
12535 2007-06-05  Bruno Haible  <bruno@clisp.org>
12536
12537         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
12538         ia64.
12539         * modules/printf-safe: New file.
12540         * modules/fprintf-posix (Depends-on): Add printf-safe.
12541         * modules/printf-posix (Depends-on): Likewise.
12542         * modules/snprintf-posix (Depends-on): Likewise.
12543         * modules/sprintf-posix (Depends-on): Likewise.
12544         * modules/vasnprintf-posix (Depends-on): Likewise.
12545         * modules/vasprintf-posix (Depends-on): Likewise.
12546         * modules/vfprintf-posix (Depends-on): Likewise.
12547         * modules/vprintf-posix (Depends-on): Likewise.
12548         * modules/vsnprintf-posix (Depends-on): Likewise.
12549         * modules/vsprintf-posix (Depends-on): Likewise.
12550         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
12551         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
12552         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
12553         "no" on i386, x86_64, ia64.
12554         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
12555         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12556         on i386, x86_64, ia64.
12557         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
12558         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12559         on i386, x86_64, ia64.
12560         * tests/test-vasnprintf-posix.c: Include float.h.
12561         (LDBL80_WORDS): New macro.
12562         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12563         on i386, x86_64, ia64.
12564         * tests/test-vasprintf-posix.c: Include float.h.
12565         (LDBL80_WORDS): New macro.
12566         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12567         on i386, x86_64, ia64.
12568         * tests/test-snprintf-posix.c: Include float.h.
12569         * tests/test-sprintf-posix.c: Likewise.
12570         * tests/test-vsnprintf-posix.c: Likewise.
12571         * tests/test-vsprintf-posix.c: Likewise.
12572
12573 2007-06-05  Bruno Haible  <bruno@clisp.org>
12574
12575         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
12576         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
12577         non-IEEE numbers on i386, x86_64, ia64.
12578         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
12579         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
12580         * tests/test-isnanl.h: Include float.h.
12581         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
12582
12583 2007-06-05  Bruno Haible  <bruno@clisp.org>
12584
12585         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
12586         also the %a / %A. Handle the %a / %A code before this extra handling.
12587
12588 2007-06-05  Bruno Haible  <bruno@clisp.org>
12589
12590         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
12591         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
12592
12593 2007-06-05  Bruno Haible  <bruno@clisp.org>
12594
12595         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
12596         typo in variable name.
12597
12598 2007-06-05  Eric Blake  <ebb9@byu.net>
12599
12600         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
12601         Reported by Simon Josefsson.
12602
12603 2007-06-04  Bruno Haible  <bruno@clisp.org>
12604
12605         Avoid test failures on some PowerPC platforms.
12606         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
12607         Define differently for PowerPC.
12608         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
12609         Reported by Gary V. Vaughan <gary@gnu.org>.
12610
12611 2007-06-02  Bruno Haible  <bruno@clisp.org>
12612
12613         Fix test-stdint failure on FreeBSD/ia64.
12614         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
12615         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
12616         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
12617         * doc/headers/stdint.texi: Update.
12618
12619 2007-06-01  Bruno Haible  <bruno@clisp.org>
12620
12621         * tests/test-binary-io.c (main): Pass a third argument to open().
12622         Reported by Gary V. Vaughan <gary@gnu.org>.
12623
12624 2007-06-01  Bruno Haible  <bruno@clisp.org>
12625
12626         * doc/functions/frexpl.texi: Update for mingw.
12627
12628 2007-06-01  Bruno Haible  <bruno@clisp.org>
12629
12630         * tests/test-lseek.c (main): Disable test of errno for invalid third
12631         argument.
12632         * doc/functions/lseek.texi: Update.
12633         Reported by Gary V. Vaughan <gary@gnu.org>.
12634
12635 2007-05-28  Bruno Haible  <bruno@clisp.org>
12636
12637         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
12638
12639 2007-05-31  Eric Blake  <ebb9@byu.net>
12640
12641         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
12642         cross compiling.
12643
12644 2007-05-30  Eric Blake  <ebb9@byu.net>
12645         and Bruno Haible  <bruno@clisp.org>
12646
12647         Work around mingw test failures exposed by m4-1.4.9b.
12648         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
12649         * tests/test-unistd.c: Disable uid_t and git_t tests for the
12650         moment.
12651
12652 2007-05-30  Bruno Haible  <bruno@clisp.org>
12653
12654         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
12655         assuming that they are closed. Needed on HP-UX 11.
12656
12657 2007-05-29  Bruno Haible  <bruno@clisp.org>
12658
12659         Fix a problem with #include_next.
12660         * lib/dirent_.h: Split the double-inclusion guard.
12661         * lib/fcntl_.h: Likewise.
12662         * lib/float_.h: Likewise.
12663         * lib/iconv_.h: Likewise.
12664         * lib/inttypes_.h: Likewise.
12665         * lib/locale_.h: Likewise.
12666         * lib/math_.h: Likewise.
12667         * lib/netinet_in_.h: Likewise.
12668         * lib/search_.h: Likewise.
12669         * lib/signal_.h: Likewise.
12670         * lib/stdint_.h: Likewise.
12671         * lib/stdio_.h: Likewise.
12672         * lib/stdlib_.h: Likewise.
12673         * lib/string_.h: Likewise.
12674         * lib/sys_select_.h: Likewise.
12675         * lib/sys_socket_.h: Likewise.
12676         * lib/sys_stat_.h: Likewise.
12677         * lib/sys_time_.h: Likewise.
12678         * lib/sysexits_.h: Likewise.
12679         * lib/time_.h: Likewise.
12680         * lib/unistd_.h: Likewise.
12681         * lib/wchar_.h: Likewise.
12682         * lib/wctype_.h: Likewise.
12683
12684 2007-05-29  Bruno Haible  <bruno@clisp.org>
12685
12686         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
12687         for the moment.
12688
12689 2007-05-29  Bruno Haible  <bruno@clisp.org>
12690
12691         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
12692         invocation.
12693         Reported by Eric Blake.
12694
12695 2007-05-29  Bruno Haible  <bruno@clisp.org>
12696
12697         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
12698         compiling case.
12699
12700 2007-05-29  Eric Blake  <ebb9@byu.net>
12701             Bruno Haible  <bruno@clisp.org>
12702
12703         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
12704         cross compiles.
12705
12706 2007-05-28  Eric Blake  <ebb9@byu.net>
12707
12708         * modules/closein-tests (test_closein_LDADD): Support test on
12709         cygwin with libtool.
12710
12711 2007-05-28  Bruno Haible  <bruno@clisp.org>
12712
12713         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
12714         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
12715         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
12716         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
12717         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
12718         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
12719         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
12720         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
12721         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
12722
12723 2007-05-28  Eric Blake  <ebb9@byu.net>
12724
12725         Unconditionally include <config.h> in unit tests.
12726         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
12727         * tests/test-allocsa.c, tests/test-arcfour.c,
12728         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
12729         tests/test-array_list.c, tests/test-array_oset.c,
12730         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
12731         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
12732         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
12733         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
12734         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
12735         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
12736         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
12737         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
12738         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
12739         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
12740         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
12741         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
12742         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
12743         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
12744         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
12745         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
12746         test-md5.c, test-memmem.c, test-printf-posix.c,
12747         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
12748         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
12749         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
12750         test-strcasestr.c, test-striconv.c, test-striconveh.c,
12751         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
12752         test-vasnprintf-posix2.c, test-vasnprintf.c,
12753         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
12754         test-vfprintf-posix.c, test-vprintf-posix.c,
12755         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
12756         test-xvasprintf.c: Likewise.
12757
12758 2007-05-28  Bruno Haible  <bruno@clisp.org>
12759
12760         * gnulib-tool (func_import): Remember the --with-tests command-line
12761         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
12762         Reported by Eric Blake.
12763
12764 2007-05-28  Bruno Haible  <bruno@clisp.org>
12765
12766         * modules/ftell-tests: New file.
12767         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
12768         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
12769
12770         * lib/ftell.c: New file.
12771         * modules/ftell: New file.
12772         * m4/ftell.m4: New file.
12773         * doc/functions/ftell.texi: Update.
12774         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
12775         REPLACE_FTELL.
12776         * lib/stdio_.h (rpl_ftell): New declaration.
12777         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
12778         REPLACE_FTELL.
12779
12780 2007-05-28  Eric Blake  <ebb9@byu.net>
12781
12782         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
12783
12784 2007-05-28  Bruno Haible  <bruno@clisp.org>
12785
12786         * modules/fseek-tests: New file.
12787         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
12788         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
12789
12790         * lib/fseek.c: New file.
12791         * modules/fseek: New file.
12792         * m4/fseek.m4: New file.
12793         * doc/functions/fseek.texi: Update.
12794         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
12795         REPLACE_FSEEK.
12796         * lib/stdio_.h (rpl_fseek): New declaration.
12797         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
12798         REPLACE_FSEEK.
12799
12800 2007-05-28  Bruno Haible  <bruno@clisp.org>
12801
12802         * lib/stdio_.h (fflush): More comments.
12803
12804 2007-05-28  Bruno Haible  <bruno@clisp.org>
12805
12806         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
12807         runtime test.
12808
12809 2007-05-28  Eric Blake  <ebb9@byu.net>
12810
12811         Improve lseek module.
12812         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
12813         * lib/unistd_.h (lseek): Scale back link warning message.
12814         * tests/test-lseek.c: Beef up test.
12815         * tests/test-lseek.sh: Exercise more facets of lseek.
12816         Reported by Bruno Haible.
12817
12818 2007-05-28  Bruno Haible  <bruno@clisp.org>
12819
12820         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
12821         to define.
12822
12823 2007-05-27  Bruno Haible  <bruno@clisp.org>
12824
12825         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
12826
12827 2007-05-27  Bruno Haible  <bruno@clisp.org>
12828
12829         * modules/openmp: New file.
12830         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
12831         Noah Misch.
12832
12833 2007-05-26  Bruno Haible  <bruno@clisp.org>
12834
12835         * modules/chdir-long (Depends-on): Add fchdir.
12836         * modules/chdir-safer (Depends-on): Likewise.
12837         * modules/fts (Depends-on): Likewise.
12838         * modules/fts-lgpl (Depends-on): Likewise.
12839         * modules/openat (Depends-on): Likewise.
12840         * modules/savewd (Depends-on): Likewise.
12841
12842 2007-05-24  Eric Blake  <ebb9@byu.net>
12843
12844         Fix lseek on mingw.
12845         * modules/lseek: New module.
12846         * m4/lseek.m4: New file.
12847         * lib/lseek.c: New file.
12848         * modules/lseek-tests: New file.
12849         * tests/test-lseek.c: New file.
12850         * tests/test-lseek.sh: New file.
12851         * MODULES.html.sh: Document lseek module.
12852         * modules/fflush (Depends-on): Add lseek, fseeko.
12853         * modules/fseeko (Depends-on): Likewise.
12854         * modules/ftello (Depends-on): Likewise.
12855         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
12856         broken.
12857         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
12858         broken.
12859         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
12860         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
12861         * lib/ftello.c (rpl_ftello): Likewise.
12862         * tests/test-fseeko.c (main): Test this.
12863         * tests/test-fseeko.sh: Likewise.
12864         * tests/test-ftello.c (main): Likewise.
12865         * tests/test-ftello.sh: Likewise.
12866         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
12867         implies replacing fseek.
12868         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
12869         HAVE_FTELLO.
12870         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
12871         * modules/unistd (Makefile.am): Likewise.
12872         * lib/unistd_.h (lseek): Declare a replacement.
12873         * doc/functions/lseek.texi (lseek): Document this fix.
12874         * doc/functions/fseek.texi (fseek): Likewise.
12875         * doc/functions/ftell.texi (ftell): Likewise.
12876
12877 2007-05-24  Bruno Haible  <bruno@clisp.org>
12878
12879         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
12880         in the printed representation of a NaN.
12881         * tests/test-vasprintf-posix.c (test_function): Likewise.
12882         * tests/test-snprintf-posix.h (test_function): Likewise.
12883         * tests/test-sprintf-posix.h (test_function): Likewise.
12884         Reported by Eric Blake.
12885
12886 2007-05-23  Eric Blake  <ebb9@byu.net>
12887
12888         Fix fseeko/ftello on cygwin 1.5.24.
12889         * doc/functions/fseeko.texi (fseeko): Document the fix.
12890         * doc/functions/ftello.texi (ftello): Document the fix.
12891         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
12892         * doc/functions/stdout.text (stdout): New file.
12893         * doc/functions/stderr.text (stderr): New file.
12894         * doc/gnulib.texi (Function Substitutes): Use new files.
12895         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
12896         prior to 1.7.0.
12897         * tests/test-ftello.c (main): Likewise for ftello.
12898         * tests/test-fseeko.sh: New file.
12899         * tests/test-ftello.sh: New file.
12900         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
12901         with seekable stdin.
12902         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
12903         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
12904         (gl_REPLACE_FSEEKO): New macro.
12905         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
12906         * modules/fseeko (Files): Distribute fseeko.c.
12907         * modules/ftello (Files): Distribute ftello.c.
12908         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
12909         mode.
12910         * lib/ftello.c (rpl_ftello): New file.
12911         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
12912         fseeko, ftello.
12913         (gl_STDIN_LARGE_OFFSET): New macro.
12914         * modules/stdio (Makefile.am): Perform the replacement.
12915         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
12916
12917 2007-05-23  Bruno Haible  <bruno@clisp.org>
12918
12919         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
12920         GNULIB_POSIXCHECK is defined.
12921
12922 2007-05-21  Bruno Haible  <bruno@clisp.org>
12923
12924         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
12925         Check also the output for NaN arguments. When cross-compiling, guess
12926         no on IRIX.
12927         * lib/vasnprintf.c: Update comments.
12928         * tests/test-vasnprintf-posix.c (strisnan): New function.
12929         (test_function): Use it.
12930         * tests/test-vasprintf-posix.c (strisnan): New function.
12931         (test_function): Use it.
12932         * tests/test-snprintf-posix.h (strisnan): New function.
12933         (test_function): Use it.
12934         * tests/test-sprintf-posix.h (strisnan): New function.
12935         (test_function): Use it.
12936         Reported by Eric Blake.
12937
12938 2007-05-20  Bruno Haible  <bruno@clisp.org>
12939
12940         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
12941         numbers that fails on BeOS.
12942         * doc/functions/frexpl.texi: Update.
12943
12944 2007-05-20  Jim Meyering  <jim@meyering.net>
12945
12946         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
12947         forced upon us by glibc-2.6.
12948
12949 2007-05-20  Bruno Haible  <bruno@clisp.org>
12950
12951         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
12952         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
12953         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
12954         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
12955         NEED_PRINTF_INFINITE.
12956         (is_infinitel): New function.
12957         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
12958         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
12959         gl_PREREQ_VASNPRINTF_INFINITE.
12960         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
12961         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
12962         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
12963         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
12964         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
12965         gl_PREREQ_VASNPRINTF_INFINITE.
12966         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
12967         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
12968         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
12969         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
12970         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
12971         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12972         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12973         * doc/functions/fprintf.texi: Update.
12974         * doc/functions/printf.texi: Update.
12975         * doc/functions/snprintf.texi: Update.
12976         * doc/functions/sprintf.texi: Update.
12977         * doc/functions/vfprintf.texi: Update.
12978         * doc/functions/vprintf.texi: Update.
12979         * doc/functions/vsnprintf.texi: Update.
12980         * doc/functions/vsprintf.texi: Update.
12981
12982 2007-05-20  Bruno Haible  <bruno@clisp.org>
12983
12984         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
12985         was not found in libc.
12986         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
12987
12988 2007-05-20  Bruno Haible  <bruno@clisp.org>
12989
12990         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
12991         printed as "-nan" instead of "nan".
12992         * tests/test-vasprintf-posix.c (test_function): Likewise.
12993         * tests/test-snprintf-posix.h (test_function): Likewise.
12994         * tests/test-sprintf-posix.h (test_function): Likewise.
12995         Needed for HP-UX 11.
12996
12997 2007-05-20  Jim Meyering  <jim@meyering.net>
12998
12999         Fix buggy test for the fchownat-deref bug.
13000         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
13001         symlink required for the run-test.  Without it, this test would
13002         always declare that fchownat doesn't work, and client code would
13003         unnecessarily use the replacement function with fixed libc.
13004         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
13005         Reported by Greg Schafer.
13006
13007 2007-05-19  Bruno Haible  <bruno@clisp.org>
13008
13009         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
13010         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
13011         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
13012         Needed for IRIX 6.5 and Solaris 2.5.1.
13013
13014 2007-05-19  Bruno Haible  <bruno@clisp.org>
13015
13016         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
13017         (test_function): Skip tests involving -0.0 on platforms where
13018         -0.0 = 0.0.
13019         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
13020         (test_function): Skip tests involving -0.0 on platforms where
13021         -0.0 = 0.0.
13022         * tests/test-snprintf-posix.h (have_minus_zero): New function.
13023         (test_function): Skip tests involving -0.0 on platforms where
13024         -0.0 = 0.0.
13025         * tests/test-sprintf-posix.h (have_minus_zero): New function.
13026         (test_function): Skip tests involving -0.0 on platforms where
13027         -0.0 = 0.0.
13028         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
13029         tests.
13030         * tests/test-printf-posix.h (test_function): Likewise.
13031         * tests/test-printf-posix.output: Remove all -0.0 related results.
13032         Needed for IRIX 6.5.
13033
13034 2007-05-19  Bruno Haible  <bruno@clisp.org>
13035
13036         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
13037         printed as "nan0x7fffffff" instead of "nan".
13038         * tests/test-vasprintf-posix.c (test_function): Likewise.
13039         * tests/test-snprintf-posix.h (test_function): Likewise.
13040         * tests/test-sprintf-posix.h (test_function): Likewise.
13041         * tests/test-fprintf-posix.h (NaN): Remove macro.
13042         (test_function): Remove all NaN related tests.
13043         * tests/test-printf-posix.h (NaN): Remove macro.
13044         (test_function): Remove all NaN related tests.
13045         * tests/test-printf-posix.output: Remove all NaN related results.
13046         Needed for IRIX 6.5.
13047
13048 2007-05-19  Bruno Haible  <bruno@clisp.org>
13049
13050         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
13051         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
13052
13053 2007-05-19  Bruno Haible  <bruno@clisp.org>
13054
13055         * lib/float_.h: New file.
13056         * m4/float_h.m4: New file.
13057         * modules/float: New file.
13058         * modules/isnanl (Dependencies): Add float.
13059         * modules/isnanl-nolibm (Dependencies): Likewise.
13060         * modules/mathl (Dependencies): Likewise.
13061         * modules/printf-frexpl (Dependencies): Likewise.
13062         * modules/signbit (Dependencies): Likewise.
13063         * modules/vasnprintf (Dependencies): Likewise.
13064         * doc/headers/float.texi: Update.
13065
13066 2007-05-19  Jim Meyering  <jim@meyering.net>
13067
13068         * lib/utimens.c (gl_futimens): Rename from futimens,
13069         now that glibc-2.6 declares futimens.
13070         * lib/utimens.h: Likewise.
13071
13072 2007-05-19  Bruno Haible  <bruno@clisp.org>
13073
13074         Avoid test failures on mingw.
13075         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
13076         * tests/test-printf-posix.sh: Likewise.
13077         * tests/test-vfprintf-posix.sh: Likewise.
13078         * tests/test-vprintf-posix.sh: Likewise.
13079
13080 2007-05-19  Bruno Haible  <bruno@clisp.org>
13081
13082         Fix *printf result for NaN, Inf, -0.0 on mingw.
13083         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
13084         * lib/vasnprintf.c: Include math.h and isnan.h.
13085         (is_infinite_or_zero): New function.
13086         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
13087         values in the %f, %F, %e, %E, %g, %G directives.
13088         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
13089         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13090         gl_PRINTF_INFINITE and test its result. Invoke
13091         gl_PREREQ_VASNPRINTF_INFINITE.
13092         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13093         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13094         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13095         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13096         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13097         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13098         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13099         * doc/functions/fprintf.texi: Update.
13100         * doc/functions/printf.texi: Update.
13101         * doc/functions/snprintf.texi: Update.
13102         * doc/functions/sprintf.texi: Update.
13103         * doc/functions/vfprintf.texi: Update.
13104         * doc/functions/vprintf.texi: Update.
13105         * doc/functions/vsnprintf.texi: Update.
13106         * doc/functions/vsprintf.texi: Update.
13107
13108 2007-05-19  Bruno Haible  <bruno@clisp.org>
13109
13110         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
13111         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
13112         Instead of multiplying with 10^k, set extra_zeroes to k.
13113         (scale10_round_long_double): Remove function.
13114
13115 2007-05-18  Bruno Haible  <bruno@clisp.org>
13116
13117         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
13118         introduced on 2007-05-06.
13119
13120 2007-05-18  Bruno Haible  <bruno@clisp.org>
13121
13122         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
13123         %g directives.
13124         * tests/test-vasprintf-posix.c (test_function): Likewise.
13125         * tests/test-snprintf-posix.h (test_function): Likewise.
13126         * tests/test-sprintf-posix.h (test_function): Likewise.
13127
13128 2007-05-18  Bruno Haible  <bruno@clisp.org>
13129
13130         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
13131         (strmatch): New function.
13132         (test_function): Test the %f directive on numbers of various exponents.
13133         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
13134         (strmatch): New function.
13135         (test_function): Test the %f directive on numbers of various exponents.
13136         * tests/test-snprintf-posix.h (strmatch): New function.
13137         (test_function): Test the %f directive on numbers of various exponents.
13138         * tests/test-sprintf-posix.h (strmatch): New function.
13139         (test_function): Test the %f directive on numbers of various exponents.
13140         * tests/test-snprintf-posix.c (SIZEOF): New macro.
13141         * tests/test-sprintf-posix.c (SIZEOF): New macro.
13142         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
13143         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
13144
13145 2007-05-18  Bruno Haible  <bruno@clisp.org>
13146
13147         Add support for 'long double' number output.
13148         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
13149         * lib/vasnprintf.c: Include math.h and float+.h.
13150         (mp_limb_t): New type.
13151         (GMP_LIMB_BITS): New macro.
13152         (mp_twolimb_t): New type.
13153         (GMP_TWOLIMB_BITS): New macro.
13154         (mpn_t): New type.
13155         (multiply, divide, convert_to_decimal, decode_long_double,
13156         scale10_round_long_double, scale10_round_decimal_long_double,
13157         floorlog10l): New functions.
13158         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
13159         for the %f, %F, %e, %E, %g, %G directives.
13160         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
13161         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13162         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
13163         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
13164         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13165         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13166         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13167         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13168         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13169         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13170         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13171         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
13172         * modules/snprintf-posix (Depends-on): Likewise.
13173         * modules/sprintf-posix (Depends-on): Likewise.
13174         * modules/vasnprintf-posix (Depends-on): Likewise.
13175         * modules/vasprintf-posix (Depends-on): Likewise.
13176         * modules/vfprintf-posix (Depends-on): Likewise.
13177         * modules/vsnprintf-posix (Depends-on): Likewise.
13178         * modules/vsprintf-posix (Depends-on): Likewise.
13179         * modules/vasnprintf (Files): Add lib/float+.h.
13180         * doc/functions/fprintf.texi: Update.
13181         * doc/functions/printf.texi: Update.
13182         * doc/functions/snprintf.texi: Update.
13183         * doc/functions/sprintf.texi: Update.
13184         * doc/functions/vfprintf.texi: Update.
13185         * doc/functions/vprintf.texi: Update.
13186         * doc/functions/vsnprintf.texi: Update.
13187         * doc/functions/vsprintf.texi: Update.
13188
13189 2007-05-18  Bruno Haible  <bruno@clisp.org>
13190
13191         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
13192
13193 2007-05-18  Bruno Haible  <bruno@clisp.org>
13194
13195         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
13196         for printing 64-bit integers. Needed for mingw.
13197
13198 2007-05-18  Bruno Haible  <bruno@clisp.org>
13199
13200         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
13201         gl_FUNC_FREXPL_WORKS.
13202         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
13203
13204 2007-05-18  Bruno Haible  <bruno@clisp.org>
13205
13206         * modules/frexpl-nolibm-tests: New file.
13207
13208         * modules/frexpl-nolibm: New file.
13209         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
13210
13211 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
13212
13213         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
13214         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13215         GCC 4.2, which otherwise issues a lot of warnings.
13216         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
13217         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
13218         Likewise.
13219         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
13220         * modules/iconv_open (iconv.h): Likewise.
13221         * modules/locale (locale.h): Likewise.
13222         * modules/netinet_in (netinet/in.h): Likewise.
13223         * modules/sys_select (sys_select.h): Likewise.
13224         * modules/sys_socket (sys/socket.h): Likewise.
13225         * modules/sys_stat (sys/stat.h): Likewise.
13226         * modules/sysexits (sysexits.h): Likewise.
13227         * modules/unistd (unistd.h): Likewise.
13228
13229 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13230
13231         * modules/closein-tests (Makefile.am): Distribute
13232         `test-closein.sh'.
13233
13234 2007-05-17  Bruno Haible  <bruno@clisp.org>
13235
13236         * tests/test-printf-posix.output: Renamed from
13237         tests/test-fprintf-posix.out.
13238         * modules/fprintf-posix-tests: Update.
13239         * modules/printf-posix-tests: Update.
13240         * modules/vfprintf-posix-tests: Update.
13241         * modules/vprintf-posix-tests: Update.
13242         * tests/test-fprintf-posix.sh: Update.
13243         * tests/test-printf-posix.sh: Update.
13244         * tests/test-vfprintf-posix.sh: Update.
13245         * tests/test-vprintf-posix.sh: Update.
13246         Reported by Ralf Wildenhues.
13247
13248 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
13249
13250         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
13251         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13252         GCC 4.2, which otherwise issues a lot of warnings.
13253         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
13254         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
13255         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
13256         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
13257         it should no longer be needed.
13258         * lib/string_.h: Likewise.
13259         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
13260         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
13261         * modules/inttypes (inttypes.h): Likewise.
13262         * modules/math (math.h): Likewise.
13263         * modules/search (search.h): Likewise.
13264         * modules/signal (signal.h): Likewise.
13265         * modules/stdint (stdint.h): Likewise.
13266         * modules/stdio (stdio.h): Likewise.
13267         * modules/stdlib (stdlib.h): Likewise.
13268         * modules/string (string.h): Likewise.
13269         * modules/sys_time (sys/time.h): Likewise.
13270         * modules/time (time.h): Likewise.
13271         * modules/wchar (wchar.h): Likewise.
13272         * modules/wctype (wtype.h): Likewise.
13273
13274 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
13275
13276         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
13277
13278 2007-05-13  Bruno Haible  <bruno@clisp.org>
13279
13280         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
13281         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
13282         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
13283         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
13284         (gl_PREREQ_STRTOK_R): Don't require it here.
13285
13286 2007-05-13  Bruno Haible  <bruno@clisp.org>
13287
13288         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
13289         when used in C++ mode.
13290
13291 2007-05-12  Bruno Haible  <bruno@clisp.org>
13292
13293         * lib/linebuffer.h: Tweak doc.
13294         * lib/linebuffer.c: Likewise.
13295
13296 2007-05-12  James Youngman  <jay@gnu.org>
13297
13298         * lib/linebuffer.c (readlinebuffer_delim): New function,
13299         like readlinebuffer, but use a caller-specified delimiter.
13300         (readlinebuffer): Just call readlinebuffer_delim with '\n'
13301         as the delimiter.
13302         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
13303
13304 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13305
13306         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
13307         * modules/openat (Files): Remove openat-die.c.
13308         (Depends-on): Add openat-die.
13309         * modules/openat-die: New module.
13310
13311 2007-05-06  Bruno Haible  <bruno@clisp.org>
13312
13313         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
13314         Update with info about Cygwin.
13315         * doc/functions/fprintf.texi: Update.
13316         * doc/functions/printf.texi: Update.
13317         * doc/functions/snprintf.texi: Update.
13318         * doc/functions/sprintf.texi: Update.
13319         * doc/functions/vfprintf.texi: Update.
13320         * doc/functions/vprintf.texi: Update.
13321         * doc/functions/vsnprintf.texi: Update.
13322         * doc/functions/vsprintf.texi: Update.
13323         Reported by Eric Blake.
13324
13325 2007-05-06  Bruno Haible  <bruno@clisp.org>
13326
13327         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
13328         padding ourselves for the floating-point directives.
13329         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
13330         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
13331         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13332         gl_PRINTF_FLAG_ZERO and test its result. Invoke
13333         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
13334         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13335         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13336         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13337         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13338         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13339         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13340         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13341         * tests/test-snprintf-posix.h (test_function): Also check the width
13342         and some flags in the %f directive.
13343         * tests/test-sprintf-posix.h (test_function): Likewise.
13344         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13345         * tests/test-vasprintf-posix.c (test_function): Likewise.
13346         * doc/functions/fprintf.texi: Update.
13347         * doc/functions/printf.texi: Update.
13348         * doc/functions/snprintf.texi: Update.
13349         * doc/functions/sprintf.texi: Update.
13350         * doc/functions/vfprintf.texi: Update.
13351         * doc/functions/vprintf.texi: Update.
13352         * doc/functions/vsnprintf.texi: Update.
13353         * doc/functions/vsprintf.texi: Update.
13354
13355 2007-05-06  Bruno Haible  <bruno@clisp.org>
13356
13357         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
13358         pass the ' flag character to sprintf or snprintf.
13359         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
13360         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
13361         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13362         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
13363         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
13364         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13365         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13366         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13367         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13368         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13369         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13370         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13371         * tests/test-snprintf-posix.h (test_function): Also check the grouping
13372         flag.
13373         * tests/test-sprintf-posix.h (test_function): Likewise.
13374         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13375         * tests/test-vasprintf-posix.c (test_function): Likewise.
13376         * doc/functions/fprintf.texi: Update.
13377         * doc/functions/printf.texi: Update.
13378         * doc/functions/snprintf.texi: Update.
13379         * doc/functions/sprintf.texi: Update.
13380         * doc/functions/vfprintf.texi: Update.
13381         * doc/functions/vprintf.texi: Update.
13382         * doc/functions/vsnprintf.texi: Update.
13383         * doc/functions/vsprintf.texi: Update.
13384
13385 2007-05-01  Bruno Haible  <bruno@clisp.org>
13386
13387         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
13388
13389 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
13390
13391         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
13392         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
13393
13394 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13395
13396         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
13397         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
13398         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
13399
13400 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
13401
13402         * lib/argp-help.c (struct hol_entry): New member `ord'.
13403         (HOL_ENTRY_PTRCMP): Use ord for comparison
13404         (hol_sort): Initialize ord.
13405
13406 2007-05-01  Bruno Haible  <bruno@clisp.org>
13407
13408         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
13409         Reported by Eric Blake.
13410         * doc/gnulib.texi (Function Substitutes): Update.
13411
13412 2007-05-01  Bruno Haible  <bruno@clisp.org>
13413
13414         * doc/functions.texi: Remove file, now redundant through
13415         doc/functions/*.texi.
13416
13417 2007-05-01  Bruno Haible  <bruno@clisp.org>
13418
13419         * modules/argp (Depends-on): Add sleep.
13420
13421 2007-05-01  Bruno Haible  <bruno@clisp.org>
13422
13423         * modules/sleep-tests: New file.
13424         * tests/test-sleep.c: New file.
13425
13426         * modules/sleep: New file.
13427         * lib/sleep.c: New file.
13428         * m4/sleep.m4: New file.
13429         * lib/unistd_.h (sleep): New declaration.
13430         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
13431         HAVE_SLEEP.
13432         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
13433         * doc/functions/sleep.texi: Document the sleep module.
13434
13435 2007-05-01  Bruno Haible  <bruno@clisp.org>
13436
13437         * lib/sigprocmask.h: Remove file.
13438         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
13439         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
13440         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
13441         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
13442         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
13443         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
13444         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
13445         HAVE_SIGSET_T as a shell variable.
13446         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
13447         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
13448         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
13449         (Depends-on): Add signal. Remove verify.
13450         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
13451         (Include): Mention <signal.h> instead of sigprocmask.h.
13452         * NEWS: Mention the change.
13453         * lib/fatal-signal.c: Don't include sigprocmask.h.
13454
13455 2007-05-01  Bruno Haible  <bruno@clisp.org>
13456
13457         * modules/signal: New file.
13458         * lib/signal_.h: New file.
13459         * m4/signal_h.m4: New file.
13460
13461 2007-05-01  Bruno Haible  <bruno@clisp.org>
13462
13463         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
13464         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
13465         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
13466         HAVE_WCTYPE_CTMP_BUG into wctype.h.
13467
13468 2007-05-01  Bruno Haible  <bruno@clisp.org>
13469
13470         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
13471         configure time.
13472         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
13473         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
13474         * modules/sys_stat (Makefile.am): Substitute their values into
13475         sys/stat.h.
13476
13477 2007-05-01  Bruno Haible  <bruno@clisp.org>
13478
13479         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
13480         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
13481         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
13482
13483 2007-05-01  Bruno Haible  <bruno@clisp.org>
13484
13485         * doc/header/assert.texi: Undo last change: don't mention the gnulib
13486         'assert' module here.
13487
13488 2007-05-01  Bruno Haible  <bruno@clisp.org>
13489
13490         * doc/functions/*.texi: New files.
13491         * doc/functions/google-ranking.txt: New file.
13492         * doc/gnulib.texi (Function Substitutes): New chapter.
13493         (ctime, inet_ntoa): Remove sections.
13494         * doc/ctime.texi: Remove file.
13495         * doc/inet_ntoa.texi: Remove file.
13496         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
13497         dependencies.
13498         (%.info): New rule, specifying a --reference-limit.
13499
13500 2007-05-01  Bruno Haible  <bruno@clisp.org>
13501
13502         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
13503
13504 2007-05-01  Bruno Haible  <bruno@clisp.org>
13505
13506         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
13507         the portability of 'mkdir' to mingw systems.
13508
13509 2007-05-01  Bruno Haible  <bruno@clisp.org>
13510
13511         * doc/headers/google-ranking.txt: New file.
13512
13513 2007-04-30  Eric Blake  <ebb9@byu.net>
13514
13515         Prefer fseeko to fseek.
13516         * modules/getpass (Depends-on): Add fseeko.
13517         * lib/getpass.c (getpass): Use fseeko, not fseek.
13518
13519 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
13520
13521         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
13522         assumes the sorting is stable, while most qsort implementations
13523         are not.  Use argument addresses to ensure they never compare as
13524         equal.
13525
13526         * tests/test-argp-2.sh (usage-indent test): Fix output
13527         (func_compare): Restore diff options
13528         * tests/test-argp.c: Restore #include "progname.h"
13529
13530 2007-04-29  Bruno Haible  <bruno@clisp.org>
13531
13532         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
13533         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13534         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
13535         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13536         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
13537         (configure.ac): Define CHECK_SNPRINTF_POSIX.
13538         (TESTS, check_PROGRAMS): Add test-snprintf.
13539         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
13540         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
13541         (TESTS, check_PROGRAMS): Add test-vsnprintf.
13542         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
13543         assertions that fail on HP-UX, OSF/1, or IRIX.
13544         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
13545
13546 2007-04-29  Bruno Haible  <bruno@clisp.org>
13547
13548         * MODULES.html.sh (posix_functions): Remove 'contents'.
13549
13550 2007-04-29  Karl Berry  <karl@gnu.org>
13551
13552         * config/srclist.txt (gendocs_template_min): new entry.
13553
13554 2007-04-29  Bruno Haible  <bruno@clisp.org>
13555
13556         Work around fpurge bug on BSD systems.
13557         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
13558         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
13559         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
13560         fpurge to rpl_fpurge if the system already has this function.
13561         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
13562         the case where the system already has this function. Correct invariants
13563         on BSD systems.
13564         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
13565         BSD systems.
13566
13567 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
13568
13569         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
13570         proposed by Sven Verdoolaege.
13571
13572         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
13573         options.
13574         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
13575         (usage and help tests): Update
13576
13577 2007-04-29  Bruno Haible  <bruno@clisp.org>
13578
13579         * tests/test-fflush.c (main): Use a file of size 17, not 10.
13580         Print more information in case of failure. Disable a test on BeOS.
13581
13582 2007-04-29  Bruno Haible  <bruno@clisp.org>
13583
13584         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
13585         This helps debugging on systems on which no gdb is available.
13586
13587 2007-04-29  Bruno Haible  <bruno@clisp.org>
13588
13589         * lib/freading.h: Improve comments.
13590         * lib/fwriting.h: Likewise.
13591         * tests/test-freading.c (main): Don't check freading immediately after
13592         repositioning. Needed for glibc.
13593
13594 2007-04-29  Bruno Haible  <bruno@clisp.org>
13595
13596         * lib/freading.c (freading): Trivial simplification.
13597
13598 2007-04-28  Bruno Haible  <bruno@clisp.org>
13599
13600         * tests/test-fwriting.c (main): Also test the interaction between
13601         fflush and fwriting.
13602         * modules/fwriting-tests (Depends-on): Add fflush.
13603
13604         * tests/test-freading.c (main): Also test the interaction between
13605         fflush and freading.
13606         * modules/freading-tests (Depends-on): Add fflush.
13607
13608 2007-04-28  Bruno Haible  <bruno@clisp.org>
13609
13610         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
13611         fseeko and ftello.
13612         Suggested by Eric Blake.
13613
13614 2007-04-28  Jim Meyering  <jim@meyering.net>
13615
13616         Avoid false-negative in gl_STDINT_H's C99 conformance test.
13617         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
13618         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
13619
13620 2007-04-27  Eric Blake  <ebb9@byu.net>
13621
13622         * doc/headers/assert.texi (assert.h): Document assert module use.
13623
13624 2007-04-27  Bruno Haible  <bruno@clisp.org>
13625
13626         * doc/headers/*.texi: New files.
13627         * doc/gnulib.texi (Header File Substitutes): New chapter.
13628         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
13629         dependencies.
13630         (standards.info ,standards.html, standards.dvi): Update dependencies.
13631         (mostlyclean, clean): New targets.
13632
13633 2007-04-27  Bruno Haible  <bruno@clisp.org>
13634
13635         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
13636         * modules/sysexits (Files, Makefile.am): Update.
13637
13638         * lib/sys_socket_.h: Renamed from lib/socket_.h.
13639         * modules/sys_socket (Files, Makefile.am): Update.
13640
13641         * lib/sys_stat_.h: Renamed from lib/stat_.h.
13642         * modules/sys_stat (Files, Makefile.am): Update.
13643
13644 2007-04-27  Eric Blake  <ebb9@byu.net>
13645
13646         * lib/freading.h: Improve comments.
13647         * lib/fwriting.h: Likewise.
13648         * lib/fflush.c: Likewise.
13649
13650         Fix closein for mingw.
13651         * modules/closein-tests: Add tests for closein.
13652         * tests/test-closein.c: New file.
13653         * tests/test-closein.sh: Likewise.
13654         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
13655         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
13656
13657 2007-04-27  Bruno Haible  <bruno@clisp.org>
13658
13659         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
13660         version is < 6.
13661         * lib/math_.h [__DECC]: Likewise.
13662         * lib/stdio_.h [__DECC]: Likewise.
13663         * lib/stdlib_.h [__DECC]: Likewise.
13664         * lib/string_.h [__DECC]: Likewise.
13665         * lib/time_.h [__DECC]: Likewise.
13666         * lib/wchar_.h [__DECC]: Likewise.
13667         * lib/wctype_.h [__DECC]: Likewise.
13668
13669 2007-04-27  Bruno Haible  <bruno@clisp.org>
13670
13671         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
13672
13673 2007-04-27  Bruno Haible  <bruno@clisp.org>
13674
13675         * lib/fflush.c: Add comments.
13676         * modules/fpurge-tests (Depends-on): Add fflush.
13677         * modules/freadable-tests (Depends-on): Likewise.
13678         * modules/fwritable-tests (Depends-on): Likewise.
13679
13680 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
13681
13682         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
13683         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
13684         Report by Bruno Haible <bruno@clisp.org>.
13685
13686 2007-04-26  Eric Blake  <ebb9@byu.net>
13687
13688         Fix fflush on mingw.
13689         * modules/fflush (Depends-on): Add freading.
13690         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
13691         but unread data.
13692
13693 2007-04-26  Eric Blake  <ebb9@byu.net>
13694         and Bruno Haible  <bruno@clisp.org>
13695
13696         Implement freading and fwriting.
13697         * lib/freading.c: New file.
13698         * lib/freading.h: Likewise.
13699         * m4/freading.m4: Likewise.
13700         * modules/freading: Likewise.
13701         * modules/freading-tests: Likewise.
13702         * tests/test-freading.c: Likewise.
13703         * lib/fwriting.c: New file.
13704         * lib/fwriting.h: Likewise.
13705         * m4/fwriting.m4: Likewise.
13706         * modules/fwriting: Likewise.
13707         * modules/fwriting-tests: Likewise.
13708         * tests/test-fwriting.c: Likewise.
13709         * MODULES.html.sh (File stream based Input/Output): Mention them.
13710
13711 2007-04-26  Bruno Haible  <bruno@clisp.org>
13712
13713         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
13714         'long' when we assume it.
13715         Suggested by Eric Blake.
13716
13717 2007-04-26  Bruno Haible  <bruno@clisp.org>
13718
13719         Ensure fseeko, ftello are declared on glibc systems.
13720         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
13721         * modules/fseeko (configure.ac-early): Likewise.
13722         * modules/ftello (configure.ac-early): Likewise.
13723         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
13724         AC_FUNC_FSEEKO for this.
13725         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
13726         (gl_CHECK_FSEEKO): Remove macro.
13727
13728 2007-04-26  Bruno Haible  <bruno@clisp.org>
13729
13730         * tests/test-fflush.c (main): Also check the ftell result after
13731         fflush and fseek/fseeko.
13732         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
13733         file descriptor position cache in the stream.
13734         * lib/fseeko.c (rpl_fseeko): Likewise.
13735
13736 2007-04-26  Bruno Haible  <bruno@clisp.org>
13737
13738         * modules/fflush-tests (Depends-on): Add fseeko.
13739
13740 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
13741             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13742
13743         * lib/argz_.h: ensure error_t definition is obtained in same
13744         mechanism system argz.h would have.
13745         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
13746         argz facilities are known bad.  Err on the side of caution if
13747         cross-compiling.
13748
13749 2007-04-25  Eric Blake  <ebb9@byu.net>
13750
13751         * lib/fpurge.c (includes): Use stdlib.h for free.
13752         * tests/test-fflush.c (main): Also test fflush-fseeko.
13753
13754 2007-04-25  Bruno Haible  <bruno@clisp.org>
13755
13756         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
13757         * lib/fseeko.c: New file.
13758         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
13759         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
13760         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
13761         gl_FUNC_FSEEKO.
13762         (gl_FUNC_FSEEKO): Invoke it.
13763         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
13764         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
13765         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
13766
13767 2007-04-25  Bruno Haible  <bruno@clisp.org>
13768
13769         * modules/fflush (Depends-on): Add ftello.
13770
13771 2007-04-25  Bruno Haible  <bruno@clisp.org>
13772
13773         * modules/ftello-tests: New file.
13774         * tests/test-ftello.c: New file.
13775
13776         * modules/ftello: New file.
13777         * m4/ftello.m4: New file.
13778         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
13779         HAVE_FTELLO.
13780         * lib/stdio_.h (ftello): New declaration.
13781         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
13782         HAVE_FTELLO.
13783
13784 2007-04-25  Bruno Haible  <bruno@clisp.org>
13785
13786         * modules/fseeko-tests: New file.
13787         * tests/test-fseeko.c: New file.
13788
13789         * modules/fseeko: New file.
13790         * m4/fseeko.m4: New file.
13791         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
13792         HAVE_FSEEKO.
13793         * lib/stdio_.h (fseeko): New declaration.
13794         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
13795         HAVE_FSEEKO.
13796
13797 2007-04-25  Bruno Haible  <bruno@clisp.org>
13798
13799         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
13800
13801 2007-04-25  Bruno Haible  <bruno@clisp.org>
13802
13803         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
13804         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
13805         * tests/test-unistd.c: Likewise.
13806         * tests/test-fcntl.c: Likewise.
13807
13808 2007-04-23  Eric Blake  <ebb9@byu.net>
13809
13810         * lib/fflush.c: Fix missing include.
13811         Reported by Bruno Haible.
13812
13813 2007-04-23  Bruno Haible  <bruno@clisp.org>
13814
13815         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
13816         Reported by Eric Blake.
13817
13818 2007-04-23  Bruno Haible  <bruno@clisp.org>
13819
13820         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
13821
13822 2007-04-23  Bruno Haible  <bruno@clisp.org>
13823
13824         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
13825
13826 2007-04-23  Bruno Haible  <bruno@clisp.org>
13827
13828         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
13829         Needed on HP-UX 11.
13830
13831 2007-04-16  Eric Blake  <ebb9@byu.net>
13832
13833         Make fflush rely on fpurge.
13834         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
13835         open coding all variants.
13836         * modules/fflush (Depends-on): Add fpurge and unistd.
13837         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
13838         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
13839
13840         Fix --with-tests compilation on cygwin.
13841         * modules/argmatch-tests (Makefile.am): List gnulib library first
13842         in LDADD.
13843         * modules/argp-tests (Makefile.am): Likewise.
13844         * modules/array-list-tests (Makefile.am): Likewise.
13845         * modules/array-oset-tests (Makefile.am): Likewise.
13846         * modules/avltree-list-tests (Makefile.am): Likewise.
13847         * modules/avltree-oset-tests (Makefile.am): Likewise.
13848         * modules/avltreehash-list-tests (Makefile.am): Likewise.
13849         * modules/carray-list-tests (Makefile.am): Likewise.
13850         * modules/dirname-tests (Makefile.am): Likewise.
13851         * modules/frexp-tests (Makefile.am): Likewise.
13852         * modules/isnanl-tests (Makefile.am): Likewise.
13853         * modules/linked-list-tests (Makefile.am): Likewise.
13854         * modules/linkedhash-list-tests (Makefile.am): Likewise.
13855         * modules/lock-tests (Makefile.am): Likewise.
13856         * modules/rbtree-list-tests (Makefile.am): Likewise.
13857         * modules/rbtree-oset-tests (Makefile.am): Likewise.
13858         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
13859         * modules/tls-tests (Makefile.am): Likewise.
13860         * modules/tsearch-tests (Makefile.am): Likewise.
13861         * modules/xvasprintf-tests (Makefile.am): Likewise.
13862
13863         Fix fpurge for cygwin.
13864         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
13865         value.
13866         * modules/fpurge-tests (Depends-on): Clean up trash.
13867
13868 2007-04-16  Simon Josefsson  <simon@josefsson.org>
13869
13870         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
13871
13872         * m4/autobuild.m4: Re-indent.
13873
13874 2007-04-13  Bruno Haible  <bruno@clisp.org>
13875
13876         * modules/fpurge-tests: New file.
13877         * tests/test-fpurge.c: New file.
13878
13879         * modules/fpurge: New file.
13880         * lib/fpurge.h: New file.
13881         * lib/fpurge.c: New file.
13882         * m4/fpurge.m4: New file.
13883
13884 2007-04-13  Bruno Haible  <bruno@clisp.org>
13885
13886         * modules/fbufmode-tests: New file.
13887         * tests/test-fbufmode.c: New file.
13888
13889         * modules/fbufmode: New file.
13890         * lib/fbufmode.h: New file.
13891         * lib/fbufmode.c: New file.
13892         * m4/fbufmode.m4: New file.
13893
13894 2007-04-13  Bruno Haible  <bruno@clisp.org>
13895
13896         * modules/fwritable-tests: New file.
13897         * tests/test-fwritable.c: New file.
13898
13899         * modules/fwritable: New file.
13900         * lib/fwritable.h: New file.
13901         * lib/fwritable.c: New file.
13902         * m4/fwritable.m4: New file.
13903
13904 2007-04-13  Bruno Haible  <bruno@clisp.org>
13905
13906         * modules/freadable-tests: New file.
13907         * tests/test-freadable.c: New file.
13908
13909         * modules/freadable: New file.
13910         * lib/freadable.h: New file.
13911         * lib/freadable.c: New file.
13912         * m4/freadable.m4: New file.
13913
13914 2007-04-13  Bruno Haible  <bruno@clisp.org>
13915
13916         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
13917         MOSTLYCLEANFILES.
13918
13919 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13920
13921         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
13922         gzip bootstrap.conf to avoid dragging in i18n machinery.
13923         (gnulib_tool_option): Use it.
13924
13925 2007-04-13  Bruno Haible  <bruno@clisp.org>
13926
13927         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
13928         %F directives.
13929         * tests/test-vasprintf-posix.c (test_function): Likewise.
13930         * tests/test-snprintf-posix.h (test_function): Likewise.
13931         * tests/test-sprintf-posix.h (test_function): Likewise.
13932         * tests/test-fprintf-posix.h (test_function): Likewise.
13933         * tests/test-printf-posix.h (test_function): Likewise.
13934         * tests/test-fprintf-posix.out: Likewise.
13935
13936 2007-04-13  Bruno Haible  <bruno@clisp.org>
13937
13938         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
13939         * modules/tls-tests (configure.ac): Likewise.
13940         Reported by Arto C. Nirkko <anirkko@insel.ch>.
13941
13942 2007-04-13  Bruno Haible  <bruno@clisp.org>
13943
13944         * lib/tls.c (glthread_tls_get): Fix return type.
13945         Patch by Arto C. Nirkko <anirkko@insel.ch>.
13946
13947 2007-04-12  Eric Blake  <ebb9@byu.net>
13948
13949         * modules/gettime (Depends-on): Remove gettime.
13950         Reported by Dmitry V. Levin.
13951
13952 2007-04-12  Bruno Haible  <bruno@clisp.org>
13953
13954         * modules/fflush (Include): Mention <stdio.h>.
13955         * modules/strtoimax (Include): Mention <inttypes.h>.
13956         * modules/strtoumax (Include): Likewise.
13957
13958 2007-04-12  Eric Blake  <ebb9@byu.net>
13959
13960         * .cvsignore: New file.
13961         * .gitignore: Likewise.
13962
13963 2007-04-12  Bruno Haible  <bruno@clisp.org>
13964
13965         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
13966         not before, since $(LDADD) often contains libgnu.a.
13967         * modules/striconv-tests (test_striconv_LDADD): Likewise.
13968         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
13969         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
13970         Needed on Cygwin.
13971
13972 2007-04-12  Eric Blake  <ebb9@byu.net>
13973
13974         Work around glibc's failure to flush stdin on fclose.
13975         * lib/closein.c (close_stdin): Flush stdin before closing.
13976
13977         Work around glibc's failure to reset seekable stdin on exit.
13978         * modules/closein: New module.
13979         * lib/closein.c: New file.
13980         * lib/closein.h: Likewise.
13981         * m4/closein.m4: Likewise.
13982         * MODULES.html.sh (File stream based Input/Output): Document it.
13983
13984 2007-04-12  Simon Josefsson  <simon@josefsson.org>
13985
13986         * gnulib-tool: Rename generated 'autobuild' script to
13987         'do-autobuild' in --create-megatestdir output.
13988
13989         * doc/gnulib.texi (Build robot for gnulib): Fix.
13990
13991 2007-04-12  Simon Josefsson  <simon@josefsson.org>
13992
13993         * modules/sysexits (Depends-on): Add absolute-header.
13994
13995 2007-04-12  Eric Blake  <ebb9@byu.net>
13996
13997         No need to preserve errno on success.
13998         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
13999         Reported by Bruno Haible.
14000
14001 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14002
14003         * MODULES.html.sh (Support for maintaining and releasing
14004         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
14005
14006 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14007
14008         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
14009
14010 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14011
14012         * modules/autobuild: New module.
14013
14014         * m4/autobuild.m4: New file.
14015
14016 2007-04-11  Bruno Haible  <bruno@clisp.org>
14017
14018         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
14019         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
14020         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
14021         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
14022         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
14023         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14024         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14025         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
14026         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14027         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14028         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
14029         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14030         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14031         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
14032         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14033         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14034         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
14035         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14036         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14037         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
14038         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14039         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14040         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
14041         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14042         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14043         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
14044         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14045         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14046         Reported by Eric Blake.
14047
14048 2007-04-11  Bruno Haible  <bruno@clisp.org>
14049
14050         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
14051
14052 2007-04-10  Bruno Haible  <bruno@clisp.org>
14053
14054         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
14055         for NaN and Infinity. Needed on FreeBSD 6.1.
14056         * tests/test-vasnprintf-posix.c (test_function): Undo last change
14057         regarding results for "%010a" of Infinity and NaN.
14058         * tests/test-vasprintf-posix.c (test_function): Likewise.
14059         * tests/test-snprintf-posix.h (test_function): Likewise.
14060         * tests/test-sprintf-posix.h (test_function): Likewise.
14061         * tests/test-fprintf-posix.h (test_function): Likewise.
14062         * tests/test-printf-posix.h (test_function): Likewise.
14063         * tests/test-fprintf-posix.out: Likewise.
14064
14065 2007-04-10  Bruno Haible  <bruno@clisp.org>
14066
14067         * modules/locale-tests: New file.
14068         * tests/test-locale.c: New file.
14069
14070         * modules/locale: New file.
14071         * lib/locale_.h: New file.
14072         * m4/locale_h.m4: New file.
14073
14074 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
14075             Bruno Haible  <bruno@clisp.org>
14076
14077         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
14078         be determined, test for availability of the copysignf, copysign,
14079         copysignl functions.
14080         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
14081         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
14082         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
14083
14084 2007-04-09  Eric Blake  <ebb9@byu.net>
14085
14086         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
14087         * modules/stdio (Makefile.am): Support fflush.
14088         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14089         * modules/fflush: New file.
14090         * lib/fflush.c: Likewise.
14091         * m4/fflush.m4: Likewise.
14092         * modules/fflush-tests: New test.
14093         * tests/test-fflush.c: Likewise.
14094         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
14095
14096 2007-04-06  Bruno Haible  <bruno@clisp.org>
14097
14098         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
14099         (VASNPRINTF): Use signbit for faster determination whether to print a
14100         minus sign.
14101         * modules/vasnprintf (Files): Remove lib/float+.h.
14102         * modules/fprintf-posix (Depends-on): Add signbit.
14103         * modules/snprintf-posix (Depends-on): Likewise.
14104         * modules/sprintf-posix (Depends-on): Likewise.
14105         * modules/vasnprintf-posix (Depends-on): Likewise.
14106         * modules/vasprintf-posix (Depends-on): Likewise.
14107         * modules/vfprintf-posix (Depends-on): Likewise.
14108         * modules/vsnprintf-posix (Depends-on): Likewise.
14109         * modules/vsprintf-posix (Depends-on): Likewise.
14110
14111 2007-04-06  Bruno Haible  <bruno@clisp.org>
14112
14113         * tests/test-frexp.c (main): Test also the sign bit of zero results.
14114         * tests/test-frexpl.c (main): Likewise.
14115         * tests/test-ldexpl.c (main): Likewise.
14116         * modules/frexp-tests (Depends-on): Add signbit.
14117         * modules/frexpl-tests (Depdends-on): Likewise.
14118         * modules/ldexpl-tests (Depdends-on): Likewise.
14119
14120 2007-04-06  Bruno Haible  <bruno@clisp.org>
14121
14122         * modules/signbit-tests: New file.
14123         * tests/test-signbit.c: New file.
14124
14125         * modules/signbit: New file.
14126         * lib/signbitf.c: New file.
14127         * lib/signbitd.c: New file.
14128         * lib/signbitl.c: New file.
14129         * m4/signbit.m4: New file.
14130         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
14131         (signbit): New macro.
14132         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
14133         REPLACE_SIGNBIT.
14134         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
14135         REPLACE_FREXPL into math.h.
14136
14137 2007-04-06  Bruno Haible  <bruno@clisp.org>
14138
14139         * modules/isnanf-nolibm-tests: New file.
14140         * tests/test-isnanf.c: New file.
14141
14142         * modules/isnanf-nolibm: New file.
14143         * lib/isnanf.h: New file.
14144         * lib/isnanf.c: New file.
14145         * lib/isnan.c: Consider the USE_FLOAT macro.
14146         * m4/isnanf.m4: New file.
14147
14148 2007-04-06  Bruno Haible  <bruno@clisp.org>
14149
14150         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
14151         (Link): New section.
14152
14153         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
14154
14155 2007-04-06  Bruno Haible  <bruno@clisp.org>
14156
14157         Assume the 'long double' type.
14158         * m4/longdouble.m4: Remove file.
14159         * config/srclist.txt: Don't mention longdouble.m4.
14160         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
14161         * lib/float+.h: Likewise.
14162         * lib/frexp.c: Likewise.
14163         * lib/printf-args.h: Likewise.
14164         * lib/printf-args.c: Likewise.
14165         * lib/printf-frexp.c: Likewise.
14166         * lib/printf-parse.c: Likewise.
14167         * lib/vasnprintf.c: Likewise.
14168         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
14169         * m4/intl.m4: Likewise.
14170         * m4/isnanl.m4: Likewise.
14171         * m4/printf.m4: Likewise.
14172         * m4/printf-frexpl.m4: Likewise.
14173         * m4/vasnprintf.m4: Likewise.
14174         * modules/allocsa (Files): Remove m4/longdouble.m4.
14175         * modules/gettext (Files): Likewise.
14176         * modules/relocatable-prog-wrapper (Files): Likewise.
14177         * modules/vasnprintf (Files): Likewise.
14178         * modules/isnanl (Files): Likewise.
14179         (Include): Simplify.
14180         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
14181         (Include): Simplify.
14182         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
14183         (Include): Simplify.
14184         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
14185         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14186         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
14187         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14188         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14189         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14190         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
14191         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14192         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14193         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14194         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
14195         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14196         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
14197         * tests/test-isnanl.c: Likewise.
14198         * tests/test-snprintf-posix.h: Likewise.
14199         * tests/test-sprintf-posix.h: Likewise.
14200         * tests/test-vasnprintf-posix.c: Likewise.
14201         * tests/test-vasnprintf-posix2.c: Likewise.
14202         * tests/test-vasprintf-posix.c: Likewise.
14203
14204 2007-04-06  Bruno Haible  <bruno@clisp.org>
14205
14206         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
14207         * lib/math_.h [__DECC]: Include the overridden include file through
14208         #include_next, outside the double-inclusion guard.
14209         * lib/stdio_.h [__DECC]: Likewise.
14210         * lib/stdlib_.h [__DECC]: Likewise.
14211         * lib/string_.h [__DECC]: Likewise.
14212         * lib/time_.h [__DECC]: Likewise.
14213         * lib/wchar_.h [__DECC]: Likewise.
14214         * lib/wctype_.h [__DECC]: Likewise.
14215         * lib/inttypes_.h [__DECC]: Likewise.
14216         Reported by Albert Chin <china@thewrittenword.com> in
14217         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
14218
14219 2007-04-04  Eric Blake  <ebb9@byu.net>
14220
14221         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
14222         1.5.x.
14223
14224 2007-04-04  Bruno Haible  <bruno@clisp.org>
14225
14226         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
14227         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
14228
14229 2007-04-04  Bruno Haible  <bruno@clisp.org>
14230
14231         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
14232         results for "%010a" of Infinity and NaN.
14233         * tests/test-vasprintf-posix.c (test_function): Likewise.
14234         * tests/test-snprintf-posix.h (test_function): Likewise.
14235         * tests/test-sprintf-posix.h (test_function): Likewise.
14236         * tests/test-fprintf-posix.h (test_function): Remove these tests.
14237         * tests/test-printf-posix.h (test_function): Likewise.
14238         * tests/test-fprintf-posix.out: Update.
14239         Needed for FreeBSD 6.1.
14240
14241 2007-04-04  Bruno Haible  <bruno@clisp.org>
14242
14243         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
14244         directly used by the gnulib modules nor by gnulib-tool.
14245
14246 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14247
14248         * DEPENDENCIES: Give overall description of version dependency
14249         desirability.  Use more-typical names for apps.
14250         Add shell, coreutils, diffutils, grep, tar, gzip.
14251
14252 2007-04-04  Simon Josefsson  <simon@josefsson.org>
14253
14254         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
14255
14256 2007-04-04  Karl Berry  <karl@gnu.org>
14257
14258         * MODULES.html.sh (func_module): missing '.
14259
14260 2007-04-03  Bruno Haible  <bruno@clisp.org>
14261
14262         * modules/argmatch-tests (Makefile.am): New variable
14263         test_argmatch_LDADD.
14264         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
14265         * modules/array-list-tests (Makefile.am): New variable
14266         test_array_list_LDADD.
14267         * modules/array-oset-tests (Makefile.am): New variable
14268         test_array_oset_LDADD.
14269         * modules/avltree-list-tests (Makefile.am): New variable
14270         test_avltree_list_LDADD.
14271         * modules/avltree-oset-tests (Makefile.am): New variable
14272         test_avltree_oset_LDADD.
14273         * modules/avltreehash-list-tests (Makefile.am): New variable
14274         test_avltreehash_list_LDADD.
14275         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
14276         test_canonicalize_lgpl_LDADD.
14277         * modules/carray-list-tests (Makefile.am): New variable
14278         test_carray_list_LDADD.
14279         * modules/dirname-tests (Makefile.am): New variable
14280         test_dirname_LDADD.
14281         * modules/linked-list-tests (Makefile.am): New variable
14282         test_linked_list_LDADD.
14283         * modules/linkedhash-list-tests (Makefile.am): New variable
14284         test_linkedhash_list_LDADD.
14285         * modules/rbtree-list-tests (Makefile.am): New variable
14286         test_rbtree_list_LDADD.
14287         * modules/rbtree-oset-tests (Makefile.am): New variable
14288         test_rbtree_oset_LDADD.
14289         * modules/rbtreehash-list-tests (Makefile.am): New variable
14290         test_rbtreehash_list_LDADD.
14291         * modules/xvasprintf-tests (Makefile.am): New variable
14292         test_xvasprintf_LDADD.
14293         Reported by Eric Blake.
14294
14295 2007-04-03  Eric Blake  <ebb9@byu.net>
14296
14297         * DEPENDENCIES: Weaken m4 requirements.
14298
14299 2007-04-03  Bruno Haible  <bruno@clisp.org>
14300
14301         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
14302         * modules/isnanl-tests (configure.ac): Likewise.
14303
14304 2007-04-03  Ben Pfaff  <blp@gnu.org>
14305
14306         * modules/iconv_open: Add $(srcdir)/ to source directory
14307         references in Makefile fragments that call gperf, to fix VPATH
14308         builds.
14309
14310 2007-04-03  Bruno Haible  <bruno@clisp.org>
14311
14312         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
14313         * lib/ldexpl.c: Undo last change.
14314
14315 2007-04-03  Bruno Haible  <bruno@clisp.org>
14316
14317         * modules/printf-frexpl (Depends-on): Undo last change.
14318         (Files): Add m4/ldexpl.m4.
14319
14320 2007-04-03  Bruno Haible  <bruno@clisp.org>
14321
14322         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
14323         * modules/isnanl (Link): New section.
14324
14325         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
14326         * modules/frexp (Link): New section.
14327
14328         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
14329         * modules/frexpl (Link): New section.
14330
14331         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
14332         * modules/ldexpl (Link): New section.
14333
14334 2007-04-03  Bruno Haible  <bruno@clisp.org>
14335
14336         * modules/TEMPLATE-EXTENDED: New file.
14337         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
14338
14339 2007-04-03  Bruno Haible  <bruno@clisp.org>
14340
14341         * DEPENDENCIES: New file.
14342         Suggested by Simon Josefsson.
14343
14344 2007-04-03  Bruno Haible  <bruno@clisp.org>
14345
14346         * doc/gnulib.texi: Escape @.
14347
14348 2007-04-03  James Youngman  <jay@gnu.org>
14349         and Paul Eggert  <eggert@cs.ucla.edu>
14350
14351         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
14352         birthtime on all systems that have birthtime, not just those which
14353         use st_birthtimensec rather than st_birthtim.  Putting zero in
14354         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
14355         that the birth time is not available for files on an NFS mount.
14356
14357 2007-04-03  Simon Josefsson  <simon@josefsson.org>
14358
14359         * modules/memxor: Move back from crypto/, suggested by Bruno.
14360         * modules/crypto/hmac-sha1: Fix memxor dependency.
14361
14362         * modules/crypto/gc: Moved from ../.
14363
14364 2007-04-02  Eric Blake  <ebb9@byu.net>
14365
14366         * lib/ldexpl.c (includes): Avoid libm.
14367
14368         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
14369
14370 2007-04-02  Bruno Haible  <bruno@clisp.org>
14371
14372         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
14373         on IRIX.
14374
14375 2007-04-02  Bruno Haible  <bruno@clisp.org>
14376
14377         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
14378         x86 or x86_64 platforms running MacOS X.
14379         Reported by Ryan Schmidt <@ryandesign.com>.
14380
14381 2007-04-02  Bruno Haible  <bruno@clisp.org>
14382
14383         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
14384         i386.
14385
14386 2007-04-01  Simon Josefsson  <simon@josefsson.org>
14387
14388         * modules/crypto/arcfour: Moved from ../.
14389         * modules/crypto/arcfour-tests: Moved from ../.
14390         * modules/crypto/arctwo: Moved from ../.
14391         * modules/crypto/arctwo-tests: Moved from ../.
14392         * modules/crypto/des: Moved from ../.
14393         * modules/crypto/des-tests: Moved from ../.
14394         * modules/crypto/gc-arcfour: Moved from ../.
14395         * modules/crypto/gc-arcfour-tests: Moved from ../.
14396         * modules/crypto/gc-arctwo: Moved from ../.
14397         * modules/crypto/gc-arctwo-tests: Moved from ../.
14398         * modules/crypto/gc-des: Moved from ../.
14399         * modules/crypto/gc-des-tests: Moved from ../.
14400         * modules/crypto/gc-hmac-md5: Moved from ../.
14401         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
14402         * modules/crypto/gc-hmac-sha1: Moved from ../.
14403         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
14404         * modules/crypto/gc-md2: Moved from ../.
14405         * modules/crypto/gc-md2-tests: Moved from ../.
14406         * modules/crypto/gc-md4: Moved from ../.
14407         * modules/crypto/gc-md4-tests: Moved from ../.
14408         * modules/crypto/gc-md5: Moved from ../.
14409         * modules/crypto/gc-md5-tests: Moved from ../.
14410         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
14411         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
14412         * modules/crypto/gc-random: Moved from ../.
14413         * modules/crypto/gc-rijndael: Moved from ../.
14414         * modules/crypto/gc-rijndael-tests: Moved from ../.
14415         * modules/crypto/gc-sha1: Moved from ../.
14416         * modules/crypto/gc-sha1-tests: Moved from ../.
14417         * modules/crypto/gc-tests: Moved from ../.
14418         * modules/crypto/hmac-md5: Moved from ../.
14419         * modules/crypto/hmac-md5-tests: Moved from ../.
14420         * modules/crypto/hmac-sha1: Moved from ../.
14421         * modules/crypto/hmac-sha1-tests: Moved from ../.
14422         * modules/crypto/md2: Moved from ../.
14423         * modules/crypto/md2-tests: Moved from ../.
14424         * modules/crypto/md4: Moved from ../.
14425         * modules/crypto/md4-tests: Moved from ../.
14426         * modules/crypto/md5: Moved from ../.
14427         * modules/crypto/md5-tests: Moved from ../.
14428         * modules/crypto/memxor: Moved from ../.
14429         * modules/crypto/rijndael: Moved from ../.
14430         * modules/crypto/rijndael-tests: Moved from ../.
14431         * modules/crypto/sha1: Moved from ../.
14432
14433 2007-03-30  James Youngman  <jay@gnu.org>
14434
14435         * tests/test-stat-time.c (prepare_test): use chmod() rather than
14436         rename() to change the ctime of a file (because ctime is unaffected
14437         by rename on jfs2 on AIX 5.1).
14438         (main): Start by doing cleanup, in case a previous run failed leaving
14439         test files behind.
14440
14441 2007-03-31  Bruno Haible  <bruno@clisp.org>
14442
14443         Support old proprietary implementations of iconv.
14444         * modules/iconv_open: New file.
14445         * lib/iconv_.h: New file.
14446         * m4/iconv_h.m4: New file.
14447         * lib/iconv_open.c: New file.
14448         * lib/iconv_open-aix.gperf: New file.
14449         * lib/iconv_open-hpux.gperf: New file.
14450         * lib/iconv_open-irix.gperf: New file.
14451         * lib/iconv_open-osf.gperf: New file.
14452         * m4/iconv_open.m4: New file.
14453         * modules/linebreak (Depends-on): Add iconv_open.
14454         * modules/striconv (Depends-on): Likewise.
14455         * modules/striconveh (Depends-on): Likewise.
14456         * modules/unicodeio (Depends-on): Likewise.
14457         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
14458         (iconv_t)(-1).
14459         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
14460         conversion if cd is (iconv_t)(-1).
14461         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
14462         is not possible.
14463
14464 2007-03-31  Bruno Haible  <bruno@clisp.org>
14465
14466         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14467         work on Solaris either. Protect also second use of "autodetect_jp".
14468
14469 2007-03-31  Bruno Haible  <bruno@clisp.org>
14470
14471         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
14472         the function is not present.
14473
14474 2007-03-31  Bruno Haible  <bruno@clisp.org>
14475
14476         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
14477         the function is not present.
14478
14479 2007-03-31  Bruno Haible  <bruno@clisp.org>
14480
14481         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
14482         a bug in HP-UX iconv_open().
14483
14484 2007-03-31  Bruno Haible  <bruno@clisp.org>
14485
14486         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
14487         (Mathematics <math.h>): New section, add fpieee.
14488         (Input/output <stdio.h>): Add fseterr.
14489         (Mathematics <math.h>): New section, add printf-frexp.
14490         (Container data structures): Add sublist.
14491         (Core language properties): Add fpucw, inline.
14492         (Functions for greatest-width integer types <inttypes.h>): Add
14493         imaxabs, imaxdiv, inttypes.
14494         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
14495         isnanl-nolibm, ldexp.
14496         (Mathematics <math.h>): New section, add printf-frexpl.
14497         (Support for systems lacking POSIX:2001): Add fprintf-posix,
14498         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
14499         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
14500         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
14501         (Unicode string functions): Add unistr/u*-mbtoucr.
14502         (Java): Add javacomp-script, javaexec-script.
14503         (C#): Add csharpcomp-script, csharpexec-script.
14504         (Support for building libraries and executables): Add havelib,
14505         relocatable-*.
14506         (Support for maintaining and releasing projects): Renamed from
14507         'Support for maintaining and release projects'. Add announce-gen.
14508
14509 2007-03-31  Bruno Haible  <bruno@clisp.org>
14510
14511         * README: Talk primarily about git.
14512         (git and CVS): Renamed from CVS.
14513         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
14514         gnulib is available through git.
14515         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
14516
14517 2007-03-30  Bruno Haible  <bruno@clisp.org>
14518
14519         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
14520         * lib/poll_.h: Likewise.
14521         * lib/stat_.h: Likewise.
14522         * lib/sys_time_.h: Likewise.
14523         * lib/sysexit_.h: Likewise.
14524         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
14525         * lib/stdbool_.h: Likewise.
14526         * lib/byteswap_.h: Add double-inclusion guard.
14527
14528 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
14529
14530         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
14531
14532 2007-03-30  Karl Berry  <karl@gnu.org>
14533
14534         * config/srclist-update: double space after USA in the license
14535         substitution, since that's how it's usually (?) written.
14536
14537 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
14538
14539         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
14540         reported by Bruno Haible.
14541
14542 2007-03-29  Bruno Haible  <bruno@clisp.org>
14543
14544         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
14545         a bug in AIX iconv().
14546
14547 2007-03-29  Bruno Haible  <bruno@clisp.org>
14548
14549         * modules/ldexpl-tests: New file.
14550         * tests/test-ldexpl.c: New file.
14551
14552 2007-03-29  Bruno Haible  <bruno@clisp.org>
14553
14554         * lib/ldexpl.c: Include fpucw.h.
14555         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
14556         multiplication.
14557         * modules/ldexpl (Depends-on): Add fpucw.
14558
14559 2007-03-29  Bruno Haible  <bruno@clisp.org>
14560
14561         * modules/ldexpl: New file.
14562         * m4/ldexpl.m4: New file.
14563         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
14564         set.
14565         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
14566         REPLACE_LDEXPL.
14567         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
14568         REPLACE_LDEXPL.
14569         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
14570         gl_FUNC_LDEXPL_WORKS.
14571         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
14572         * modules/mathl (Files): Remove lib/ldexpl.c.
14573         (Depends-on): Add ldexpl.
14574
14575 2007-03-29  Bruno Haible  <bruno@clisp.org>
14576
14577         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
14578
14579 2007-03-29  Bruno Haible  <bruno@clisp.org>
14580
14581         * tests/test-striconveh.c (main): Don't assume that a direct conversion
14582         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
14583         and possibly also HP-UX.
14584         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14585         work on AIX, IRIX, HP-UX, OSF/1.
14586         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
14587         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
14588         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
14589         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
14590         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
14591         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
14592
14593 2007-03-29  Bruno Haible  <bruno@clisp.org>
14594
14595         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
14596
14597 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14598
14599         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
14600         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
14601
14602 2007-03-29  Eric Blake  <ebb9@byu.net>
14603
14604         * lib/acl-internal.h: Remove redundant include.
14605         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
14606         Cygwin when a file is locked.
14607
14608 2007-03-29  Bruno Haible  <bruno@clisp.org>
14609
14610         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
14611         file.
14612         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
14613
14614 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14615
14616         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
14617         try to remove a parent directory if the child couldn't be removed
14618         (except for the first rmdir, which could fail because the child
14619         doesn't exist).  Problem reported by Jeff Blaine in
14620         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
14621
14622 2007-03-28  Bruno Haible  <bruno@clisp.org>
14623
14624         * lib/striconveh.c (utf8conv_carefully): New function.
14625         (mem_cd_iconveh_internal): Invoke it.
14626
14627 2007-03-28  Bruno Haible  <bruno@clisp.org>
14628
14629         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
14630         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
14631         input.
14632         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
14633         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
14634         unistr/u8-uctomb.
14635
14636 2007-03-28  Bruno Haible  <bruno@clisp.org>
14637
14638         * modules/unistr/u8-mbtoucr: New file.
14639         * lib/unistr/u8-mbtoucr.c: New file.
14640         * modules/unistr/u16-mbtoucr: New file.
14641         * lib/unistr/u16-mbtoucr.c: New file.
14642         * modules/unistr/u16-mbtoucr: New file.
14643         * lib/unistr/u16-mbtoucr.c: New file.
14644         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
14645
14646 2007-03-27  Simon Josefsson  <simon@josefsson.org>
14647             Bruno Haible  <bruno@clisp.org>
14648
14649         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
14650         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
14651         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
14652
14653         * m4/stdio_h.m4: Add stubs for vasprintf too.
14654
14655         * modules/stdio: Support vasprintf in sed command.
14656
14657         * modules/vasprintf: Depend on stdio for prototypes.  Remove
14658         vasprintf.h.  Add stdio module indicator.
14659
14660         * lib/stdio_.h: Declare asprintf and vasprintf, based on
14661         vasprintf.h.
14662
14663         * lib/vasprintf.h: File removed.
14664
14665         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
14666         * lib/vasprintf.c: Ditto.
14667         * lib/xvasprintf.c: Ditto.
14668         * tests/test-vasprintf-posix.c: Ditto.
14669         * tests/test-vasprintf.c: Ditto.
14670
14671 2007-03-27  Bruno Haible  <bruno@clisp.org>
14672
14673         Make vasnprintf multithread-safe.
14674         * lib/vasnprintf.c (decimal_point_char): New function.
14675         (VASNPRINTF): Use it.
14676         Suggested by Simon Josefsson.
14677
14678 2007-03-27  Eric Blake  <ebb9@byu.net>
14679
14680         Support sub-second birthtime on cygwin.
14681         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
14682         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
14683         (get_stat_birthtime): Also work with st_birthtim.
14684
14685 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
14686
14687         * lib/stat-time.h (USE_BIRTHTIME): Remove.
14688         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
14689         (get_stat_birthtime_ns): Do not try to use "spare" fields.
14690         (get_stat_birthtime_ns): Simplify compile-time tests.
14691         (get_stat_birthtime): Change the API to look like
14692         get_stat_mtime etc., except return a negative tv_nsec on error.
14693         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
14694         Don't check for "spare" fields.
14695         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
14696         or for struct stat.st_birthtime, as these tests aren't used.
14697         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
14698
14699 2007-03-27  Bruno Haible  <bruno@clisp.org>
14700
14701         * lib/stat-time.h: Include <sys/stat.h>.
14702
14703 2007-03-27  James Youngman  <jay@gnu.org>
14704
14705         * lib/stat-time.h (get_stat_birthtime): New function for
14706           retrieving st_birthtime as provided by UFS2 (hence *BSD).
14707         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
14708           and its variants.
14709         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
14710         * modules/stat-time-test: New file.
14711         * tests/test-stat-time.c: New test, devised by Bruno Haible.
14712
14713 2007-03-26  Bruno Haible  <bruno@clisp.org>
14714
14715         Better support of signalling NaNs.
14716         * lib/atanl.c: Include isnanl.h.
14717         (atanl): Perform test for NaN at the beginning of the function and
14718         through a call to isnanl.
14719         * lib/cosl.c: Include isnanl.h.
14720         (cosl): Perform test for NaN at the beginning of the function and
14721         through a call to isnanl.
14722         * lib/ldexpl.c: Include isnanl.h.
14723         (ldexpl): Perform test for NaN through a call to isnanl.
14724         * lib/logl.c: Include isnanl.h.
14725         (logl): Perform test for NaN at the beginning of the function and
14726         through a call to isnanl.
14727         * lib/sinl.c: Include isnanl.h.
14728         (sinl): Perform test for NaN at the beginning of the function and
14729         through a call to isnanl.
14730         * lib/sqrtl.c: Include isnanl.h.
14731         (sqrtl): Perform test for NaN at the beginning of the function and
14732         through a call to isnanl.
14733         * lib/tanl.c: Include isnanl.h.
14734         (tanl): Perform test for NaN at the beginning of the function and
14735         through a call to isnanl.
14736         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
14737         * modules/mathl (Depends-on): Add isnanl.
14738
14739 2007-03-26  Eric Blake  <ebb9@byu.net>
14740
14741         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
14742         regression in logic sense of previous patch.
14743
14744 2007-03-26  Bruno Haible  <bruno@clisp.org>
14745
14746         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
14747         unportable shell command "if ! ...".
14748         Reported by Ralf Wildenhues.
14749
14750 2007-03-25  Bruno Haible  <bruno@clisp.org>
14751
14752         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
14753         <sysexits.h> file, and only add EX_CONFIG.
14754         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
14755         absolute file name and whether it is sufficient. Substitute also
14756         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
14757         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
14758         ABSOLUTE_SYSEXITS_H into sysexits.h.
14759
14760 2007-03-25  Bruno Haible  <bruno@clisp.org>
14761
14762         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
14763         hints is NULL.
14764
14765 2007-03-25  Bruno Haible  <bruno@clisp.org>
14766
14767         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
14768         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
14769
14770 2007-03-25  Bruno Haible  <bruno@clisp.org>
14771
14772         * lib/vasnprintf.c: Include langinfo.h.
14773         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
14774         multithread-safe.
14775         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
14776         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
14777         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
14778         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
14779         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
14780         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
14781         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
14782         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
14783         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
14784         Reported by Simon Josefsson.
14785
14786 2007-03-25  Bruno Haible  <bruno@clisp.org>
14787
14788         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
14789         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
14790         * modules/vasnprintf (Depends-on): Add stdint.
14791
14792 2007-03-25  Bruno Haible  <bruno@clisp.org>
14793
14794         * modules/fpieee: New file.
14795         * m4/fpieee.m4: New file.
14796         * modules/isnan-nolibm (Depends-on): Add fpieee.
14797         * modules/isnanl-nolibm (Depends-on): Add fpieee.
14798         * modules/isnanl (Depends-on): Add fpieee.
14799
14800 2007-03-25  Bruno Haible  <bruno@clisp.org>
14801
14802         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
14803
14804 2007-03-25  Bruno Haible  <bruno@clisp.org>
14805
14806         Avoid test failures on IRIX 6.5.
14807         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
14808         (main): Use it.
14809         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
14810         macros.
14811         (main): Use them.
14812
14813 2007-03-25  Bruno Haible  <bruno@clisp.org>
14814
14815         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
14816         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
14817         exists but doesn't work.
14818         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
14819         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
14820         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
14821         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
14822
14823 2007-03-25  Bruno Haible  <bruno@clisp.org>
14824
14825         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
14826         returns inf. Needed on IRIX 6.5.
14827
14828 2007-03-25  Bruno Haible  <bruno@clisp.org>
14829
14830         * tests/test-frexpl.c: Include isnanl-nolibm.h.
14831         (main): Use isnanl instead of x != x idiom.
14832         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
14833
14834         * tests/test-frexp.c: Include isnan.h.
14835         (main): Use isnan instead of x != x idiom.
14836         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
14837
14838 2007-03-25  Bruno Haible  <bruno@clisp.org>
14839
14840         * tests/test-frexp.c (NaN): New function/macro.
14841         (main): Use it instead of 0.0 / 0.0.
14842         * tests/test-isnan.c (NaN): New function/macro.
14843         (main): Use it instead of 0.0 / 0.0.
14844         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
14845         (test_function): Use it instead of 0.0 / 0.0.
14846         * tests/test-vasprintf-posix.c (NaN): New function/macro.
14847         (test_function): Use it instead of 0.0 / 0.0.
14848         * tests/test-snprintf-posix.h (NaN): New function/macro.
14849         (test_function): Use it instead of 0.0 / 0.0.
14850         * tests/test-sprintf-posix.h (NaN): New function/macro.
14851         (test_function): Use it instead of 0.0 / 0.0.
14852         * tests/test-fprintf-posix.h (NaN): New function/macro.
14853         (test_function): Use it instead of 0.0 / 0.0.
14854         * tests/test-printf-posix.h (NaN): New function/macro.
14855         (test_function): Use it instead of 0.0 / 0.0.
14856
14857         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
14858
14859 2007-03-25  Bruno Haible  <bruno@clisp.org>
14860
14861         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
14862
14863 2007-03-25  Bruno Haible  <bruno@clisp.org>
14864
14865         * lib/regexec.c (merge_state_with_log): Make static.
14866
14867 2007-03-25  Bruno Haible  <bruno@clisp.org>
14868
14869         * lib/trigl.c (kernel_rem_pio2): Make static.
14870
14871 2007-03-25  Bruno Haible  <bruno@clisp.org>
14872
14873         * lib/sincosl.c (sincosl_table): Make static.
14874
14875 2007-03-25  Bruno Haible  <bruno@clisp.org>
14876
14877         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
14878         if the compiler does not support C99.
14879
14880 2007-03-25  Bruno Haible  <bruno@clisp.org>
14881
14882         * modules/time (Makefile.am): Ensure all rule action lines start with a
14883         tab.
14884
14885 2007-03-24  Bruno Haible  <bruno@clisp.org>
14886
14887         * modules/tsearch-tests: New file.
14888         * tests/test-tsearch.sh: New file.
14889         * tests/test-tsearch.c: New file, mostly copied from glibc.
14890
14891         * modules/search-tests: New file.
14892         * tests/test-search.c: New file.
14893
14894         * modules/search: New file.
14895         * lib/search_.h: New file, incorporating lib/tsearch.h.
14896         * m4/search_h.m4: New file.
14897         * lib/tsearch.h: Remove file.
14898         * lib/tsearch.c: Include search.h instead of tsearch.h.
14899         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
14900         HAVE_TSEARCH.
14901         * modules/tsearch (Files): Remove lib/tsearch.h.
14902         (Depends-on): Add search.
14903         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
14904         (Include): Change tsearch.h into search.h.
14905
14906 2007-03-24  Bruno Haible  <bruno@clisp.org>
14907
14908         * modules/fpucw: New file.
14909         * lib/fpucw.h: New file.
14910         * lib/frexp.c: Include fpucw.h.
14911         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
14912         (FUNC): Use them.
14913         * lib/printf-frexp.c: Include fpucw.h.
14914         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
14915         (FUNC): Use them.
14916         * lib/vasnprintf.c: Include fpucw.h.
14917         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
14918         'long double' calculations.
14919         * tests/test-frexpl.c: Include fpucw.h.
14920         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
14921         * tests/test-printf-frexpl.c: Include fpucw.h.
14922         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
14923         * modules/frexpl (Depends-on): Add fpucw.
14924         * modules/printf-frexpl (Depends-on): Likewise.
14925         * modules/fprintf-posix (Depends-on): Likewise.
14926         * modules/snprintf-posix (Depends-on): Likewise.
14927         * modules/sprintf-posix (Depends-on): Likewise.
14928         * modules/vasnprintf-posix (Depends-on): Likewise.
14929         * modules/vasprintf-posix (Depends-on): Likewise.
14930         * modules/vfprintf-posix (Depends-on): Likewise.
14931         * modules/vsnprintf-posix (Depends-on): Likewise.
14932         * modules/vsprintf-posix (Depends-on): Likewise.
14933         * modules/frexpl-tests (Depends-on): Likewise.
14934         * modules/printf-frexpl-tests (Depends-on): Likewise.
14935
14936 2007-03-24  Bruno Haible  <bruno@clisp.org>
14937
14938         * lib/float+.h: New file.
14939         * lib/isnan.c: Include float+.h.
14940         (SIZE): New macro.
14941         (FUNC): Compare only SIZE bytes of the value.
14942         * lib/vasnprintf.c: Include float+.h.
14943         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
14944         SIZEOF_LDBL or SIZEOF_DBL bytes.
14945         * modules/isnan-nolibm (Files): Add lib/float+.h.
14946         * modules/isnanl-nolibm (Files): Add lib/float+.h.
14947         * modules/isnanl (Files): Add lib/float+.h.
14948         * modules/vasnprintf (Files): Add lib/float+.h.
14949
14950 2007-03-24  Bruno Haible  <bruno@clisp.org>
14951
14952         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
14953         include isnanl-nolibm.h.
14954
14955 2007-03-24  Bruno Haible  <bruno@clisp.org>
14956
14957         * tests/test-read-file.c (main): Don't produce spurious output for
14958         expected situations. Make the test fail if it encountered unexpected
14959         results.
14960
14961 2007-03-24  Bruno Haible  <bruno@clisp.org>
14962
14963         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
14964         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
14965
14966 2007-03-24  Bruno Haible  <bruno@clisp.org>
14967
14968         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
14969
14970 2007-03-24  Bruno Haible  <bruno@clisp.org>
14971
14972         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
14973         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
14974
14975         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
14976         * modules/utf8-ucs4: Turn into a symbolic link to module
14977         unistr/u8-mbtouc.
14978
14979         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
14980         utf8-ucs4-unsafe.
14981         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
14982         unistr/u8-mbtouc-unsafe.
14983
14984         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
14985         * modules/utf16-ucs4: Turn into a symbolic link to module
14986         unistr/u16-mbtouc.
14987
14988         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
14989         utf16-ucs4-unsafe.
14990         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
14991         unistr/u16-mbtouc-unsafe.
14992
14993         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
14994         * modules/ucs4-utf8: Turn into a symbolic link to module
14995         unistr/u8-ubtomb.
14996
14997         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
14998         * modules/ucs4-utf16: Turn into a symbolic link to module
14999         unistr/u16-ubtomb.
15000
15001 2007-03-24  Bruno Haible  <bruno@clisp.org>
15002
15003         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
15004         Enable the function only if HAVE_INLINE.
15005         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
15006         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15007         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
15008         Enable the function only if HAVE_INLINE.
15009         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
15010         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15011         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
15012         Enable the function only if HAVE_INLINE.
15013         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
15014         Enable the function only if HAVE_INLINE.
15015         * modules/utf8-ucs4: Update.
15016         * modules/utf8-ucs4-unsafe: Update.
15017         * modules/utf16-ucs4: Update.
15018         * modules/utf16-ucs4-unsafe: Update.
15019         * modules/ucs4-utf8: Update.
15020         * modules/ucs4-utf16: Update.
15021
15022 2007-03-24  Bruno Haible  <bruno@clisp.org>
15023
15024         * lib/utf8-ucs4.h: Remove file.
15025         * lib/utf8-ucs4-unsafe.h: Remove file.
15026         * lib/utf16-ucs4.h: Remove file.
15027         * lib/utf16-ucs4-unsafe.h: Remove file.
15028         * lib/ucs4-utf8.h: Remove file.
15029         * lib/ucs4-utf16.h: Remove file.
15030         * lib/unistr.h: Include their previous contents.
15031         * m4/utf-ucs4.m4: Remove file.
15032         * m4/ucs4-utf.m4: Remove file.
15033         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
15034         (Depends-on): Add unistr/base.
15035         (configure.ac): Remove gl_UTF_UCS4.
15036         (Makefile.am): Update.
15037         (Include): Change to unistr.h.
15038         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
15039         (Depends-on): Add unistr/base.
15040         (configure.ac): Remove gl_UTF_UCS4.
15041         (Makefile.am): Update.
15042         (Include): Change to unistr.h.
15043         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
15044         (Depends-on): Add unistr/base.
15045         (configure.ac): Remove gl_UTF_UCS4.
15046         (Makefile.am): Update.
15047         (Include): Change to unistr.h.
15048         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
15049         (Depends-on): Add unistr/base.
15050         (configure.ac): Remove gl_UTF_UCS4.
15051         (Makefile.am): Update.
15052         (Include): Change to unistr.h.
15053         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
15054         (Depends-on): Add unistr/base.
15055         (configure.ac): Remove gl_UCS4_UTF.
15056         (Makefile.am): Update.
15057         (Include): Change to unistr.h.
15058         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
15059         (Depends-on): Add unistr/base.
15060         (configure.ac): Remove gl_UCS4_UTF.
15061         (Makefile.am): Update.
15062         (Include): Change to unistr.h.
15063         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
15064         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
15065         utf8-ucs4-unsafe.h.
15066         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
15067         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
15068         utf16-ucs4-unsafe.h.
15069         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
15070         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
15071         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
15072         * lib/unistr/u8-strchr.c: Likewise.
15073         * lib/unistr/u8-strrchr.c: Likewise.
15074         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
15075         * lib/unistr/u16-strchr.c: Likewise.
15076         * lib/unistr/u16-strrchr.c: Likewise.
15077         * lib/striconveh.c: Update.
15078         * lib/linebreak.c: Update.
15079
15080 2007-03-24  Bruno Haible  <bruno@clisp.org>
15081
15082         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
15083         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
15084
15085 2007-03-22  Bruno Haible  <bruno@clisp.org>
15086
15087         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
15088
15089 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
15090
15091         * MODULES.html.sh (File system functions): New module write-any-file.
15092         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
15093         * m4/write-any-file.m4: New files.
15094
15095 2007-03-23  Eric Blake  <ebb9@byu.net>
15096
15097         * gnulib-tool: Rearrange space-tab sequences, since some editors
15098         like to eat them.
15099
15100 2007-03-23  Eric Blake  <ebb9@byu.net>
15101
15102         * lib/version-etc.c (version_etc_va): Update license wording to
15103         be more concise.  Recommended by Richard Stallman.
15104
15105 2007-03-22  Bruno Haible  <bruno@clisp.org>
15106
15107         * lib/poll.c (MSG_PEEK): New fallback definition.
15108
15109 2007-03-22  Bruno Haible  <bruno@clisp.org>
15110
15111         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
15112         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
15113         (main): Update.
15114         Fixes a compilation error on BeOS.
15115
15116 2007-03-22  Bruno Haible  <bruno@clisp.org>
15117
15118         * modules/frexpl-tests: New file.
15119         * tests/test-frexpl.c: New file.
15120
15121         * modules/frexpl: New file.
15122         * m4/frexpl.m4: New file.
15123         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
15124         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
15125         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
15126         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
15127         (Depends-on): Add frexpl. Remove isnanl-nolibm.
15128         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
15129
15130 2007-03-22  Bruno Haible  <bruno@clisp.org>
15131
15132         * lib/frexpl.c: Share code with lib/frexp.c.
15133         * modules/mathl (Files): Add lib/frexp.c.
15134         (Depends-on): Add isnanl-nolibm.
15135
15136 2007-03-22  Bruno Haible  <bruno@clisp.org>
15137
15138         * modules/printf-frexp (Files): Add m4/frexp.m4.
15139         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
15140         only if the found frexp function actually works.
15141
15142 2007-03-22  Bruno Haible  <bruno@clisp.org>
15143
15144         * lib/frexp.c: Remove older implementation that uses divisions.
15145
15146 2007-03-21  Bruno Haible  <bruno@clisp.org>
15147
15148         * modules/frexp-tests: New file.
15149         * tests/test-frexp.c: New file.
15150
15151         * modules/frexp: New file.
15152         * lib/frexp.c: New file.
15153         * m4/frexp.m4: New file.
15154         * lib/math_.h (frexp): New declaration.
15155         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
15156         REPLACE_FREXP.
15157         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
15158
15159 2007-03-21  Bruno Haible  <bruno@clisp.org>
15160
15161         * modules/isnanl-tests: New file.
15162         * tests/test-isnanl.c: New file.
15163
15164         * modules/isnanl: New file.
15165         * lib/isnanl.h: New file.
15166         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
15167         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
15168         gl_FUNC_ISNANL_WORKS.
15169         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
15170         New macros.
15171
15172 2007-03-21  Bruno Haible  <bruno@clisp.org>
15173
15174         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
15175         lib/isnanl.h.
15176         (Include): Update.
15177         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
15178         * lib/vasnprintf.c: Update.
15179         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
15180         tests/test-isnanl.h, remove tests/test-isnanl.c.
15181         (Makefile.am): Update.
15182         * tests/test-isnanl-nolibm.c: New file.
15183         * tests/test-isnanl.h: New file.
15184         * tests/test-isnanl.c: Remove file.
15185
15186 2007-03-21  Jim Meyering  <jim@meyering.net>
15187
15188         When trying to open ".", treat ESTALE like EACCES.
15189         * lib/savewd.c (savewd_save): Resort to forking not just upon
15190         failure with EACCES, but also when errno is ESTALE.
15191
15192 2007-03-20  Bruno Haible  <bruno@clisp.org>
15193
15194         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
15195         Needed on AIX 5.1. Reported by Matthew Woehlke.
15196
15197 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15198
15199         Suggestions by Bruno Haible:
15200         * lib/acl-internal.h: Include "gettext.h" rather than rolling
15201         our own.
15202         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
15203         * modules/acl (Depends-on): Add gettext.
15204
15205 2007-03-19  Bruno Haible  <bruno@clisp.org>
15206
15207         * modules/iconvme: Remove file.
15208         * lib/iconvme.h: Remove file.
15209         * lib/iconvme.c: Remove file.
15210         * m4/iconvme.m4: Remove file.
15211
15212 2007-03-19  Bruno Haible  <bruno@clisp.org>
15213
15214         * doc/relocatable-maint.texi: Break long shell script line.
15215         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15216
15217 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15218
15219         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
15220         handle file_has_acl.
15221         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
15222         * lib/acl.c: Move header inclusions and related macro defns into
15223         lib/acl-internal.h.
15224         (S_ISLNK): Remove defn, since that's now done for us.
15225         (file_has_acl): Move to lib/file-has-acl.c.
15226         Call acl_trivial if available.  This is the crucial part of the fix.
15227         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
15228         shared within the library.  Rewrite a bit, partly to make it compatible
15229         with the GNU coding style.
15230         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
15231         Remove unnecessary double-quotes.
15232         Don't test for acl_to_text; the build will catch that.
15233         Replace acl_entries if it doesn't exist and it is needed.
15234         Check for -lsec and acl_trivial (as used on Solaris 10).
15235         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
15236         lib/file-has-acl.c.
15237         (Depends-on): Add sys_stat, for S_ISLNK.
15238
15239 2007-03-19  Ben Pfaff  <blp@gnu.org>
15240
15241         * doc/gnulib.texi: Fix typos.
15242         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15243
15244 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15245
15246         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
15247         If size is zero here, buf must be zero.
15248
15249 2007-03-19  Simon Josefsson  <simon@josefsson.org>
15250
15251         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
15252         <bruno@clisp.org>.
15253
15254 2007-03-18  Bruno Haible  <bruno@clisp.org>
15255
15256         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
15257         Suggested by Eric Blake.
15258
15259 2007-03-18  Ben Pfaff  <blp@gnu.org>
15260
15261         * doc/relocatable.texi: Recommend using as prefix a directory
15262         that does not exist and will never be created.  Based on
15263         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
15264         and others.
15265
15266 2007-03-17  Bruno Haible  <bruno@clisp.org>
15267
15268         * lib/fchownat.c: Include lchown.h.
15269
15270 2007-03-17  Bruno Haible  <bruno@clisp.org>
15271
15272         Fix endless loop when the given allocated size was > INT_MAX.
15273         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
15274         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
15275         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
15276         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
15277         * lib/sprintf.c (sprintf): Likewise.
15278
15279 2007-03-17  Bruno Haible  <bruno@clisp.org>
15280
15281         * tests/test-argp-2.sh (func_compare): Output a context diff.
15282
15283 2007-03-17  Bruno Haible  <bruno@clisp.org>
15284
15285         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
15286         locale's decimal-point character.
15287
15288 2007-03-17  Bruno Haible  <bruno@clisp.org>
15289
15290         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
15291         before comparing it. Needed because on some platforms (e.g. x86) a
15292         'long double' occupies less bytes than sizeof (long double).
15293
15294 2007-03-17  Bruno Haible  <bruno@clisp.org>
15295
15296         * tests/test-crc.c (main): Make printf statements 64-bit clean.
15297         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
15298         * tests/test-getaddrinfo.c (simple): Likewise.
15299         * tests/test-read-file.c (main): Likewise.
15300
15301 2007-03-17  Bruno Haible  <bruno@clisp.org>
15302
15303         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
15304
15305 2007-03-17  Bruno Haible  <bruno@clisp.org>
15306
15307         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
15308         unused variable.
15309
15310 2007-03-17  Bruno Haible  <bruno@clisp.org>
15311
15312         * tests/test-c-strcasecmp.c: Include c-strcase.h.
15313         * tests/test-c-strncasecmp.c: Likewise.
15314
15315 2007-03-17  Bruno Haible  <bruno@clisp.org>
15316
15317         * modules/stdlib (Depends-on): Add unistd.
15318         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
15319         Needed for MacOS X 10.3.
15320
15321 2007-03-17  Bruno Haible  <bruno@clisp.org>
15322
15323         * lib/unistr/u-strdup.h: Include <stdlib.h>.
15324
15325 2007-03-17  Bruno Haible  <bruno@clisp.org>
15326
15327         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
15328
15329 2007-03-17  Bruno Haible  <bruno@clisp.org>
15330
15331         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
15332         to reflect files copied from gnulib (with or without modifications).
15333         Suggested by Jim Meyering.
15334
15335 2007-03-17  Eric Blake  <ebb9@byu.net>
15336
15337         * NEWS: Document stdlib change from 2007-02-18.
15338
15339 2007-03-17  Jim Meyering  <jim@meyering.net>
15340
15341         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
15342         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
15343         someone uses a name containing shell meta-characters.
15344         Reported by Alfred M. Szmidt.
15345
15346         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
15347
15348 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15349
15350         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
15351         and copy gettext configuration files only if configure.ac contains
15352         a use of AM_GNU_GETTEXT_VERSION.
15353
15354 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15355
15356         * build-aux/bootstrap (gnulib_name): New variable.
15357         (gnulib_tool_options): Use it.
15358
15359 2007-03-13  Simon Josefsson  <simon@josefsson.org>
15360
15361         * tests/test-des.c: Use new namespace.
15362
15363 2007-03-15  Bruno Haible  <bruno@clisp.org>
15364
15365         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
15366         Reported by James Youngman <jay@gnu.org>.
15367
15368 2007-03-15  Bruno Haible  <bruno@clisp.org>
15369
15370         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
15371         declared prototype. Needed with cc on OSF/1 5.1.
15372
15373 2007-03-15  Bruno Haible  <bruno@clisp.org>
15374
15375         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
15376         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
15377         (struct gl_list_implementation): Add dispose_fn argument to the
15378         'create_empty', 'create' methods.
15379         (struct gl_list_impl_base): Add field 'dispose_fn'.
15380         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
15381         argument.
15382         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
15383         dispose_fn argument.
15384         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
15385         dispose_fn on the dropped values.
15386         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
15387         dispose_fn argument.
15388         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
15389         dropped values.
15390         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
15391         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15392         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
15393         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15394         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
15395         argument.
15396         (gl_tree_list_free): Call dispose_fn on the dropped values.
15397         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
15398         the dropped values.
15399         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
15400         Add dispose_fn argument.
15401         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
15402         Call dispose_fn on the dropped values.
15403         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
15404         Add dispose_fn argument.
15405         (gl_sublist_create): Initialize the 'dispose_fn' field.
15406         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
15407         * tests/test-array_list.c (main): Update.
15408         * tests/test-carray_list.c (main): Update.
15409         * tests/test-avltree_list.c (main): Update.
15410         * tests/test-rbtree_list.c (main): Update.
15411         * tests/test-avltreehash_list.c (main): Update.
15412         * tests/test-rbtreehash_list.c (main): Update.
15413         * tests/test-linked_list.c (main): Update.
15414         * tests/test-linkedhash_list.c (main): Update.
15415         * tests/test-array_oset.c (main): Update.
15416
15417 2007-03-15  Bruno Haible  <bruno@clisp.org>
15418
15419         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
15420         (gl_oset_create_empty): Add dispose_fn argument.
15421         (struct gl_oset_implementation): Add dispose_fn argument to
15422         'create_empty' method.
15423         (struct gl_oset_impl_base): Add dispose_fn field.
15424         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
15425         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
15426         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
15427         values.
15428         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
15429         (gl_tree_oset_free): Call dispose_fn on the dropped values.
15430         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15431         dropped value.
15432         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15433         dropped value.
15434         * tests/test-array_oset.c (main): Update.
15435         * tests/test-avltree_oset.c (main): Update.
15436         * tests/test-rbtree_oset.c (main): Update.
15437         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
15438
15439 2007-03-13  Bruno Haible  <bruno@clisp.org>
15440
15441         * tests/test-stdbool.c (i): Update after last patch.
15442
15443 2007-03-12  Bruno Haible  <bruno@clisp.org>
15444
15445         * lib/quotearg.c: Include <wctype.h> early, before the definition of
15446         the iswprint macro. Needed on Solaris 2.5.1.
15447
15448 2007-03-12  Bruno Haible  <bruno@clisp.org>
15449
15450         * tests/test-printf-frexp.c (main): Declare x as volatile.
15451
15452 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15453
15454         * doc/gnulib.texi (Build robot for gnulib): New section.
15455
15456 2007-03-12  Jim Meyering  <jim@meyering.net>
15457
15458         * build-aux/bootstrap: New file.
15459         * build-aux/bootstrap.conf: New file, from coreutils.
15460
15461 2007-03-11  Bruno Haible  <bruno@clisp.org>
15462
15463         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
15464
15465 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15466
15467         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
15468         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
15469         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
15470
15471 2007-03-11  Bruno Haible  <bruno@clisp.org>
15472
15473         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
15474         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
15475
15476 2007-03-11  Bruno Haible  <bruno@clisp.org>
15477
15478         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
15479         formula. Needed for SunPRO C 5.0.
15480
15481 2007-03-11  Bruno Haible  <bruno@clisp.org>
15482
15483         * modules/long-options (Depends-on): Add getopt.
15484
15485 2007-03-11  Bruno Haible  <bruno@clisp.org>
15486
15487         * modules/modechange (Depends-on): Add stdbool.
15488
15489 2007-03-11  Bruno Haible  <bruno@clisp.org>
15490
15491         * modules/i-ring (Depends-on): Add stdbool.
15492
15493 2007-03-11  Bruno Haible  <bruno@clisp.org>
15494
15495         * modules/gc-des (Depends-on): Add stdbool.
15496
15497 2007-03-11  Bruno Haible  <bruno@clisp.org>
15498
15499         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
15500
15501 2007-03-11  Bruno Haible  <bruno@clisp.org>
15502
15503         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
15504
15505 2007-03-11  Bruno Haible  <bruno@clisp.org>
15506
15507         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
15508
15509 2007-03-11  Bruno Haible  <bruno@clisp.org>
15510
15511         * lib/vasnprintf.c (sprintf): Undefine.
15512
15513 2007-03-11  Bruno Haible  <bruno@clisp.org>
15514
15515         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
15516         initializers in SunPRO C and Compaq C compilers.
15517
15518 2007-03-11  Bruno Haible  <bruno@clisp.org>
15519
15520         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
15521         decrementing code ANSI C compliant.
15522
15523 2007-03-11  Bruno Haible  <bruno@clisp.org>
15524
15525         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
15526         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
15527
15528 2007-03-11  Bruno Haible  <bruno@clisp.org>
15529
15530         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
15531         <stdbool.h> substitute doesn't pass.
15532
15533 2007-03-11  Bruno Haible  <bruno@clisp.org>
15534
15535         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
15536
15537 2007-03-11  Bruno Haible  <bruno@clisp.org>
15538
15539         * gnulib-tool (func_create_megatestdir): Create also an autobuild
15540         script, for submission to autobuild.josefsson.org.
15541
15542 2007-03-10  Bruno Haible  <bruno@clisp.org>
15543
15544         * modules/canonicalize-lgpl-tests: New file.
15545         * tests/test-canonicalize-lgpl.sh: New file.
15546         * tests/test-canonicalize-lgpl.c: New file.
15547
15548         * modules/c-strcase-tests: New file.
15549         * tests/test-c-strcase.sh: New file.
15550         * tests/test-c-strcasecmp.c: New file.
15551         * tests/test-c-strncasecmp.c: New file.
15552
15553         * modules/atexit-tests: New file.
15554         * tests/test-atexit.sh: New file.
15555         * tests/test-atexit.c: New file.
15556
15557 2007-03-10  Bruno Haible  <bruno@clisp.org>
15558
15559         * tests/test-binary-io.sh: Use temporary filenames that are not so
15560         likely to clash with those of other tests (in a parallel make).
15561         * tests/test-binary-io.c: Likewise.
15562
15563 2007-03-10  Bruno Haible  <bruno@clisp.org>
15564
15565         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
15566         fallback; use #error instead.
15567         Suggested by Simon Josefsson.
15568
15569 2007-03-10  Bruno Haible  <bruno@clisp.org>
15570
15571         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
15572         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
15573         first and the last.
15574
15575 2007-03-10  Bruno Haible  <bruno@clisp.org>
15576
15577         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
15578
15579 2007-03-10  Bruno Haible  <bruno@clisp.org>
15580
15581         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
15582         "make distcheck".
15583         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
15584         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
15585         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
15586
15587 2007-03-10  Bruno Haible  <bruno@clisp.org>
15588
15589         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
15590         variable.
15591         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
15592         variable.
15593
15594 2007-03-09  Eric Blake  <ebb9@byu.net>
15595         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
15596
15597         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
15598         types are not being provided by gnulib.
15599         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
15600         types are supported.
15601
15602 2007-03-10  Bruno Haible  <bruno@clisp.org>
15603
15604         * lib/stdio_.h (__attribute__): New macro.
15605         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
15606         vsprintf): Specify __attribute__ __format__ for GCC.
15607         Suggested by Eric Blake.
15608
15609 2007-03-09  Bruno Haible  <bruno@clisp.org>
15610
15611         * modules/printf-posix-tests: New file.
15612         * tests/test-printf-posix.sh: New file.
15613         * tests/test-printf-posix.c: New file.
15614
15615         * modules/printf-posix: New file.
15616         * lib/printf.c: New file.
15617         * m4/printf-posix-rpl.m4: New file.
15618         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
15619         REPLACE_PRINTF.
15620         * lib/stdio_.h (printf): New declaration.
15621         (format, __format__, ____printf____, ____scanf____, ____strftime____,
15622         ____strfmon____): New macros.
15623         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
15624         REPLACE_PRINTF.
15625
15626 2007-03-09  Bruno Haible  <bruno@clisp.org>
15627
15628         * tests/test-vasnprintf-posix2.sh: New file.
15629         * tests/test-vasnprintf-posix2.c: New file.
15630         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
15631         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
15632         (Makefile.am): Activate test-vasnprintf-posix2.sh.
15633
15634         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
15635         a locale dependent decimal point, rather than always '.'.
15636
15637 2007-03-09  Eric Blake  <ebb9@byu.net>
15638
15639         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
15640         spite of platforms like Tandem/NSK that define it to -1.
15641
15642 2007-03-08  Bruno Haible  <bruno@clisp.org>
15643
15644         * modules/vprintf-posix-tests: New file.
15645         * tests/test-vprintf-posix.sh: New file.
15646         * tests/test-vprintf-posix.c: New file.
15647         * tests/test-printf-posix.h: New file.
15648
15649         * modules/vprintf-posix: New file.
15650         * lib/vprintf.c: New file.
15651         * m4/vprintf-posix.m4: New file.
15652         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
15653         REPLACE_VPRINTF.
15654         * lib/stdio_.h (vprintf): New declaration.
15655         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
15656         REPLACE_VPRINTF.
15657
15658 2007-03-08  Bruno Haible  <bruno@clisp.org>
15659
15660         * modules/fprintf-posix-tests: New file.
15661         * tests/test-fprintf-posix.sh: New file.
15662         * tests/test-fprintf-posix.c: New file.
15663
15664         * modules/fprintf-posix: New file.
15665         * lib/fprintf.c: New file.
15666         * m4/fprintf-posix.m4: New file.
15667         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
15668         REPLACE_FPRINTF.
15669         * lib/stdio_.h (fprintf): New declaration.
15670         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
15671         REPLACE_FPRINTF.
15672
15673 2007-03-08  Bruno Haible  <bruno@clisp.org>
15674
15675         * modules/vfprintf-posix-tests: New file.
15676         * tests/test-vfprintf-posix.sh: New file.
15677         * tests/test-vfprintf-posix.c: New file.
15678         * tests/test-fprintf-posix.h: New file.
15679         * tests/test-fprintf-posix.out: New file.
15680
15681         * modules/vfprintf-posix: New file.
15682         * lib/vfprintf.c: New file.
15683         * m4/vfprintf-posix.m4: New file.
15684         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
15685         REPLACE_VFPRINTF.
15686         * lib/stdio_.h (vfprintf): New declaration.
15687         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
15688         REPLACE_VFPRINTF.
15689
15690 2007-03-08  Bruno Haible  <bruno@clisp.org>
15691
15692         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
15693
15694 2007-03-08  Bruno Haible  <bruno@clisp.org>
15695
15696         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
15697         instead of 'expr' invocations.
15698         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15699         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15700         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15701         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15702         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15703         Suggested by Paul Eggert.
15704
15705 2007-03-08  Bruno Haible  <bruno@clisp.org>
15706
15707         * modules/fseterr-tests: New file.
15708         * tests/test-fseterr.c: New file.
15709
15710         * modules/fseterr: New file.
15711         * lib/fseterr.h: New file.
15712         * lib/fseterr.c: New file.
15713
15714 2007-03-08  Bruno Haible  <bruno@clisp.org>
15715
15716         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
15717         * lib/getopt_.h: Likewise.
15718         * lib/mbswidth.h: Likewise.
15719         * lib/setenv.h: Likewise.
15720         * lib/vasnprintf.h: Likewise.
15721         * lib/vasprintf.h: Likewise.
15722         * lib/verror.h: Likewise.
15723         * lib/xsetenv.h: Likewise.
15724         * lib/xvasprintf.h: Likewise.
15725
15726 2007-03-08  Jim Meyering  <jim@meyering.net>
15727
15728         * users.txt: Add parted.
15729
15730         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
15731
15732 2007-03-07  Bruno Haible  <bruno@clisp.org>
15733
15734         * m4/printf.m4: Make the shell script snippets copy&pastable.
15735
15736 2007-03-02  Bruno Haible  <bruno@clisp.org>
15737
15738         * lib/netinet_in_.h: New file.
15739         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
15740         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
15741         * modules/netinet_in (Files): Add lib/netinet_in_.h.
15742         (Depends-on): Add absolute-header.
15743         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
15744         into netinet/in.h.
15745
15746 2007-03-03  Bruno Haible  <bruno@clisp.org>
15747
15748         * lib/sys_select_.h: New file.
15749         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
15750         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
15751         * modules/sys_select (Files): Add lib/sys_select_.h.
15752         (Depends-on): Add absolute-header.
15753         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
15754         into sys/select.h.
15755
15756 2007-03-02  Bruno Haible  <bruno@clisp.org>
15757
15758         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
15759         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
15760         values.
15761         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
15762         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
15763         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
15764         * modules/sys_socket (Depends-on): Add absolute-header.
15765         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
15766         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
15767         (Include): Remove requirement of inclusion of <sys/types.h>.
15768
15769 2007-03-02  Bruno Haible  <bruno@clisp.org>
15770
15771         * lib/byteswap_.h (bswap_32): Fix formula.
15772
15773 2007-03-06  Bruno Haible  <bruno@clisp.org>
15774
15775         * modules/sprintf-posix-tests: New file.
15776         * tests/test-sprintf-posix.c: New file.
15777
15778         * modules/sprintf-posix: New file.
15779         * lib/sprintf.c: New file.
15780         * m4/sprintf-posix.m4: New file.
15781         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
15782         REPLACE_SPRINTF.
15783         * lib/stdio_.h (sprintf): New declaration.
15784         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
15785         REPLACE_SPRINTF.
15786
15787 2007-03-06  Bruno Haible  <bruno@clisp.org>
15788
15789         * modules/vsprintf-posix-tests: New file.
15790         * tests/test-vsprintf-posix.c: New file.
15791         * tests/test-sprintf-posix.h: New file.
15792
15793         * modules/vsprintf-posix: New file.
15794         * lib/vsprintf.c: New file.
15795         * m4/vsprintf-posix.m4: New file.
15796         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
15797         REPLACE_VSPRINTF.
15798         * lib/stdio_.h (vsprintf): New declaration.
15799         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
15800         REPLACE_VSPRINTF.
15801
15802 2007-03-06  Bruno Haible  <bruno@clisp.org>
15803
15804         * modules/vsnprintf (Depend-on): Remove minmax.
15805
15806 2007-03-06  Bruno Haible  <bruno@clisp.org>
15807
15808         * modules/snprintf-posix-tests: New file.
15809         * tests/test-snprintf-posix.c: New file.
15810
15811         * modules/snprintf-posix: New file.
15812         * m4/snprintf-posix.m4: New file.
15813         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
15814         gl_FUNC_SNPRINTF.
15815         (gl_FUNC_SNPRINTF): Invoke it.
15816         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
15817         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
15818         is set.
15819         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
15820
15821 2007-03-06  Bruno Haible  <bruno@clisp.org>
15822
15823         * modules/vsnprintf-posix-tests: New file.
15824         * tests/test-vsnprintf-posix.c: New file.
15825         * tests/test-snprintf-posix.h: New file.
15826
15827         * modules/vsnprintf-posix: New file.
15828         * m4/vsnprintf-posix.m4: New file.
15829         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
15830         gl_FUNC_VSNPRINTF.
15831         (gl_FUNC_VSNPRINTF): Invoke it.
15832         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
15833         * lib/stdio_.h (vsnprintf): Define as a replacement if
15834         REPLACE_VSNPRINTF is set.
15835         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
15836
15837 2007-03-06  Bruno Haible  <bruno@clisp.org>
15838
15839         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
15840         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
15841
15842 2007-03-06  Bruno Haible  <bruno@clisp.org>
15843
15844         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
15845         (asinl): Declare also if HAVE_DECL_ASINL is set.
15846         (atanl): Declare also if HAVE_DECL_ATANL is set.
15847         (ceill): Declare also if HAVE_DECL_CEILL is set.
15848         (cosl): Declare also if HAVE_DECL_COSL is set.
15849         (expl): Declare also if HAVE_DECL_EXPL is set.
15850         (floorl): Declare also if HAVE_DECL_FLOORL is set.
15851         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
15852         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
15853         (logl): Declare also if HAVE_DECL_LOGL is set.
15854         (sinl): Declare also if HAVE_DECL_SINL is set.
15855         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
15856         (tanl): Declare also if HAVE_DECL_TANL is set.
15857         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
15858         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
15859         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
15860         declaration of frexpl, ldexpl.
15861         * modules/printf-frexpl (Depends-on): Add math.
15862         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
15863
15864 2007-03-05  Bruno Haible  <bruno@clisp.org>
15865
15866         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
15867         frexpl and ldexpl are declared.
15868         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
15869
15870 2007-03-05  Bruno Haible  <bruno@clisp.org>
15871
15872         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
15873         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
15874
15875 2007-03-05  Bruno Haible  <bruno@clisp.org>
15876
15877         * lib/stdio_.h: Include <stddef.h>.
15878
15879 2007-03-05  Bruno Haible  <bruno@clisp.org>
15880
15881         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
15882
15883 2007-03-05  Bruno Haible  <bruno@clisp.org>
15884
15885         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
15886         NetBSD 4, from Ralf Wildenhues.
15887
15888 2007-03-04  Bruno Haible  <bruno@clisp.org>
15889
15890         * lib/vasprintf.h: Update #if logic for the case when the functions
15891         exist but are overridden.
15892
15893 2007-03-04  Bruno Haible  <bruno@clisp.org>
15894
15895         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
15896         implementations: glibc-2.4 and MacOS X 10.3.
15897         * tests/test-vasnprintf-posix.c (test_function): Test also the case
15898         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
15899         * tests/test-vasprintf-posix.c (test_function): Likewise.
15900
15901 2007-03-04  Bruno Haible  <bruno@clisp.org>
15902
15903         * modules/vasprintf-posix-tests: New file.
15904         * tests/test-vasprintf-posix.c: New file.
15905
15906         * modules/vasprintf-posix: New file.
15907         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
15908         defined.
15909         * m4/vasprintf-posix.m4: New file.
15910         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
15911         gl_FUNC_VASPRINTF.
15912         (gl_FUNC_VASPRINTF): Invoke it.
15913         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
15914         here.
15915         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
15916
15917 2007-03-04  Bruno Haible  <bruno@clisp.org>
15918
15919         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
15920         REPLACE_GETTIMEOFDAY.
15921         * modules/sys_time (Makefile.am): Likewise.
15922         * m4/sys_time_h.m4: Likewise.
15923         * m4/gettimeofday.m4: Likewise.
15924
15925 2007-03-04  Bruno Haible  <bruno@clisp.org>
15926
15927         * modules/vasnprintf-posix-tests: New file.
15928         * tests/test-vasnprintf-posix.c: New file.
15929
15930         * modules/vasnprintf-posix: New file.
15931         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
15932         printf-frexpl.h.
15933         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
15934         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
15935         REPLACE_VASNPRINTF is defined.
15936         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
15937         gl_FUNC_VASNPRINTF.
15938         (gl_FUNC_VASNPRINTF): Invoke it.
15939         * m4/vasnprintf-posix.m4: New file.
15940         * m4/printf.m4: New file.
15941
15942 2007-03-04  Bruno Haible  <bruno@clisp.org>
15943
15944         Compile progreloc.c only if --enable-relocatable is specified.
15945         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
15946         if --enable-relocatable was specified.
15947         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
15948         lib_SOURCES.
15949
15950 2007-03-04  Jim Meyering  <jim@meyering.net>
15951
15952         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
15953         Use it consistently, rather than enumerating errno constants.
15954
15955 2007-03-04  Bruno Haible  <bruno@clisp.org>
15956
15957         * modules/xvasprintf-tests: New file.
15958         * tests/test-xvasprintf.c: New file.
15959
15960         * modules/vasprintf-tests: New file.
15961         * tests/test-vasprintf.c: New file.
15962
15963         * modules/vasnprintf-tests: New file.
15964         * tests/test-vasnprintf.c: New file.
15965
15966         * modules/vsnprintf-tests: New file.
15967         * tests/test-vsnprintf.c: New file.
15968
15969         * modules/snprintf-tests: New file.
15970         * tests/test-snprintf.c: New file.
15971
15972 2007-03-04  Bruno Haible  <bruno@clisp.org>
15973
15974         Compile relocatable.c only if --enable-relocatable is specified.
15975         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
15976         gl_RELOCATABLE_LIBRARY.
15977         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
15978         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
15979         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
15980         gl_RELOCATABLE_LIBRARY.
15981         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
15982         (Makefile.am): Remove lib_SOURCES.
15983         * modules/relocatable-lib-lgpl (configure.ac): Invoke
15984         gl_RELOCATABLE_LIBRARY.
15985         (Makefile.am): Remove lib_SOURCES.
15986         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
15987         always.
15988         * modules/relocatable-prog-wrapper (configure.ac): Invoke
15989         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
15990
15991 2007-03-04  Bruno Haible  <bruno@clisp.org>
15992
15993         * modules/argmatch-tests: New file.
15994         * tests/test-argmatch.c: New file.
15995
15996         * tests/test-allocsa.c (main): Halve the number of loop runs.
15997
15998         * modules/alloca-opt-tests: New file.
15999         * tests/test-alloca-opt.c: New file.
16000
16001 2007-03-04  Jim Meyering  <jim@meyering.net>
16002
16003         Work around difference between Linux ACLs and Solaris 10 ZFS.
16004         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
16005         for EINVAL.
16006
16007 2007-03-03  Bruno Haible  <bruno@clisp.org>
16008
16009         * modules/relocatable-prog (Depends-on): Add back progreloc's
16010         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
16011
16012 2007-03-03  Bruno Haible  <bruno@clisp.org>
16013
16014         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
16015         * modules/relocatable-lib: New file.
16016
16017 2007-03-03  Bruno Haible  <bruno@clisp.org>
16018
16019         * modules/relocatable-prog: Renamed from modules/relocatable.
16020         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
16021
16022 2007-03-03  Bruno Haible  <bruno@clisp.org>
16023
16024         * modules/relocatable-script (Files): Add doc/relocatable.texi,
16025         m4/relocatable-lib.m4.
16026         (Depends-on): Remove 'relocatable'.
16027         (configure.ac): Add gl_RELOCATABLE_NOP.
16028
16029 2007-03-03  Bruno Haible  <bruno@clisp.org>
16030
16031         * modules/relocatable-prog-wrapper: New file.
16032         * modules/relocatable (Depends-on): Add it. Remove all other
16033         dependencies except progname.
16034         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
16035
16036         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
16037         (gl_FUNC_STRERROR): Nop.
16038         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
16039
16040         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
16041         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
16042
16043         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
16044         (gl_FUNC_READLINK): Update.
16045
16046         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
16047
16048 2007-03-03  Bruno Haible  <bruno@clisp.org>
16049
16050         * lib/xreadlink.c: Include <unistd.h> unconditionally.
16051         * modules/xreadlink (Depends-on): Add unistd.
16052         * modules/xreadlink-with-size (Depends-on): Likewise.
16053
16054 2007-03-03  Bruno Haible  <bruno@clisp.org>
16055
16056         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
16057         extracted from gt_FUNC_SETENV.
16058         (gt_FUNC_SETENV): Remove macro.
16059         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
16060         remove gt_FUNC_SETENV.
16061
16062 2007-03-03  Bruno Haible  <bruno@clisp.org>
16063
16064         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
16065         ENABLE_RELOCATABLE here.
16066         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
16067
16068 2007-03-03  Bruno Haible  <bruno@clisp.org>
16069
16070         * modules/rbtreehash-list-tests (Depends-on): Add progname.
16071         * tests/test-rbtreehash_list.c: Include progname.h.
16072         (main): Call set_program_name.
16073
16074         * modules/rbtree-oset-tests (Depends-on): Add progname.
16075         * tests/test-rbtree_oset.c: Include progname.h.
16076         (main): Call set_program_name.
16077
16078         * modules/rbtree-list-tests (Depends-on): Add progname.
16079         * tests/test-rbtree_list.c: Include progname.h.
16080         (main): Call set_program_name.
16081
16082         * modules/linked-list-tests (Depends-on): Add progname.
16083         * tests/test-linked_list.c: Include progname.h.
16084         (main): Call set_program_name.
16085
16086 2007-03-03  Bruno Haible  <bruno@clisp.org>
16087
16088         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
16089         All uses of __restrict changed to _Restrict_.
16090         * lib/glob_.h (__restrict): Remove macro.
16091
16092 2007-03-02  Bruno Haible  <bruno@clisp.org>
16093
16094         * modules/gettext (configure.ac): Require gettext infrastructure
16095         from version 0.16.1.
16096
16097 2007-03-02  Bruno Haible  <bruno@clisp.org>
16098
16099         * modules/linkedhash-list-tests (Depends-on): Add progname.
16100         * tests/test-linkedhash_list.c: Include progname.h.
16101         (main): Call set_program_name.
16102
16103         * modules/carray-list-tests (Depends-on): Add progname.
16104         * tests/test-carray_list.c: Include progname.h.
16105         (main): Call set_program_name.
16106
16107         * modules/avltreehash-list-tests (Depends-on): Add progname.
16108         * tests/test-avltreehash_list.c: Include progname.h.
16109         (main): Call set_program_name.
16110
16111         * modules/avltree-oset-tests (Depends-on): Add progname.
16112         * tests/test-avltree_oset.c: Include progname.h.
16113         (main): Call set_program_name.
16114
16115         * modules/avltree-list-tests (Depends-on): Add progname.
16116         * tests/test-avltree_list.c: Include progname.h.
16117         (main): Call set_program_name.
16118
16119         * modules/array-oset-tests (Depends-on): Add progname.
16120         * tests/test-array_oset.c: Include progname.h.
16121         (main): Call set_program_name.
16122
16123         * modules/array-list-tests (Depends-on): Add progname.
16124         * tests/test-array_list.c: Include progname.h.
16125         (main): Call set_program_name.
16126
16127         * modules/argp-tests (Depends-on): Add progname.
16128         * tests/test-argp.c: Include argp.h first. Include progname.h.
16129         (main): Call set_program_name.
16130
16131 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
16132
16133         * doc/gnulib-tool.texi (Initial import): Reword description of
16134         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
16135         limited effect even if defined after the first system include.
16136
16137 2007-03-01  Bruno Haible  <bruno@clisp.org>
16138
16139         * build-aux/config.libpath: Update to libtool-1.5.22.
16140         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16141
16142 2007-03-01  Bruno Haible  <bruno@clisp.org>
16143
16144         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
16145         foo_CFLAGS.
16146         Reported by Ralf Wildenhues.
16147
16148 2007-03-01  Bruno Haible  <bruno@clisp.org>
16149
16150         * build-aux/install-reloc: Remove object files left over by some
16151         compilers.
16152         Reported by Ralf Wildenhues.
16153
16154 2007-03-01  Bruno Haible  <bruno@clisp.org>
16155
16156         * build-aux/install-reloc: Break long lines.
16157
16158 2007-03-01  Bruno Haible  <bruno@clisp.org>
16159
16160         * doc/relocatable.texi: Document that it may not work on OpenBSD.
16161         Reported by Ralf Wildenhues.
16162
16163 2007-03-01  Bruno Haible  <bruno@clisp.org>
16164
16165         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
16166         include ordering constraints.
16167
16168 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
16169
16170         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
16171         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
16172         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
16173         as another example.
16174         * lib/time_.h: Fix misspelling.
16175         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
16176         Require gl_HEADER_TIME_H_DEFAULTS.
16177         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
16178         * m4/time_r.m4 (gl_TIME_R): Likewise.
16179         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
16180
16181 2007-03-01  Bruno Haible  <bruno@clisp.org>
16182
16183         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
16184         * m4/utimens.m4 (gl_UTIMENS): Likewise.
16185
16186 2007-03-01  Jim Meyering  <jim@meyering.net>
16187
16188         * modules/xreadlink (Maintainer): Add my name.
16189         * modules/xreadlink-with-size (Depends-on): Alphabetize.
16190
16191 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
16192             Bruno Haible  <bruno@clisp.org>
16193
16194         * build-aux/install-reloc: Compile also c-ctype.c.
16195         * build-aux/relocatable.sh.in: New file.
16196         * doc/relocatable.texi: New file.
16197         * doc/relocatable-maint.texi: New file.
16198         * doc/gnulib.texi: Include relocatable-maint.texi.
16199         * lib/progreloc.c: Include unistd.h unconditionally.
16200         * lib/relocwrapper.c: Include unistd.h unconditionally.
16201         Include c-ctype.h.
16202         (add_dotbin): Use c_tolower.
16203         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
16204         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
16205         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
16206         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
16207         to m4/relocatable-lib.m4.
16208         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
16209         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
16210         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
16211         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
16212         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
16213         * modules/relocatable: New file.
16214         * modules/relocatable-lib: New file.
16215         * modules/relocatable-script: New file.
16216
16217 2007-02-28  Bruno Haible  <bruno@clisp.org>
16218
16219         Import --enable-relocatable infrastructure.
16220         * build-aux/config.libpath: New file, from GNU gettext.
16221         * build-aux/install-reloc: New file, from GNU gettext.
16222         * build-aux/reloc-ldflags: New file, from GNU gettext.
16223         * lib/relocatable.h: New file, from GNU gettext.
16224         * lib/relocatable.c: New file, from GNU gettext.
16225         * lib/relocwrapper.c: New file, from GNU gettext.
16226         * m4/relocatable.m4: New file, from GNU gettext.
16227
16228 2007-02-28  Bruno Haible  <bruno@clisp.org>
16229
16230         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
16231
16232         * modules/xreadlink: New file, from GNU gettext with modifications.
16233         * lib/xreadlink.c: New file, from GNU gettext.
16234         * lib/xreadlink.h: Add comments.
16235         (xreadlink): New declaration.
16236
16237         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
16238         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
16239         lib/xreadlink-with-size.c.
16240         (configure.ac): Remove gl_XREADLINK invocation.
16241         (Makefile.am): Augment lib_SOURCES.
16242         * m4/xreadlink.m4: Remove file.
16243         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
16244         (xreadlink_with_size): Renamed from xreadink.
16245         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
16246         * modules/canonicalize (Depends-on): Replace xreadlink with
16247         xreadlink-with-size.
16248         * lib/canonicalize.c (canonicalize_filename_mode): Update.
16249
16250 2007-02-25  Jim Meyering  <jim@meyering.net>
16251
16252         * build-aux/announce-gen: When complaining about excess arguments,
16253         list them.
16254
16255 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
16256
16257         * README: Document signed integer overflow situation more
16258         accurately.
16259
16260 2007-02-25  Bruno Haible  <bruno@clisp.org>
16261
16262         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
16263         'a' or 'A' conversion.
16264
16265 2007-02-25  Bruno Haible  <bruno@clisp.org>
16266
16267         * modules/filename: Renamed from modules/pathname.
16268         (Files): Replace lib/pathname.h with lib/filename.h. Replace
16269         lib/concatpath.c with lib/concat-filename.c.
16270         (Makefile.am): Update.
16271         (Include): Replace pathname.h with filename.h.
16272         * lib/filename.h: Renamed from lib/pathname.h.
16273         (concatenated_filename): Renamed from concatenated_pathname.
16274         * lib/concat-filename.c: Renamed from lib/concatpath.c.
16275         (concatenated_filename): Renamed from concatenated_pathname.
16276         * lib/findprog.c: Include filename.h instead of pathname.h.
16277         (find_in_path): Update.
16278         * lib/javacomp.c: Include filename.h instead of pathname.h.
16279         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
16280         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
16281         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
16282         is_oldgcj_14_13_usable, is_javac_usable): Update.
16283         * lib/javaexec.c: Include filename.h instead of pathname.h.
16284         (execute_java_class): Update.
16285         * modules/findprog: Update.
16286         * modules/javacomp: Update.
16287         * modules/javaexec: Update.
16288         * MODULES.html.sh (File system functions): Add 'filename', remove
16289         'pathname'.
16290
16291 2007-02-25  Bruno Haible  <bruno@clisp.org>
16292
16293         * modules/printf-frexpl-tests: New file.
16294         * tests/test-printf-frexpl.c: New file.
16295
16296         * modules/printf-frexpl: New file.
16297         * lib/printf-frexpl.h: New file.
16298         * lib/printf-frexpl.c: New file.
16299         * m4/printf-frexpl.m4: New file.
16300
16301 2007-02-25  Bruno Haible  <bruno@clisp.org>
16302
16303         * modules/printf-frexp-tests: New file.
16304         * tests/test-printf-frexp.c: New file.
16305
16306         * modules/printf-frexp: New file.
16307         * lib/printf-frexp.h: New file.
16308         * lib/printf-frexp.c: New file.
16309         * m4/printf-frexp.m4: New file.
16310
16311 2007-02-25  Bruno Haible  <bruno@clisp.org>
16312
16313         Assume automake >= 1.10 for the tests.
16314         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
16315         * modules/arctwo-tests: Likewise.
16316         * modules/argp-tests: Likewise.
16317         * modules/avltree-list-tests: Likewise.
16318         * modules/avltree-oset-tests: Likewise.
16319         * modules/avltreehash-list-tests: Likewise.
16320         * modules/carray-list-tests: Likewise.
16321         * modules/crc-tests: Likewise.
16322         * modules/des-tests: Likewise.
16323         * modules/gc-arcfour-tests: Likewise.
16324         * modules/gc-arctwo-tests: Likewise.
16325         * modules/gc-des-tests: Likewise.
16326         * modules/gc-hmac-md5-tests: Likewise.
16327         * modules/gc-hmac-sha1-tests: Likewise.
16328         * modules/gc-md2-tests: Likewise.
16329         * modules/gc-md4-tests: Likewise.
16330         * modules/gc-md5-tests: Likewise.
16331         * modules/gc-pbkdf2-sha1-tests: Likewise.
16332         * modules/gc-rijndael-tests: Likewise.
16333         * modules/gc-sha1-tests: Likewise.
16334         * modules/gc-tests: Likewise.
16335         * modules/getaddrinfo-tests: Likewise.
16336         * modules/hmac-md5-tests: Likewise.
16337         * modules/hmac-sha1-tests: Likewise.
16338         * modules/linked-list-tests: Likewise.
16339         * modules/linkedhash-list-tests: Likewise.
16340         * modules/lock-tests: Likewise.
16341         * modules/md2-tests: Likewise.
16342         * modules/md4-tests: Likewise.
16343         * modules/md5-tests: Likewise.
16344         * modules/rbtree-list-tests: Likewise.
16345         * modules/rbtree-oset-tests: Likewise.
16346         * modules/rbtreehash-list-tests: Likewise.
16347         * modules/read-file-tests: Likewise.
16348         * modules/rijndael-tests: Likewise.
16349         * modules/stdint-tests: Likewise.
16350         * modules/tls-tests: Likewise.
16351
16352 2007-02-24  Bruno Haible  <bruno@clisp.org>
16353
16354         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
16355         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
16356         function; instead check whether isnan with a double argument links.
16357         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
16358         function; instead check whether isnan with a 'long double' argument
16359         links.
16360         Reported by Eric Blake <ebb9@byu.net>.
16361
16362 2007-02-24  Bruno Haible  <bruno@clisp.org>
16363
16364         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
16365         defined.
16366         * lib/isnanl.c: Remove all code. Just include isnan.c.
16367         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
16368
16369 2007-02-25  Jim Meyering  <jim@meyering.net>
16370
16371         Avoid conflicting types for 'unsetenv' on FreeBSD.
16372         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
16373         conflicting with FreeBSD's (5.0 and 6.1) function declaration
16374         in stdlib.h.
16375
16376 2007-02-24  Bruno Haible  <bruno@clisp.org>
16377
16378         * modules/isnanl-nolibm-tests: New file.
16379         * tests/test-isnanl.c: New file.
16380
16381         * modules/isnanl-nolibm: New file.
16382         * lib/isnanl.h: New file.
16383         * lib/isnanl.c: New file.
16384         * m4/isnanl.m4: New file.
16385
16386 2007-02-24  Bruno Haible  <bruno@clisp.org>
16387
16388         * modules/isnan-nolibm-tests: New file.
16389         * tests/test-isnan.c: New file.
16390
16391         * modules/isnan-nolibm: New file.
16392         * lib/isnan.h: New file.
16393         * lib/isnan.c: New file.
16394         * m4/isnan.m4: New file.
16395
16396 2007-02-24  Bruno Haible  <bruno@clisp.org>
16397
16398         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
16399         assume that an exponent fits in 20 bits.
16400
16401 2007-02-24  Jim Meyering  <jim@meyering.net>
16402
16403         * m4/regex.m4: Update the description of the configure-time option,
16404         --without-included-regex, to state accurately what the defaults are,
16405         and perhaps to give people an idea why using this option is risky.
16406
16407 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
16408
16409         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
16410         loops on small arguments.  This attempts to avoid the problem
16411         Bruno Haible reported for AIX 4.3.2 in
16412         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
16413
16414 2007-02-23  Bruno Haible  <bruno@clisp.org>
16415
16416         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
16417         Needed for help2man.
16418
16419 2007-02-23  Karl Berry  <karl@gnu.org>
16420
16421         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
16422         exists, foo.h should be cvs-ignored, not committed.
16423
16424 2007-02-23  Eric Blake  <ebb9@byu.net>
16425
16426         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
16427         * lib/stat-time.h (includes): Likewise.
16428         * lib/utimecmp.c (includes): Likewise.
16429         * lib/utimens.h (includes): Likewise.
16430         * lib/getdate.y (includes): Also include "timespec.h" for use
16431         internal to the module.
16432         * modules/utimens (Depends-on): Revert yesterday's patch.
16433         * modules/nanosleep (Depends-on): Add missing dependency.
16434
16435 2007-02-22  Bruno Haible  <bruno@clisp.org>
16436
16437         * lib/glob.c: Don't include getlogin_r.h.
16438
16439 2007-02-22  Jim Meyering  <jim@meyering.net>
16440
16441         * modules/utimens (Depends-on): Add timespec, required for
16442         utimens.h's inclusion of timespec.h.
16443
16444 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
16445
16446         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
16447         long unreadable paths in GNU/Linux.  Problem reported by Andreas
16448         Schwab in
16449         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
16450         I'll try to think of a better way to fix the Solaris problem.
16451
16452         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
16453         like glibc; on Solaris 10, it fails with errno == EINVAL.
16454         POSIX says the behavior is unspecified if the first argument is NULL,
16455         so play it safe and never pass NULL to the system getcwd.
16456
16457 2007-02-21  Jim Meyering  <jim@meyering.net>
16458
16459         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
16460         of gettimeofday.  It would conflict with the one now always
16461         provided via sys_time_.h.  Reported by Matthew Woehlke, as
16462         an IRIX 6.5 build failure.
16463
16464 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
16465
16466         Minor fixups to port to Solaris 10 with Sun C 5.8.
16467         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
16468         * modules/getcwd (Depends-on): Add dirfd.
16469         * lib/putenv.c (putenv): #undef it.
16470         (rpl_putenv): New decl.
16471         (malloc, free): Include <stdlib.h> rather than prototyping separately.
16472
16473 2007-02-20  Bruno Haible  <bruno@clisp.org>
16474
16475         * modules/stdio-tests: New file.
16476         * tests/test-stdio.c: New file.
16477
16478         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
16479         (Depends-on): Add stdio.
16480         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16481         (Include): Use <stdio.h> instead of vsnprintf.h.
16482         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16483         HAVE_DECL_VSNPRINTF.
16484         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
16485
16486         * modules/snprintf (Files): Remove lib/snprintf.h.
16487         (Depends-on): Add stdio.
16488         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16489         (Include): Use <stdio.h> instead of snprintf.h.
16490         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16491         HAVE_DECL_SNPRINTF.
16492         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
16493         * lib/getaddrinfo.c: Likewise.
16494
16495         * modules/stdio: New file.
16496         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
16497         * lib/snprintf.h: Remove file.
16498         * lib/vsnprintf.h: Remove file.
16499         * lib/.cppi-disable: Remove snprintf.h.
16500         * m4/stdio_h.m4: New file.
16501         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
16502
16503 2007-02-20  Jim Meyering  <jim@meyering.net>
16504
16505         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
16506         used by e.g., mingw.  From Bruno Haible.
16507
16508 2007-02-19  Bruno Haible  <bruno@clisp.org>
16509
16510         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
16511         warnings.
16512         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16513
16514 2007-02-19  Bruno Haible  <bruno@clisp.org>
16515
16516         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
16517         from mingw users.
16518
16519 2007-02-19  Bruno Haible  <bruno@clisp.org>
16520
16521         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
16522         warnings.
16523         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
16524
16525 2007-02-19  Jim Meyering  <jim@meyering.net>
16526
16527         Don't use FD after a successful "fdopendir (fd)".
16528         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
16529         Reset it by calling dirfd on the just-obtained DIR*.
16530
16531         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
16532         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
16533
16534 2007-02-18  Bruno Haible  <bruno@clisp.org>
16535
16536         * lib/readlink.c: Include <unistd.h>.
16537         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
16538         HAVE_READLINK.
16539         * modules/readlink (Depends-on): Add unistd.
16540         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16541         (Include): Add <unistd.h>.
16542
16543         * lib/getlogin_r.h: Remove file.
16544         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
16545         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
16546         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
16547         HAVE_DECL_GETLOGIN_R.
16548         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
16549         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16550         (Include): Use <unistd.h> instead of getlogin_r.h.
16551
16552         * lib/getcwd.h: Remove file.
16553         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
16554         * lib/xgetcwd.c: Likewise.
16555         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
16556         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
16557         * modules/getcwd (Files): Remove lib/getcwd.h.
16558         (Depends-on): Add unistd.
16559         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16560         (Include): Use <unistd.h> instad of getcwd.h.
16561
16562         * lib/ftruncate.c: Include <unistd.h> first.
16563         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
16564         Set HAVE_FTRUNCATE.
16565         * modules/ftruncate (Depends-on): Add unistd.
16566         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16567
16568         * lib/fchdir.c: Include <unistd.h> first.
16569         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
16570         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
16571         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
16572         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16573         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
16574
16575         * lib/dup2.c: Include <unistd.h> first.
16576         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
16577         HAVE_DUP2.
16578         * modules/dup2 (Depends-on): Add unistd.
16579         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16580
16581         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
16582         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
16583         REPLACE_CHOWN. Don't define chown as a macro here.
16584         * modules/chown (Depends-on): Add unistd.
16585         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16586
16587         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
16588         Add definition for GL_LINK_WARNING.
16589         (chown, dup2): New declarations.
16590         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
16591         link warning.
16592         (ftruncate): New declaration.
16593         (getcwd): New declaration, taken from old getcwd.h.
16594         (getlogin_r): New declaration, taken from old getlogin_r.h.
16595         (readlink): New declaration.
16596         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
16597         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
16598         (gl_PREREQ_UNISTD): Remove macro.
16599         (gl_UNISTD_MODULE_INDICATOR): New macro.
16600         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
16601         many new variables. Don't set UNISTD_H.
16602         * modules/unistd (Description): Change.
16603         (Depends-on): Add link-warning.
16604         (configure.ac): Update.
16605         (Makefile.am): Create unistd.h always. Substitute many new variables
16606         into it.
16607
16608 2007-02-18  Bruno Haible  <bruno@clisp.org>
16609
16610         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
16611         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
16612         HAVE_GETSUBOPT.
16613         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
16614         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
16615         * lib/getsubopt.h: Remove file.
16616         * modules/getsubopt (Files): Remove lib/getsubopt.h.
16617         (Depends-on): Add stdlib.
16618         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16619         (Includes): Use <stdlib.h> instead of getsubopt.h.
16620         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
16621         Set HAVE_GETSUBOPT.
16622         * lib/getsubopt.c: Don't include getsubopt.h.
16623
16624 2007-02-18  Bruno Haible  <bruno@clisp.org>
16625
16626         * modules/fchdir (Depends-on): Add dup2.
16627
16628 2007-02-18  Bruno Haible  <bruno@clisp.org>
16629
16630         * lib/stdlib_.h: Handle glibc's special invocation convention
16631         specially.
16632
16633 2007-02-18  Bruno Haible  <bruno@clisp.org>
16634
16635         * modules/stdlib-tests: New file.
16636         * tests/test-stdlib.c: New file.
16637
16638         * modules/mkstemp (Files): Remove lib/mkstemp.h.
16639         (Depends-on): Add stdlib.
16640         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16641         (Includes): Use <stdlib.h> instead of mkstemp.h.
16642         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16643         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
16644         * lib/mkstemp.c: Don't include mkstemp.h.
16645         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
16646         * lib/stdlib--.h: Don't include mkstemp.h.
16647
16648         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
16649         (Depends-on): Add stdlib.
16650         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16651         (Includes): Use <stdlib.h> instead of mkdtemp.h.
16652         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16653         HAVE_MKDTEMP.
16654         * lib/mkdtemp.c: Don't include mkdtemp.h.
16655         * lib/clean-temp.c: Don't include mkdtemp.h.
16656
16657         * modules/exit (Files): Remove lib/exit.h.
16658         (Depends-on): Add stdlib.
16659         (Makefile.am): Remove lib_SOURCES.
16660         (Include): Use <stdlib.h> instead of exit.h.
16661         * lib/argmatch.c: Don't include exit.h.
16662         * lib/execute.c: Likewise.
16663         * lib/pagealign_alloc.c: Likewise.
16664         * lib/pipe.c: Likewise.
16665         * lib/wait-process.c: Likewise.
16666         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
16667         * lib/exitfail.c: Likewise.
16668         * lib/savewd.c: Likewise.
16669         * lib/xsetenv.c: Likewise.
16670
16671         * modules/stdlib: New file.
16672         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
16673         and extra comments about mkstemp().
16674         * lib/exit.h: Remove file.
16675         * lib/mkdtemp.h: Remove file.
16676         * lib/mkstemp.h: Remove file.
16677         * m4/stdlib_h.m4: New file.
16678         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
16679
16680 2007-02-18  Bruno Haible  <bruno@clisp.org>
16681
16682         * modules/math-tests: New file.
16683         * tests/test-math.c: New file.
16684
16685         * modules/math: New file.
16686         * modules/mathl (Files): Remove lib/mathl.h.
16687         (Depends-on): Add math.
16688         (Makefile.am): Don't mention mathl.h.
16689         (Include): Use <math.h> instead of mathl.h.
16690         * lib/math_.h: New file.
16691         * lib/mathl.h: Remove file.
16692         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
16693         mathl.h.
16694         * lib/asinl.c: Likewise.
16695         * lib/atanl.c: Likewise.
16696         * lib/ceill.c: Likewise.
16697         * lib/cosl.c: Likewise.
16698         * lib/expl.c: Likewise.
16699         * lib/floorl.c: Likewise.
16700         * lib/frexpl.c: Likewise.
16701         * lib/ldexpl.c: Likewise.
16702         * lib/logl.c: Likewise.
16703         * lib/sincosl.c: Likewise.
16704         * lib/sinl.c: Likewise.
16705         * lib/sqrtl.c: Likewise.
16706         * lib/tanl.c: Likewise.
16707         * lib/trigl.c: Likewise.
16708         * m4/math_h.m4: New file.
16709         * MODULES.html.sh (Mathematics): Add math.
16710
16711 2007-02-17  Bruno Haible  <bruno@clisp.org>
16712
16713         * modules/wctype-tests: New file.
16714         * tests/test-wctype.c: New file.
16715
16716         * modules/wchar-tests: New file.
16717         * tests/test-wchar.c: New file.
16718
16719         * modules/unistd-tests: New file.
16720         * tests/test-unistd.c: New file.
16721
16722         * modules/time-tests: New file.
16723         * tests/test-time.c: New file.
16724
16725         * modules/sysexits-tests: New file.
16726         * tests/test-sysexits.c: New file.
16727
16728         * modules/sys_time-tests: New file.
16729         * tests/test-sys_time.c: New file.
16730
16731         * modules/sys_stat-tests: New file.
16732         * tests/test-sys_stat.c: New file.
16733
16734         * modules/sys_socket-tests: New file.
16735         * tests/test-sys_socket.c: New file.
16736
16737         * modules/sys_select-tests: New file.
16738         * tests/test-sys_select.c: New file.
16739
16740         * modules/string-tests: New file.
16741         * tests/test-string.c: New file.
16742
16743         * modules/stdbool-tests: New file.
16744         * tests/test-stdbool.c: New file.
16745
16746         * modules/netinet_in-tests: New file.
16747         * tests/test-netinet_in.c: New file.
16748
16749         * modules/inttypes-tests: New file.
16750         * tests/test-inttypes.c: New file.
16751
16752         * modules/fcntl-tests: New file.
16753         * tests/test-fcntl.c: New file.
16754
16755         * modules/byteswap-tests: New file.
16756         * tests/test-byteswap.c: New file.
16757
16758         * modules/arpa_inet-tests: New file.
16759         * tests/test-arpa_inet.c: New file.
16760
16761 2007-02-17  Bruno Haible  <bruno@clisp.org>
16762
16763         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
16764         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
16765         if the corresponding module is not enabled. Emit link warnings if
16766         the function is used nevertheless.
16767         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
16768         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
16769         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
16770         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
16771         * modules/inttypes (Depends-on): Add link-warning.
16772         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16773         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
16774         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
16775         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
16776         * modules/imaxdiv (configure.ac): Likewise.
16777         * modules/strtoimax (configure.ac): Likewise.
16778         * modules/strtoumax (configure.ac): Likewise.
16779
16780 2007-02-17  Bruno Haible  <bruno@clisp.org>
16781
16782         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
16783         gl_STRING_MODULE_INDICATOR_DEFAULTS.
16784         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
16785         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
16786
16787 2007-02-17  Bruno Haible  <bruno@clisp.org>
16788
16789         * modules/link-warning: New file.
16790         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
16791         * lib/string_.h (GL_LINK_WARNING): Remove definition.
16792         * modules/string (Depends-on): Add link-warning.
16793         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16794         string.h.
16795         * MODULES.html.sh (Support for building libraries and executables): Add
16796         link-warning.
16797
16798 2007-02-17  Bruno Haible  <bruno@clisp.org>
16799
16800         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
16801         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
16802         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
16803         long lines.
16804
16805 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
16806             Bruno Haible  <bruno@clisp.org>
16807
16808         * modules/tmpfile: New file.
16809         * lib/tmpfile.c: New file.
16810         * m4/tmpfile.m4: New file.
16811         * MODULES.html.sh (func_all_modules): New section "Input/output".
16812
16813 2007-02-15  Bruno Haible  <bruno@clisp.org>
16814
16815         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
16816         (supports_delete_on_close): New function.
16817         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
16818
16819 2007-02-14  Bruno Haible  <bruno@clisp.org>
16820
16821         * modules/mbspcasecmp-tests: New file.
16822         * tests/test-mbspcasecmp.sh: New file.
16823         * tests/test-mbspcasecmp.c: New file.
16824
16825         New module mbspcasecmp.
16826         * modules/mbspcasecmp: New file.
16827         * lib/mbspcasecmp.c: New file.
16828         * lib/string_.h (strncasecmp): Change warning message.
16829         (mbspcasecmp): New declaration.
16830         * m4/mbspcasecmp.m4: New file.
16831         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
16832         GNULIB_MBSPCASECMP.
16833         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
16834         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
16835
16836 2007-02-14  Bruno Haible  <bruno@clisp.org>
16837
16838         * modules/mbsncasecmp-tests: New file.
16839         * tests/test-mbsncasecmp.sh: New file.
16840         * tests/test-mbsncasecmp.c: New file.
16841
16842         New module mbsncasecmp.
16843         * modules/mbsncasecmp: New file.
16844         * lib/mbsncasecmp.c: New file.
16845         * lib/string_.h (mbsncasecmp): New declaration.
16846         * m4/mbsncasecmp.m4: New file.
16847         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
16848         GNULIB_MBSNCASECMP.
16849         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
16850         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
16851
16852 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
16853
16854         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
16855         Verify that it doesn't overlap with our flags.
16856         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
16857         do not have the desired effect in multibyte locales; instead, use
16858         mbscasecmp.
16859         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
16860         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
16861         we don't require GNU fnmatch ourselves (if our users require it, they
16862         should do so explicitly).
16863
16864         Fix regex code so it doesn't rely on strcasecmp.
16865         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
16866         Otherwise, include gnulib's langinfo.h.
16867         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
16868         undesirable behavior in non-C locales.  Instead, rely on localecharset.
16869         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
16870         * modules/regex (FILES): Remove m4/codeset.m4.
16871         (Depends-on): Add localcharset.  Remove strcase.
16872
16873 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16874
16875         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
16876         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
16877
16878 2007-02-13  Bruno Haible  <bruno@clisp.org>
16879
16880         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
16881         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16882
16883 2007-02-12  Bruno Haible  <bruno@clisp.org>
16884
16885         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
16886         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
16887         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
16888         time warning rather than a link error.
16889
16890 2007-02-12  Bruno Haible  <bruno@clisp.org>
16891
16892         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
16893         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
16894         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16895
16896 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
16897
16898         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
16899         args, not 2.
16900
16901 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
16902
16903         New module 'time', so that apps can include <time.h> as per
16904         POSIX and GNU instead of separate include files like time_r.h
16905         and timegm.h.  This implementation tries out a simpler approach
16906         for replacing decls in standard include files (as compared to
16907         the string module), somewhat as an experiment.
16908
16909         * config/srclist.txt: Comment out mktime.c for now.
16910         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
16911         since it doesn't apply any more.  Use generic wording instead.
16912         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
16913         'time'.
16914         * lib/time_.h, m4/time_h.m4, modules/time: New files.
16915         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
16916         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
16917         Don't include <sys/types.h>; no longer needed since we assume C89.
16918         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
16919         * lib/strftime.c: Likewise.
16920         * lib/time_r.c: Likewise.
16921         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
16922         * lib/nanosleep.c: Include <time.h> first, to check interface.
16923         * lib/strptime.c: Likewise.
16924         * lib/time_r.c: Likewise.
16925         * lib/timegm.c: Likewise.
16926         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
16927         needed.
16928         * lib/timegm.c: Don't include timegm.h; no longer needed.
16929         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
16930         time.h now handles any problems in that area.
16931         (struct timespec, nanosleep): Remove; time.h now arranges for these.
16932         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
16933         that time.h defines struct timespec.
16934         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
16935         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
16936         handles that.
16937         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
16938         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
16939         needed.  Set REPLACE_LOCALTIME.
16940         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
16941         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
16942         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
16943         nanosleep; time_h.m4 now does that.  Don't require
16944         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
16945         module handles this now.
16946         * modules/getdate (Depends-on): Remove timespec.  Add time.
16947         * modules/nanosleep (Depends-on): Likewise.
16948         * modules/stat-time (Depends-on): Likewise.
16949         * modules/nanosleep (Include): Include time.h, not timespec.h.
16950         * modules/strptime (Files): Remove lib/strptime.h.
16951         (Depends-on): Add extensions, time.
16952         (Include): Include time.h, not strptime.h.
16953         * modules/time_r (Files): Remove lib/time_r.h.
16954         (Depends-on): Add time.
16955         (Include): Include time.h, not time_r.h.
16956         * modules/timegm: Likewise.
16957         * modules/timespec (Description): Now does timespec-related decls
16958         of our own, instead of struct timespec itself.
16959         (Depends-on): Add time; remove extensions.
16960         (Maintainer): Add self.
16961         * modules/utimecmp (Depends-on): Add time; remove timespec.
16962         * modules/utimens (Depends-on): Likewise.
16963         * modules/xnanosleep (Depends-on): Likewise.
16964
16965 2007-02-11  Bruno Haible  <bruno@clisp.org>
16966
16967         * lib/c-strstr.c: Include allocsa.h.
16968         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
16969         * lib/c-strcasestr.c: Include allocsa.h.
16970         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
16971         * lib/strcasestr.c: Include allocsa.h.
16972         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
16973         * lib/mbsstr.c: Include allocsa.h.
16974         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
16975         allocsa/freesa instead of malloc/free.
16976         * lib/mbscasestr.c: Include allocsa.h.
16977         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
16978         allocsa/freesa instead of malloc/free.
16979         * modules/c-strstr (Depends-on): Add allocsa.
16980         * modules/c-strcasestr (Depends-on): Likewise.
16981         * modules/strcasestr (Depends-on): Likewise.
16982         * modules/mbsstr (Depends-on): Likewise.
16983         * modules/mbscasestr (Depends-on): Likewise.
16984
16985 2007-02-11  Bruno Haible  <bruno@clisp.org>
16986
16987         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
16988
16989         * modules/mbsspn-tests: New file.
16990         * tests/test-mbsspn.sh: New file.
16991         * tests/test-mbsspn.c: New file.
16992
16993 2007-02-11  Bruno Haible  <bruno@clisp.org>
16994
16995         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
16996
16997         * modules/mbspbrk-tests: New file.
16998         * tests/test-mbspbrk.sh: New file.
16999         * tests/test-mbspbrk.c: New file.
17000
17001 2007-02-11  Bruno Haible  <bruno@clisp.org>
17002
17003         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
17004         unneeded cast.
17005
17006         * modules/mbscspn-tests: New file.
17007         * tests/test-mbscspn.sh: New file.
17008         * tests/test-mbscspn.c: New file.
17009
17010 2007-02-11  Bruno Haible  <bruno@clisp.org>
17011
17012         * modules/mbscasecmp-tests: New file.
17013         * tests/test-mbscasecmp.sh: New file.
17014         * tests/test-mbscasecmp.c: New file.
17015
17016 2007-02-11  Bruno Haible  <bruno@clisp.org>
17017
17018         Ensure O(n) worst-case complexity of mbscasestr.
17019         * lib/mbscasestr.c: Include stdbool.h.
17020         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17021         functions.
17022         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
17023         the bookkeeping indicates that it's worth it.
17024         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
17025
17026         * modules/mbscasestr-tests: New file.
17027         * tests/test-mbscasestr1.c: New file.
17028         * tests/test-mbscasestr2.sh: New file.
17029         * tests/test-mbscasestr2.c: New file.
17030         * tests/test-mbscasestr3.sh: New file.
17031         * tests/test-mbscasestr3.c: New file.
17032         * tests/test-mbscasestr4.sh: New file.
17033         * tests/test-mbscasestr4.c: New file.
17034         * m4/locale-tr.m4: New file.
17035
17036 2007-02-11  Bruno Haible  <bruno@clisp.org>
17037
17038         Ensure O(n) worst-case complexity of mbsstr.
17039         * lib/mbsstr.c: Include stdbool.h.
17040         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17041         functions.
17042         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
17043         bookkeeping indicates that it's worth it.
17044         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
17045
17046         * modules/mbsstr-tests: New file.
17047         * tests/test-mbsstr1.c: New file.
17048         * tests/test-mbsstr2.sh: New file.
17049         * tests/test-mbsstr2.c: New file.
17050         * tests/test-mbsstr3.sh: New file.
17051         * tests/test-mbsstr3.c: New file.
17052         * m4/locale-fr.m4: New file.
17053
17054 2007-02-11  Bruno Haible  <bruno@clisp.org>
17055
17056         * lib/mbsrchr.c (mbsrchr): Fix bug.
17057
17058         * modules/mbsrchr-tests: New file.
17059         * tests/test-mbsrchr.sh: New file.
17060         * tests/test-mbsrchr.c: New file.
17061
17062 2007-02-11  Bruno Haible  <bruno@clisp.org>
17063
17064         * lib/mbschr.c (mbschr): Fix bug.
17065
17066         * modules/mbschr-tests: New file.
17067         * tests/test-mbschr.sh: New file.
17068         * tests/test-mbschr.c: New file.
17069         * m4/locale-zh.m4: New file.
17070
17071 2007-02-11  Bruno Haible  <bruno@clisp.org>
17072
17073         Support for copying multibyte string iterators.
17074         * lib/mbiter.h: Include <string.h>.
17075         (mbiter_multi_copy): New function.
17076         (mbi_copy): New macro.
17077         * lib/mbuiter.h: Include <string.h>.
17078         (mbuiter_multi_copy): New function.
17079         (mbui_copy): New macro.
17080
17081 2007-02-11  Bruno Haible  <bruno@clisp.org>
17082
17083         New module mbslen.
17084         * modules/mbslen: New file.
17085         * lib/mbslen.c: New file.
17086         * lib/string_.h (mbslen): New declaration.
17087         * m4/mbslen.m4: New file.
17088         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17089         GNULIB_MBSLEN.
17090         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
17091         * MODULES.html.sh (Internationalization functions): Add mbslen.
17092
17093 2007-02-11  Bruno Haible  <bruno@clisp.org>
17094
17095         Ensure O(n) worst-case complexity of strcasestr substitute.
17096         * lib/strcasestr.c: Include stdbool.h.
17097         (knuth_morris_pratt): New function.
17098         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17099         bookkeeping indicates that it's worth it.
17100         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
17101
17102         * modules/strcasestr-tests: New file.
17103         * tests/test-strcasestr.c: New file.
17104
17105 2007-02-11  Bruno Haible  <bruno@clisp.org>
17106
17107         Ensure O(n) worst-case complexity of c_strcasestr.
17108         * lib/c-strcasestr.c: Include stdbool.h, string.h.
17109         (knuth_morris_pratt): New function.
17110         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
17111         the bookkeeping indicates that it's worth it.
17112         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
17113
17114         * modules/c-strcasestr-tests: New file.
17115         * tests/test-c-strcasestr.c: New file.
17116
17117 2007-02-11  Bruno Haible  <bruno@clisp.org>
17118
17119         Ensure O(n) worst-case complexity of c_strstr.
17120         * lib/c-strstr.c: Include stdbool.h, string.h.
17121         (knuth_morris_pratt): New function.
17122         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17123         bookkeeping indicates that it's worth it.
17124         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
17125
17126         * lib/c-strstr.c: Complete rewrite for maintainability.
17127
17128         * modules/c-strstr-tests: New file.
17129         * tests/test-c-strstr.c: New file.
17130
17131 2007-02-11  Bruno Haible  <bruno@clisp.org>
17132
17133         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
17134         5.2.1 and earlier, whereby \055 was treated just like the range
17135         delimiter '-'.
17136         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
17137
17138 2007-02-08  Bruno Haible  <bruno@clisp.org>
17139
17140         * modules/regex (Depends-on): Add stdbool.
17141         Reported by Dalibor Topic <robilad@kaffe.org>.
17142
17143 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
17144
17145         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
17146         Prefer returning from main to exiting from it.
17147         Remove unnecessary parens after sizeof.
17148
17149 2007-02-05  Bruno Haible  <bruno@clisp.org>
17150
17151         New module mbssep.
17152         * modules/mbssep: New file.
17153         * lib/mbssep.c: New file.
17154         * lib/string_.h (strsep): Add a conditional link warning.
17155         (mbssep): New declaration.
17156         * m4/mbssep.m4: New file.
17157         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17158         GNULIB_MBSSEP.
17159         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
17160         * MODULES.html.sh (Internationalization functions): Add mbssep.
17161
17162 2007-02-05  Bruno Haible  <bruno@clisp.org>
17163
17164         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
17165         Optimize search in case of 1 delimiter.
17166
17167 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17168
17169         * lib/acl.h: Include sys/types.h before sys/acl.h.
17170
17171 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17172
17173         Merge upstream fix for glibc bugzilla #3957:
17174
17175         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
17176
17177         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
17178         bit for RE_HAT_LISTS_NOT_NEWLINE.
17179         (build_charclass_op): Remove bogus comment.
17180
17181 2007-02-05  Simon Josefsson  <simon@josefsson.org>
17182
17183         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
17184
17185 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17186
17187         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
17188         * lib/memmem.c [!defined _LIBC]: Include config.h.
17189
17190 2007-02-04  Bruno Haible  <bruno@clisp.org>
17191
17192         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
17193         warning message.
17194
17195 2007-02-04  Bruno Haible  <bruno@clisp.org>
17196
17197         New module mbstok_r.
17198         * modules/mbstok_r: New file.
17199         * lib/mbstok_r.c: New file.
17200         * lib/string_.h (strtok_r): Change argument names to match the
17201         comments. Add a conditional link warning.
17202         (mbstok_r): New declaration.
17203         * m4/mbstok_r.m4: New file.
17204         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17205         GNULIB_MBSTOK_R.
17206         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
17207         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
17208
17209 2007-02-04  Bruno Haible  <bruno@clisp.org>
17210
17211         New module mbsspn.
17212         * modules/mbsspn: New file.
17213         * lib/mbsspn.c: New file.
17214         * lib/string_.h (strspn): Add a conditional link warning.
17215         (mbsspn): New declaration.
17216         * m4/mbsspn.m4: New file.
17217         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17218         GNULIB_MBSSPN.
17219         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
17220         * MODULES.html.sh (Internationalization functions): Add mbsspn.
17221
17222 2007-02-04  Bruno Haible  <bruno@clisp.org>
17223
17224         New module mbspbrk.
17225         * modules/mbspbrk: New file.
17226         * lib/mbspbrk.c: New file.
17227         * lib/string_.h (strpbrk): Add a conditional link warning.
17228         (mbspbrk): New declaration.
17229         * m4/mbspbrk.m4: New file.
17230         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17231         GNULIB_MBSPBRK.
17232         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
17233         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
17234
17235 2007-02-04  Bruno Haible  <bruno@clisp.org>
17236
17237         New module mbscspn.
17238         * modules/mbscspn: New file.
17239         * lib/mbscspn.c: New file.
17240         * lib/string_.h (strcspn): Add a conditional link warning.
17241         (mbscspn): New declaration.
17242         * m4/mbscspn.m4: New file.
17243         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17244         GNULIB_MBSCSPN.
17245         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
17246         * MODULES.html.sh (Internationalization functions): Add mbscspn.
17247
17248 2007-02-04  Bruno Haible  <bruno@clisp.org>
17249
17250         New module mbscasestr, reduced goal of strcasestr.
17251         * modules/mbscasestr: New file.
17252         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
17253         (mbscasestr): Renamed from strcasestr.
17254         * lib/strcasestr.c: Don't include mbuiter.h.
17255         (strcasestr): Remove support for multibyte locales.
17256         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
17257         Change the conditional link warning.
17258         (mbscasestr): New declaration.
17259         * m4/mbscasestr.m4: New file.
17260         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
17261         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
17262         REPLACE_STRCASESTR.
17263         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
17264         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17265         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17266         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
17267         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
17268         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17269         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
17270         (Depends-on): Remove mbuiter.
17271         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
17272
17273 2007-02-04  Bruno Haible  <bruno@clisp.org>
17274
17275         Simplify handling of strncasecmp.
17276         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
17277         the conditional link warning.
17278         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17279         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
17280         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
17281         * modules/strcase (configure.ac): Don't invoke
17282         gl_STRING_MODULE_INDICATOR.
17283         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
17284
17285 2007-02-04  Bruno Haible  <bruno@clisp.org>
17286
17287         New module mbscasecmp, reduced goal of strcasecmp.
17288         * modules/mbscasecmp: New file.
17289         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
17290         (mbscasecmp): Renamed from strcasecmp.
17291         * lib/strcasecmp.c: Don't include mbuiter.h.
17292         (strcasecmp): Remove support for multibyte locales.
17293         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
17294         Change the conditional link warning.
17295         (mbscasecmp): New declaration.
17296         * m4/mbscasecmp.m4: New file.
17297         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
17298         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
17299         REPLACE_STRCASECMP.
17300         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
17301         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17302         GNULIB_MBSCASECMP.
17303         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
17304         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
17305         * modules/strcase (Files): Remove m4/mbrtowc.m4.
17306         (Depends-on): Remove mbuiter.
17307         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
17308
17309 2007-02-04  Bruno Haible  <bruno@clisp.org>
17310
17311         New module mbsstr. Remove module strstr.
17312         * modules/mbsstr: New file.
17313         * modules/strstr: Remove file.
17314         * lib/mbsstr.c: Renamed from lib/strstr.c.
17315         (mbsstr): Renamed from strstr.
17316         * lib/string_.h (strstr): Remove declaration. Change the conditional
17317         link warning.
17318         (mbsstr): New declaration.
17319         * m4/mbsstr.m4: New file.
17320         * m4/strstr.m4: Remove file.
17321         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
17322         REPLACE_STRSTR.
17323         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
17324         Don't initialize GNULIB_STRSTR.
17325         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
17326         substitute GNULIB_STRSTR and REPLACE_STRSTR.
17327         * MODULES.html.sh (Internationalization functions): Add mbsstr.
17328         (Support for systems lacking ANSI C 89): Remove strstr.
17329
17330 2007-02-04  Bruno Haible  <bruno@clisp.org>
17331
17332         New module mbsrchr.
17333         * modules/mbsrchr: New file.
17334         * lib/mbsrchr.c: New file.
17335         * lib/string_.h (strrchr): Add a conditional link warning.
17336         (mbsrchr): New declaration.
17337         * m4/mbsrchr.m4: New file.
17338         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17339         GNULIB_MBSRCHR.
17340         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
17341         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
17342
17343 2007-02-04  Bruno Haible  <bruno@clisp.org>
17344
17345         New module mbschr.
17346         * modules/mbschr: New file.
17347         * lib/mbschr.c: New file.
17348         * lib/string_.h (strchr): Add a conditional link warning.
17349         (mbschr): New declaration.
17350         * m4/mbschr.m4: New file.
17351         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17352         GNULIB_MBSCHR.
17353         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
17354         * MODULES.html.sh (Internationalization functions): Add mbschr.
17355
17356 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17357
17358         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
17359
17360         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
17361
17362 2007-02-04  Bruno Haible  <bruno@clisp.org>
17363
17364         New module description section 'configure.ac-early'.
17365         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
17366         (func_get_autoconf_early_snippet): New function.
17367         (func_import, func_create_testdir): Use it. Remove special cases for
17368         modules 'extensions' and 'lock'.
17369         * modules/extensions (configure.ac-early): Require
17370         gl_USE_SYSTEM_EXTENSIONS.
17371         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
17372
17373 2007-02-04  Bruno Haible  <bruno@clisp.org>
17374
17375         Make use of gcj-4.3's -fsource and -ftarget option.
17376         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
17377         and if so try the options -fsource and -ftarget.
17378         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
17379         source_version, ftarget_option, target_version arguments.
17380         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
17381         (is_envjavac_oldgcj_14_14_usable): Renamed from
17382         is_envjavac_gcj_14_14_usable.
17383         (is_envjavac_oldgcj_14_13_usable): Renamed from
17384         is_envjavac_gcj_14_13_usable.
17385         (is_gcj_present): Update.
17386         (is_gcj_43, is_gcj43_usable): New functions.
17387         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
17388         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
17389         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
17390         try the options -fsource and -ftarget.
17391
17392 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
17393
17394         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
17395         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
17396         larger value.
17397
17398 2007-02-03  Jim Meyering  <jim@meyering.net>
17399
17400         Give tools a better chance to allocate space for very large buffers.
17401         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
17402
17403         Make pwd and readlink work also when run with an unreadable parent dir
17404         on systems with openat support.
17405         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
17406         provided getcwd function, even when we have openat support.
17407         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
17408
17409 2007-02-02  Bruno Haible  <bruno@clisp.org>
17410
17411         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
17412         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
17413         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
17414         portability problems if one of these functions is only used on specific
17415         platforms.
17416         Reported by Paul Eggert.
17417
17418 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
17419
17420         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
17421         is causing more trouble than it's curing.
17422         * lib/regex_internal.h (__mempcpy): Remove.
17423         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
17424         (and make the code a tad smaller to boot).
17425         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
17426
17427 2007-02-02  Jim Meyering  <jim@meyering.net>
17428
17429         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
17430         section, not in the Makefile.am: one.
17431
17432 2007-02-02  Eric Blake  <ebb9@byu.net>
17433
17434         * lib/strchrnul.c: Always include config.h first.
17435
17436         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
17437         gnulib strstr is not necessary here.
17438
17439 2007-02-02  Simon Josefsson  <simon@josefsson.org>
17440
17441         * m4/socklen.m4: Fix typo.
17442
17443 2007-02-02  Eric Blake  <ebb9@byu.net>
17444
17445         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
17446         * modules/netinet_in (Makefile.am): Likewise.
17447
17448 2007-02-01  Bruno Haible  <bruno@clisp.org>
17449
17450         * lib/string_.h (GL_LINK_WARNING): New macro.
17451         (strcasecmp, strstr, strcasestr): If provided by the system,
17452         conditionally define as a macro that leads to a warning instead of to
17453         an error.
17454         (strncasecmp): Conditionally define as a macro that leads to a warning.
17455
17456 2007-02-01  Karl Berry  <karl@gnu.org>
17457
17458         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
17459
17460 2007-02-01  Bruno Haible  <bruno@clisp.org>
17461
17462         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
17463         renamings.
17464
17465 2007-02-01  Eric Blake  <ebb9@byu.net>
17466
17467         * modules/regex (Depends-on): Revert dependence on mempcpy.
17468         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
17469         module's definition of mempcpy.
17470         Reported by Paul Eggert.
17471
17472 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
17473
17474         * lib/string_.h: If the gnulib module XYZ is not present, undefine
17475         the symbol XYZ before redefining it.  This fixes a problem with
17476         programs that don't use XYZ, when compiled on systems that define
17477         XYZ to something else.
17478
17479 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
17480
17481         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
17482         occurs when "mkdir -m foo" creates a setgid directory that is (1)
17483         writeable to group or other and (2) is intended to have a special
17484         mode bit that is set or cleared.  In such a case, the directory
17485         should be neither group- nor other-writeable until the special
17486         mode bits are right.
17487
17488 2007-01-31  Eric Blake  <ebb9@byu.net>
17489
17490         * modules/mountlist (Depends-on): Add strstr.
17491
17492         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
17493         bug.
17494         * modules/string (Makefile.am): Remove redundant replacement.
17495         * modules/regex (Depends-on): Add mempcpy.
17496
17497 2007-01-31  Bruno Haible  <bruno@clisp.org>
17498
17499         New module description field 'Link'.
17500         * gnulib-tool (func_usage): Document --extract-link-directive.
17501         (sed_extract_prog): Recognize 'Link' directive.
17502         (func_get_link_directive): New function.
17503         (func_import): Show summary of link directives.
17504         Handle --extract-link-directive option.
17505         * modules/acl (Link): New section.
17506         * modules/clock-time (Link): New section.
17507         * modules/euidaccess (Link): New section.
17508         * modules/gettext (Link): New section.
17509         * modules/iconv (Link): New section.
17510         * modules/lock (Link): New section.
17511         * modules/nanosleep (Link): New section.
17512         * modules/readline (Link): New section.
17513
17514 2007-01-27  Bruno Haible  <bruno@clisp.org>
17515
17516         Enforce the use of gnulib modules for unportable <string.h> functions.
17517         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
17518         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
17519         (gl_HEADER_STRING_H_BODY): Require it.
17520         * lib/string_.h: If the gnulib module XYZ is not present, redefine
17521         the symbol XYZ to one that gives a link error.
17522         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
17523         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
17524         * modules/mempcpy (configure.ac): Likewise.
17525         * modules/memrchr (configure.ac): Likewise.
17526         * modules/stpcpy (configure.ac): Likewise.
17527         * modules/stpncpy (configure.ac): Likewise.
17528         * modules/strcase (configure.ac): Likewise.
17529         * modules/strcasestr (configure.ac): Likewise.
17530         * modules/strchrnul (configure.ac): Likewise.
17531         * modules/strdup (configure.ac): Likewise.
17532         * modules/strndup (configure.ac): Likewise.
17533         * modules/strnlen (configure.ac): Likewise.
17534         * modules/strpbrk (configure.ac): Likewise.
17535         * modules/strsep (configure.ac): Likewise.
17536         * modules/strstr (configure.ac): Likewise.
17537         * modules/strtok_r (configure.ac): Likewise.
17538
17539 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
17540
17541         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
17542
17543 2007-01-30  Jim Meyering  <jim@meyering.net>
17544
17545         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
17546
17547 2007-01-29  Bruno Haible  <bruno@clisp.org>
17548
17549         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
17550         * lib/execute.c: Likewise.
17551         * lib/pipe.c: Likewise.
17552         * lib/printf-args.h: Likewise.
17553         * lib/printf-args.c: Likewise.
17554         * lib/printf-parse.c: Likewise.
17555         * lib/vasnprintf.c: Likewise.
17556
17557 2007-01-29  Eric Blake  <ebb9@byu.net>
17558
17559         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
17560         declaration.
17561
17562 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
17563
17564         * lib/strptime.h (strptime): Use 'restrict' for args where
17565         POSIX requires this.
17566         * lib/strptime.c (strptime): Likewise.
17567         Change license notice from LGPL to GPL, since gnulib-tool will
17568         change this as needed.
17569         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
17570         defined.
17571         Include "strptime.h" first, to check interface.
17572         Do not #undef _LIBC and _NL_CURRENT.
17573         Do not include <stdlib.h>; no longer needed.
17574         Include "time_r.h" and declare ptime_locale_status
17575         only if _LIBC is not defined.
17576         (__P): Remove unused macro.
17577         (match_string): Bring back glibc version, but use it only if _LIBC
17578         is defined.
17579         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
17580         Remove unnecessary assertion and abort() call.
17581         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
17582         * m4/strptime.m4: Fix serial number comment.
17583         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
17584         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
17585         (Depends-on): Add time_r.
17586
17587 2007-01-29  Bruno Haible  <bruno@clisp.org>
17588
17589         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17590         strptime.
17591         * modules/strptime (Depends-on): Add stdbool.
17592         * lib/strptime.h: Include <time.h> always. Add comments.
17593
17594 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
17595
17596         * modules/strptime: New file.
17597         * lib/strptime.h: New file.
17598         * lib/strptime.c: New file.
17599         * m4/strptime.m4: New file.
17600
17601 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
17602
17603         * MODULES.html.sh: New module mpsort.
17604         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
17605
17606         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
17607         a circularity problem with HP-UX ia64 reported by Bob Proulx in
17608         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
17609         All uses changed.
17610         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
17611         All uses changed.
17612         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
17613         to _Restrict_.
17614         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
17615         the parameter matches the prototype.
17616
17617 2007-01-28  Jim Meyering  <jim@meyering.net>
17618
17619         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
17620         sys/time.h here, reverting that part of the previous patch:
17621         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
17622
17623 2007-01-28  Bruno Haible  <bruno@clisp.org>
17624
17625         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
17626         value of $(SYS_TIME_H).
17627         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
17628         remove it conditionally, too. [added by Jim Meyering]
17629         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
17630         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
17631         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
17632         GETTIMEOFDAY_REPLACEMENT to 1.
17633
17634 2007-01-28  Bruno Haible  <bruno@clisp.org>
17635
17636         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
17637         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
17638         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
17639         Set UNISTD_H instead of UNISTD_H2.
17640         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
17641
17642 2007-01-28  Bruno Haible  <bruno@clisp.org>
17643
17644         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
17645         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
17646
17647 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17648
17649         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
17650         (func_create_testdir): Ensure C locale for `grep' and `tr'
17651         character ranges.
17652         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
17653         ACLOCAL_AMFLAGS parsing state machine.
17654
17655 2007-01-27  Bruno Haible  <bruno@clisp.org>
17656
17657         * modules/unistr/base: Update.
17658
17659 2007-01-27  Bruno Haible  <bruno@clisp.org>
17660
17661         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
17662         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
17663         * modules/unistr/u32-mbtouc-unsafe: Renamed from
17664         modules/unistr/u32-mbtouc.
17665         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
17666         * lib/unistr.h: Update.
17667         * lib/linebreak.c: Update.
17668         * modules/unistr/u32-mbtouc: Renamed from
17669         modules/unistr/u32-mbtouc-safe.
17670         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
17671         * lib/unistr.h: Update.
17672         * lib/unistr/u32-to-u8.c: Update.
17673         * lib/unistr/u32-to-u16.c: Update.
17674
17675 2007-01-27  Bruno Haible  <bruno@clisp.org>
17676
17677         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
17678         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
17679         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
17680         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
17681         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
17682         * modules/unistr/u16-mbtouc-unsafe: Renamed from
17683         modules/unistr/u16-mbtouc.
17684         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
17685         * lib/unistr.h: Update.
17686         * lib/linebreak.c: Update.
17687         * modules/linebreak: Update.
17688         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
17689         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
17690         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
17691         * modules/unistr/u16-mbtouc: Renamed from
17692         modules/unistr/u16-mbtouc-safe.
17693         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
17694         * lib/unistr.h: Update.
17695         * lib/unistr/u16-to-u8.c: Update.
17696         * modules/unistr/u16-to-u8: Update.
17697         * lib/unistr/u16-to-u32.c: Update.
17698         * modules/unistr/u16-to-u32: Update.
17699
17700 2007-01-27  Bruno Haible  <bruno@clisp.org>
17701
17702         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
17703         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
17704         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
17705         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
17706         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
17707         * modules/unistr/u8-mbtouc-unsafe: Renamed from
17708         modules/unistr/u8-mbtouc.
17709         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
17710         * lib/unistr.h: Update.
17711         * lib/striconveh.c: Update.
17712         * modules/striconveh: Update.
17713         * lib/linebreak.c: Update.
17714         * modules/linebreak: Update.
17715         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
17716         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
17717         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
17718         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
17719         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
17720         * lib/unistr.h: Update.
17721         * lib/striconveh.c: Update.
17722         * modules/striconveh: Update.
17723         * lib/unistr/u8-to-u16.c: Update.
17724         * modules/unistr/u8-to-u16: Update.
17725         * lib/unistr/u8-to-u32.c: Update.
17726         * modules/unistr/u8-to-u32: Update.
17727
17728 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17729
17730         Sync from Libtool.
17731         * lib/argz.c: Do not include strings.h nor memory.h, include
17732         string.h unconditionally.  Patch by Simon Josefsson.
17733
17734 2007-01-27  Bruno Haible  <bruno@clisp.org>
17735
17736         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
17737         from gl_HEADER_STRING_H_BODY.
17738         (gl_HEADER_STRING_H_BODY): Require it.
17739         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
17740         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
17741         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
17742         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
17743         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
17744         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
17745         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17746         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
17747         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
17748         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
17749         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
17750         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
17751         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
17752         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17753         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
17754
17755 2007-01-27  Bruno Haible  <bruno@clisp.org>
17756
17757         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
17758         check_PROGRAMS into noinst_PROGRAMS.
17759         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
17760         check_PROGRAMS in this case.
17761         (func_import): Set for_test to false.
17762         (func_create_testdir): Set for_test to true.
17763
17764 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
17765             Bruno Haible  <bruno@clisp.org>
17766
17767         * modules/strcasestr (Files): Remove lib/strcasestr.h.
17768         (Depends-on): Add string.
17769         (Includes): Use <string.h> instead of strcasestr.h.
17770         * modules/string (Makefile.am): Also substitute the value of
17771         REPLACE_STRCASESTR.
17772         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
17773         assume strcasestr is declared in <string.h> not <strings.h>. Also
17774         set REPLACE_STRCASESTR.
17775         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
17776         REPLACE_STRCASESTR.
17777         * lib/strcasestr.h: Remove file.
17778         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
17779         * lib/string_.h (strcasestr): New declaration.
17780
17781 2007-01-27  Bruno Haible  <bruno@clisp.org>
17782
17783         * lib/string_.h: Use 'extern'.
17784
17785 2007-01-27  Jim Meyering  <jim@meyering.net>
17786
17787         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
17788         of set-but-not-used local, "q".
17789
17790         * lib/mempcpy.c: Include <config.h> before <string.h>.
17791         This fixes a compilation error on HP-UX, due to the system's
17792         "restrict"-using mempcpy prototype.
17793
17794 2007-01-26  Bruno Haible  <bruno@clisp.org>
17795
17796         Small optimization.
17797         * lib/javacomp.c: Include c-strstr.h.
17798          (is_envjavac_gcj): Use c_strstr instead of strstr.
17799         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
17800
17801 2007-01-26  Bruno Haible  <bruno@clisp.org>
17802
17803         * MODULES.html.sh (Unicode string functions): Add the new modules.
17804
17805         * modules/uniconv/u32-strconv-to-locale: New file.
17806         * lib/uniconv/u32-strconv-to-locale.c: New file.
17807
17808         * modules/uniconv/u16-strconv-to-locale: New file.
17809         * lib/uniconv/u16-strconv-to-locale.c: New file.
17810
17811         * modules/uniconv/u8-strconv-to-locale: New file.
17812         * lib/uniconv/u8-strconv-to-locale.c: New file.
17813
17814         * modules/uniconv/u32-strconv-from-locale: New file.
17815         * lib/uniconv/u32-strconv-from-locale.c: New file.
17816
17817         * modules/uniconv/u16-strconv-from-locale: New file.
17818         * lib/uniconv/u16-strconv-from-locale.c: New file.
17819
17820         * modules/uniconv/u8-strconv-from-locale: New file.
17821         * lib/uniconv/u8-strconv-from-locale.c: New file.
17822
17823         * modules/uniconv/u32-strconv-to-enc: New file.
17824         * lib/uniconv/u32-strconv-to-enc.c: New file.
17825         * modules/uniconv/u32-strconv-to-enc-tests: New file.
17826         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
17827
17828         * modules/uniconv/u16-strconv-to-enc: New file.
17829         * lib/uniconv/u16-strconv-to-enc.c: New file.
17830         * lib/uniconv/u-strconv-to-enc.h: New file.
17831         * modules/uniconv/u16-strconv-to-enc-tests: New file.
17832         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
17833
17834         * modules/uniconv/u8-strconv-to-enc: New file.
17835         * lib/uniconv/u8-strconv-to-enc.c: New file.
17836         * modules/uniconv/u8-strconv-to-enc-tests: New file.
17837         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
17838
17839         * modules/uniconv/u32-strconv-from-enc: New file.
17840         * lib/uniconv/u32-strconv-from-enc.c: New file.
17841         * modules/uniconv/u32-strconv-from-enc-tests: New file.
17842         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
17843
17844         * modules/uniconv/u16-strconv-from-enc: New file.
17845         * lib/uniconv/u16-strconv-from-enc.c: New file.
17846         * modules/uniconv/u16-strconv-from-enc-tests: New file.
17847         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
17848
17849         * modules/uniconv/u8-strconv-from-enc: New file.
17850         * lib/uniconv/u8-strconv-from-enc.c: New file.
17851         * lib/uniconv/u-strconv-from-enc.h: New file.
17852         * modules/uniconv/u8-strconv-from-enc-tests: New file.
17853         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
17854
17855         * modules/uniconv/u32-conv-from-enc: New file.
17856         * lib/uniconv/u32-conv-from-enc.c: New file.
17857         * modules/uniconv/u32-conv-from-enc-tests: New file.
17858         * tests/uniconv/test-u32-conv-from-enc.c: New file.
17859
17860         * modules/uniconv/u16-conv-from-enc: New file.
17861         * lib/uniconv/u16-conv-from-enc.c: New file.
17862         * lib/uniconv/u-conv-from-enc.h: New file.
17863         * modules/uniconv/u16-conv-from-enc-tests: New file.
17864         * tests/uniconv/test-u16-conv-from-enc.c: New file.
17865
17866         * modules/uniconv/u8-conv-from-enc: New file.
17867         * lib/uniconv/u8-conv-from-enc.c: New file.
17868         * modules/uniconv/u8-conv-from-enc-tests: New file.
17869         * tests/uniconv/test-u8-conv-from-enc.c: New file.
17870
17871         * modules/uniconv/base: New file.
17872         * lib/uniconv.h: New file.
17873
17874 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
17875
17876         * doc/gnulib-tool.texi (Initial import): Update to match current
17877         behavior with strdup module.
17878         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
17879         * lib/memmem.h: Remove; all uses removed.  This is now done
17880         by <string.h>.
17881         * lib/mempcpy.h: Likewise.
17882         * lib/memrchr.h: Likewise.
17883         * lib/stpcpy.h: Likewise.
17884         * lib/stpncpy.h: Likewise.
17885         * lib/strcase.h: Likewise.
17886         * lib/strchrnul.h: Likewise.
17887         * lib/strdup.h: Likewise.
17888         * lib/strndup.h: Likewise.
17889         * lib/strnlen.h: Likewise.
17890         * lib/strpbrk.h: Likewise.
17891         * lib/strsep.h: Likewise.
17892         * lib/strstr.h: Likewise.
17893         * lib/strtok_r.h: Likewise.
17894         * lib/string_.h: New file.
17895         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
17896         Rely on <string.h> instead.
17897         * lib/canon-host.c: Likewise.
17898         * lib/chdir-long.c: Likewise.
17899         * lib/concatpath.c: Likewise.
17900         * lib/exclude.c: Likewise.
17901         * lib/fchdir.c: Likewise.
17902         * lib/getaddrinfo.c: Likewise.
17903         * lib/getcwd.c: Likewise.
17904         * lib/getsubopt.c: Likewise.
17905         * lib/glob.c: Likewise.
17906         * lib/hard-locale.c: Likewise.
17907         * lib/iconvme.c: Likewise.
17908         * lib/javacomp.c: Likewise.
17909         * lib/mempcpy.c: Likewise.
17910         * lib/memrchr.c: Likewise.
17911         * lib/regex_internal.h: Likewise.
17912         * lib/stpncpy.c: Likewise.
17913         * lib/strcasecmp.c: Likewise.
17914         * lib/strchrnul.c: Likewise.
17915         * lib/strdup.c: Likewise.
17916         * lib/striconv.c: Likewise.
17917         * lib/striconveh.c: Likewise.
17918         * lib/striconveha.c: Likewise.
17919         * lib/strncasecmp.c: Likewise.
17920         * lib/strndup.c: Likewise.
17921         * lib/strnlen.c: Likewise.
17922         * lib/strsep.c: Likewise.
17923         * lib/strstr.c: Likewise.
17924         * lib/strtok_r.c: Likewise.
17925         * lib/userspec.c: Likewise.
17926         * lib/w32spawn.h: Likewise.
17927         * lib/xstrndup.c: Likewise.
17928         * lib/mountlist.c (strstr): Remove decl.
17929         * m4/string_h.m4: New file.
17930         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
17931         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
17932         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
17933         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
17934         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
17935         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
17936         Set REPLACE_STRCASECMP if necessary.
17937         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
17938         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
17939         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
17940         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
17941         HAVE_DECL_STRDUP if necessary.
17942         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
17943         since gl_FUNC_STRNDUP does that now.
17944         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
17945         Check for decl here...
17946         (gl_PREREQ_STRNLEN): ... not here.
17947         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
17948         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
17949         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
17950         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
17951         necessary.
17952         * modules/string: New file.
17953         * modules/memmem (Files): Remove special-purpose include file.
17954         (Depends-on): Add string.
17955         (Include): Include <string.h>, not the removed file.
17956         * modules/mempcpy: Likewise.
17957         * modules/memrchr: Likewise.
17958         * modules/stpcpy: Likewise.
17959         * modules/stpncpy: Likewise.
17960         * modules/strcase: Likewise.
17961         * modules/strchrnul: Likewise.
17962         * modules/strdup: Likewise.
17963         * modules/strndup: Likewise.
17964         * modules/strnlen: Likewise.
17965         * modules/strpbrk: Likewise.
17966         * modules/strsep: Likewise.
17967         * modules/strstr: Likewise.
17968         * modules/strtok_r: Likewise.
17969         * tests/test-dirname.c: Don't include "strdup.h", since
17970         <string.h> now suffices.
17971         * tests/test-memmem.c: Don't include "memmem.h", since
17972         <string.h> now suffices.
17973
17974 2007-01-25  Bruno Haible  <bruno@clisp.org>
17975
17976         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
17977         *resultp is 0.
17978
17979         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
17980         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
17981         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
17982         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
17983
17984         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
17985         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
17986         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
17987         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
17988         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
17989         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
17990
17991 2007-01-24  Bruno Haible  <bruno@clisp.org>
17992
17993         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
17994         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
17995         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
17996         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
17997         gl_FUNC_FTS_CORE.
17998         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
17999         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
18000         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
18001         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
18002         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
18003         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
18004         gl_FUNC_FCHOWNAT.
18005         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
18006         gl_FUNC_STRFTIME.
18007         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
18008         Reported by Ralf Wildenhues.
18009
18010 2007-01-24  Bruno Haible  <bruno@clisp.org>
18011
18012         Drop AC_REQUIRE calls that are redundant with the module dependencies.
18013         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
18014         gl_GETADDRINFO.
18015         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
18016         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
18017         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
18018
18019 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
18020
18021         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
18022         Don't use 'exit'; just return from 'main'.
18023         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
18024
18025         * lib/fnmatch_.h: Readjust white space and comments to match
18026         glibc, to avoid spurious diffs.
18027
18028 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18029
18030         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
18031         2004-12-01 change by Jakub Jelinek, since this code won't compile
18032         if !LIBC.  Problem reported by Bob Proulx.
18033
18034 2007-01-23  Bruno Haible  <bruno@clisp.org>
18035
18036         * lib/striconveh.c: Include c-strcaseeq.h.
18037         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
18038         * modules/striconveh (Depends-on): Add c-strcaseeq.
18039
18040 2007-01-23  Bruno Haible  <bruno@clisp.org>
18041
18042         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
18043
18044         * modules/c-strcaseeq: New file.
18045         * lib/c-strcaseeq.h: New file.
18046
18047         * modules/streq: New file.
18048         * lib/streq.h: New file.
18049
18050 2007-01-23  Bruno Haible  <bruno@clisp.org>
18051
18052         * modules/striconveha-tests: New file.
18053         * tests/test-striconveha.c: New file.
18054
18055         * lib/striconveha.h: Include <stdbool.h>.
18056         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
18057         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
18058         (mem_iconveha_notranslit): Renamed from mem_iconveha.
18059         (mem_iconveha): New function.
18060         (str_iconveha_notranslit): Renamed from str_iconveha.
18061         (str_iconveha): New function.
18062         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
18063         c-strcase.
18064
18065 2007-01-23  Bruno Haible  <bruno@clisp.org>
18066
18067         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
18068         encodings without forgiving before trying any encoding with handler.
18069         (str_iconveha): Try all encodings without forgiving before trying any
18070         encoding with handler.
18071
18072 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18073
18074         Import the following changes from libc.
18075
18076         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
18077
18078         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
18079
18080         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
18081
18082         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
18083         normal_bracket label.
18084
18085         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
18086
18087         [BZ #361]
18088         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
18089         to normal_bracket after fetching the next character.
18090
18091 2007-01-22  Bruno Haible  <bruno@clisp.org>
18092
18093         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
18094         argument.
18095         * lib/striconveh.c (iconv_carefully_1): New function.
18096         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
18097         argument.
18098         (str_cd_iconveh): Update.
18099         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
18100         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
18101         * tests/test-striconveh.c (MAGIC): New macro.
18102         (new_offsets): New function.
18103         (main): Test call with and without offsets.
18104
18105 2007-01-22  Bruno Haible  <bruno@clisp.org>
18106
18107         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
18108         * modules/sys_select (Makefile.am): Likewise.
18109         * modules/sys_socket (Makefile.am): Likewise.
18110         * modules/sys_time (Makefile.am): Likewise.
18111
18112 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
18113
18114         * modules/gettimeofday (License): Change from GPL to LGPL, since
18115         gettimeofday is a library function.
18116
18117 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18118
18119         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
18120
18121 2007-01-21  Bruno Haible  <bruno@clisp.org>
18122
18123         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
18124
18125 2007-01-21  Bruno Haible  <bruno@clisp.org>
18126
18127         * modules/striconveha: New file.
18128         * lib/striconveha.h: New file.
18129         * lib/striconveha.c: New file.
18130         * MODULES.html.sh (Internationalization functions): Add striconveha.
18131         * lib/striconv.c (str_iconv): Optimize the case of an empty input
18132         string.
18133         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
18134
18135 2007-01-21  Bruno Haible  <bruno@clisp.org>
18136
18137         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
18138         * lib/striconveh.c (str_iconveh): Likewise.
18139
18140 2007-01-21  Bruno Haible  <bruno@clisp.org>
18141
18142         * lib/striconveh.h (mem_iconveh): New declaration.
18143         * lib/striconveh.c (mem_iconveh): New function.
18144         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
18145
18146 2007-01-21  Bruno Haible  <bruno@clisp.org>
18147
18148         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
18149
18150         * lib/striconveh.h (mem_cd_iconveh): Change specification.
18151         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
18152         original result buffer.
18153         (str_cd_iconveh): Update.
18154         * tests/test-striconveh.c (main): Update.
18155
18156         * lib/striconv.h (mem_cd_iconv): Change specification.
18157         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
18158         result buffer.
18159         (str_cd_iconv): Update.
18160         * tests/test-striconv.c (main): Update.
18161
18162 2007-01-21  Bruno Haible  <bruno@clisp.org>
18163
18164         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
18165
18166 2007-01-20  Jim Meyering  <jim@meyering.net>
18167
18168         * lib/userspec.c (parse_with_separator): If a user or group string
18169         starts with "+", skip the corresponding name-to-ID look-up, since
18170         such a look-up must fail: user and group names may not include "+".
18171
18172 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
18173
18174         * lib/poll.c: Include sys/time.h and time.h unconditionally,
18175         since we now assume the sys_time module.
18176         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
18177         check for sys/time.h; no longer needed.
18178         * modules/poll (Depends-on): Depend on sys_time.
18179
18180 2007-01-18  Bruno Haible  <bruno@clisp.org>
18181
18182         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
18183         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18184
18185         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
18186         gettimeofday.
18187
18188         * tests/test-gettimeofday.c: Include <time.h>.
18189         (dummy): Remove variable.
18190
18191         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
18192         gl_HEADER_SYS_TIME_H.
18193         (gl_HEADER_SYS_TIME_H): New macro.
18194
18195         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
18196         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18197         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
18198         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
18199         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18200         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
18201         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
18202         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18203         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
18204         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
18205         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18206
18207         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
18208         last change; it caused a compilation error when cross-compiling to
18209         Cygwin.
18210
18211 2007-01-18  Jim Meyering  <jim@meyering.net>
18212
18213         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
18214         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
18215         than the race-prone "test -d sys || mkdir sys".
18216         (configure.ac): Use AC_PROG_MKDIR_P.
18217         * modules/sys_select: Likewise.
18218         * modules/sys_socket: Likewise.
18219         * modules/sys_time: Likewise.
18220
18221 2007-01-18  Eric Blake  <ebb9@byu.net>
18222
18223         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
18224         replace gettimeofday.
18225         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
18226         name, to avoid infinite recursion.
18227
18228 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
18229
18230         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
18231         module sys_time.
18232         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
18233         assume timespec.h defines struct timeval.
18234         * lib/settime.c: Likewise.
18235         * lib/utimens.c: Likewise.
18236         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
18237         since we now assume the gettimeofday module.
18238         * lib/tempname.c (__gen_tempname): Likewise.
18239         * lib/gettimeofday.h: Remove.
18240         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
18241         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
18242         Include <time.h>, for 'time()'.
18243         (localtime_buffer_addr): Also use this workaround if
18244         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
18245         to simplify the uses.  All uses changed.
18246         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
18247         that #undef is inside {}, and 'const' follows type name consistently.
18248         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
18249         (gettimeofday): Do not use the maximum possible value for
18250         tv->tv_usec, since that might break usages other than ls.c.
18251         Instead, we'll leave ls.c alone.  This undoes today's patch
18252         by Bruno.  Add a compile-time warning for 1s-clock resolution;
18253         we've never observed the problem but might as well keep the
18254         canary.
18255         * lib/nanosleep.c: Include timespec.h first, for interface check.
18256         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
18257         now assume the sys_time module.
18258         * lib/tempname.c: Likewise.
18259         * lib/timespec.h: Likewise.
18260         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
18261         needed.
18262         * lib/strftime.c: Likewise.
18263         * lib/timespec.h: Likewise.
18264         * lib/posixtm.c: Include posixtm.h first, for interface check.
18265         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
18266         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
18267         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
18268         * lib/sys_time_.h: New file.
18269         * lib/timespec.h (struct timespec): Use long int, not long.
18270         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
18271         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
18272         Remove obsolescent call to AC_HEADER_TIME.
18273         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
18274         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
18275         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18276         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
18277         Likewise.
18278         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
18279         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
18280         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
18281         into the sys_time module.  Check for gettimeofday just once.
18282         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
18283         for gettimeofday signature to just check the signature.  Merely
18284         compile it, since linking doesn't test signature.  Improve test for
18285         whether gettimeofday.o is actually needed.
18286         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
18287         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
18288         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
18289         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18290         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
18291         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
18292         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
18293         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
18294         than worrying about sys/time.h.
18295         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
18296         Don't bother worrying about TIME_WITH_SYS_TIME.
18297         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
18298         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
18299         * m4/sys_time_h.m4: New file.
18300         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
18301         Don't include sys/time.h.  Return from main rather than exiting.
18302         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
18303         all uses changed.
18304         * modules/gethrxtime (Depends-on): Add sys_time.
18305         * modules/gettime (Depends-on): Likewise.
18306         * modules/gettimeofday (Depends-on): Likewise.
18307         * modules/nanosleep (Depends-on): Likewise.
18308         * modules/settime (Depends-on): Likewise.
18309         * modules/tempname (Depends-on): Likewise.
18310         * modules/utimens (Depends-on): Likewise.
18311         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
18312         (Include:) Change back to <sys/time.h>.
18313         (Maintainer:) Add self.
18314         * modules/sys_time: New file.
18315         * modules/tempname (Depends-on): Add gettimeofday.
18316         * tests/test-gettimeofday.c: Include <sys/time.h>
18317         rather than gettimeofday.h.
18318
18319 2007-01-17  Bruno Haible  <bruno@clisp.org>
18320
18321         * gnulib-tool (func_get_license): Revert last patch. Instead, let
18322         the license default to GPL.
18323         (func_create_testdir): Don't complain if a module is LGPL and its
18324         tests module depends on GPLed modules.
18325
18326 2007-01-17  Bruno Haible  <bruno@clisp.org>
18327
18328         * lib/gettimeofday.c (gettimeofday): Add code for the case
18329         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
18330         maximum possible value for tv->tv_usec, rather than the minimum one.
18331
18332 2005-10-08  Martin Lambers  <marlam@marlam.de>
18333 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
18334 2007-01-16  Bruno Haible  <bruno@clisp.org>
18335
18336         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
18337         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
18338         gl_FUNC_GETTIMEOFDAY.
18339         (Include): Add gettimeofday.h.
18340         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
18341         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
18342         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
18343         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
18344         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
18345         * lib/gettimeofday.h: New file.
18346         * lib/gettimeofday.c: Include <sys/timeb.h>.
18347         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
18348         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18349         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
18350         fall back on time().
18351
18352         * tests/test-gettimeofday.c: New file.
18353         * modules/gettimeofday-tests: New file.
18354
18355 2007-01-16  Eric Blake  <ebb9@byu.net>
18356
18357         * modules/fnmatch (Depends-on): Depend on wchar.
18358         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
18359         * m4/fnmatch.m4: Likewise.
18360         * modules/mbchar (Makefile.am): Assume <wchar.h>.
18361         * m4/mbchar.m4: Likewise.
18362         * modules/mbswidth (Depends-on): Depend on wchar.
18363         * lib/mbswidth.c: Assume <wchar.h>.
18364         * m4/mbswidth.m4: Likewise.
18365         * modules/quotearg (Depends-on): Depend on wchar.
18366         * lib/quotearg.c: Assume <wchar.h>.
18367         * m4/quotearg.m4: Likewise.
18368         * modules/regex (Depends-on): Depend on wchar.
18369         * lib/regex_internal.h: Assume <wchar.h>.
18370         * m4/regex.m4: Likewise.
18371         * modules/stdint (Depends-on): Depend on wchar.
18372         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
18373         * m4/stdint.m4: Likewise.
18374         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
18375         * modules/strftime (Depends-on): Depend on wchar.
18376         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
18377         * modules/strtol (Depends-on): Depend on wchar.
18378         * lib/strtol.c: Assume <wchar.h>.
18379         * modules/wcwidth (Depends-on): Depend on wchar.
18380         * lib/wcwidth.h: Assume <wchar.h>.
18381         * m4/wcwidth.m4: Likewise.
18382
18383 2007-01-16  Bruno Haible  <bruno@clisp.org>
18384
18385         * modules/csharpexec-script: New, created from...
18386         * modules/csharpexec: ... this.
18387
18388 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
18389
18390         * modules/javaexec-script: New, created from...
18391         * modules/javaexec: ... this.
18392
18393 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18394
18395         * modules/poll (Dependencies): Add sys_select.
18396
18397 2007-01-15  Jim Meyering  <jim@meyering.net>
18398
18399         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
18400         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
18401         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
18402         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
18403
18404 2007-01-15  Bruno Haible  <bruno@clisp.org>
18405
18406         * modules/striconveh: New file.
18407         * lib/striconveh.h: New file.
18408         * lib/striconveh.c: New file.
18409         * MODULES.html.sh (Internationalization functions): Add striconveh.
18410
18411         * modules/striconveh-tests: New file.
18412         * tests/test-striconveh.c: New file.
18413
18414 2007-01-15  Bruno Haible  <bruno@clisp.org>
18415
18416         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
18417         not from GNU libiconv or GNU libc.
18418
18419 2007-01-15  Bruno Haible  <bruno@clisp.org>
18420
18421         * doc/gnulib-intro.texi (Copyright): Explain the different license
18422         terms for module descriptions, autoconf macros, tests, documentation.
18423
18424 2007-01-14  Bruno Haible  <bruno@clisp.org>
18425
18426         * modules/striconv-tests: New file.
18427         * tests/test-striconv.c: New file.
18428
18429 2007-01-14  Bruno Haible  <bruno@clisp.org>
18430
18431         * modules/iconv-tests: New file.
18432         * tests/test-iconv.c: New file.
18433
18434 2007-01-14  Bruno Haible  <bruno@clisp.org>
18435
18436         * gnulib-tool (func_get_license): For test modules, use the license of
18437         the main module.
18438
18439 2007-01-14  Bruno Haible  <bruno@clisp.org>
18440
18441         * modules/iconv (Include): Clarify that <iconv.h> can only be included
18442         if iconv is found to exist.
18443
18444 2007-01-14  Bruno Haible  <bruno@clisp.org>
18445
18446         * modules/c-ctype-tests: New file.
18447         * tests/test-c-ctype.c: New file.
18448
18449 2007-01-14  Bruno Haible  <bruno@clisp.org>
18450
18451         * modules/binary-io-tests: New file.
18452         * tests/test-binary-io.sh: New file.
18453         * tests/test-binary-io.c: New file.
18454
18455 2007-01-14  Bruno Haible  <bruno@clisp.org>
18456
18457         * modules/array-oset-tests: New file.
18458         * tests/test-array_oset.c: New file.
18459
18460 2007-01-14  Bruno Haible  <bruno@clisp.org>
18461
18462         * modules/array-list-tests: New file.
18463         * tests/test-array_list.c: New file.
18464
18465 2007-01-14  Bruno Haible  <bruno@clisp.org>
18466
18467         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
18468         and make.
18469         Reported by Simon Josefsson in
18470         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
18471
18472 2007-01-14  Bruno Haible  <bruno@clisp.org>
18473
18474         * modules/allocsa-tests: New file.
18475         * tests/test-allocsa.c: New file.
18476
18477 2007-01-14  Bruno Haible  <bruno@clisp.org>
18478
18479         * modules/fchdir (Depends-on): Add absolute-header.
18480         * modules/unistd (Depends-on): Likewise.
18481
18482 2006-12-30  Bruno Haible  <bruno@clisp.org>
18483
18484         * modules/fchdir: New file.
18485         * modules/unistd (Files): Add lib/unistd_.h.
18486         (Makefile.am): Generate unistd.h from unistd_.h.
18487         * lib/fchdir.c: New file.
18488         * lib/dirent_.h: New file.
18489         * lib/unistd_.h: New file.
18490         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
18491         * m4/fchdir.m4: New file.
18492         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
18493         (gl_HEADER_UNISTD): Invoke it.
18494         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
18495         function.
18496         * lib/backupfile.c (opendir, closedir): Undefine.
18497         * lib/chown.c (open, close): Undefine.
18498         * lib/clean-temp.c (open, close): Undefine.
18499         * lib/copy-file.c (open, close): Undefine.
18500         * lib/execute.c (open, close): Undefine.
18501         * lib/fsusage.c (open, close): Undefine.
18502         * lib/gc-gnulib.c (open, close): Undefine.
18503         * lib/getcwd.c (opendir, closedir): Undefine.
18504         * lib/glob.c (opendir, closedir): Undefine.
18505         * lib/javacomp.c (open, close): Undefine.
18506         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
18507         * lib/openat-proc.c (open, close): Undefine.
18508         * lib/pagealign_alloc.c (open, close): Undefine.
18509         * lib/pipe.c (open, close): Undefine.
18510         * lib/progreloc.c (open, close): Undefine.
18511         * lib/savedir.c (opendir, closedir): Undefine.
18512         * lib/utime.c (open, close): Undefine.
18513         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
18514
18515 2007-01-10  Bruno Haible  <bruno@clisp.org>
18516
18517         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
18518
18519 2007-01-12  Eric Blake  <ebb9@byu.net>
18520
18521         Provide a robust <wchar.h>.  Further simplifications are now
18522         possible in other modules, but not included here.
18523         * modules/wchar: New module.
18524         * m4/wchar.m4: New file.
18525         * lib/wchar_.h: Likewise.
18526         * modules/mbchar (Depends-on): Depend on wchar, as the first use
18527         of the new module.
18528         * MODULES.html.sh (Extended multibyte and wide character utilities):
18529         New section.
18530
18531 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
18532
18533         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
18534         to a reasonable default for memory allocation.
18535         (xreadlink): Don't allocate a huge buffer, to work around a buggy
18536         file system that reports garbage st_size values for symlinks.
18537         Problem reported by Liyang Hu.
18538
18539 2007-01-11  Simon Josefsson  <simon@josefsson.org>
18540
18541         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
18542         Emacs .#* auto-save files).
18543
18544 2007-01-11  Bruno Haible  <bruno@clisp.org>
18545
18546         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
18547         directory.
18548
18549 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18550
18551         Use @...@ consistently in lib/wctype_.h.
18552         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
18553         on it being set to 1 or 0.
18554         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
18555         go back to AC_SUBSTing it.
18556         * modules/wctype (Makefile.am): Undo previous change.
18557
18558 2007-01-10  Eric Blake  <ebb9@byu.net>
18559
18560         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
18561         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
18562         * modules/wctype (Makefile.am): Likewise.
18563         Reported by Chris McGuire.
18564
18565 2007-01-10  Jim Meyering  <jim@meyering.net>
18566
18567         fts.c: a small readability/maintainability improvement
18568         * lib/fts.c (fts_read): Make this code slightly more readable and
18569         maintainable by hoisting the "sp->fts_cur = p" assignments to
18570         immediately follow the statements that set P.  Derived from
18571         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
18572
18573 2007-01-10  Eric Blake  <ebb9@byu.net>
18574
18575         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
18576         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
18577         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
18578         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18579         Reported by Chris McGuire.
18580
18581 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18582
18583         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
18584         in sed script.
18585
18586 2007-01-09  Bruno Haible  <bruno@clisp.org>
18587
18588         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
18589         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
18590         variables.
18591         (func_module): Use them.
18592
18593 2007-01-09  Bruno Haible  <bruno@clisp.org>
18594
18595         * modules/unistr/base: New file.
18596         * lib/unistr.h: New file.
18597
18598         * modules/unistr/u8-to-u16: New file.
18599         * lib/unistr/u8-to-u16.c: New file.
18600
18601         * modules/unistr/u8-to-u32: New file.
18602         * lib/unistr/u8-to-u32.c: New file.
18603
18604         * modules/unistr/u16-to-u8: New file.
18605         * lib/unistr/u16-to-u8.c: New file.
18606
18607         * modules/unistr/u16-to-u32: New file.
18608         * lib/unistr/u16-to-u32.c: New file.
18609
18610         * modules/unistr/u32-to-u8: New file.
18611         * lib/unistr/u32-to-u8.c: New file.
18612
18613         * modules/unistr/u32-to-u16: New file.
18614         * lib/unistr/u32-to-u16.c: New file.
18615
18616         * modules/unistr/u8-check: New file.
18617         * modules/unistr/u16-check: New file.
18618         * modules/unistr/u32-check: New file.
18619         * lib/unistr/u8-check.c: New file.
18620         * lib/unistr/u16-check.c: New file.
18621         * lib/unistr/u32-check.c: New file.
18622
18623         * modules/unistr/u8-chr: New file.
18624         * modules/unistr/u16-chr: New file.
18625         * modules/unistr/u32-chr: New file.
18626         * lib/unistr/u8-chr.c: New file.
18627         * lib/unistr/u16-chr.c: New file.
18628         * lib/unistr/u32-chr.c: New file.
18629
18630         * modules/unistr/u8-cmp: New file.
18631         * modules/unistr/u16-cmp: New file.
18632         * modules/unistr/u32-cmp: New file.
18633         * lib/unistr/u8-cmp.c: New file.
18634         * lib/unistr/u16-cmp.c: New file.
18635         * lib/unistr/u32-cmp.c: New file.
18636
18637         * modules/unistr/u8-cpy: New file.
18638         * modules/unistr/u16-cpy: New file.
18639         * modules/unistr/u32-cpy: New file.
18640         * lib/unistr/u8-cpy.c: New file.
18641         * lib/unistr/u16-cpy.c: New file.
18642         * lib/unistr/u32-cpy.c: New file.
18643         * lib/unistr/u-cpy.h: New file.
18644
18645         * modules/unistr/u8-cpy-alloc: New file.
18646         * modules/unistr/u16-cpy-alloc: New file.
18647         * modules/unistr/u32-cpy-alloc: New file.
18648         * lib/unistr/u8-cpy-alloc.c: New file.
18649         * lib/unistr/u16-cpy-alloc.c: New file.
18650         * lib/unistr/u32-cpy-alloc.c: New file.
18651         * lib/unistr/u-cpy-alloc.h: New file.
18652
18653         * modules/unistr/u8-endswith: New file.
18654         * modules/unistr/u16-endswith: New file.
18655         * modules/unistr/u32-endswith: New file.
18656         * lib/unistr/u8-endswith.c: New file.
18657         * lib/unistr/u16-endswith.c: New file.
18658         * lib/unistr/u32-endswith.c: New file.
18659         * lib/unistr/u-endswith.h: New file.
18660
18661         * modules/unistr/u8-mblen: New file.
18662         * modules/unistr/u16-mblen: New file.
18663         * modules/unistr/u32-mblen: New file.
18664         * lib/unistr/u8-mblen.c: New file.
18665         * lib/unistr/u16-mblen.c: New file.
18666         * lib/unistr/u32-mblen.c: New file.
18667
18668         * modules/unistr/u8-mbtouc: New file.
18669         * modules/unistr/u16-mbtouc: New file.
18670         * modules/unistr/u32-mbtouc: New file.
18671         * lib/unistr/u8-mbtouc.c: New file.
18672         * lib/unistr/u16-mbtouc.c: New file.
18673         * lib/unistr/u32-mbtouc.c: New file.
18674
18675         * modules/unistr/u8-mbtouc-safe: New file.
18676         * modules/unistr/u16-mbtouc-safe: New file.
18677         * modules/unistr/u32-mbtouc-safe: New file.
18678         * lib/unistr/u8-mbtouc-safe.c: New file.
18679         * lib/unistr/u16-mbtouc-safe.c: New file.
18680         * lib/unistr/u32-mbtouc-safe.c: New file.
18681
18682         * modules/unistr/u8-move: New file.
18683         * modules/unistr/u16-move: New file.
18684         * modules/unistr/u32-move: New file.
18685         * lib/unistr/u8-move.c: New file.
18686         * lib/unistr/u16-move.c: New file.
18687         * lib/unistr/u32-move.c: New file.
18688         * lib/unistr/u-move.h: New file.
18689
18690         * modules/unistr/u8-next: New file.
18691         * modules/unistr/u16-next: New file.
18692         * modules/unistr/u32-next: New file.
18693         * lib/unistr/u8-next.c: New file.
18694         * lib/unistr/u16-next.c: New file.
18695         * lib/unistr/u32-next.c: New file.
18696
18697         * modules/unistr/u8-prev: New file.
18698         * modules/unistr/u16-prev: New file.
18699         * modules/unistr/u32-prev: New file.
18700         * lib/unistr/u8-prev.c: New file.
18701         * lib/unistr/u16-prev.c: New file.
18702         * lib/unistr/u32-prev.c: New file.
18703
18704         * modules/unistr/u8-set: New file.
18705         * modules/unistr/u16-set: New file.
18706         * modules/unistr/u32-set: New file.
18707         * lib/unistr/u8-set.c: New file.
18708         * lib/unistr/u16-set.c: New file.
18709         * lib/unistr/u32-set.c: New file.
18710         * lib/unistr/u-set.h: New file.
18711
18712         * modules/unistr/u8-startswith: New file.
18713         * modules/unistr/u16-startswith: New file.
18714         * modules/unistr/u32-startswith: New file.
18715         * lib/unistr/u8-startswith.c: New file.
18716         * lib/unistr/u16-startswith.c: New file.
18717         * lib/unistr/u32-startswith.c: New file.
18718         * lib/unistr/u-startswith.h: New file.
18719
18720         * modules/unistr/u8-stpcpy: New file.
18721         * modules/unistr/u16-stpcpy: New file.
18722         * modules/unistr/u32-stpcpy: New file.
18723         * lib/unistr/u8-stpcpy.c: New file.
18724         * lib/unistr/u16-stpcpy.c: New file.
18725         * lib/unistr/u32-stpcpy.c: New file.
18726         * lib/unistr/u-stpcpy.h: New file.
18727
18728         * modules/unistr/u8-stpncpy: New file.
18729         * modules/unistr/u16-stpncpy: New file.
18730         * modules/unistr/u32-stpncpy: New file.
18731         * lib/unistr/u8-stpncpy.c: New file.
18732         * lib/unistr/u16-stpncpy.c: New file.
18733         * lib/unistr/u32-stpncpy.c: New file.
18734         * lib/unistr/u-stpncpy.h: New file.
18735
18736         * modules/unistr/u8-strcat: New file.
18737         * modules/unistr/u16-strcat: New file.
18738         * modules/unistr/u32-strcat: New file.
18739         * lib/unistr/u8-strcat.c: New file.
18740         * lib/unistr/u16-strcat.c: New file.
18741         * lib/unistr/u32-strcat.c: New file.
18742         * lib/unistr/u-strcat.h: New file.
18743
18744         * modules/unistr/u8-strchr: New file.
18745         * modules/unistr/u16-strchr: New file.
18746         * modules/unistr/u32-strchr: New file.
18747         * lib/unistr/u8-strchr.c: New file.
18748         * lib/unistr/u16-strchr.c: New file.
18749         * lib/unistr/u32-strchr.c: New file.
18750
18751         * modules/unistr/u8-strcmp: New file.
18752         * modules/unistr/u16-strcmp: New file.
18753         * modules/unistr/u32-strcmp: New file.
18754         * lib/unistr/u8-strcmp.c: New file.
18755         * lib/unistr/u16-strcmp.c: New file.
18756         * lib/unistr/u32-strcmp.c: New file.
18757
18758         * modules/unistr/u8-strcpy: New file.
18759         * modules/unistr/u16-strcpy: New file.
18760         * modules/unistr/u32-strcpy: New file.
18761         * lib/unistr/u8-strcpy.c: New file.
18762         * lib/unistr/u16-strcpy.c: New file.
18763         * lib/unistr/u32-strcpy.c: New file.
18764         * lib/unistr/u-strcpy.h: New file.
18765
18766         * modules/unistr/u8-strcspn: New file.
18767         * modules/unistr/u16-strcspn: New file.
18768         * modules/unistr/u32-strcspn: New file.
18769         * lib/unistr/u8-strcspn.c: New file.
18770         * lib/unistr/u16-strcspn.c: New file.
18771         * lib/unistr/u32-strcspn.c: New file.
18772         * lib/unistr/u-strcspn.h: New file.
18773
18774         * modules/unistr/u8-strdup: New file.
18775         * modules/unistr/u16-strdup: New file.
18776         * modules/unistr/u32-strdup: New file.
18777         * lib/unistr/u8-strdup.c: New file.
18778         * lib/unistr/u16-strdup.c: New file.
18779         * lib/unistr/u32-strdup.c: New file.
18780         * lib/unistr/u-strdup.h: New file.
18781
18782         * modules/unistr/u8-strlen: New file.
18783         * modules/unistr/u16-strlen: New file.
18784         * modules/unistr/u32-strlen: New file.
18785         * lib/unistr/u8-strlen.c: New file.
18786         * lib/unistr/u16-strlen.c: New file.
18787         * lib/unistr/u32-strlen.c: New file.
18788         * lib/unistr/u-strlen.h: New file.
18789
18790         * modules/unistr/u8-strmblen: New file.
18791         * modules/unistr/u16-strmblen: New file.
18792         * modules/unistr/u32-strmblen: New file.
18793         * lib/unistr/u8-strmblen.c: New file.
18794         * lib/unistr/u16-strmblen.c: New file.
18795         * lib/unistr/u32-strmblen.c: New file.
18796
18797         * modules/unistr/u8-strmbtouc: New file.
18798         * modules/unistr/u16-strmbtouc: New file.
18799         * modules/unistr/u32-strmbtouc: New file.
18800         * lib/unistr/u8-strmbtouc.c: New file.
18801         * lib/unistr/u16-strmbtouc.c: New file.
18802         * lib/unistr/u32-strmbtouc.c: New file.
18803
18804         * modules/unistr/u8-strncat: New file.
18805         * modules/unistr/u16-strncat: New file.
18806         * modules/unistr/u32-strncat: New file.
18807         * lib/unistr/u8-strncat.c: New file.
18808         * lib/unistr/u16-strncat.c: New file.
18809         * lib/unistr/u32-strncat.c: New file.
18810         * lib/unistr/u-strncat.h: New file.
18811
18812         * modules/unistr/u8-strncmp: New file.
18813         * modules/unistr/u16-strncmp: New file.
18814         * modules/unistr/u32-strncmp: New file.
18815         * lib/unistr/u8-strncmp.c: New file.
18816         * lib/unistr/u16-strncmp.c: New file.
18817         * lib/unistr/u32-strncmp.c: New file.
18818
18819         * modules/unistr/u8-strncpy: New file.
18820         * modules/unistr/u16-strncpy: New file.
18821         * modules/unistr/u32-strncpy: New file.
18822         * lib/unistr/u8-strncpy.c: New file.
18823         * lib/unistr/u16-strncpy.c: New file.
18824         * lib/unistr/u32-strncpy.c: New file.
18825         * lib/unistr/u-strncpy.h: New file.
18826
18827         * modules/unistr/u8-strnlen: New file.
18828         * modules/unistr/u16-strnlen: New file.
18829         * modules/unistr/u32-strnlen: New file.
18830         * lib/unistr/u8-strnlen.c: New file.
18831         * lib/unistr/u16-strnlen.c: New file.
18832         * lib/unistr/u32-strnlen.c: New file.
18833         * lib/unistr/u-strnlen.h: New file.
18834
18835         * modules/unistr/u8-strpbrk: New file.
18836         * modules/unistr/u16-strpbrk: New file.
18837         * modules/unistr/u32-strpbrk: New file.
18838         * lib/unistr/u8-strpbrk.c: New file.
18839         * lib/unistr/u16-strpbrk.c: New file.
18840         * lib/unistr/u32-strpbrk.c: New file.
18841         * lib/unistr/u-strpbrk.h: New file.
18842
18843         * modules/unistr/u8-strrchr: New file.
18844         * modules/unistr/u16-strrchr: New file.
18845         * modules/unistr/u32-strrchr: New file.
18846         * lib/unistr/u8-strrchr.c: New file.
18847         * lib/unistr/u16-strrchr.c: New file.
18848         * lib/unistr/u32-strrchr.c: New file.
18849
18850         * modules/unistr/u8-strspn: New file.
18851         * modules/unistr/u16-strspn: New file.
18852         * modules/unistr/u32-strspn: New file.
18853         * lib/unistr/u8-strspn.c: New file.
18854         * lib/unistr/u16-strspn.c: New file.
18855         * lib/unistr/u32-strspn.c: New file.
18856         * lib/unistr/u-strspn.h: New file.
18857
18858         * modules/unistr/u8-strstr: New file.
18859         * modules/unistr/u16-strstr: New file.
18860         * modules/unistr/u32-strstr: New file.
18861         * lib/unistr/u8-strstr.c: New file.
18862         * lib/unistr/u16-strstr.c: New file.
18863         * lib/unistr/u32-strstr.c: New file.
18864         * lib/unistr/u-strstr.h: New file.
18865
18866         * modules/unistr/u8-strtok: New file.
18867         * modules/unistr/u16-strtok: New file.
18868         * modules/unistr/u32-strtok: New file.
18869         * lib/unistr/u8-strtok.c: New file.
18870         * lib/unistr/u16-strtok.c: New file.
18871         * lib/unistr/u32-strtok.c: New file.
18872         * lib/unistr/u-strtok.h: New file.
18873
18874         * modules/unistr/u8-uctomb: New file.
18875         * modules/unistr/u16-uctomb: New file.
18876         * modules/unistr/u32-uctomb: New file.
18877         * lib/unistr/u8-uctomb.c: New file.
18878         * lib/unistr/u16-uctomb.c: New file.
18879         * lib/unistr/u32-uctomb.c: New file.
18880
18881         * MODULES.html.sh (Unicode string functions): Add the new modules.
18882
18883 2007-01-08  Bruno Haible  <bruno@clisp.org>
18884
18885         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
18886         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
18887         subdirectories.
18888
18889 2007-01-08  Karl Berry  <karl@gnu.org>
18890
18891         * doc/error.texi: mention that main() fns must set program_name
18892         when progname is used.
18893
18894 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
18895
18896         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
18897         WCTYPE_H is empty, for the benefit of builds from non-distclean
18898         directories.  Problem reported by Eric Blake in
18899         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
18900
18901 2007-01-08  Bruno Haible  <bruno@clisp.org>
18902
18903         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
18904         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
18905         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
18906         PROVIDE_CANONICALIZE_FILENAME_MODE.
18907         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
18908
18909 2007-01-08  Bruno Haible  <bruno@clisp.org>
18910
18911         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
18912         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
18913         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
18914         * lib/fts.c: Likewise.
18915         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
18916
18917 2006-12-25  Bruno Haible  <bruno@clisp.org>
18918
18919         * modules/utf8-ucs4-safe: New file.
18920         * lib/utf8-ucs4-safe.h: New file.
18921         * lib/unistr/utf8-ucs4-safe.c: New file.
18922
18923         * modules/utf16-ucs4-safe: New file.
18924         * lib/utf16-ucs4-safe.h: New file.
18925         * lib/unistr/utf16-ucs4-safe.c: New file.
18926
18927         * MODULES.html.sh (Unicode string functions): Add the new modules.
18928
18929 2007-01-08  Bruno Haible  <bruno@clisp.org>
18930
18931         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
18932         (Depends-on): Add unitypes.
18933         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
18934         (u8_mbtouc_aux): Move out to separate file.
18935         (u8_mbtouc): Use ucs4_t, uint8_t types.
18936         * lib/unistr/utf8-ucs4.c: New file.
18937
18938         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
18939         (Depends-on): Add unitypes.
18940         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
18941         (u16_mbtouc_aux): Move out to separate file.
18942         (u16_mbtouc): Use ucs4_t, uint16_t types.
18943         * lib/unistr/utf16-ucs4.c: New file.
18944
18945         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
18946         (Depends-on): Add unitypes.
18947         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
18948         (u8_uctomb_aux): Move out to separate file.
18949         (u8_uctomb): Use ucs4_t, uint8_t types.
18950         * lib/unistr/ucs4-utf8.c: New file.
18951
18952         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
18953         (Depends-on): Add unitypes.
18954         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
18955         (u16_uctomb_aux): Move out to separate file.
18956         (u16_uctomb): Use ucs4_t, uint16_t types.
18957         * lib/unistr/ucs4-utf16.c: New file.
18958
18959 2006-12-25  Bruno Haible  <bruno@clisp.org>
18960
18961         * modules/unitypes: New file.
18962         * lib/unitypes.h: New file.
18963         * MODULES.html.sh (func_all_modules): New section "Unicode string
18964         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
18965         this section. Add unitypes.
18966
18967 2007-01-08  Bruno Haible  <bruno@clisp.org>
18968
18969         Avoid variable names that conflict with those from libtool.
18970         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
18971         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
18972         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
18973         library_names_spec to acl_library_names_spec, hardcode_* to
18974         acl_hardcode_*.
18975         Reported by Ralf Wildenhues.
18976
18977 2007-01-08  Bruno Haible  <bruno@clisp.org>
18978
18979         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
18980         definition.
18981         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
18982         definition.
18983         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
18984         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
18985         definition.
18986         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
18987         definition.
18988         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
18989         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
18990         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
18991         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
18992         definition.
18993         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
18994         definition.
18995         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
18996         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
18997         GC_USE_<algorithm>.
18998         * lib/gc-libgcrypt.c: Likewise.
18999         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
19000         * modules/gc-arctwo (configure.ac): Likewise.
19001         * modules/gc-des (configure.ac): Likewise.
19002         * modules/gc-hmac-md5 (configure.ac): Likewise.
19003         * modules/gc-hmac-sha1 (configure.ac): Likewise.
19004         * modules/gc-md2 (configure.ac): Likewise.
19005         * modules/gc-md4 (configure.ac): Likewise.
19006         * modules/gc-md5 (configure.ac): Likewise.
19007         * modules/gc-random (configure.ac): Likewise.
19008         * modules/gc-rijndael (configure.ac): Likewise.
19009         * modules/gc-sha1 (configure.ac): Likewise.
19010
19011 2007-01-08  Bruno Haible  <bruno@clisp.org>
19012
19013         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
19014         macro definition.
19015         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
19016         definition.
19017         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
19018         definition.
19019         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
19020         * modules/fcntl-safer (configure.ac): Likewise.
19021         * modules/fopen-safer (configure.ac): Likewise.
19022         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
19023         GNULIB_FWRITEERROR macro definition.
19024
19025 2007-01-08  Bruno Haible  <bruno@clisp.org>
19026
19027         * m4/gnulib-common.m4: New file.
19028         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
19029         (func_get_filelist): Add m4/gnulib-common.m4.
19030
19031 2007-01-08  Bruno Haible  <bruno@clisp.org>
19032
19033         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
19034         command.
19035
19036 2007-01-08  Jim Meyering  <jim@meyering.net>
19037
19038         Use a more robust test for a "can't happen" condition.
19039         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
19040         narrowed the st_size value.  Presuming the "can't happen" condition
19041         is true, that narrowing could conceivably convert an invalid st_size
19042         value into a valid one.  Instead, use a change based on Matthew
19043         Woehlke's original patch.
19044
19045         Slight readability improvement: use an assert-like macro
19046         in place of literal "abort ()" uses.
19047         * lib/fts.c (fts_assert): Define.
19048         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
19049         Use this macro instead of a bare 'abort'.
19050
19051 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
19052
19053         Don't worry about using IRIX 5.3's wctype.h broken definitions;
19054         simply work around them.
19055         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
19056         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
19057         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
19058         declaring.
19059         Don't bother to define as macros, since the standard doesn't require it.
19060         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
19061         longer worry about IRIX 5.3.
19062         (HAVE_WCTYPE_CTMP_BUG): Remove.
19063
19064 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19065
19066         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
19067         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
19068         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
19069         Problems reported by Georg Schwarz for IRIX 5.3.
19070
19071         * gnulib-tool (autoconf_minversion): Take the maximum version number
19072         found, not the minimum.  Problem reported by James Youngman.
19073
19074 2007-01-03  Karl Berry  <karl@gnu.org>
19075
19076         * doc/error.texi: new file, explaining interaction with progname.
19077         * doc/gnulib.texi: include it.  Update copyright.
19078
19079 2007-01-03  Simon Josefsson  <simon@josefsson.org>
19080
19081         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
19082         AC_CANONICAL_HOST, to improve autobuild outputs.
19083
19084 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
19085             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
19086
19087         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
19088         sockets, server sockets, and other file descriptors.  Count errors
19089         to compute the return value.  Reorder the code a bit to be easier
19090         to follow.  Don't set event bits that were not requested (except
19091         POLLERR and POLLHUP).
19092
19093 2007-01-01  Bruno Haible  <bruno@clisp.org>
19094
19095         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
19096
19097 2007-01-03  Jim Meyering  <jim@meyering.net>
19098
19099         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
19100
19101 2007-01-02  Bruno Haible  <bruno@clisp.org>
19102
19103         * modules/settime (Include): Require timespec.h.
19104         * modules/nanosleep (Include): Likewise.
19105
19106 2007-01-01  Bruno Haible  <bruno@clisp.org>
19107
19108         * gnulib-tool (func_emit_copyright_notice): Bump year.
19109         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
19110
19111 2007-01-01  Bruno Haible  <bruno@clisp.org>
19112
19113         Improve support for OpenBSD.
19114         * build-aux/config.rpath (libname_spec): Export.
19115         (library_names_spec): New variable. Export.
19116         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
19117         library_names_spec from the config.rpath output. Locate shared library
19118         through the name pattern in library_names_spec.
19119
19120 2007-01-01  Eric Blake  <ebb9@byu.net>
19121
19122         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
19123
19124 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
19125
19126         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
19127         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
19128         assume the C locale, and avoid an "eval" that could cause trouble.
19129         Problem with SORT reported by Bob Proulx.
19130
19131         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
19132         Define.  Trivial patch from Henning Nielsen Lund, originally
19133         sent to bug-grep@gnu.org today.
19134
19135 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
19136
19137         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
19138         struct stat.  Problem reported by Henning Nielsen Lund.
19139         * lib/acl.c: Include acl.h first, to check interface.  Don't
19140         bother to include sys/types.h and sys/stat.h again.
19141
19142 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19143
19144         Import the following change from libc; problem reported by
19145         Sven Verdoolaege.
19146
19147         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
19148
19149         [BZ #1373]
19150         * lib/argp.h: Remove __NTH for __argp_usage inline function.
19151
19152 2006-12-28  Jim Meyering  <jim@meyering.net>
19153
19154         * build-aux/announce-gen: Do not assume that the package
19155         builds any of tar.gz, tar.bz2, and .xdelta files.
19156         Suggestion from Simon Josefsson.
19157
19158 2006-12-28  Simon Josefsson  <simon@josefsson.org>
19159
19160         * modules/announce-gen: New file.
19161
19162 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
19163
19164         * lib/mbchar.h: Just include <wctype.h>; the wctype module
19165         handles its gotchas now.
19166         * lib/mbswidth.c: Likewise.
19167         * lib/wcwidth.h: Likewise.
19168         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
19169         and iswcntrl; the wctype module does this stuff now.
19170         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19171         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
19172         * modules/mbchar (Depends-on): Add wctype.
19173         * modules/mbswidth (Depends-on): Likewise.
19174         * modules/wcwidth (Depends-on): Likewise.
19175
19176 2006-12-27  Eric Blake  <ebb9@byu.net>
19177
19178         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
19179         module uses more than what <wctype.h> is required to provide.
19180
19181 2006-12-26  Eric Blake  <ebb9@byu.net>
19182
19183         * gnulib-tool (sed_extract_prog): Avoid space-tab.
19184
19185 2006-12-26  Eric Blake  <ebb9@byu.net>
19186
19187         * modules/absolute-header: New module.
19188         * modules/fcntl (Depends-on): Depend on it.
19189         * modules/inttypes (Depends-on): Likewise.
19190         * modules/stdint (Depends-on): Likewise.
19191         * modules/sys_stat (Depends-on): Likewise.
19192         * modules/wctype (Depends-on): Likewise.
19193         * MODULES.html.sh (Support for building libraries and
19194         executables): Document it.
19195
19196 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
19197
19198         * gnulib-tool (SED): Remove, undoing previous change.
19199         The problem was that it broke coreutils on Solaris, because
19200         "sed --posix" leaked into a makefile.
19201         (sed): New alias, if 'alias' and GNU sed.
19202
19203 2006-12-24  Jim Meyering  <jim@meyering.net>
19204
19205         Work around an fchownat bug in glibc-2.4:
19206         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
19207         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
19208         in spite of the -P option.
19209         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
19210         New macros.
19211         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
19212         * modules/openat (Files): Add lib/fchownat.c.
19213         * lib/openat.c (fchownat): Don't define here.  Move to...
19214         * lib/fchownat.c: ...this new file.
19215
19216 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19217
19218         Fix bug reported by Bruno Haible in
19219         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
19220         where quotearg.c didn't compile on Mac OS X 10.2 because it
19221         lacks <wchar.h> and wint_t.
19222         * lib/wctype_.h (__wctype_wint_t): New type.
19223         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
19224         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
19225         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
19226         Arg is now of type __wctype_wint_t, not wint_t.
19227         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
19228         substitute HAVE_WINT_T.
19229         * modules/wctype (Files): Add m4/wint_t.m4.
19230         (wctype.h): Substitute HAVE_WINT_T.
19231
19232 2006-12-23  Bruno Haible  <bruno@clisp.org>
19233
19234         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
19235
19236 2006-12-23  Bruno Haible  <bruno@clisp.org>
19237
19238         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
19239         S_ISLNK.
19240         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
19241         mingw.
19242
19243 2006-12-22  Bruno Haible  <bruno@clisp.org>
19244
19245         * lib/copy-file.c: Include acl.h.
19246         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
19247         Close the file descriptors only after being done with copy_acl.
19248         * modules/copy-file (Depends-on): Add acl.
19249
19250 2006-12-22  Bruno Haible  <bruno@clisp.org>
19251
19252         * gnulib-tool (SED): New variable.
19253         Use $SED instead of sed everywhere.
19254
19255 2006-12-22  Bruno Haible  <bruno@clisp.org>
19256
19257         * modules/no-c++: New file.
19258         * m4/no-c++.m4: New file.
19259         * MODULES.html.sh (Support for building libraries and executables):
19260         Add no-c++.
19261
19262 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
19263
19264         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
19265         Include <limits.h>, and use its INT_MAX to rewrite the
19266         j loop so that it does not overflow 'int'.  Problem reported by
19267         Ralf Wildenhues in
19268         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
19269         Play it safe by shifting left by 1 rather than multiplying by 2,
19270         as GCC is less likely to optimize this away when the value
19271         is signed (when it assumes overflow leads to undefined behavior).
19272         Also, don't assume time_t uses two's complement.
19273
19274 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
19275
19276         * MODULES.html.sh: New module wctype.
19277         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
19278         * lib/fnmatch.c: Don't bother to include <wchar.h> before
19279         <wctype.h>, since the new wctype module should fix this.
19280         * lib/quotearg.c: Include <wctype.h> unconditionally, since
19281         the wctype module should arrange for it.
19282         * lib/regex_internal.h: Likewise.
19283         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
19284         since the wctype module should handle this now.
19285         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
19286         * modules/fnmatch (Depends-on): Add wctype.
19287         * modules/quotearg (Depends-on): Likewise.
19288         * modules/regex (Depends-on): Likewise.
19289
19290 2006-12-19  Bruno Haible  <bruno@clisp.org>
19291
19292         * lib/strdup.h [C++]: Wrap definitions in extern "C".
19293         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
19294
19295 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19296
19297         * modules/savewd (Depends-on): Fix dependency on fcntl.
19298
19299 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19300
19301         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
19302         conforms to C99, rather than relying on the user's environment
19303         setting of STDINT_H.
19304
19305 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19306         and Eric Blake  <ebb9@byu.net>
19307
19308         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
19309         This is more consistent with the other defines here.
19310         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
19311         Port to z/OS.  Problem reported by Paul Gilmartin.
19312         Change local vars to use gl_ prefix rather than ac_.
19313         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
19314         with other defines.
19315         * modules/double-slash-root: New module.
19316         * modules/dirname (Files): Remove m4/double-slash-root.m4.
19317         (Depends-on): Add double-slash-root.
19318         * MODULES.html.sh (File system functions): Mention new module.
19319
19320 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
19321
19322         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
19323         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
19324         This is for the benefit of gzip, which doesn't do i18n.
19325
19326 2006-12-12  Jim Meyering  <jim@meyering.net>
19327
19328         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
19329         Reported by Andreas Schwab <schwab@suse.de>.
19330
19331 2006-12-12  Bruno Haible  <bruno@clisp.org>
19332
19333         Merge these changes.
19334         2006-09-05  Bruno Haible  <bruno@clisp.org>
19335         * lib/iconvme.c (iconv_string): No need to save and restore errno when
19336         iconv_alloc succeeded.
19337         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
19338         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
19339         test for " && dest " at the end - dest is always != NULL there. Call
19340         iconv with 4xNULL arguments initially, to reset the state. Call iconv
19341         with 2xNULL arguments, also to flush the state storage. Handle the
19342         IRIX iconv behaviour. Realloc the final result, to throw away unused
19343         memory.
19344
19345 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
19346
19347         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
19348         and fchmodat unconditionally, since glibc 2.4 has them.
19349         Problem reported by Arkadiusz Miskiewicz.
19350
19351 2006-12-10  Bruno Haible  <bruno@clisp.org>
19352
19353         * gnulib-tool (func_import): Show the include files only for those
19354         modules that are copied and specified.
19355         Reported by Karl Berry.
19356
19357 2006-12-08  Jim Meyering  <jim@meyering.net>
19358
19359         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
19360         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
19361
19362         * build-aux/announce-gen: Add two new options, both optional:
19363         --bootstrap-tools=TOOL_LIST
19364               a comma-separated list of tools, e.g.,
19365               autoconf,automake,bison,gnulib
19366         --gnulib-snapshot-date=DATE
19367               if gnulib is in the bootstrap tool list,
19368               then report this as the snapshot date.
19369               If not specified, use the current date/time.
19370               If you specify a date here, be sure it's UTC.
19371
19372 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19373
19374         * tests/test-argp-2.sh: Fix test to match actual output.
19375         (func_compare): Fix sed script to be portable.
19376
19377 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
19378
19379         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
19380         workaround for this case.  It is not autoconfigured now; offhand
19381         it's hard to see how to autoconfigure it.
19382
19383 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
19384
19385         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
19386         a directory that is about to be chowned.  Such a directory's
19387         initial file permissions should permit the owner only and this
19388         should not be changed until after the chown, since the group and
19389         other bits would be incorrect if they granted permission before
19390         the chown.
19391
19392         Fix porting problem for iswctype reported by Georg Schwarz in:
19393         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
19394         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
19395         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
19396         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
19397         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19398
19399 2006-12-03  Jim Meyering  <jim@meyering.net>
19400
19401         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
19402         p->fts_statp may not yet be defined.
19403         (fts_read): Instead, set it in the caller, once p->fts_statp is
19404         sure to be defined, and corresponds to a top-level directory.
19405         This bug made du -x fail.  Here's the coreutils test case:
19406         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
19407         Reported by Mike Frysinger.
19408
19409 2006-12-01  Jim Meyering  <jim@meyering.net>
19410
19411         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
19412         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
19413         Reported by Simon Josefsson.
19414
19415 2006-11-30  Jim Meyering  <jim@meyering.net>
19416
19417         * m4/warning.m4: Use the all-permissive copyright notice
19418         recommended by RMS (rather than LGPL).
19419         * m4/vararrays.m4: Likewise.
19420         * m4/flexmember.m4: Likewise.
19421
19422 2006-11-29  Bruno Haible  <bruno@clisp.org>
19423
19424         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19425         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
19426         using +=.
19427         Reported by Simon Josefsson <simon@josefsson.org>.
19428
19429 2006-11-28  James Youngman <jay@gnu.org>
19430
19431         * README: Advise users that they might find the bug-gnulib@gnu.org
19432         and autotools-announce@gnu.org mailing lists useful.
19433
19434 2006-11-28  Bruno Haible  <bruno@clisp.org>
19435
19436         * m4/ptrdiff_max.m4: Remove file.
19437
19438 2006-11-21  Bruno Haible  <bruno@clisp.org>
19439
19440         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
19441         _AC_COMPUTE_INT.
19442         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19443         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
19444         _AC_COMPUTE_INT.
19445         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19446         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
19447         _AC_COMPUTE_INT.
19448         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19449
19450 2006-11-28  Jim Meyering  <jim@meyering.net>
19451
19452         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
19453         warning from "gcc -Wshadow" about shadowing the builtin.
19454
19455 2006-11-27  Bruno Haible  <bruno@clisp.org>
19456
19457         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
19458         _AC_COMPUTE_INT.
19459         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19460
19461 2006-11-27  Bruno Haible  <bruno@clisp.org>
19462             Paul Eggert  <eggert@cs.ucla.edu>
19463
19464         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
19465
19466 2006-11-26  Bruno Haible  <bruno@clisp.org>
19467
19468         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19469         noinst_LTLIBRARIES.
19470
19471 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19472             Bruno Haible  <bruno@clisp.org>
19473
19474         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
19475         if compiling with "gcc -ansi".
19476
19477 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19478
19479         Fix some incompatibilities with gcc -ansi -pedantic.
19480         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
19481         if compiling pedantically with GCC, unless it's C99 or later.
19482         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
19483         it mishandles gcc -ansi -pedantic as well.
19484         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
19485         if gcc -pedantic.
19486         * lib/regexec.c (check_node_accept_bytes): Don't use auto
19487         initializers for struct if -pedantic, unless it's C99 or later.
19488
19489 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
19490
19491         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
19492         Don't close an fd more than once. Identical atimes indicate
19493         success, not failure.
19494
19495 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
19496
19497         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
19498
19499 2006-11-23  Jim Meyering  <jim@meyering.net>
19500
19501         * build-aux/announce-gen: New file.  From coreutils.
19502
19503 2006-11-22  Jim Meyering  <jim@meyering.net>
19504
19505         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
19506         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
19507         (fts_read): Use a temporary to narrow the overused st_size member
19508         before using it in a switch statement.  Reported by Matthew Woehlke.
19509
19510         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
19511         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
19512
19513 2006-11-20  Bruno Haible  <bruno@clisp.org>
19514
19515         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
19516         changequote instead of pairs of brackets.
19517         Reported by Andreas Schwab <schwab@suse.de>.
19518
19519 2006-11-21  Jim Meyering  <jim@meyering.net>
19520
19521         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
19522         so as to remain compatible with older compilers.
19523         Patch from Michael Deutschmann.
19524
19525 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19526
19527         * MODULES.html.sh (File system functions): Add openat.
19528
19529         * lib/openat.h (rpl_fstatat): New macro, if
19530         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
19531         (fstatat): Define to rpl_fstatat under the same conditions,
19532         unless COMPILING_FSTATAT.
19533         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
19534         seems to have the bug.
19535         * lib/fstatat.c: New file.
19536         * modules/openat (Files): Add it.
19537
19538 2006-11-20  Bruno Haible  <bruno@clisp.org>
19539
19540         * Makefile: New file.
19541
19542 2006-11-20  Jim Meyering  <jim@meyering.net>
19543
19544         The beginnings of syntax-related checks for gnulib.
19545         * lib/Makefile: New file.
19546         * lib/t-idcache: New script.  Ensure that the two halves of
19547         idcache.c stay in sync.
19548
19549         * lib/idcache.c: Adjust comments in user- and group- portions to
19550         be more accurate, and to be consistent with one another.
19551
19552 2006-11-20  Jim Meyering  <jim@meyering.net>
19553
19554         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
19555         continue using the flexible array member (thus, this module performs
19556         half as many malloc calls), with the addition that...
19557         (getgroup, getuser): Consistently record a non-match via an empty
19558         "name" string, and map an empty string match to a NULL return value.
19559         * modules/idcache (Depends-on): Re-add flexmember.
19560
19561         * lib/idcache.c (getuser): Remove all uses of the register keyword.
19562         (getuidbyname, getgroup, getgidbyname): Likewise.
19563
19564         Use cleaner syntax: NULL rather than 0.
19565         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
19566
19567 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19568
19569         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
19570         It mishandled the case where the group was missing.
19571         Problem reported by Greg Schafer.
19572         * modules/idcache: Likewise.
19573
19574 2006-11-18  Jim Meyering  <jim@meyering.net>
19575
19576         * check-module (%exempt_header): Add exception for some
19577         conditionally-included headers.
19578
19579         * modules/i-ring (Depends-on): Add verify.
19580         (License): Change to LGPL.
19581
19582 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19583
19584         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
19585         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
19586         and inttostr.h.  Use snprintf rather than uinttostr, so that
19587         LGPLed code doesn't depend on GPLed.
19588
19589 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19590
19591         * modules/inline (License): Change from GPL to LGPL.
19592
19593 2006-11-17  Jim Meyering  <jim@meyering.net>
19594
19595         * modules/d-type (License): Switch to LGPL.
19596
19597 2006-11-15  Bruno Haible  <bruno@clisp.org>
19598
19599         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
19600
19601 2006-11-15  Eric Blake  <ebb9@byu.net>
19602
19603         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
19604         the module dependency.
19605
19606 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19607             Bruno Haible  <bruno@clisp.org>
19608
19609         * gnulib-tool (func_create_testdir): Add license consistency check.
19610
19611 2006-11-15  Eric Blake  <ebb9@byu.net>
19612
19613         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
19614         random "(cached)" in configure output.
19615
19616 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19617
19618         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
19619         test for conforming inttypes.h is both announced and cached.
19620
19621         * MODULES.html.sh (seen_modules, seen_files): New variables.
19622         (func_module): Rewrite to use a few less gnulib-tool and sed
19623         invocations.  Avoid a couple of quadratic algorithms for ...
19624         (missed_modules, missed_files): ... these, with ...
19625         (func_append, func_tmpdir): ... these new functions, from
19626         gnulib-tool.  Analogously, install traps for cleanup.
19627
19628         * tests/test-gc.c (main): Remove unused variables.
19629         * tests/test-read-file.c: Include stdlib.h, for 'free'.
19630
19631 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
19632
19633         * modules/inttostr (License): Change to LGPL.
19634
19635 2006-11-14  Eric Blake  <ebb9@byu.net>
19636
19637         * modules/tempname (License): Change to LGPL.
19638
19639 2006-11-14  Eric Blake  <ebb9@byu.net>
19640
19641         * doc/functions.texi (Function Portability): *printf functions on
19642         Cygwin now understand all POSIX size specifiers.
19643
19644 2006-11-14  Bruno Haible  <bruno@clisp.org>
19645
19646         * modules/c-ctype (License): Change to LGPL.
19647
19648 2006-11-12  Bruno Haible  <bruno@clisp.org>
19649
19650         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19651         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
19652         for GNOME libraries, for which the include files are installed in
19653         subdirectories of $prefix/include.
19654
19655 2006-11-12  Bruno Haible  <bruno@clisp.org>
19656
19657         * m4/lib-link.m4: Require at least autoconf-2.54.
19658         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
19659         name to underscores for the --with option.
19660
19661 2006-11-13  Bruno Haible  <bruno@clisp.org>
19662
19663         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
19664         the tests directory.
19665         Reported by Ralf Wildenhues.
19666
19667 2006-11-13  Bruno Haible  <bruno@clisp.org>
19668
19669         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
19670         (func_emit_initmacro_end): Undo the override here.
19671         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
19672         Works around the famous automake error in coreutils.
19673
19674 2006-11-13  Eric Blake  <ebb9@byu.net>
19675
19676         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
19677         element, not its node.
19678
19679 2006-11-12  Bruno Haible  <bruno@clisp.org>
19680
19681         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
19682         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
19683
19684 2006-11-12  Bruno Haible  <bruno@clisp.org>
19685
19686         * gnulib-tool: New option --local-symlink.
19687         (func_usage): Document it.
19688         (lsymbolic): New variable.
19689         (func_import, func_create_testdir): If --symlink was not specified,
19690         test whether --local-symlink was specified and the file comes from
19691         the local_gnulib_dir.
19692
19693 2006-11-12  Bruno Haible  <bruno@clisp.org>
19694
19695         * gnulib-tool (func_ln): New function.
19696         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
19697
19698 2006-11-12  Bruno Haible  <bruno@clisp.org>
19699
19700         Finish support for source files in subdirectories.
19701         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
19702         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
19703         AUTOMAKE_OPTIONS.
19704         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
19705
19706 2006-11-12  Bruno Haible  <bruno@clisp.org>
19707
19708         * gnulib-tool (func_get_automake_snippet): Synthesize also an
19709         EXTRA_lib_SOURCES augmentation.
19710         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
19711
19712 2006-11-12  Jim Meyering  <jim@meyering.net>
19713
19714         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
19715         file descriptors.  This also averts a failure on systems with
19716         native openat support when a traversed directory lacks "x" access.
19717         * lib/fts_.h: Include "i-ring.h"
19718         (struct FTS) [fts_fd_ring]: New member.
19719         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
19720         (FCHDIR): Add parentheses.
19721         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
19722         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
19723         When descending, rather than simply closing the previous
19724         fts_cwd_fd value, push that file descriptor onto the ring.
19725         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
19726         (fts_open): Initialize the new fd_ring member.
19727         (fts_close): Clear the ring.
19728         (fts_safe_changedir): When possible, use our new fd_ring to skip
19729         the diropen and fstat and dev/ino comparison that would normally
19730         accompany a virtual `chdir ("..")'.
19731
19732         * modules/fts (Depends-on): Add i-ring.
19733         * modules/i-ring: New module.
19734         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
19735         * m4/i-ring.m4: New file.
19736
19737 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19738
19739         * gnulib-tool (func_create_testdir): Fix replacement of
19740         `build-aux' in configure.ac.  Run autotools in gltests
19741         subdirectory.
19742         (func_create_testdir, func_create_megatestdir, test): There is
19743         no need for '--force' in most autotool invocations in a new
19744         tree.  Actually fail the whole test if any of the tools, or the
19745         configure or make stages fail.
19746
19747         Sync from Automake.
19748         * build-aux/gnupload: Revert last change.  Add pointer to upload
19749         instructions of the GNU Maintenance Instructions.
19750         Suggestion by Karl Berry.
19751
19752 2006-11-10  Jim Meyering  <jim@meyering.net>
19753
19754         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
19755
19756 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19757
19758         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
19759         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
19760         (bind_textdomain_codeset) [! ENABLE_NLS]:
19761         Evaluate all the arguments.  That way, callers get compatible behavior
19762         if the arguments have side effects.  Also, it avoids some GCC
19763         diagnostics in some cases; Joel E. Denny reported problems when Bison
19764         was configured with --enable-gcc-warnigs.
19765
19766 2006-11-10  Jim Meyering  <jim@meyering.net>
19767
19768         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
19769         relevant options in CFLAGS (like -O, -fno-inline) are taken into
19770         account.
19771
19772 2006-11-10  Jim Meyering  <jim@meyering.net>
19773
19774         * modules/inline: New file/module.
19775         * modules/xalloc (Files): Remove m4/inline.m4.
19776         (Depends-on): Add inline, instead.
19777         * modules/oset: Likewise.
19778         * modules/list: Likewise.
19779
19780 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19781
19782         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
19783         Problem reported by Matthew Woehlke.
19784
19785 2006-11-09  Bruno Haible  <bruno@clisp.org>
19786
19787         * lib/tempname.c (gen_tempname): Remove variant that invokes
19788         __gen_tempname.
19789         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
19790         __gen_tempname.
19791
19792 2006-11-08  Bruno Haible  <bruno@clisp.org>
19793
19794         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
19795         to 'yes' instead of 'cross-compiling'.
19796
19797 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
19798
19799         * lib/quotearg.h (quotearg_free): New decl.
19800         * lib/quotearg.c (quotearg_free): New function.
19801         (slot0, nslots, slotvec0, slotvec):
19802         Now file-scope so that quotearg_free can get at them.
19803
19804 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19805
19806         Sync from Automake.
19807         * build-aux/gnupload: Add missing 'gnu' to example URL.
19808         Report by Karl Berry.
19809
19810 2006-11-08  Bruno Haible  <bruno@clisp.org>
19811
19812         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
19813         Suggested by Paul Eggert.
19814
19815 2006-11-08  Jim Meyering  <jim@meyering.net>
19816
19817         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
19818         It's already included if !_LIBC.
19819         (fts_safe_changedir): Add a comment.
19820
19821 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
19822
19823         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
19824         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
19825         Matthew Woehlke.
19826
19827         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
19828         definitions up, to avoid colliding with change below.
19829         (static_inline) [HAVE_INLINE]: New macro.
19830         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
19831         Provide extern decls when !HAVE_INLINE.  Do not define unless
19832         static_inline is defined, either by us or by xmalloc.c.  Use
19833         static_inline rather than static inline.
19834         (XCALLOC): Optimize sizeof(T) = 1 case.
19835         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
19836
19837 2006-11-07  Bruno Haible  <bruno@clisp.org>
19838
19839         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
19840         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
19841         AC_C_INLINE.
19842         * modules/xalloc (Files): Add m4/inline.m4.
19843
19844 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19845
19846         * README: Fix typo.
19847         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
19848         (Miscellanous Notes): ...from this.
19849
19850 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
19851
19852         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
19853         Mention that offsetof should be used instead of sizeof.
19854         From Bruno Haible.
19855
19856 2006-11-07  Bruno Haible  <bruno@clisp.org>
19857
19858         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
19859
19860 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
19861
19862         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
19863         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
19864         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
19865         (gl_tree_add_before, gl_tree_add_after):
19866         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
19867         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
19868         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
19869         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
19870         (gl_linked_add_after, gl_linked_add_at): Likewise.
19871         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
19872         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
19873         (gl_tree_add_before, gl_tree_add_after): Likewise.
19874         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
19875         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
19876         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
19877
19878 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19879
19880         * lib/gl_oset.h: Use C comment style, not C++ comment style.
19881
19882 2006-11-06  Bruno Haible  <bruno@clisp.org>
19883
19884         * m4/inline.m4: New file.
19885         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
19886         * modules/list (Files): Add m4/inline.m4.
19887         * modules/oset (Files): Likewise.
19888
19889 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
19890
19891         * lib/idcache.c: Include <stddef.h>, for offsetof.
19892         (struct userid.name): Change from char * to a flexible array member.
19893         All uses changed.
19894         * modules/idcache (Depends-on): Add flexmember.
19895
19896         * MODULES.html.sh (Core language properties): New module flexmember.
19897         * modules/flexmember, m4/flexmember.m4: New files.
19898
19899         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
19900         inline functions that are identical with the old xnmalloc_inline,
19901         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
19902         that we can avoid some unnecessary integer multiplications and
19903         divisions in the common case where the element size is known at
19904         compile time.
19905         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
19906         needed.
19907         (xnboundedmalloc): Remove.
19908         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
19909         arguments, for consistency with rest of this header.
19910         (xcharalloc): Rewrite using XNMALLOC.
19911         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
19912         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
19913         versions have been moved to lib/xalloc.h and renamed to be the
19914         non-*_inline versions.
19915         (xmalloc, xrealloc): Implement without reference to the xnmalloc
19916         and xnrealloc functions, since those functions are now inline and
19917         now call us.
19918         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
19919         renaming described above.
19920         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
19921         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
19922         captures the dependency in AC_C_INLINE.
19923
19924         New module canonicalize-lgpl, proposed by Charles Wilson in
19925         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
19926         with a few small changes afterwards.
19927         * MODULES.html.sh (File system functions): New module
19928         canonicalize-lgpl.
19929         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
19930         and canonicalize_file_name.
19931         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
19932         * modules/canonicalize-lgpl: New files.
19933
19934 2006-11-05  Bruno Haible  <bruno@clisp.org>
19935
19936         * gnulib-tool (func_import, func_create_testdir): Create directories
19937         also for files in subdirectories of lib/.
19938
19939 2006-11-05  Bruno Haible  <bruno@clisp.org>
19940
19941         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
19942         ANSI C compliant.
19943
19944 2006-11-03  Bruno Haible  <bruno@clisp.org>
19945
19946         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
19947         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
19948         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
19949         (xnboundedmalloc): New inline function.
19950         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
19951         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
19952         xmalloc.
19953         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
19954         xmalloc.
19955         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
19956         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
19957         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
19958         xmalloc.
19959         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
19960         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
19961         xmalloc.
19962         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
19963         gl_tree_add_after): Use XMALLOC instead of xmalloc.
19964         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
19965         xmalloc.
19966         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
19967         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
19968         gl_tree_add_after): Use XMALLOC instead of xmalloc.
19969         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
19970         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
19971         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
19972         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
19973
19974 2006-11-03  Bruno Haible  <bruno@clisp.org>
19975
19976         * lib/c-ctype.h [C++]: Define functions without name mangling.
19977         * lib/fwriteerror.h [C++]: Likewise.
19978         * lib/gcd.h [C++]: Likewise.
19979         * lib/linebreak.h [C++]: Likewise.
19980
19981 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
19982
19983         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
19984         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
19985         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
19986         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
19987         Check for functions and headers just once.
19988         Check for declaration of canonicalize_file_name.
19989         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
19990
19991 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
19992
19993         * gnulib-tool (func_import): Fix typo in actioncmd.
19994
19995 2006-11-02  Bruno Haible  <bruno@clisp.org>
19996
19997         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
19998         newline sequence in the Makefile.am snippet as a space, like "make"
19999         does.
20000         Reported by Roger Persson <perrog@gmail.com>.
20001
20002 2006-11-01  Bruno Haible  <bruno@clisp.org>
20003
20004         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
20005         already declared in <string.h>.
20006         * lib/strcase.h (strncasecmp): Don't declare it if yes.
20007
20008 2006-11-01  Bruno Haible  <bruno@clisp.org>
20009
20010         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
20011         * lib/strcase.h: Include <string.h>.
20012         (strcasecmp): Define to rpl_strcasecmp here.
20013
20014 2006-11-01  Bruno Haible  <bruno@clisp.org>
20015
20016         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
20017
20018 2006-11-01  Eric Blake  <ebb9@byu.net>
20019
20020         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
20021
20022         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
20023
20024 2006-10-29  Bruno Haible  <bruno@clisp.org>
20025
20026         Make it compile in C++ mode.
20027         * lib/full-write.c (full_rw): Add a cast.
20028
20029 2006-11-01  Bruno Haible  <bruno@clisp.org>
20030
20031         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
20032         be POSIX compliant.
20033         Reported by Roger Persson <perrog@gmail.com>.
20034
20035 2006-11-01  Eric Blake  <ebb9@byu.net>
20036
20037         * lib/getopt_.h: Fix comments.
20038
20039 2006-10-31  Eric Blake  <ebb9@byu.net>
20040
20041         * modules/tmpdir (Depends-on): Add sys_stat.
20042         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
20043         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
20044         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
20045         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
20046         tempname.
20047
20048 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
20049
20050         Avoid some C++ diagnostics reported by Bruno Haible.
20051         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
20052         xmalloc.
20053         (quotearg_alloc): Use xcharalloc rather than xmalloc.
20054         (struct slotvec): Move to top level.
20055         (quotearg_n_options): Rewrite to avoid xmalloc.
20056         * lib/xalloc.h (xcharalloc): New function.
20057         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
20058         [defined __cplusplus]: Add function template that provides result
20059         type propagation.  This part of the change is from Bruno Haible.
20060
20061 2006-10-29  Bruno Haible  <bruno@clisp.org>
20062
20063         Make it compile in C++ mode.
20064         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
20065         * lib/strnlen1.c (strnlen1): Cast memchr result.
20066         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
20067         * lib/clean-temp.c (string_equals, string_hash): Add casts.
20068         (create_temp_dir): Rename local variable 'template'.
20069         (compile_csharp_using_sscli): Add cast.
20070         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
20071         * lib/findprog.c (find_in_path): Likewise.
20072         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
20073         * lib/wait-process.c (register_slave_subprocess): Likewise.
20074
20075 2006-10-22  Bruno Haible  <bruno@clisp.org>
20076
20077         * modules/tsearch: New file.
20078         * lib/tsearch.h: New file.
20079         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
20080         * m4/tsearch.m4: New file.
20081         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
20082
20083 2006-10-29  Eric Blake  <ebb9@byu.net>
20084
20085         * lib/arcfour.c: Assume config.h.
20086         * lib/arctwo.c: Likewise.
20087         * lib/base64.c: Likewise.
20088         * lib/check-version.c: Likewise.
20089         * lib/crc.c: Likewise.
20090         * lib/des.c: Likewise.
20091         * lib/gc-gnulib.c: Likewise.
20092         * lib/gc-libgcrypt.c: Likewise.
20093         * lib/gc-pbkdf2-sha1.c: Likewise.
20094         * lib/getaddrinfo.c: Likewise.
20095         * lib/getdelim.c: Likewise.
20096         * lib/getline.c: Likewise.
20097         * lib/hmac-md5.c: Likewise.
20098         * lib/hmac-sha1.c: Likewise.
20099         * lib/iconvme.c: Likewise.
20100         * lib/md2.c: Likewise.
20101         * lib/md4.c: Likewise.
20102         * lib/memxor.c: Likewise.
20103         * lib/read-file.c: Likewise.
20104         * lib/readline.c: Likewise.
20105         * lib/rijndael-alg-fst.c: Likewise.
20106         * lib/rijndael-api-fst.c: Likewise.
20107         * lib/xgetdomainname.c: Likewise.
20108
20109 2006-10-28  Eric Blake  <ebb9@byu.net>
20110
20111         * lib/xstrndup.c: Assume config.h.
20112
20113 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
20114
20115         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
20116         stat-macros.h is now for our own macros, whereas stat_h is for
20117         macros in the <sys/stat.h> name space.
20118         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
20119         (STAT_MACROS_H): Remove.
20120         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
20121         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
20122         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
20123         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
20124         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
20125         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
20126         Move these macros to ...
20127         * lib/stat_.h: here.  Don't include stat-macros.h.
20128         * lib/canonicalize.c: Don't include stat-macros.h.
20129         * lib/chown.c: Likewise.
20130         * lib/euidaccess.c: Likewise.
20131         * lib/file-type.c: Likewise.
20132         * lib/filemode.c: Likewise.
20133         * lib/glob.c: Likewise.
20134         * lib/isapipe.c: Likewise.
20135         * lib/lchown.c: Likewise.
20136         * lib/lstat.c: Likewise.
20137         * lib/mkdir-p.c: Likewise.
20138         * lib/rmdir.c: Likewise.
20139         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
20140         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
20141         unless mkdir isn't declared, to speed up 'configure'.
20142         Always create sys/stat.h, since it's unlikely any real sys/stat.h
20143         would define all the S_* symbols.
20144         * modules/canonicalize (Depends-on):
20145         Depend on sys_stat, not stat-macros.
20146         * modules/chown: Likewise.
20147         * modules/euidaccess: Likewise.
20148         * modules/filemode: Likewise.
20149         * modules/file-type: Likewise.
20150         * modules/glob: Likewise.
20151         * modules/isapipe: Likewise.
20152         * modules/lchown: Likewise.
20153         * modules/lstat: Likewise.
20154         * modules/mkancesdirs: Likewise.
20155         * modules/rmdir: Likewise.
20156         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
20157         * modules/modechange: Likewise.
20158         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
20159         (configure.ac): Remove gl_STAT_MACROS.
20160         * modules/sys_stat (Depends-on): Remove stat-macros.
20161
20162 2006-10-27  Bruno Haible  <bruno@clisp.org>
20163
20164         * m4/signed.m4: Remove file.
20165         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
20166         invocation.
20167         * modules/vasnprintf (Files): Remove m4/signed.m4.
20168
20169 2006-10-27  Bruno Haible  <bruno@clisp.org>
20170
20171         Update to GNU gettext 0.16.
20172         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
20173         m4/inttypes-h.m4, m4/signed.m4.
20174         * m4/gettext.m4: Update to GNU gettext 0.16.
20175         * m4/intl.m4: New file, from GNU gettext.
20176         * m4/intldir.m4: New file, from GNU gettext.
20177         * config/srclist.txt: Update
20178
20179 2006-10-27  Eric Blake  <ebb9@byu.net>
20180
20181         * MODULES.html.sh: Document tempname.
20182         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
20183         dependencies.
20184         (Files): Move lib/tempname.c...
20185         * modules/tempname: ...to this new module.
20186         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
20187         (gl_PREREQ_TEMPNAME): Move...
20188         * m4/tempname.m4: ...to this new file.
20189         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
20190         * modules/sys_stat (Depends-on): Add stat-macros.
20191         * lib/stat_.h (includes): Pick up stat macros.
20192         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
20193         if stat macros are broken.
20194         * lib/tempname.c (includes): No need to include "stat-macros.h".
20195         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
20196         (direxists, __path_search) [!_LIBC]: Don't compile these in
20197         gnulib; the tmpdir module covers that.
20198         * lib/tempname.h: New file.
20199
20200 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
20201
20202         * COPYING: Explain how gnulib-tool converts licence headers.
20203         Almost all wording by Eric Blake.
20204
20205 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
20206
20207         * lib/mbchar.h (is_basic_table): Make read-only.
20208         * lib/mbchar.c (is_basic_table): Likewise.
20209         Reported by John Darrington.
20210
20211 2006-10-25  Bruno Haible  <bruno@clisp.org>
20212
20213         * lib/progname.h (set_program_name): Undefine before defining.
20214
20215 2006-10-25  Bruno Haible  <bruno@clisp.org>
20216
20217         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
20218         false for non-gcc C++ compilers.
20219         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
20220
20221 2006-10-24  Bruno Haible  <bruno@clisp.org>
20222
20223         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
20224         iconv implementations like Irix iconv.
20225
20226 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20227
20228         * modules/vararrays: New file.
20229         * m4/vararrays.m4: New file, taken from diffutils.
20230         * MODULES.html.sh: New module vararrays.
20231
20232 2006-10-24  Karl Berry  <karl@gnu.org>
20233
20234         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
20235         Don't call GNU Unix.
20236
20237 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20238
20239         * users.txt: Add Libtool.
20240
20241         Sync from Libtool:
20242
20243         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20244
20245         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
20246         to gnulib's policy of including config.h unconditionally.
20247
20248 2006-10-24  Bruno Haible  <bruno@clisp.org>
20249
20250         * modules/wcwidth (Files): Add m4/wint_t.m4.
20251         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
20252         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
20253
20254 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20255
20256         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
20257         to pacify GCC with some -W flags enabled.  Problem reported by
20258         Bruno Haible.
20259
20260 2006-10-24  Jim Meyering  <jim@meyering.net>
20261
20262         * MODULES.html.sh: Remove uinttostr.  It's not a module.
20263         Reported by Karl Berry.
20264
20265 2006-10-23  Bruno Haible  <bruno@clisp.org>
20266
20267         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
20268
20269 2006-10-24  Bruno Haible  <bruno@clisp.org>
20270
20271         * lib/gl_list.h: Use C comment style, not C++ comment style.
20272
20273 2006-10-23  Eric Blake  <ebb9@byu.net>
20274
20275         * lib/getaddrinfo.c (includes): Add missing include.
20276
20277 2006-10-23  Bruno Haible  <bruno@clisp.org>
20278             Paul Eggert  <eggert@cs.ucla.edu>
20279
20280         Ability to rename obstack_free.
20281         * lib/obstack.h (__obstack_free): New macro. Declare instead of
20282         obstack_free.
20283         (obstack_free): Invoke the __obstack_free macro.
20284         * lib/obstack.c (obstack_free): Use __obstack_free macro.
20285
20286 2006-10-23  Bruno Haible  <bruno@clisp.org>
20287             Paul Eggert  <eggert@cs.ucla.edu>
20288
20289         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
20290         __argc, __argv from the declaration. (They are defined as macros on
20291         mingw.)
20292
20293 2006-10-22  Bruno Haible  <bruno@clisp.org>
20294
20295         * doc/gnulib-intro.texi: New file.
20296         * doc/gnulib.texi: Include it.
20297
20298 2006-10-21  Bruno Haible  <bruno@clisp.org>
20299
20300         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
20301         "Introduction", "Miscellanous Notes", "Particular Modules".
20302
20303 2006-10-21  Bruno Haible  <bruno@clisp.org>
20304
20305         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20306         Change mostlyclean-local rule to avoid sh syntax error from bash
20307         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
20308
20309 2006-10-23  Jim Meyering  <jim@meyering.net>
20310
20311         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
20312         in place of snprintf.
20313
20314         * modules/inttostr (Files): Add lib/uinttostr.c.
20315         * lib/uinttostr.c (inttostr): New file/function.
20316         * lib/inttostr.h (uinttostr): Declare.
20317         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
20318         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
20319         Add uinttostr.
20320         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
20321
20322 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20323
20324         * lib/canonicalize.c (ELOOP): Define if not already defined.
20325         Problem reported by Bruno Haible in
20326         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
20327
20328 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20329
20330         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
20331         Problem reported by Perry Smith and Ville Laurikari.
20332
20333         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
20334         uses.
20335
20336 2006-10-19  Bruno Haible  <bruno@clisp.org>
20337
20338         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
20339         for mingw.
20340
20341 2006-10-19  Bruno Haible  <bruno@clisp.org>
20342
20343         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
20344         Needed for mingw.
20345
20346 2006-10-19  Bruno Haible  <bruno@clisp.org>
20347
20348         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
20349
20350 2006-10-19  Bruno Haible  <bruno@clisp.org>
20351
20352         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
20353         it.
20354
20355 2006-10-19  Bruno Haible  <bruno@clisp.org>
20356
20357         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
20358         invocation.
20359
20360 2006-10-19  Bruno Haible  <bruno@clisp.org>
20361
20362         * gnulib-tool (func_create_testdir): Don't include ftruncate and
20363         mountlist by default.
20364
20365 2006-10-16  Bruno Haible  <bruno@clisp.org>
20366
20367         * lib/c-strstr.c: Include c-strstr.h.
20368
20369 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20370
20371         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
20372         in a slash.
20373
20374 2006-10-18  Bruno Haible  <bruno@clisp.org>
20375
20376         * lib/lock.h [C++]: Wrap definitions in extern "C".
20377
20378 2006-10-18  Bruno Haible  <bruno@clisp.org>
20379
20380         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
20381         gl_LIBOBJS list.
20382
20383 2006-10-18  Bruno Haible  <bruno@clisp.org>
20384
20385         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
20386
20387 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
20388
20389         * lib/xstrtol.h: Include gettext.h.
20390         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
20391         Problem reported by Eric Blake.
20392         * modules/xstrtol (Depends-on): Add gettext-h.
20393
20394 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
20395
20396         * lib/strftime.c (advance): New macro.
20397         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
20398         incomplete type, so you can't add 0 to it.  Problem and patch
20399         reported by Eelco Dolstra for dietlibc.
20400
20401 2006-10-18  Jim Meyering  <jim@meyering.net>
20402
20403         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
20404         type for a local, and rename it: s/up/user_proc/.
20405
20406 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
20407
20408         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
20409         READ_UTMP_USER_PROCESS.
20410         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
20411
20412 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20413
20414         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
20415         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
20416
20417 2006-10-17  Eric Blake  <ebb9@byu.net>
20418
20419         * lib/sigprocmask.c (sigprocmask): Fix typo.
20420
20421         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
20422
20423         * modules/clean-temp (Makefile.am): Don't add to make output...
20424         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
20425         config.h.
20426
20427 2006-10-17  Bruno Haible  <bruno@clisp.org>
20428
20429         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
20430         differently if DEFAULT_TEXT_DOMAIN is set.
20431
20432 2006-10-16  Bruno Haible  <bruno@clisp.org>
20433
20434         * lib/clean-temp.c: Include fwriteerror.h.
20435
20436 2006-10-16  Bruno Haible  <bruno@clisp.org>
20437
20438         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
20439
20440 2006-10-16  Bruno Haible  <bruno@clisp.org>
20441
20442         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
20443         * lib/sigprocmask.h: Include <sys/types.h>.
20444         (sigset_t): Use the system's definition if present.
20445
20446 2006-10-17  Eric Blake  <ebb9@byu.net>
20447
20448         * lib/xvasprintf.c (includes): Assume config.h.
20449         * lib/xasprintf.c (includes): Likewise.
20450
20451 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20452
20453         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
20454         at least as wide as intmax_t.
20455
20456 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
20457
20458         (Imported from Automake.)
20459         * build-aux/gnupload: Update to version 1.1 of directive file.
20460
20461 2006-10-16  Eric Blake  <ebb9@byu.net>
20462
20463         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
20464         match Automake 1.10a.
20465
20466 2006-10-14  Bruno Haible  <bruno@clisp.org>
20467
20468         * modules/sigprocmask: New file.
20469         * lib/sigprocmask.h: New file.
20470         * lib/sigprocmask.c: New file.
20471         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
20472         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
20473         request sigprocmask.o.
20474         (gl_PREREQ_SIGPROCMASK): New macro.
20475         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
20476         (Depends-on): Add sigprocmask.
20477         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
20478         gt_SIGNALBLOCKING. Test for 'raise' only once.
20479         * lib/fatal-signal.c: Include sigprocmask.h.
20480         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
20481         unblock_fatal_signals): Define always.
20482         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20483         sigprocmask.
20484
20485 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
20486
20487         Sync from Automake.
20488         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
20489         which incorrectly sets the mode of an existing destination
20490         directory.  In some cases the unpatched install-sh could do the
20491         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
20492         system.  We hope this is rare in practice, but it's clearly worth
20493         fixing.  Problem reported by Alex Unleashed in
20494         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
20495         Also, don't bother to check for -m bugs unless we're using -m;
20496         suggested by Stepan Kasal.
20497
20498 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20499
20500         Sync from Automake.
20501         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
20502         `-c' flag, so they appear at the same position as in %FASTDEP%
20503         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
20504         which ignores unknown options only after the first non-option.
20505         Bug report against M4 by Nelson H. F. Beebe.
20506
20507 2006-10-13  Jim Meyering  <jim@meyering.net>
20508
20509         Fix a bug in yesterday's change.
20510         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
20511         p->fts_statp->st_dev would be used uninitialized.
20512         Ensures that we always call fts_stat on the very first entry.
20513         Miklos Szeredi reported that find -xdev stopped working.
20514
20515 2006-10-12  Bruno Haible  <bruno@clisp.org>
20516
20517         * gnulib-tool (func_get_automake_snippet): Append an automatically
20518         computed EXTRA_DIST augmentation.
20519         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
20520         * modules/alloca-opt (Makefile.am): Likewise.
20521         * modules/allocsa (Makefile.am): Likewise.
20522         * modules/arcfour (Makefile.am): Likewise.
20523         * modules/arctwo (Makefile.am): Likewise.
20524         * modules/argmatch (Makefile.am): Likewise.
20525         * modules/argz (Makefile.am): Likewise.
20526         * modules/atexit (Makefile.am): Likewise.
20527         * modules/backupfile (Makefile.am): Likewise.
20528         * modules/byteswap (Makefile.am): Likewise.
20529         * modules/c-strtod (Makefile.am): Likewise.
20530         * modules/c-strtold (Makefile.am): Likewise.
20531         * modules/calloc (Makefile.am): Likewise.
20532         * modules/canon-host (Makefile.am): Likewise.
20533         * modules/canonicalize (Makefile.am): Likewise.
20534         * modules/chdir-long (Makefile.am): Likewise.
20535         * modules/chdir-safer (Makefile.am): Likewise.
20536         * modules/check-version (Makefile.am): Likewise.
20537         * modules/chown (Makefile.am): Likewise.
20538         * modules/cloexec (Makefile.am): Likewise.
20539         * modules/close-stream (Makefile.am): Likewise.
20540         * modules/closeout (Makefile.am): Likewise.
20541         * modules/crc (Makefile.am): Likewise.
20542         * modules/csharpexec (Makefile.am): Likewise.
20543         * modules/cycle-check (Makefile.am): Likewise.
20544         * modules/des (Makefile.am): Likewise.
20545         * modules/dev-ino (Makefile.am): Likewise.
20546         * modules/dirfd (Makefile.am): Likewise.
20547         * modules/dirname (Makefile.am): Likewise.
20548         * modules/dup2 (Makefile.am): Likewise.
20549         * modules/eealloc (Makefile.am): Likewise.
20550         * modules/error (Makefile.am): Likewise.
20551         * modules/euidaccess (Makefile.am): Likewise.
20552         * modules/exclude (Makefile.am): Likewise.
20553         * modules/exitfail (Makefile.am): Likewise.
20554         * modules/fcntl-safer (Makefile.am): Likewise.
20555         * modules/fcntl (Makefile.am): Likewise.
20556         * modules/file-type (Makefile.am): Likewise.
20557         * modules/fileblocks (Makefile.am): Likewise.
20558         * modules/filemode (Makefile.am): Likewise.
20559         * modules/filenamecat (Makefile.am): Likewise.
20560         * modules/fnmatch (Makefile.am): Likewise.
20561         * modules/fopen-safer (Makefile.am): Likewise.
20562         * modules/fpending (Makefile.am): Likewise.
20563         * modules/fprintftime (Makefile.am): Likewise.
20564         * modules/free (Makefile.am): Likewise.
20565         * modules/fsusage (Makefile.am): Likewise.
20566         * modules/ftruncate (Makefile.am): Likewise.
20567         * modules/fts (Makefile.am): Likewise.
20568         * modules/gc-arcfour (Makefile.am): Likewise.
20569         * modules/gc-des (Makefile.am): Likewise.
20570         * modules/gc-hmac-md5 (Makefile.am): Likewise.
20571         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
20572         * modules/gc-md4 (Makefile.am): Likewise.
20573         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20574         * modules/gc-sha1 (Makefile.am): Likewise.
20575         * modules/gc (Makefile.am): Likewise.
20576         * modules/getaddrinfo (Makefile.am): Likewise.
20577         * modules/getcwd (Makefile.am): Likewise.
20578         * modules/getdelim (Makefile.am): Likewise.
20579         * modules/getdomainname (Makefile.am): Likewise.
20580         * modules/getgroups (Makefile.am): Likewise.
20581         * modules/gethostname (Makefile.am): Likewise.
20582         * modules/gethrxtime (Makefile.am): Likewise.
20583         * modules/getline (Makefile.am): Likewise.
20584         * modules/getloadavg (Makefile.am): Likewise.
20585         * modules/getlogin_r (Makefile.am): Likewise.
20586         * modules/getndelim2 (Makefile.am): Likewise.
20587         * modules/getopt (Makefile.am): Likewise.
20588         * modules/getpagesize (Makefile.am): Likewise.
20589         * modules/getpass-gnu (Makefile.am): Likewise.
20590         * modules/getpass (Makefile.am): Likewise.
20591         * modules/getsubopt (Makefile.am): Likewise.
20592         * modules/gettime (Makefile.am): Likewise.
20593         * modules/gettimeofday (Makefile.am): Likewise.
20594         * modules/getugroups (Makefile.am): Likewise.
20595         * modules/getusershell (Makefile.am): Likewise.
20596         * modules/glob (Makefile.am): Likewise.
20597         * modules/group-member (Makefile.am): Likewise.
20598         * modules/hard-locale (Makefile.am): Likewise.
20599         * modules/hash (Makefile.am): Likewise.
20600         * modules/hmac-md5 (Makefile.am): Likewise.
20601         * modules/hmac-sha1 (Makefile.am): Likewise.
20602         * modules/human (Makefile.am): Likewise.
20603         * modules/idcache (Makefile.am): Likewise.
20604         * modules/imaxabs (Makefile.am): Likewise.
20605         * modules/imaxdiv (Makefile.am): Likewise.
20606         * modules/inet_ntop (Makefile.am): Likewise.
20607         * modules/inet_pton (Makefile.am): Likewise.
20608         * modules/intprops (Makefile.am): Likewise.
20609         * modules/inttostr (Makefile.am): Likewise.
20610         * modules/inttypes (Makefile.am): Likewise.
20611         * modules/isapipe (Makefile.am): Likewise.
20612         * modules/javaversion (Makefile.am): Likewise.
20613         * modules/lchmod (Makefile.am): Likewise.
20614         * modules/lchown (Makefile.am): Likewise.
20615         * modules/localcharset (Makefile.am): Likewise.
20616         * modules/long-options (Makefile.am): Likewise.
20617         * modules/lstat (Makefile.am): Likewise.
20618         * modules/malloc (Makefile.am): Likewise.
20619         * modules/mathl (Makefile.am): Likewise.
20620         * modules/mbchar (Makefile.am): Likewise.
20621         * modules/md2 (Makefile.am): Likewise.
20622         * modules/md4 (Makefile.am): Likewise.
20623         * modules/md5 (Makefile.am): Likewise.
20624         * modules/memcasecmp (Makefile.am): Likewise.
20625         * modules/memchr (Makefile.am): Likewise.
20626         * modules/memcmp (Makefile.am): Likewise.
20627         * modules/memcoll (Makefile.am): Likewise.
20628         * modules/memcpy (Makefile.am): Likewise.
20629         * modules/memmem (Makefile.am): Likewise.
20630         * modules/memmove (Makefile.am): Likewise.
20631         * modules/mempcpy (Makefile.am): Likewise.
20632         * modules/memrchr (Makefile.am): Likewise.
20633         * modules/memset (Makefile.am): Likewise.
20634         * modules/memxor (Makefile.am): Likewise.
20635         * modules/mkancesdirs (Makefile.am): Likewise.
20636         * modules/mkdir-p (Makefile.am): Likewise.
20637         * modules/mkdir (Makefile.am): Likewise.
20638         * modules/mkdtemp (Makefile.am): Likewise.
20639         * modules/mkstemp (Makefile.am): Likewise.
20640         * modules/mktime (Makefile.am): Likewise.
20641         * modules/modechange (Makefile.am): Likewise.
20642         * modules/mountlist (Makefile.am): Likewise.
20643         * modules/nanosleep (Makefile.am): Likewise.
20644         * modules/obstack (Makefile.am): Likewise.
20645         * modules/openat (Makefile.am): Likewise.
20646         * modules/pagealign_alloc (Makefile.am): Likewise.
20647         * modules/pathmax (Makefile.am): Likewise.
20648         * modules/physmem (Makefile.am): Likewise.
20649         * modules/poll (Makefile.am): Likewise.
20650         * modules/posixtm (Makefile.am): Likewise.
20651         * modules/posixver (Makefile.am): Likewise.
20652         * modules/putenv (Makefile.am): Likewise.
20653         * modules/quote (Makefile.am): Likewise.
20654         * modules/quotearg (Makefile.am): Likewise.
20655         * modules/raise (Makefile.am): Likewise.
20656         * modules/read-file (Makefile.am): Likewise.
20657         * modules/readline (Makefile.am): Likewise.
20658         * modules/readlink (Makefile.am): Likewise.
20659         * modules/readtokens (Makefile.am): Likewise.
20660         * modules/readutmp (Makefile.am): Likewise.
20661         * modules/realloc (Makefile.am): Likewise.
20662         * modules/regex (Makefile.am): Likewise.
20663         * modules/rename-dest-slash (Makefile.am): Likewise.
20664         * modules/rename (Makefile.am): Likewise.
20665         * modules/rijndael (Makefile.am): Likewise.
20666         * modules/rmdir (Makefile.am): Likewise.
20667         * modules/rpmatch (Makefile.am): Likewise.
20668         * modules/safe-read (Makefile.am): Likewise.
20669         * modules/safe-write (Makefile.am): Likewise.
20670         * modules/same-inode (Makefile.am): Likewise.
20671         * modules/same (Makefile.am): Likewise.
20672         * modules/save-cwd (Makefile.am): Likewise.
20673         * modules/savedir (Makefile.am): Likewise.
20674         * modules/setenv (Makefile.am): Likewise.
20675         * modules/settime (Makefile.am): Likewise.
20676         * modules/sha1 (Makefile.am): Likewise.
20677         * modules/sig2str (Makefile.am): Likewise.
20678         * modules/snprintf (Makefile.am): Likewise.
20679         * modules/stat-macros (Makefile.am): Likewise.
20680         * modules/stat-time (Makefile.am): Likewise.
20681         * modules/stdbool (Makefile.am): Likewise.
20682         * modules/stdint (Makefile.am): Likewise.
20683         * modules/stdlib-safer (Makefile.am): Likewise.
20684         * modules/stpcpy (Makefile.am): Likewise.
20685         * modules/stpncpy (Makefile.am): Likewise.
20686         * modules/strcase (Makefile.am): Likewise.
20687         * modules/strcasestr (Makefile.am): Likewise.
20688         * modules/strchrnul (Makefile.am): Likewise.
20689         * modules/strcspn (Makefile.am): Likewise.
20690         * modules/strdup (Makefile.am): Likewise.
20691         * modules/strerror (Makefile.am): Likewise.
20692         * modules/strftime (Makefile.am): Likewise.
20693         * modules/strndup (Makefile.am): Likewise.
20694         * modules/strnlen (Makefile.am): Likewise.
20695         * modules/strpbrk (Makefile.am): Likewise.
20696         * modules/strsep (Makefile.am): Likewise.
20697         * modules/strstr (Makefile.am): Likewise.
20698         * modules/strtod (Makefile.am): Likewise.
20699         * modules/strtoimax (Makefile.am): Likewise.
20700         * modules/strtok_r (Makefile.am): Likewise.
20701         * modules/strtol (Makefile.am): Likewise.
20702         * modules/strtoll (Makefile.am): Likewise.
20703         * modules/strtoul (Makefile.am): Likewise.
20704         * modules/strtoull (Makefile.am): Likewise.
20705         * modules/strtoumax (Makefile.am): Likewise.
20706         * modules/strverscmp (Makefile.am): Likewise.
20707         * modules/sys_socket (Makefile.am): Likewise.
20708         * modules/sys_stat (Makefile.am): Likewise.
20709         * modules/sysexits (Makefile.am): Likewise.
20710         * modules/time_r (Makefile.am): Likewise.
20711         * modules/timegm (Makefile.am): Likewise.
20712         * modules/timespec (Makefile.am): Likewise.
20713         * modules/tmpfile-safer (Makefile.am): Likewise.
20714         * modules/trim (Makefile.am): Likewise.
20715         * modules/unistd-safer (Makefile.am): Likewise.
20716         * modules/unlinkdir (Makefile.am): Likewise.
20717         * modules/unlocked-io (Makefile.am): Likewise.
20718         * modules/userspec (Makefile.am): Likewise.
20719         * modules/utime (Makefile.am): Likewise.
20720         * modules/utimecmp (Makefile.am): Likewise.
20721         * modules/utimens (Makefile.am): Likewise.
20722         * modules/vasnprintf (Makefile.am): Likewise.
20723         * modules/vasprintf (Makefile.am): Likewise.
20724         * modules/vsnprintf (Makefile.am): Likewise.
20725         * modules/xalloc (Makefile.am): Likewise.
20726         * modules/xgetcwd (Makefile.am): Likewise.
20727         * modules/xnanosleep (Makefile.am): Likewise.
20728         * modules/xreadlink (Makefile.am): Likewise.
20729         * modules/xstrtod (Makefile.am): Likewise.
20730         * modules/xstrtol (Makefile.am): Likewise.
20731         * modules/xstrtold (Makefile.am): Likewise.
20732         * modules/yesno (Makefile.am): Likewise.
20733         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
20734
20735 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
20736
20737         * modules/error (Makefile.am): Distribute files through
20738         EXTRA_DIST, not lib_SOURCES.
20739
20740 2006-10-12  Eric Blake  <ebb9@byu.net>
20741
20742         * modules/error (Makefile.am): Distribute files in /lib.
20743         * modules/obstack (Makefile.am): Likewise.
20744
20745 2006-10-12  Bruno Haible  <bruno@clisp.org>
20746
20747         * modules/acl (Makefile.am): Distribute all files in lib/ through
20748         EXTRA_DIST.
20749         * modules/arcfour (Makefile.am): Likewise.
20750         * modules/arctwo (Makefile.am): Likewise.
20751         * modules/argmatch (Makefile.am): Likewise.
20752         * modules/argz (Makefile.am): Likewise.
20753         * modules/atexit (Makefile.am): Likewise.
20754         * modules/backupfile (Makefile.am): Likewise.
20755         * modules/c-strtod (Makefile.am): Likewise.
20756         * modules/c-strtold (Makefile.am): Likewise.
20757         * modules/calloc (Makefile.am): Likewise.
20758         * modules/canon-host (Makefile.am): Likewise.
20759         * modules/canonicalize (Makefile.am): Likewise.
20760         * modules/chdir-long (Makefile.am): Likewise.
20761         * modules/chdir-safer (Makefile.am): Likewise.
20762         * modules/check-version (Makefile.am): Likewise.
20763         * modules/chown (Makefile.am): Likewise.
20764         * modules/cloexec (Makefile.am): Likewise.
20765         * modules/close-stream (Makefile.am): Likewise.
20766         * modules/closeout (Makefile.am): Likewise.
20767         * modules/crc (Makefile.am): Likewise.
20768         * modules/cycle-check (Makefile.am): Likewise.
20769         * modules/des (Makefile.am): Likewise.
20770         * modules/dirfd (Makefile.am): Likewise.
20771         * modules/dirname (Makefile.am): Likewise.
20772         * modules/dup2 (Makefile.am): Likewise.
20773         * modules/euidaccess (Makefile.am): Likewise.
20774         * modules/exclude (Makefile.am): Likewise.
20775         * modules/exitfail (Makefile.am): Likewise.
20776         * modules/fcntl-safer (Makefile.am): Likewise.
20777         * modules/file-type (Makefile.am): Likewise.
20778         * modules/fileblocks (Makefile.am): Likewise.
20779         * modules/filemode (Makefile.am): Likewise.
20780         * modules/filenamecat (Makefile.am): Likewise.
20781         * modules/fnmatch (Makefile.am): Likewise.
20782         * modules/fopen-safer (Makefile.am): Likewise.
20783         * modules/fpending (Makefile.am): Likewise.
20784         * modules/fprintftime (Makefile.am): Likewise.
20785         * modules/free (Makefile.am): Likewise.
20786         * modules/fsusage (Makefile.am): Likewise.
20787         * modules/ftruncate (Makefile.am): Likewise.
20788         * modules/fts (Makefile.am): Likewise.
20789         * modules/gc (Makefile.am): Likewise.
20790         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20791         * modules/getaddrinfo (Makefile.am): Likewise.
20792         * modules/getcwd (Makefile.am): Likewise.
20793         * modules/getdelim (Makefile.am): Likewise.
20794         * modules/getdomainname (Makefile.am): Likewise.
20795         * modules/getgroups (Makefile.am): Likewise.
20796         * modules/gethostname (Makefile.am): Likewise.
20797         * modules/gethrxtime (Makefile.am): Likewise.
20798         * modules/getline (Makefile.am): Likewise.
20799         * modules/getloadavg (Makefile.am): Likewise.
20800         * modules/getlogin_r (Makefile.am): Likewise.
20801         * modules/getopt (Makefile.am): Likewise.
20802         * modules/getpass (Makefile.am): Likewise.
20803         * modules/getpass-gnu (Makefile.am): Likewise.
20804         * modules/getsubopt (Makefile.am): Likewise.
20805         * modules/gettime (Makefile.am): Likewise.
20806         * modules/gettimeofday (Makefile.am): Likewise.
20807         * modules/getugroups (Makefile.am): Likewise.
20808         * modules/getusershell (Makefile.am): Likewise.
20809         * modules/glob (Makefile.am): Likewise.
20810         * modules/group-member (Makefile.am): Likewise.
20811         * modules/hard-locale (Makefile.am): Likewise.
20812         * modules/hash (Makefile.am): Likewise.
20813         * modules/hmac-md5 (Makefile.am): Likewise.
20814         * modules/hmac-sha1 (Makefile.am): Likewise.
20815         * modules/human (Makefile.am): Likewise.
20816         * modules/idcache (Makefile.am): Likewise.
20817         * modules/imaxabs (Makefile.am): Likewise.
20818         * modules/imaxdiv (Makefile.am): Likewise.
20819         * modules/inet_ntop (Makefile.am): Likewise.
20820         * modules/inet_pton (Makefile.am): Likewise.
20821         * modules/inttostr (Makefile.am): Likewise.
20822         * modules/isapipe (Makefile.am): Likewise.
20823         * modules/lchown (Makefile.am): Likewise.
20824         * modules/long-options (Makefile.am): Likewise.
20825         * modules/lstat (Makefile.am): Likewise.
20826         * modules/malloc (Makefile.am): Likewise.
20827         * modules/mathl (Makefile.am): Likewise.
20828         * modules/mbchar (Makefile.am): Likewise.
20829         * modules/md2 (Makefile.am): Likewise.
20830         * modules/md4 (Makefile.am): Likewise.
20831         * modules/md5 (Makefile.am): Likewise.
20832         * modules/memcasecmp (Makefile.am): Likewise.
20833         * modules/memchr (Makefile.am): Likewise.
20834         * modules/memcmp (Makefile.am): Likewise.
20835         * modules/memcoll (Makefile.am): Likewise.
20836         * modules/memcpy (Makefile.am): Likewise.
20837         * modules/memmem (Makefile.am): Likewise.
20838         * modules/memmove (Makefile.am): Likewise.
20839         * modules/mempcpy (Makefile.am): Likewise.
20840         * modules/memrchr (Makefile.am): Likewise.
20841         * modules/memset (Makefile.am): Likewise.
20842         * modules/memxor (Makefile.am): Likewise.
20843         * modules/mkancesdirs (Makefile.am): Likewise.
20844         * modules/mkdir (Makefile.am): Likewise.
20845         * modules/mkdir-p (Makefile.am): Likewise.
20846         * modules/mkdtemp (Makefile.am): Likewise.
20847         * modules/mkstemp (Makefile.am): Likewise.
20848         * modules/mktime (Makefile.am): Likewise.
20849         * modules/modechange (Makefile.am): Likewise.
20850         * modules/mountlist (Makefile.am): Likewise.
20851         * modules/nanosleep (Makefile.am): Likewise.
20852         * modules/openat (Makefile.am): Likewise.
20853         * modules/pagealign_alloc (Makefile.am): Likewise.
20854         * modules/physmem (Makefile.am): Likewise.
20855         * modules/poll (Makefile.am): Likewise.
20856         * modules/posixtm (Makefile.am): Likewise.
20857         * modules/posixver (Makefile.am): Likewise.
20858         * modules/putenv (Makefile.am): Likewise.
20859         * modules/quote (Makefile.am): Likewise.
20860         * modules/quotearg (Makefile.am): Likewise.
20861         * modules/raise (Makefile.am): Likewise.
20862         * modules/read-file (Makefile.am): Likewise.
20863         * modules/readline (Makefile.am): Likewise.
20864         * modules/readlink (Makefile.am): Likewise.
20865         * modules/readtokens (Makefile.am): Likewise.
20866         * modules/readutmp (Makefile.am): Likewise.
20867         * modules/realloc (Makefile.am): Likewise.
20868         * modules/regex (Makefile.am): Likewise.
20869         * modules/rename (Makefile.am): Likewise.
20870         * modules/rename-dest-slash (Makefile.am): Likewise.
20871         * modules/rijndael (Makefile.am): Likewise.
20872         * modules/rmdir (Makefile.am): Likewise.
20873         * modules/rpmatch (Makefile.am): Likewise.
20874         * modules/safe-read (Makefile.am): Likewise.
20875         * modules/safe-write (Makefile.am): Likewise.
20876         * modules/same (Makefile.am): Likewise.
20877         * modules/save-cwd (Makefile.am): Likewise.
20878         * modules/savedir (Makefile.am): Likewise.
20879         * modules/setenv (Makefile.am): Likewise.
20880         * modules/settime (Makefile.am): Likewise.
20881         * modules/sha1 (Makefile.am): Likewise.
20882         * modules/sig2str (Makefile.am): Likewise.
20883         * modules/snprintf (Makefile.am): Likewise.
20884         * modules/stdlib-safer (Makefile.am): Likewise.
20885         * modules/stpcpy (Makefile.am): Likewise.
20886         * modules/stpncpy (Makefile.am): Likewise.
20887         * modules/strcase (Makefile.am): Likewise.
20888         * modules/strcasestr (Makefile.am): Likewise.
20889         * modules/strchrnul (Makefile.am): Likewise.
20890         * modules/strcspn (Makefile.am): Likewise.
20891         * modules/strdup (Makefile.am): Likewise.
20892         * modules/strerror (Makefile.am): Likewise.
20893         * modules/strftime (Makefile.am): Likewise.
20894         * modules/strndup (Makefile.am): Likewise.
20895         * modules/strnlen (Makefile.am): Likewise.
20896         * modules/strpbrk (Makefile.am): Likewise.
20897         * modules/strsep (Makefile.am): Likewise.
20898         * modules/strstr (Makefile.am): Likewise.
20899         * modules/strtod (Makefile.am): Likewise.
20900         * modules/strtoimax (Makefile.am): Likewise.
20901         * modules/strtok_r (Makefile.am): Likewise.
20902         * modules/strtol (Makefile.am): Likewise.
20903         * modules/strtoll (Makefile.am): Likewise.
20904         * modules/strtoul (Makefile.am): Likewise.
20905         * modules/strtoull (Makefile.am): Likewise.
20906         * modules/strtoumax (Makefile.am): Likewise.
20907         * modules/strverscmp (Makefile.am): Likewise.
20908         * modules/time_r (Makefile.am): Likewise.
20909         * modules/timegm (Makefile.am): Likewise.
20910         * modules/tmpfile-safer (Makefile.am): Likewise.
20911         * modules/unistd-safer (Makefile.am): Likewise.
20912         * modules/unlinkdir (Makefile.am): Likewise.
20913         * modules/userspec (Makefile.am): Likewise.
20914         * modules/utime (Makefile.am): Likewise.
20915         * modules/utimecmp (Makefile.am): Likewise.
20916         * modules/utimens (Makefile.am): Likewise.
20917         * modules/vasnprintf (Makefile.am): Likewise.
20918         * modules/vasprintf (Makefile.am): Likewise.
20919         * modules/vsnprintf (Makefile.am): Likewise.
20920         * modules/xalloc (Makefile.am): Likewise.
20921         * modules/xgetcwd (Makefile.am): Likewise.
20922         * modules/xnanosleep (Makefile.am): Likewise.
20923         * modules/xreadlink (Makefile.am): Likewise.
20924         * modules/xstrtod (Makefile.am): Likewise.
20925         * modules/xstrtol (Makefile.am): Likewise.
20926         * modules/xstrtold (Makefile.am): Likewise.
20927         * modules/yesno (Makefile.am): Likewise.
20928
20929 2006-10-12  Jim Meyering  <jim@meyering.net>
20930
20931         * m4/getloadavg.m4: Revert the change below.
20932
20933         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
20934         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
20935         fail with a symlink, which is what coreutils' ./bootstrap now
20936         creates by default.
20937
20938 2006-10-12  Bruno Haible  <bruno@clisp.org>
20939
20940         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
20941         mingw.
20942         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
20943         MSVC and mingw explicitly.
20944
20945 2006-10-11  Simon Josefsson  <jas@extundo.com>
20946             Bruno Haible  <bruno@clisp.org>
20947
20948         Add support for multiple gnulib-tool invocations in the scope of a
20949         single configure.ac file.
20950         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
20951         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
20952         with the same contents as the _LIBADD variable.
20953         (func_emit_initmacro_start, func_emit_initmacro_end,
20954         func_emit_initmacro_done): New functions.
20955         (func_import, func_create_testdir): Invoke them. Allow the identifiers
20956         gl_LIBOBJS and gl_LTLIBOBJS.
20957
20958 2006-10-11  Bruno Haible  <bruno@clisp.org>
20959
20960         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
20961         (func_create_testdir): Don't create po/Makefile.am, don't invoke
20962         autoreconf. Instead, invoke autopoint explicitly but move back the
20963         *.m4 files from gnulib.
20964
20965 2006-10-11  Bruno Haible  <bruno@clisp.org>
20966
20967         * gnulib-tool (func_usage): Make module names after --create-testdir
20968         optional.
20969         (func_create_testdir): If no module was specified, use nearly all
20970         modules.
20971
20972 2006-10-12  Jim Meyering  <jim@meyering.net>
20973
20974         Big performance improvement for fts-based tools that use FTS_NOSTAT.
20975         Avoid spurious inode-mismatch problems on non-POSIX file systems.
20976         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
20977         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
20978         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
20979         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
20980         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
20981         (fts_set_stat_required): New function.
20982         (fts_open): Defer the calls to fts_stat, if possible or requested.
20983         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
20984         into fts_stat itself.
20985         (fts_read): Perform any required (deferred) fts_stat call.
20986         (fts_build): Likewise, for the directory we're about to open and read.
20987         In the readdir loop, carefully decide whether each entry will require
20988         an eventual call to fts_stat, using dirent.d_type info if available.
20989         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
20990         a command line argument into this function.  Update all callers.
20991         Map a return value of FTS_DOT to FTS_D for a command line argument.
20992         * modules/fts (Depends-on): Add d-type.  Alphabetize.
20993         Thanks to Miklos Szeredi for his tenacity and for the initial
20994         bug report about "find" failing on a FUSE-based file system.
20995
20996         * lib/fts.c (fts_open): Use consistent indentation.
20997
20998 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
20999
21000         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
21001         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
21002         reported by Jim Meyering.  All uses of cache variables renamed
21003         to match Autoconf's.
21004         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
21005         the other one.
21006
21007         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
21008         Fix misspelling in diagnostic.
21009
21010 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21011
21012         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
21013         defined.  Problem reported by Matthew Woehlke.
21014
21015         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
21016         Add support for Tandem NonStop R series.
21017         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
21018         Use new macro.
21019
21020         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
21021         (has_trailing_slash): Omit size arg; all callers changed.
21022         Omit 'inline', since it doesn't help performance and we'd
21023         need to configure it.
21024         Don't count //, ///, etc. as having a trailing slash.
21025         As a side effect, this removes a C99ism reported by Matthew Woehlke.
21026         (rpl_rename_dest_slash): On failure, use rename's errno rather
21027         than (in some cases) an incorrect or junk errno.
21028         Simplify code by removing need to compute length; this does
21029         cause it to make two passes instead of one over the file name,
21030         but it's worth it.
21031
21032         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
21033         change, since Autoconf's version may no longer be appropriate now
21034         that we are using CVS Autoconf's version.  Add support for Tandem.
21035
21036 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21037             Bruno Haible  <bruno@clisp.org>
21038
21039         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
21040         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
21041         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
21042         gl_AC_TYPE_LONG_LONG.
21043
21044         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
21045         instead of HAVE_LONG_LONG.
21046         * lib/printf-args.c (printf_fetchargs): Likewise.
21047         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
21048         * lib/vasnprintf.c (VASNPRINTF): Likewise.
21049         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
21050         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
21051         gl_AC_TYPE_LONG_LONG.
21052
21053 2006-10-11  Bruno Haible  <bruno@clisp.org>
21054
21055         * m4/longlong.m4: Add comments.
21056         * m4/ulonglong.m4: Likewise.
21057
21058 2006-10-10  Bruno Haible  <bruno@clisp.org>
21059
21060         Make it possible to #define stpcpy, strdup to aliases.
21061         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
21062         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
21063
21064 2006-10-10  Bruno Haible  <bruno@clisp.org>
21065
21066         Make it possible to #define gcd to an alias.
21067         * lib/gcd.c: Include config.h.
21068
21069 2006-10-10  Bruno Haible  <bruno@clisp.org>
21070
21071         Make it possible to #define c_isascii to an alias.
21072         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
21073         defined. Undefine the macros before defining them, to avoid gcc
21074         warnings.
21075         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
21076         define NO_C_CTYPE_MACROS early.
21077
21078 2006-10-10  Bruno Haible  <bruno@clisp.org>
21079
21080         Make it possible to #define set_program_name to an alias.
21081         * lib/progname.c: Don't undefine set_program_name; instead, undefine
21082         ENABLE_RELOCATABLE early.
21083
21084 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21085
21086         Port to Tandem NSK OSS, which has 64-bit signed int but at most
21087         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
21088         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
21089         More generally, don't assume that 64-bit signed int is available
21090         if unsigned int is, and vice versa.
21091         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
21092         unsigned symbols, not on their signed counterparts.
21093         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
21094         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
21095         (UINT64_C, UINTMAX_C):
21096         Likewise.
21097         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
21098         unsigned counterparts.
21099         (Have_long_long, Unsigned): New macros.
21100         (Int): Renamed from INT.
21101         (strtoimax): Use the new macros.
21102         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
21103         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
21104         * modules/inttypes (inttypes.h): Substitute
21105         HAVE_UNSIGNED_LONG_LONG_INT.
21106         * modules/stdint (stdint.h): Likewise.
21107         (Files): Add m4/ulonglong.m4.
21108
21109 2006-10-10  Bruno Haible  <bruno@clisp.org>
21110
21111         Fix a gcc -Wshadow warning.
21112         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
21113         to 'bucket'.
21114         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
21115         gl_linked_indexof_from_to): Likewise.
21116         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
21117         Likewise.
21118         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
21119         Likewise.
21120         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
21121         Reported by Eric Blake.
21122
21123 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
21124
21125         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
21126         for NetBSD.  Problem reported by Bruno Haible.
21127
21128 2006-10-09  Jim Meyering  <jim@meyering.net>
21129
21130         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
21131         Patch from Bruno Haible.
21132
21133 2006-10-09  Jim Meyering  <jim@meyering.net>
21134
21135         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
21136         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
21137         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
21138
21139 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
21140
21141         Don't include <config.h> twice; this doesn't work in some cases,
21142         e.g., when config.h has "#define intmax_t long long int" and
21143         we include <config.h>, <inttypes.h>, <config.h> in that order.
21144         Problem reported by Matthew Woehlke in:
21145         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
21146         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
21147         * lib/fts-cycle.c: Don't include config.h.
21148         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
21149         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
21150         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
21151         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
21152         inttypes.h.
21153         * lib/xstrtoumax.c: Likewise.
21154         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
21155         __strtol and the like, so that this module is more like its siblings.
21156         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
21157         Remove; no longer needed now that we assume gnulib inttypes.h.
21158
21159 2006-10-08  Bruno Haible  <bruno@clisp.org>
21160
21161         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
21162         option.
21163
21164 2006-10-07  Jim Meyering  <jim@meyering.net>
21165
21166         * modules/inttypes (inttypes.h): Revert what seems to have been
21167         an inadvertent part of today's change: use "|", not "/" in the
21168         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
21169
21170 2006-10-07  Bruno Haible  <bruno@clisp.org>
21171
21172         * modules/sublist: New file.
21173
21174 2006-10-07  Bruno Haible  <bruno@clisp.org>
21175
21176         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
21177         * modules/argz (argz.h): Likewise.
21178         * modules/arpa_inet (arpa/inet.h): Likewise.
21179         * modules/byteswap (byteswap.h): Likewise.
21180         * modules/configmake (configmake.h): Likewise.
21181         * modules/fcntl (fcntl.h): Likewise.
21182         * modules/fnmatch (fnmatch.h): Likewise.
21183         * modules/getopt (getopt.h): Likewise.
21184         * modules/glob (glob.h): Likewise.
21185         * modules/inttypes (inttypes.h): Likewise.
21186         * modules/netinet_in (netinet/in.h): Likewise.
21187         * modules/poll (poll.h): Likewise.
21188         * modules/stdbool (stdbool.h): Likewise.
21189         * modules/stdint (stdint.h): Likewise.
21190         * modules/sys_select (sys/select.h): Likewise.
21191         * modules/sys_socket (sys/socket.h): Likewise.
21192         * modules/sys_stat (sys/stat.h): Likewise.
21193         * modules/sysexits (sysexits.h): Likewise.
21194         * modules/unistd (unistd.h): Likewise.
21195         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21196         Add a "DO NOT EDIT" comment to the generated file.
21197         (func_import): Likewise for gnulib-comp.m4.
21198
21199 2006-10-07  Bruno Haible  <bruno@clisp.org>
21200
21201         * lib/gl_sublist.h: New file.
21202         * lib/gl_sublist.c: New file.
21203
21204 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21205
21206         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
21207         name (relative to the original working directory) and the file
21208         name component (relative to the temporary working directory).  All
21209         callers changed.
21210         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
21211         * lib/mkdir-p.c (make_dir_parents): Likewise.
21212         * lib/mkdir-p.h (make_dir_parents): Likewise.
21213
21214 2006-10-06  Eric Blake  <ebb9@byu.net>
21215
21216         Define several macros for use by the clean-temp module.
21217         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
21218         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
21219         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
21220
21221         * lib/clean-temp.h (close_stream_temp): New declaration.
21222         * lib/clean-temp.c (includes): Pull in headers according to what
21223         other modules are in use.
21224         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
21225
21226 2006-10-06  Bruno Haible  <bruno@clisp.org>
21227
21228         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
21229         instead of fopen, fwriteerror.
21230
21231 2006-10-06  Bruno Haible  <bruno@clisp.org>
21232
21233         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
21234         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
21235         int.
21236         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
21237         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
21238         Return an error indicator.
21239         Suggested by Eric Blake.
21240
21241 2006-10-06  Bruno Haible  <bruno@clisp.org>
21242
21243         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
21244         Reported by Eric Blake.
21245
21246 2006-10-06  Bruno Haible  <bruno@clisp.org>
21247
21248         * modules/closeout (Description): Mention stderr too.
21249
21250 2006-10-06  Bruno Haible  <bruno@clisp.org>
21251         and Paul Eggert  <eggert@cs.ucla.edu>
21252
21253         * lib/closeout.c (close_stdout): Also close stderr.
21254         * lib/closeout.h: Update comment.
21255
21256 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
21257
21258         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
21259         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
21260         * lib/dirchownmod.c: Include lchown.h.
21261         * lib/lchown.c: Don't include files that lchown.h now includes.
21262         Don't declare chown, since lchown.h now does that.
21263         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
21264         (lchown): Define to rpl_chown if lchown is declared but
21265         does not exist.  Declare using a prototype if lchown is not
21266         declared.  Add a copyright notice.
21267         * lib/mkstemp.h: Include <unistd.h>.
21268         * lib/openat.c: Include lchown.h.
21269
21270         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
21271         we now test for that separately.
21272         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
21273         rather than O_NOFOLLOW, when testing whether it's possible to
21274         avoid a race condition reliably.
21275         * lib/savewd.c (savewd_chdir): Likewise.
21276
21277         Remove macros that are no longer needed now that stdint.h is
21278         reliable.
21279         * lib/fsusage.c (UINTMAX_MAX): Remove.
21280         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
21281         * lib/utimecmp.c (SIZE_MAX): Remove.
21282
21283         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
21284
21285         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
21286         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
21287         O_NOATIME works.
21288
21289 2006-10-05  Bruno Haible  <bruno@clisp.org>
21290
21291         * lib/gl_list.h (gl_sortedlist_search_from_to,
21292         gl_sortedlist_indexof_from_to): New declarations.
21293         (gl_list_implementation): New fields sortedlist_search_from_to,
21294         sortedlist_indexof_from_to.
21295         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
21296         inline functions.
21297         * lib/gl_list.c (gl_sortedlist_search_from_to,
21298         gl_sortedlist_indexof_from_to): New functions.
21299         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
21300         function.
21301         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
21302         (gl_array_sortedlist_search_from_to): New function.
21303         (gl_array_list_implementation): Update.
21304         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
21305         function.
21306         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
21307         (gl_carray_sortedlist_search_from_to): New function.
21308         (gl_carray_list_implementation): Update.
21309         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
21310         gl_linked_sortedlist_indexof_from_to): New functions.
21311         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21312         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21313         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
21314         gl_tree_sortedlist_indexof_from_to): New functions.
21315         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21316         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21317         Update.
21318         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21319         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
21320         Update.
21321
21322 2006-10-05  Bruno Haible  <bruno@clisp.org>
21323
21324         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
21325         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
21326         (struct gl_list_implementation): Add fields search_from_to,
21327         indexof_from_to. Remove fields search, indexof.
21328         (gl_list_search): Use the search_from_to method.
21329         (gl_list_search_from, gl_list_search_from_to): New functions.
21330         (gl_list_indexof): Use the indexof_from_to method.
21331         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21332         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
21333         (gl_list_search_from, gl_list_search_from_to): New functions.
21334         (gl_list_indexof): Use the indexof_from_to method.
21335         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21336         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
21337         gl_array_indexof. Add start_index, end_index arguments.
21338         (gl_array_search_from_to): Renamed from gl_array_search. Add
21339         start_index, end_index arguments.
21340         (gl_array_remove, gl_array_list_implementation): Update.
21341         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
21342         gl_carray_indexof. Add start_index, end_index arguments.
21343         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
21344         start_index, end_index arguments.
21345         (gl_carray_remove, gl_carray_list_implementation): Update.
21346         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
21347         gl_linked_search. Add start_index, end_index arguments.
21348         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
21349         start_index, end_index arguments.
21350         (gl_linked_remove): Update.
21351         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21352         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21353         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
21354         field to 'size_t'.
21355         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
21356         gl_tree_search. Add start_index, end_index arguments.
21357         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21358         start_index, end_index arguments.
21359         (gl_tree_remove): Update.
21360         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21361         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21362         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
21363         function.
21364         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
21365         gl_tree_search. Add start_index, end_index arguments.
21366         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21367         start_index, end_index arguments.
21368         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21369         Update.
21370         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
21371
21372 2006-10-05  Bruno Haible  <bruno@clisp.org>
21373
21374         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
21375
21376         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
21377         fwriteerror_temp): New declarations.
21378         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
21379         (descriptors): New variable.
21380         (cleanup): First, close the descriptors.
21381         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
21382         fclose_temp, fwriteerror_temp): New functions.
21383
21384 2006-10-04  Jim Meyering  <jim@meyering.net>
21385
21386         * lib/fts.c (fts_open): Tiny comment change.
21387
21388 2006-10-04  Bruno Haible  <bruno@clisp.org>
21389
21390         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
21391         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
21392         gl_LOCK_BODY.
21393         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
21394         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
21395         gl_LOCK_EARLY_BODY.
21396         (gl_LOCK): Require gl_LOCK_BODY.
21397
21398 2006-10-04  Bruno Haible  <bruno@clisp.org>
21399
21400         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
21401         (gl_oset_search_atleast): New declaration.
21402         (struct gl_oset_implementation): Add field 'search_atleast'.
21403         (gl_oset_search_atleast): New inline function.
21404         * lib/gl_oset.c (gl_oset_search_atleast): New function.
21405         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
21406         (gl_array_oset_implementation): Update.
21407         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
21408         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
21409         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
21410
21411 2006-10-04  Bruno Haible  <bruno@clisp.org>
21412
21413         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
21414
21415 2006-10-03  Bruno Haible  <bruno@clisp.org>
21416
21417         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
21418         from gl_avltreehash_list_implementation.
21419
21420 2006-10-03  Bruno Haible  <bruno@clisp.org>
21421
21422         * lib/gl_oset.c (gl_oset_add): Fix return type.
21423
21424 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
21425
21426         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
21427
21428 2006-10-02  Eric Blake  <ebb9@byu.net>
21429
21430         * modules/strnlen (Depends-on): Add extensions.
21431
21432 2006-10-02  Eric Blake  <ebb9@byu.net>
21433
21434         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
21435         definition in 2.60+.
21436
21437 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
21438
21439         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
21440         checks.
21441
21442 2006-10-02  Bruno Haible  <bruno@clisp.org>
21443
21444         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
21445         to the AUTOMAKE_OPTIONS.
21446         Reported by Jim Meyering.
21447
21448 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
21449
21450         Work around bug in Solaris 10 /proc file system:
21451         /proc/self/fd/NNN/.. isn't the parent directory of
21452         the directory whose file descriptor is NNN.  This needs to
21453         be worked around at run time, not compile time, since a
21454         program might be built on Solaris 8, where things work, and
21455         run on Solaris 10.
21456         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
21457         to use the following interface instead:
21458         (OPENAT_BUFFER_SIZE): New macro.
21459         (openat_proc_name): New function.
21460         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
21461         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
21462         Likewise.
21463         * lib/openat-proc.c: New file.
21464         * modules/openat (Files): Add lib/openat-proc.c.
21465         (Depends-on): Add same-inode, stdbool.
21466         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
21467
21468 2006-09-29  Bruno Haible  <bruno@clisp.org>
21469
21470         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
21471         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
21472         argument. Set stdout_closed before testing for ferror, not after.
21473         (fwriteerror, fwriteerror_no_ebadf): New functions.
21474
21475 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21476
21477         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
21478
21479 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
21480
21481         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
21482         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
21483
21484 2006-09-28  Jim Meyering  <jim@meyering.net>
21485
21486         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
21487         Include <unistd.h>.
21488
21489 2006-09-28  Bruno Haible  <bruno@clisp.org>
21490
21491         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
21492         * modules/linkedhash-list (Depends-on): Likewise.
21493         * modules/rbtreehash-list (Depends-on): Likewise.
21494
21495 2006-09-28  Bruno Haible  <bruno@clisp.org>
21496
21497         * lib/strndup.h: Simplify the redefinition of strndup.
21498         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
21499         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
21500
21501 2006-09-28  Bruno Haible  <bruno@clisp.org>
21502
21503         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
21504         * lib/gl_linkedhash_list.c: Likewise.
21505         * lib/gl_rbtreehash_list.c: Likewise.
21506
21507 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
21508
21509         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
21510         getaddrinfo.
21511
21512         * lib/__fpending.h: Don't include <stdio_ext.h> unless
21513         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
21514         it causes <stdio_ext.h> to cause a compile-time error.
21515         Problem reported by Nelson H. F. Beebe.
21516         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
21517         of HAVE_DECL___PENDING.
21518
21519         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
21520         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
21521         declaration.
21522
21523 2006-09-27  Jim Meyering  <jim@meyering.net>
21524
21525         This file could end up with a definition for a function
21526         named __strndup, rather than rpl_strndup on a system with
21527         incomplete weak_alias support.
21528         * lib/strndup.c (strndup): Rename from __strndup.
21529         Remove #defines that used to map __strndup to strndup.
21530         Don't use K&R prototypes.
21531         Remove LIBC-related code, since this file is not sync'd with glibc.
21532         * lib/strndup.h: Revamp, accordingly.
21533         * m4/strndup.m4: Modernize.
21534
21535 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
21536
21537         * modules/savewd (Depends-on): Add 'raise'.
21538         * lib/savewd.c: Include <signal.h>, for 'raise'.
21539
21540 2006-09-26  Jim Meyering  <jim@meyering.net>
21541
21542         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
21543         when we detect Darwin 8.7.0's acl_get_file bug.
21544         Rearrange to perform the new (below) run-test while $LIBS
21545         contains any acl-related library.  Set USE_ACL at the end.
21546         (gl_ACL_GET_FILE): New function.
21547
21548 2006-09-26  Eric Blake  <ebb9@byu.net>
21549
21550         * lib/verror.c: Include <config.h> unconditionally.
21551
21552 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
21553
21554         * modules/clock-time (Maintainer): Add self.
21555         * modules/getlogin_r (Depends-on): Add extensions.
21556
21557 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21558
21559         * modules/clock-time: New module.
21560         * modules/nanosleep (Depends-on): Add clock-time.
21561         * modules/gethrxtime (Depends-on): Likewise.
21562         * modules/gettime (Depends-on): Likewise.
21563         * modules/settime (Depends-on): Likewise.
21564
21565         * modules/fts-lgpl: Depend on openat.
21566         * modules/mkancesdirs: Depend on savewd.
21567         * modules/mkdir-p: Likewise.
21568
21569 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21570
21571         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
21572
21573         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
21574         `gl_have_arbitrary_file_name_length_limit' to
21575         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
21576         actually works between configure runs.
21577
21578 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21579             Bruno Haible  <bruno@clisp.org>
21580
21581         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
21582
21583 2006-09-25  Jim Meyering  <jim@meyering.net>
21584
21585         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
21586         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
21587
21588 2006-09-25  Eric Blake  <ebb9@byu.net>
21589
21590         * gnulib-tool (func_import, func_create_testdir): Fix typos in
21591         exec's in 2006-09-18 patch when shuffling fds.
21592
21593 2006-09-25  Bruno Haible  <bruno@clisp.org>
21594
21595         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
21596         Reported by Jim Meyering.
21597
21598 2006-09-24  Jim Meyering  <jim@meyering.net>
21599
21600         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
21601         compare a pointer against a literal "0".  That caused failures with
21602         at least HP-UX's hpcc.
21603
21604 2006-09-22  Simon Josefsson  <jas@extundo.com>
21605
21606         * modules/gc-sha1:
21607         * modules/gc-md4:
21608         * modules/gc-hmac-sha1:
21609         * modules/gc-hmac-md5:
21610         * modules/gc-des:
21611         * modules/gc-arcfour: Distribute more files.
21612
21613 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21614
21615         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
21616         (gl_linked_iterator_from_to): Initialize struct completely.
21617         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
21618         (gl_tree_iterator_from_to): Likewise
21619         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
21620         * lib/gl_array_list.c [lint] (gl_array_iterator)
21621         (gl_array_iterator_from_to): Likewise.
21622         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
21623         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
21624         (gl_carray_iterator_from_to): Likewise.
21625
21626         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
21627         * lib/md4.c (md4_process_block): Remove unused variable.
21628         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
21629         parentheses for clarity.
21630
21631 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21632
21633         * modules/bison-i18n (Depends-on): Add gettext.
21634
21635 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21636
21637         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
21638         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
21639         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
21640         also add missing comma that caused broken test.
21641         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
21642         stdlib.h, for `abort'.
21643         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
21644         variables.
21645         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
21646         include unistd.h if present, for `rmdir'.
21647         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
21648         variables.
21649         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
21650         in the process include standard headers for prototypes.
21651         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
21652         gets declared on GNU/Linux.
21653         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
21654         unistd.h, for `rmdir'.
21655         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
21656
21657         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
21658         always true.
21659         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
21660
21661         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
21662
21663 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21664
21665         * gnulib-tool (func_version): Create output all at once.  This
21666         may help avoid triggering unnecessary SIGPIPEs, and at any
21667         rate it doesn't hurt.
21668
21669 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21670             Bruno Haible  <bruno@clisp.org>
21671
21672         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
21673         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
21674         * m4/signed.m4 (bh_C_SIGNED): Likewise.
21675
21676         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
21677         (gl_FUNC_VASPRINTF): Invoke it.
21678
21679 2006-09-22  Bruno Haible  <bruno@clisp.org>
21680
21681         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
21682         getloadavg.c as first argument.
21683
21684 2006-09-22  Bruno Haible  <bruno@clisp.org>
21685
21686         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
21687         at the beginning of the gl_INIT macro.
21688         * modules/getloadavg (configure.ac): Pass $gl_source_base to
21689         gl_GETLOADAVG.
21690
21691 2006-09-22  Bruno Haible  <bruno@clisp.org>
21692
21693         * gnulib-tool (func_create_megatestdir): Don't include the config-h
21694         module.
21695         Suggested by Ralf Wildenhues.
21696
21697 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
21698
21699         Import this patch from libc:
21700
21701         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
21702
21703         * lib/regex_internal.c (re_string_reconstruct): Handle
21704         offset < pstr->valid_raw_len && pstr->offsets_needed case.
21705         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
21706         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
21707         re_string_context_at.
21708
21709         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
21710         now requires it.
21711         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
21712         gl_REGEX now does it for us.
21713         (gl_REGEX): Add test taken from
21714         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
21715
21716         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
21717         Check that large offsets work.  Modernize Autoconf usages.
21718         Prefer "yes" to mean a good thing rather than a bad.
21719         Don't put "#define mkstemp" in config.h, as this might interfere
21720         with standard system headers that "#define mkstemp mkstemp64".
21721
21722         * modules/mkstemp (Depends-on): Add extensions, so that
21723         mkstemp is visible on some platforms.
21724         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
21725         (Include): Change to "mkstemp.h" from <stdlib.h>.
21726         (Files): Add mkstemp.h.
21727
21728         * lib/mkstemp.h: New file, since some standard headers
21729         #define mkstemp.
21730         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
21731         Include "mkstemp.h".
21732         Make the _LIBC code resemble glibc original more,
21733         e.g., use K&R style.
21734         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
21735         (mkstemp): Remove, since mkstemp.h does this for us.
21736         * lib/stdlib--.h: Include mkstemp.h.
21737
21738         Import this patch from libc:
21739
21740         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21741
21742         * lib/tempname.c (__gen_tempname): Change attempts_min
21743         into a macro.  Use preprocessor to decide how to initialize
21744         attempts [Coverity CID 67].
21745
21746 2006-09-20  Bruno Haible  <bruno@clisp.org>
21747
21748         * lib/mkdtemp.c: Import from libc.
21749         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21750                 * sysdeps/posix/tempname.c (__gen_tempname): Change
21751                 attempts_min into a macro.  Use preprocessor to decide how to
21752                 initialize attempts [Coverity CID 67].
21753         2001-11-27  Paul Eggert  <eggert@twinsun.com>
21754                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
21755                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
21756
21757 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21758
21759         * gnulib-tool (func_exit): New function, to allow to pass the
21760         exit status portably through the trap.  Use everywhere.
21761         (--help, --version): Signal a write error.
21762         (trap): catch SIGPIPE, for write errors.
21763         Exit at the end of the trap, with the correct exit status.
21764
21765 2006-09-19  Karl Berry  <karl@gnu.org>
21766
21767         * doc/gnulib.texi: note about the license texinfo files.
21768
21769 2006-09-19  Eric Blake  <ebb9@byu.net>
21770
21771         * gnulib-tool: Avoid space-tab.
21772
21773 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21774
21775         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
21776         that prevented coreutils 6.1 from building.  Problem reported
21777         by Petter Reinholdtsen.
21778
21779 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21780
21781         * gnulib-tool (avoidlist): Fix typo that broke options like
21782         --avoid=lock that are used by coreutils bootstrap.
21783
21784 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
21785
21786         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
21787         more systematically.
21788
21789 2006-09-18  Jim Meyering  <jim@meyering.net>
21790
21791         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
21792
21793 2006-09-18  Bruno Haible  <bruno@clisp.org>
21794
21795         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
21796
21797 2006-09-18  Bruno Haible  <bruno@clisp.org>
21798
21799         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
21800         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
21801         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
21802         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
21803         * m4/gettext.m4: Require autoconf >= 2.52.
21804         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
21805         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
21806         of gl_cv_header_inttypes_h.
21807
21808 2006-09-18  Bruno Haible  <bruno@clisp.org>
21809
21810         * lib/javaversion.c: Include configmake.h.
21811
21812 2006-09-18  Bruno Haible  <bruno@clisp.org>
21813
21814         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
21815         avoid that the while loops be executed in a subshell.
21816
21817 2006-09-18  Bruno Haible  <bruno@clisp.org>
21818
21819         * MODULES.html.sh (func_module): Break long lines.
21820         Suggested by Bruce Korb <bkorb@gnu.org>.
21821
21822 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21823
21824         Speed up by a factor of 1.12.
21825         * gnulib-tool (nl): New variable.
21826         (func_import): Rewrite include directive extraction to only read each
21827         directive once.
21828
21829 2006-09-17  Bruno Haible  <bruno@clisp.org>
21830
21831         * modules/javaversion (Makefile.am): Remove DEFS setting.
21832         (Depends-on): Add configmake, for PKGDATADIR definition.
21833
21834 2006-09-17  Bruno Haible  <bruno@clisp.org>
21835
21836         * gnulib-tool (func_create_testdir): Rewrite all files at once.
21837
21838 2006-09-17  Bruno Haible  <bruno@clisp.org>
21839
21840         * gnulib-tool (func_append): New function, stolen from libtool.m4.
21841         (func_modules_transitive_closure, func_modules_add_dummy,
21842         func_modules_to_filelist, func_import, func_create_testdir,
21843         func_create_megatestdir, ...): Use it wherever possible.
21844         Suggested by Ralf Wildenhues.
21845
21846 2006-09-16  Karl Berry  <karl@gnu.org>
21847
21848         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
21849         to avoid sectioning errors.
21850         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
21851         [ifinfo]: blank line after @center-ed titles.
21852         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
21853         Spell FSF address consistently with others.
21854         (These changes approved by rms.)
21855
21856 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21857
21858         Speed up by a factor of 1.61.
21859         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
21860         already checked module names again.
21861
21862 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21863
21864         Speed up by a factor of 1.13.
21865         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
21866         for new_files, and the input to func_add_or_update.
21867
21868 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21869
21870         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
21871         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
21872
21873 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21874
21875         * modules/mkancesdirs (Depends-on): Add fcntl.
21876         * modules/savewd: New file.
21877         * MODULES.html.sh (File system functions): Add savewd.
21878
21879         * modules/configmake (Makefile.am): Add support for the
21880         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
21881
21882 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21883
21884         * m4/savewd.m4: New file.
21885
21886 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21887
21888         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
21889         (dirchownmod): New arg FD.  All callers changed.
21890         Use FD rather than opening the directory ourself, as opening is
21891         now the caller's responsibility.
21892         * lib/dirchownmod.h: Likewise.
21893         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
21894         hosts that require <sys/types.h> before <sys/stat.h>.  Include
21895         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
21896         (test_dir): Remove.
21897         (mkancesdirs): Return length of prefix of FILE that has already
21898         been made, or -2 if there is a child doing the work.  Redo
21899         algorithm so that it is O(N) rather than O(N**2).  Optimize away
21900         ".", and treat ".." specially since it might stray back into
21901         already-created areas.  Use a subprocess if necessary.  New arg
21902         WD; all users changed.  MAKE_DIR function should now return 1
21903         if it creates a directory that is not readable.  Return -2 if
21904         a child process is spun off.
21905         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
21906         Adjust signature to match code.
21907         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
21908         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
21909         all users changed.
21910         * lib/savewd.c, lib/savewd.h: New files.
21911
21912 2006-09-15  Jim Meyering  <jim@meyering.net>
21913
21914         * modules/rename-dest-slash: New module.
21915         * MODULES.html.sh (posix_compat): Add it here.
21916
21917         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
21918
21919 2006-09-15  Jim Meyering  <jim@meyering.net>
21920
21921         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
21922         file.
21923
21924         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
21925
21926 2006-09-15  Jim Meyering  <jim@meyering.net>
21927
21928         * lib/rename-dest-slash.c (has_trailing_slash): Use
21929         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
21930         (rpl_rename_dest_slash): Perform the cheaper trailing slash
21931         test before testing whether SRC is a directory.
21932         Suggestions from Bruno Haible.
21933
21934         Avoid a warning about an unused variable.
21935         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
21936         into the #ifdef block where it's used.
21937
21938         * lib/rename-dest-slash.c: New file.
21939
21940 2006-09-14  Bruno Haible  <bruno@clisp.org>
21941
21942         * lib/allocsa.c: Include <config.h> unconditionally.
21943         * lib/asnprintf.c: Likewise.
21944         * lib/asprintf.c: Likewise.
21945         * lib/c-strcasecmp.c: Likewise.
21946         * lib/c-strcasestr.c: Likewise.
21947         * lib/c-strncasecmp.c: Likewise.
21948         * lib/c-strstr.c: Likewise.
21949         * lib/classpath.c: Likewise.
21950         * lib/clean-temp.c: Likewise.
21951         * lib/concatpath.c: Likewise.
21952         * lib/copy-file.c: Likewise.
21953         * lib/csharpcomp.c: Likewise.
21954         * lib/csharpexec.c: Likewise.
21955         * lib/execute.c: Likewise.
21956         * lib/fatal-signal.c: Likewise.
21957         * lib/findprog.c: Likewise.
21958         * lib/fwriteerror.c: Likewise.
21959         * lib/gl_array_list.c: Likewise.
21960         * lib/gl_array_oset.c: Likewise.
21961         * lib/gl_avltree_list.c: Likewise.
21962         * lib/gl_avltree_oset.c: Likewise.
21963         * lib/gl_avltreehash_list.c: Likewise.
21964         * lib/gl_carray_list.c: Likewise.
21965         * lib/gl_linked_list.c: Likewise.
21966         * lib/gl_linkedhash_list.c: Likewise.
21967         * lib/gl_list.c: Likewise.
21968         * lib/gl_oset.c: Likewise.
21969         * lib/gl_rbtree_list.c: Likewise.
21970         * lib/gl_rbtree_oset.c: Likewise.
21971         * lib/gl_rbtreehash_list.c: Likewise.
21972         * lib/imaxabs.c: Likewise.
21973         * lib/imaxdiv.c: Likewise.
21974         * lib/javacomp.c: Likewise.
21975         * lib/javaexec.c: Likewise.
21976         * lib/javaversion.c: Likewise.
21977         * lib/linebreak.c: Likewise.
21978         * lib/localcharset.c: Likewise.
21979         * lib/lock.c: Likewise.
21980         * lib/mbchar.c: Likewise.
21981         * lib/mbswidth.c: Likewise.
21982         * lib/mkdtemp.c: Likewise.
21983         * lib/pipe.c: Likewise.
21984         * lib/printf-args.c: Likewise.
21985         * lib/printf-parse.c: Likewise.
21986         * lib/progname.c: Likewise.
21987         * lib/progreloc.c: Likewise.
21988         * lib/readlink.c: Likewise.
21989         * lib/sh-quote.c: Likewise.
21990         * lib/stpcpy.c: Likewise.
21991         * lib/stpncpy.c: Likewise.
21992         * lib/strcasecmp.c: Likewise.
21993         * lib/strcasestr.c: Likewise.
21994         * lib/strcspn.c: Likewise.
21995         * lib/striconv.c: Likewise.
21996         * lib/strncasecmp.c: Likewise.
21997         * lib/strnlen1.c: Likewise.
21998         * lib/strstr.c: Likewise.
21999         * lib/strtok_r.c: Likewise.
22000         * lib/tls.c: Likewise.
22001         * lib/tmpdir.c: Likewise.
22002         * lib/unicodeio.c: Likewise.
22003         * lib/unsetenv.c: Likewise.
22004         * lib/vasnprintf.c: Likewise.
22005         * lib/vasprintf.c: Likewise.
22006         * lib/wait-process.c: Likewise.
22007         * lib/xallocsa.c: Likewise.
22008         * lib/xsetenv.c: Likewise.
22009         * lib/xstriconv.c: Likewise.
22010
22011 2006-09-13  Simon Josefsson  <jas@extundo.com>
22012
22013         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
22014         that internally, suggested by Ralf Wildenhues
22015         <Ralf.Wildenhues@gmx.de>.
22016
22017 2006-09-13  Simon Josefsson  <jas@extundo.com>
22018
22019         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
22020         @LIBOBJS@.
22021         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22022
22023 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
22024
22025         * lib/_fpending.c: Include <config.h> unconditionally, since we no
22026         longer worry about uses that don't define HAVE_CONFIG_H.
22027         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
22028         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
22029         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
22030         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
22031         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
22032         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
22033         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
22034         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
22035         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
22036         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
22037         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
22038         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
22039         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
22040         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
22041         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
22042         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
22043         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
22044         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
22045         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
22046         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
22047         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
22048         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
22049         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
22050         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
22051         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
22052         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
22053         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
22054         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
22055         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
22056         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
22057         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
22058         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
22059         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
22060         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
22061         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
22062         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
22063         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
22064         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
22065         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
22066         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
22067         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
22068         Likewise.
22069
22070 2006-09-13  Eric Blake  <ebb9@byu.net>
22071
22072         * lib/getopt.c: Fix typo in last commit.
22073
22074 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
22075
22076         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
22077         dgettext.
22078
22079 2006-09-12  Jim Meyering  <jim@meyering.net>
22080
22081         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
22082         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
22083         Reported by Nelson H. F. Beebe.
22084
22085 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
22086
22087         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
22088         program_invocation_name and program_invocation_short_name are
22089         initialized.
22090         * lib/argp-namefrob.h: Move declarations of program_invocation_name
22091         and program_invocation_short_name to argp.h, so they are visible
22092         to user programs.
22093         * lib/argp.h: Likewise
22094
22095 2006-09-10  Bruno Haible  <bruno@clisp.org>
22096
22097         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
22098         m4/inttypes_h.m4, m4/uintmax_t.m4.
22099
22100 2006-09-10  Bruno Haible  <bruno@clisp.org>
22101
22102         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
22103         gl_AC_TYPE_UINTMAX_T.
22104
22105 2006-09-10  Bruno Haible  <bruno@clisp.org>
22106
22107         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
22108
22109 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
22110
22111         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
22112         convention.  Text proposed by Bruno Haible.
22113         (struct argp_option): Document the use of N_() wrappers.
22114
22115         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
22116         '\v', and translate the two parts separately, instead of feeding
22117         the whole string to gettext.  This allows to exclude
22118         '\v' from the strings visible to the translator by writing doc
22119         strings as N_("..") "\v" N_("..").
22120
22121 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
22122
22123         * config/srclist.txt: Undo latest change; the bug was fixed.
22124
22125 2006-09-09  Bruno Haible  <bruno@clisp.org>
22126
22127         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
22128         assignments if building a library without libtool.
22129         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
22130         in func_emit_lib_Makefile_am.
22131         (func_import): When building a static library libfoo.a, arrange to
22132         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
22133         (func_create_testdir): Likewise.
22134         * modules/gc (configure.ac, Makefile.am): If building statically,
22135         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
22136         * modules/iconvme (configure.ac, Makefile.am): Likewise.
22137         * modules/striconv (configure.ac, Makefile.am): Likewise.
22138         Based on a suggestion by Ralf Wildenhues.
22139
22140 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22141
22142         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
22143         Check for unistd.h too, since Autoconf doesn't assume POSIX.
22144         Also:
22145
22146         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22147         Add year_2050_test to catch glibc bug 2821
22148         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22149
22150         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
22151         Prefer #ifdef to #if.
22152
22153         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
22154         Return from 'main' instead of calling 'exit'.
22155
22156 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22157
22158         * lib/mktime.c (guess_time_tm): Fix bug where mktime
22159         returned the maximum time_t value rather than (time_t) -1.
22160         Problem originally reported by William Bardwell
22161         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22162
22163         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22164         Moved to here ...
22165         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22166         ... from here.
22167
22168 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22169
22170         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
22171         2821 is fixed.
22172
22173 2006-09-08  Jim Meyering  <jim@meyering.net>
22174
22175         Don't make generated files read-only.  That would bother too many
22176         people.  However, do retain the ability to work when targets are
22177         read-only: remove the destination and temporary files before writing
22178         them (when generated via sed or echo), or by using the -f option for
22179         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
22180         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22181         * modules/byteswap, modules/configmake, modules/fcntl:
22182         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22183         * modules/localcharset, modules/netinet_in, modules/poll:
22184         * modules/stdbool, modules/stdint, modules/sys_select:
22185         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22186
22187 2006-09-08  Jim Meyering  <jim@meyering.net>
22188
22189         Avoid new build failure on FreeBSD 6.0.
22190         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
22191         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
22192         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
22193
22194 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22195
22196         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
22197
22198 2006-09-07  Jim Meyering  <jim@meyering.net>
22199
22200         Fix global typo in last change: use chmod u-w, not chmod u-x.
22201         Spotted by Paul Eggert and Bruce Korb.
22202         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22203         * modules/byteswap, modules/configmake, modules/fcntl:
22204         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22205         * modules/localcharset, modules/netinet_in, modules/poll:
22206         * modules/stdbool, modules/stdint, modules/sys_select:
22207         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22208
22209 2006-09-06  Jim Meyering  <jim@meyering.net>
22210
22211         Make generated files be read-only.
22212         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
22213         Ensure that each generated file is now read-only.
22214         * modules/argz: Likewise.
22215         * modules/arpa_inet: Likewise.
22216         * modules/byteswap: Likewise.
22217         * modules/configmake: Likewise.
22218         * modules/fcntl: Likewise.
22219         * modules/fnmatch: Likewise.
22220         * modules/getopt: Likewise.
22221         * modules/glob: Likewise.
22222         * modules/inttypes: Likewise.
22223         * modules/netinet_in: Likewise.
22224         * modules/poll: Likewise.
22225         * modules/stdbool: Likewise.
22226         * modules/stdint: Likewise.
22227         * modules/sys_select: Likewise.
22228         * modules/sys_socket: Likewise.
22229         * modules/sys_stat: Likewise.
22230         * modules/sysexits: Likewise.
22231         * modules/localcharset: Same as above, but continue using temporary
22232         file named "t-$@" (why different?) rather than the "$@-t" used
22233         everywhere else.
22234
22235         * modules/sysexits (Makefile.am): Replace literal occurrences
22236         of "sysexit.h" more readable, and more consistent, "$@".
22237
22238 2006-09-06  Bruno Haible  <bruno@clisp.org>
22239
22240         * modules/striconv: New file.
22241         * modules/xstriconv: New file.
22242         * MODULES.html.sh (Internationalization functions): Add striconv,
22243         xstriconv.
22244
22245 2006-09-06  Bruno Haible  <bruno@clisp.org>
22246
22247         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
22248         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
22249         not using libtool correctly.
22250
22251 2006-09-06  Bruno Haible  <bruno@clisp.org>
22252
22253         * lib/striconv.h: New file.
22254         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
22255         iconvstring.c.
22256         * lib/xstriconv.h: New file.
22257         * lib/xstriconv.c: New file.
22258
22259 2006-09-06  Bruno Haible  <bruno@clisp.org>
22260
22261         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
22262         lib_..._LDFLAGS.
22263
22264 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22265
22266         * lib/argz_.h: Sync from Libtool.
22267
22268         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
22269                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
22270
22271         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
22272
22273 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22274
22275         * modules/trim: New file.
22276
22277 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22278
22279         * lib/trim.h: New file.
22280         * lib/trim.c: New file.
22281
22282 2006-09-05  Bruno Haible  <bruno@clisp.org>
22283
22284         * MODULES.html.sh (String handling): Add trim.
22285
22286 2006-09-04  Karl Berry  <karl@gnu.org>
22287
22288         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
22289         until next release.
22290
22291 2006-09-03  Bruno Haible  <bruno@clisp.org>
22292
22293         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
22294         correctly.
22295
22296 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22297
22298         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
22299         not gl_GETLOADAVG.  Omit unneeded semicolons.
22300         Problems reported by Ralf Wildenhues in
22301         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22302         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
22303         at the end, which is the usual gnulib style.
22304
22305         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
22306         of doing all the work ourselves.
22307         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
22308         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
22309
22310 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22311
22312         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
22313         Problem reported by Ralf Wildenhues in
22314         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22315
22316         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
22317         HAVE_STRUCT_STATFS_F_FSTYPENAME.
22318
22319 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22320
22321         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
22322         yesterday's patch by changing test -n to test -z.
22323
22324 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22325
22326         * modules/getloadavg (Files): Add m4/getloadavg.m4.
22327         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
22328         the former is now obsolescent.
22329
22330         * modules/chdir-long (Depends-on): Add fcntl.
22331
22332 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22333
22334         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
22335         obsolescent, and programs should use gnulib instead.
22336         * m4/getloadavg.m4: New file, with contents taken from Autoconf
22337         but with prefixes changed.
22338
22339 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22340
22341         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
22342         or stdbool.h, because they might not exist while configuring.
22343
22344         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
22345         Don't include unistd.h or limits.h; not needed, since chdir-long.h
22346         does that for us.
22347         (O_DIRECTORY): Remove.
22348
22349 2006-08-31  Eric Blake  <ebb9@byu.net>
22350
22351         * gnulib-tool: Don't let emacs change spaces to TAB.
22352
22353 2006-08-31  Bruno Haible  <bruno@clisp.org>
22354
22355         * gnulib-tool: When calling func_import more than once, do it in a
22356         subshell.
22357         Reported by Eric Blake <ebb9@byu.net>.
22358
22359 2006-08-31  Bruno Haible  <bruno@clisp.org>
22360
22361         * gnulib-tool (nl): Remove variable.
22362         (sed_transform_lib_file): Use more robust test for config-h module.
22363         (func_import): Fix typo in 2006-08-25 patch.
22364
22365 2006-08-31  Bruno Haible  <bruno@clisp.org>
22366
22367         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
22368         specified, augment Makefile.am variables instead of assigning them.
22369
22370 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22371
22372         Work around a bug in both the Linux and SunOS 64-bit kernels:
22373         nanosleep mishandles sleeps for longer than 2**31 seconds.
22374         Problem reported by Frank v Waveren in
22375         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22376         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
22377         Check for nanosleep bug.
22378         (LIB_NANOSLEEP): Append clock_gettime library if needed.
22379
22380 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22381
22382         Work around a bug in both the Linux and SunOS 64-bit kernels:
22383         nanosleep mishandles sleeps for longer than 2**31 seconds.
22384         Problem reported by Frank v Waveren in
22385         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22386         * lib/nanosleep.c (BILLION): New constant.
22387         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
22388         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
22389         implementation.
22390
22391 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22392
22393         * modules/nanosleep (Depends-on): Add gettime.
22394
22395 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22396         and Simon Josefsson  <jas@extundo.com>
22397         and Oskar Liljeblad  <oskar@osk.mine.nu>
22398
22399         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
22400         * gnulib-tool (func_import): New license type 'unmodifiable license
22401         text'.
22402         * modules/fdl: Use it.  Longer description.
22403         * module/gpl, module/lgpl: New files.
22404
22405 2006-08-30  Jim Meyering  <jim@meyering.net>
22406
22407         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
22408         shadowing the parameter.
22409
22410 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22411
22412         Sync from Libtool:
22413
22414         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22415
22416         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
22417         sharing with gnulib.  Report by Eric Blake.
22418
22419 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22420
22421         * modules/isapipe: New file.
22422         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
22423
22424 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22425
22426         * modules/configmake (Makefile.am): Add a comment, and omit
22427         the CONFIGMAKE_ prefix from generated macro names.  Suggested
22428         by Bruno Haible.
22429
22430 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22431
22432         * m4/isapipe.m4: New file.
22433
22434 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22435
22436         * lib/isapipe.c, lib/isapipe.h: New files.
22437
22438 2006-08-29  Jim Meyering  <jim@meyering.net>
22439
22440         * modules/configmake (Makefile.am): Make configmake.h depend on
22441         Makefile.  Otherwise, a stale configmake.h could hang around.
22442
22443 2006-08-29  Eric Blake  <ebb9@byu.net>
22444
22445         * lib/error.c (error_at_line, print_errno_message): Match libc, after
22446         resolution of upstream bug 3044.
22447
22448 2006-08-29  Bruno Haible  <bruno@clisp.org>
22449
22450         * modules/localcharset (Depends-on): Add configmake.
22451         (Makefile.am): Remove setting of LIBDIR through DEFS.
22452
22453 2006-08-29  Bruno Haible  <bruno@clisp.org>
22454
22455         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
22456         defined.
22457
22458 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22459
22460         * modules/fcntl: New file.
22461         * modules/chdir-safer (Depends-on): Add fcntl.
22462         * modules/fts: Likewise.
22463         * modules/mkdir-p: Likewise.
22464
22465         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
22466         This undoes the most recent change, since we're now addressing the
22467         problem in a different way.
22468
22469         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
22470         into output, since the output might be called Makefile.am even
22471         if $makefile_name is something different.
22472         (func_import): Use $makefile_am rather than
22473         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
22474         empty.
22475
22476         * modules/inttypes (Files): Add m4/inttypes-h.m4.
22477
22478 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22479
22480         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
22481         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
22482         recent change to stdint.m4, since we're now addressing the problem in a
22483         different way.
22484
22485 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22486
22487         * m4/fcntl_h.m4: New file.
22488
22489 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22490
22491         * lib/fcntl_.h: New file.
22492         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
22493         the fcntl module.
22494         * lib/dirchownmod.c: Likewise.
22495         * lib/fts.c: Likewise.
22496
22497         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
22498         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
22499         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
22500         just before including <inttypes.h>, to avoid circular inclusion.
22501
22502 2006-08-28  Jim Meyering  <jim@meyering.net>
22503
22504         * doc/visibility.texi: Actually read and correct the grammar of the
22505         sentence affected by yesterday's change.
22506
22507 2006-08-28  Eric Blake  <ebb9@byu.net>
22508
22509         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
22510         needs wrapper.
22511
22512 2006-08-28  Eric Blake  <ebb9@byu.net>
22513
22514         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
22515
22516 2006-08-28  Eric Blake  <ebb9@byu.net>
22517
22518         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
22519
22520 2006-08-28  Bruno Haible  <bruno@clisp.org>
22521
22522         * modules/c-strstr: New file, from GNU gettext.
22523         * MODULES.html.sh (String handling): Add c-strstr.
22524
22525 2006-08-28  Bruno Haible  <bruno@clisp.org>
22526
22527         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
22528         macros.
22529         Reported by Eric Blake.
22530
22531 2006-08-28  Bruno Haible  <bruno@clisp.org>
22532
22533         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
22534         (VASNPRINTF): Return a string of length > INT_MAX without failing.
22535         * lib/vasprintf.c: Include errno.h, limits.h.
22536         (EOVERFLOW): New fallback definition.
22537         (vasprintf): Test here whether the string length is > INT_MAX.
22538         * lib/vsnprintf.c: Include errno.h, limits.h.
22539         (EOVERFLOW): New fallback definition.
22540         (vsnprintf): Fix bug when generated string was too long for the buffer.
22541         Test here whether the string length is > INT_MAX.
22542
22543 2006-08-28  Bruno Haible  <bruno@clisp.org>
22544
22545         * lib/inttypes_.h (SCNX*): Remove definitions.
22546         Reported by Eric Blake.
22547
22548 2006-08-28  Bruno Haible  <bruno@clisp.org>
22549
22550         * lib/c-strstr.h: New file, from GNU gettext.
22551         * lib/c-strstr.c: New file, from GNU gettext.
22552
22553 2006-08-28  Bruno Haible  <bruno@clisp.org>
22554
22555         * gnulib-tool: Reorder some statements.
22556
22557 2006-08-28  Bruno Haible  <bruno@clisp.org>
22558
22559         * gnulib-tool: New option --makefile-name.
22560         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
22561         $makefile_name.
22562         (func_import): Write $makefile_name to the cache file, and read it from
22563         there unless explicitly specified. Use $makefile_name as file name
22564         instead of Makefile.am. Adjust the recommendations accordingly.
22565
22566 2006-08-28  Bruno Haible  <bruno@clisp.org>
22567
22568         * gnulib-tool (func_verify_module): Check against misapplying patch.
22569
22570 2006-08-28  Bruno Haible  <bruno@clisp.org>
22571
22572         * gnulib-tool (func_relativize, func_relconcat): New functions.
22573         Give an error if --local-dir is given with --update.
22574         Remove trailing slashes from $local_gnulib_dir.
22575         (func_import): Store the relativized $local_gnulib_dir in
22576         gnulib-cache.m4, and read it from there if not specified explicitly.
22577
22578 2006-08-28  Bruno Haible  <bruno@clisp.org>
22579
22580         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
22581         is the current directory. Respect also $local_gnulib_dir.
22582
22583 2006-08-28  Bruno Haible  <bruno@clisp.org>
22584             Simon Josefsson  <jas@extundo.com>
22585
22586         BeOS portability.
22587         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
22588
22589 2006-08-27  Jim Meyering  <jim@meyering.net>
22590
22591         * doc/visibility.texi: Remove duplicate word: "pointer".
22592
22593 2006-08-26  Bruno Haible  <bruno@clisp.org>
22594
22595         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
22596         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
22597         (Makefile.am): Create inttypes.h from inttypes_.h.
22598         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
22599
22600         * modules/imaxabs: New file.
22601
22602         * modules/imaxdiv: New file.
22603
22604 2006-08-26  Bruno Haible  <bruno@clisp.org>
22605
22606         * m4/inttypes.m4: New file.
22607         * m4/_inttypes_h.m4: Remove file.
22608         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
22609         PRI_MACROS_BROKEN.
22610         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
22611
22612         * m4/imaxabs.m4: New file.
22613
22614         * m4/imaxdiv.m4: New file.
22615
22616 2006-08-26  Bruno Haible  <bruno@clisp.org>
22617
22618         * lib/inttypes_.h: New file.
22619         * lib/inttypes.h: Remove file.
22620         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
22621
22622         * lib/imaxabs.c: New file.
22623
22624         * lib/imaxdiv.c: New file.
22625
22626 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22627
22628         New config-h module, so that "make" output needn't be cluttered
22629         by -DHAVE_CONFIG_H.
22630         * MODULES.html.sh (Support for building libraries and executables):
22631         Add config-h.
22632         * modules/config-h: New file.
22633         * gnulib-tool (nl, sed_transform_lib_file): New vars.
22634         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
22635         the config-h module is used.
22636
22637         New configmake module, so that "make" output needn't be cluttered
22638         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
22639         * MODULES.html.sh (Support for building libraries and executables):
22640         Add configmake.
22641         * modules/configmake: New file.
22642
22643 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22644
22645         * m4/config-h.m4: New file.
22646
22647 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22648
22649         * config/srclist.txt: Add elisp-comp.
22650
22651 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22652
22653         * MODULES.html.sh (Support for building libraries and executables):
22654         Add elisp-comp.
22655         * build-aux/elisp-comp: New file.
22656         * modules/elisp-comp: New file.
22657
22658 2006-08-24  Bruno Haible  <bruno@clisp.org>
22659
22660         * gnulib-tool (func_create_testdir): Use non-default values of
22661         sourcebase and m4base.
22662
22663 2006-08-24  Bruno Haible  <bruno@clisp.org>
22664
22665         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
22666         HTML structure.
22667
22668 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22669
22670         * modules/openat (Depends-on): Add lchown.
22671
22672 2006-08-23  Bruno Haible  <bruno@clisp.org>
22673
22674         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
22675         of gl_LOCK_EARLY instead of gl_LOCK.
22676
22677 2006-08-23  Bruno Haible  <bruno@clisp.org>
22678
22679         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
22680         on OSF/1 to no.
22681         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
22682
22683 2006-08-23  Bruno Haible  <bruno@clisp.org>
22684
22685         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
22686         as unusable.
22687
22688         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
22689         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
22690         (gl_LOCK): New macro.
22691
22692 2006-08-22  Simon Josefsson  <jas@extundo.com>
22693
22694         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
22695         to md5 module.
22696
22697 2006-08-22  Simon Josefsson  <jas@extundo.com>
22698
22699         * MODULES.html.sh: Add "Support for maintaining and release
22700         projects".
22701
22702         * build-aux/gnupload: New file, from coreutils.
22703
22704 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22705
22706         Avoid the need for AC_LIBSOURCES in m4 macros.
22707         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
22708         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
22709         * modules/check-version (EXTRA_DIST): Add check-version.h.
22710         * modules/crc (EXTRA_DIST): Add crc.h.
22711         * modules/des (EXTRA_DIST): Add des.h.
22712         * modules/gc (EXTRA_DIST): Add gc.h.
22713         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
22714         * modules/getline (EXTRA_DIST): Add getline.h.
22715         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
22716         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
22717         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
22718         * modules/md2 (EXTRA_DIST): Add md2.h.
22719         * modules/md4 (EXTRA_DIST): Add md4.h.
22720         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
22721         * modules/read-file (EXTRA_DIST): Add read-file.h.
22722         * modules/readline (EXTRA_DIST): Add readline.h.
22723         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
22724         rijndael-api-fst.h.
22725
22726 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22727
22728         * m4/rijndael.m4 (gl_ARCFOUR):
22729         * m4/arctwo.m4 (gl_ARCTWO):
22730         * m4/check-version.m4 (gl_CHECK_VERSION):
22731         * m4/crc.m4 (gl_CRC):
22732         * m4/des.m4 (gl_DES):
22733         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
22734         * m4/gc.m4 (gl_GC):
22735         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
22736         * m4/getline.m4 (gl_FUNC_GETLINE):
22737         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
22738         * m4/hmac-md5.m4 (gl_HMAC_MD5):
22739         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
22740         * m4/md2.m4 (gl_MD2):
22741         * m4/md4.m4 (gl_MD4):
22742         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
22743         * m4/read-file.m4 (gl_FUNC_READ_FILE):
22744         * m4/readline.m4 (gl_FUNC_READLINE):
22745         * m4/rijndael.m4 (gl_RIJNDAEL):
22746         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
22747         to get the necessary .h files and whatnot.
22748
22749 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22750
22751         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
22752         gnulib rather than the other way around.
22753         * config/srclistvars.sh (COREUTILS): Remove.
22754
22755 2006-08-22  Jim Meyering  <jim@meyering.net>
22756
22757         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
22758
22759         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
22760
22761 2006-08-22  Eric Blake  <ebb9@byu.net>
22762
22763         * modules/regexprops-generic: New file.
22764         * MODULES.html.sh (Support for building documentation): List it.
22765
22766 2006-08-22  Eric Blake  <ebb9@byu.net>
22767
22768         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
22769         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
22770         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
22771         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
22772
22773 2006-08-22  Bruno Haible  <bruno@clisp.org>
22774
22775         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
22776         and lib_LTLIBRARIES like the other lib_* variables.
22777
22778 2006-08-22  Bruno Haible  <bruno@clisp.org>
22779
22780         * build-aux/x-to-1.in: New file, from GNU gettext.
22781
22782 2006-08-22  Bruno Haible  <bruno@clisp.org>
22783
22784         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
22785         <utmpx.h> exists.
22786
22787 2006-08-22  Bruno Haible  <bruno@clisp.org>
22788
22789         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
22790         <utmpx.h> exists.
22791
22792 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22793
22794         BeOS portability.
22795         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
22796         exist.
22797         Problem reported by Bruno Haible.
22798
22799 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22800
22801         Avoid the need for AC_LIBSOURCES in m4 macros.
22802         * modules/acl (EXTRA_DIST): Add acl.h.
22803         * modules/argmatch (Files): Add m4/argmatch.m4.
22804         (configure.ac): Add gl_ARGMATCH.
22805         (EXTRA_DIST): Renamed from lib_SOURCES, for
22806         consistency with the other modules.  Remove argmatch.c.
22807         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
22808         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
22809         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
22810         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
22811         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
22812         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
22813         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
22814         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
22815         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
22816         * modules/closeout (EXTRA_DIST): Add closeout.h.
22817         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
22818         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
22819         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
22820         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
22821         dirname.h; remove basename.c and stripslash.c.
22822         * modules/exclude (EXTRA_DIST): Add exclude.h.
22823         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
22824         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
22825         * modules/file-type (EXTRA_DIST): Add file-type.h.
22826         * modules/filemode (EXTRA_DIST): Add filemode.h.
22827         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
22828         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
22829         * modules/fpending (EXTRA_DIST): Add __fpending.h.
22830         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
22831         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
22832         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
22833         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
22834         * modules/getdate (EXTRA_DIST): Add getdate.c.
22835         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
22836         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
22837         * modules/getpass (EXTRA_DIST): Add getpass.h.
22838         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
22839         * modules/group-member (EXTRA_DIST): Add group-member.h.
22840         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
22841         * modules/hash (EXTRA_DIST): Add hash.h.
22842         * modules/human (EXTRA_DIST): Add human.h.
22843         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
22844         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
22845         * modules/lchown (EXTRA_DIST): Add lchown.h.
22846         * modules/long-options (EXTRA_DIST): Add long-options.h.
22847         * modules/lstat (EXTRA_DIST): Add lstat.h.
22848         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
22849         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
22850         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
22851         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
22852         * modules/memxor (EXTRA_DIST): Add memxor.h.
22853         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
22854         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
22855         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
22856         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
22857         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
22858         * modules/physmem (EXTRA_DIST): Add physmem.h.
22859         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
22860         * modules/posixver (EXTRA_DIST): Add posixver.h.
22861         * modules/quote (EXTRA_DIST): Add quote.h.
22862         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
22863         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
22864         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
22865         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
22866         regex_internal.h regexec.c.
22867         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
22868         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
22869         * modules/same (EXTRA_DIST): Add same.h.
22870         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
22871         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
22872         * modules/savedir (EXTRA_DIST): Add savedir.h.
22873         * modules/sha1 (EXTRA_DIST): Add sha1.h.
22874         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
22875         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
22876         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
22877         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
22878         * modules/strdup (EXTRA_DIST): Add strdup.h.
22879         * modules/strftime (EXTRA_DIST): Add strftime.h.
22880         * modules/strndup (EXTRA_DIST): Add strndup.h.
22881         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
22882         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
22883         * modules/time_r (EXTRA_DIST): Add time_r.h.
22884         * modules/timespec (EXTRA_DIST): Add timespec.h.
22885         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
22886         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
22887         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
22888         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
22889         * modules/userspec (EXTRA_DIST): Add userspec.h.
22890         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
22891         * modules/utimens (EXTRA_DIST): Add utimens.h.
22892         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
22893         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
22894         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
22895         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
22896         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
22897         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
22898         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
22899         * modules/yesno (EXTRA_DIST): Add yesno.h.
22900
22901 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22902
22903         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
22904
22905         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
22906         * m4/dev-ino.m4, same-inode.m4: Remove.
22907
22908         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
22909         * m4/acl.m4 (AC_FUNC_ACL):
22910         * m4/backupfile.m4 (gl_BACKUPFILE):
22911         * m4/c-strtod.m4 (gl_C99_STRTOLD):
22912         * m4/canon-host.m4 (gl_CANON_HOST):
22913         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
22914         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
22915         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
22916         * m4/cloexec.m4 (gl_CLOEXEC):
22917         * m4/close-stream.m4 (gl_CLOSE_STREAM):
22918         * m4/closeout.m4 (gl_CLOSEOUT):
22919         * m4/dirfd.m4 (gl_FUNC_DIRFD):
22920         * m4/dirname.m4 (gl_DIRNAME):
22921         * m4/exclude.m4 (gl_EXCLUDE):
22922         * m4/exitfail.m4 (gl_EXITFAIL):
22923         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
22924         * m4/file-type.m4 (gl_FILE_TYPE):
22925         * m4/filemode.m4 (gl_FILEMODE):
22926         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
22927         * m4/fpending.m4 (gl_FUNC_FPENDING):
22928         * m4/fprintftime.m4 (gl_FPRINTFTIME):
22929         * m4/fts.m4 (gl_FUNC_FTS):
22930         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
22931         * m4/getdate.m4 (gl_GETDATE):
22932         * m4/gethrxtime.m4 (gl_GETHRXTIME):
22933         * m4/getpagesize.m4 (gl_GETPAGESIZE):
22934         * m4/getpass.m4 (gl_FUNC_GETPASS):
22935         * m4/gettime.m4 (gl_GETTIME):
22936         * m4/getugroups.m4 (gl_GETUGROUPS):
22937         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
22938         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
22939         * m4/hard-locale.m4 (gl_HARD_LOCALE):
22940         * m4/hash.m4 (gl_HASH):
22941         * m4/idcache.m4 (gl_IDCACHE):
22942         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
22943         * m4/lchown.m4 (gl_FUNC_LCHOWN):
22944         * m4/long-options.m4 (gl_LONG_OPTIONS):
22945         * m4/lstat.m4 (gl_FUNC_LSTAT):
22946         * m4/md5.m4 (gl_MD5):
22947         * m4/memcasecmp.m4 (gl_MEMCASECMP):
22948         * m4/memcoll.m4 (gl_MEMCOLL):
22949         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
22950         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
22951         * m4/memxor.m4 (gl_MEMXOR):
22952         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
22953         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
22954         * m4/modechange.m4 (gl_MODECHANGE):
22955         * m4/mountlist.m4 (gl_MOUNTLIST):
22956         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
22957         * m4/openat.m4 (gl_FUNC_OPENAT):
22958         * m4/pathmax.m4 (gl_PATHMAX):
22959         * m4/physmem.m4 (gl_PHYSMEM):
22960         * m4/posixtm.m4 (gl_POSIXTM):
22961         * m4/posixver.m4 (gl_POSIXVER):
22962         * m4/quote.m4 (gl_QUOTE):
22963         * m4/quotearg.m4 (gl_QUOTEARG):
22964         * m4/readtokens.m4 (gl_READTOKENS):
22965         * m4/readutmp.m4 (gl_READUTMP):
22966         * m4/regex.m4 (gl_REGEX):
22967         * m4/safe-read.m4 (gl_SAFE_READ):
22968         * m4/safe-write.m4 (gl_SAFE_WRITE):
22969         * m4/same.m4 (gl_SAME):
22970         * m4/save-cwd.m4 (gl_SAVE_CWD):
22971         * m4/savedir.m4 (gl_SAVEDIR):
22972         * m4/settime.m4 (gl_SETTIME):
22973         * m4/sha1.m4 (gl_SHA1):
22974         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
22975         * m4/stat-macros.m4 (gl_STAT_MACROS):
22976         * m4/stat-time.m4 (gl_STAT_TIME):
22977         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
22978         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
22979         * m4/strdup.m4 (gl_FUNC_STRDUP):
22980         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
22981         * m4/strndup.m4 (gl_FUNC_STRNDUP):
22982         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
22983         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
22984         * m4/time_r.m4 (gl_TIME_R):
22985         * m4/timespec.m4 (gl_TIMESPEC):
22986         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
22987         * m4/unlinkdir.m4 (gl_UNLINKDIR):
22988         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
22989         * m4/userspec.m4 (gl_USERSPEC):
22990         * m4/utimecmp.m4 (gl_UTIMECMP):
22991         * m4/utimens.m4 (gl_UTIMENS):
22992         * m4/xalloc.m4 (gl_XALLOC):
22993         * m4/xgetcwd.m4 (gl_XGETCWD):
22994         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
22995         * m4/xreadlink.m4 (gl_XREADLINK):
22996         * m4/xstrtod.m4 (gl_XSTRTOD):
22997         * m4/yesno.m4 (gl_YESNO):
22998         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
22999         to get the necessary .h files and whatnot.
23000
23001 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
23002             Bruno Haible  <bruno@clisp.org>
23003
23004         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
23005         /bin/sh understanding of '!' conditional negation.
23006
23007 2006-08-21  Jim Meyering  <jim@meyering.net>
23008
23009         * modules/openat (Depends-on): Really alphabetize.
23010
23011         * modules/acl (Depends-on): Add error and quote.
23012
23013         * check-module (find_included_lib_files): Add at-func.c to the
23014         ok-to-include-more-than-once white list.
23015
23016         * modules/openat (Depends-on): Add lstat.  Alphabetize.
23017
23018 2006-08-21  Bruno Haible  <bruno@clisp.org>
23019
23020         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23021         Emit a pkgdata_DATA variable only if some snippets add contents to it.
23022         Reported by Martin Lambers <marlam@marlam.de>.
23023
23024 2006-08-21  Bruno Haible  <bruno@clisp.org>
23025
23026         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
23027         specify an installation location, don't emit a noinst_LIBRARIES or
23028         noinst_LTLIBRARIES assignment.
23029
23030 2006-08-21  Bruno Haible  <bruno@clisp.org>
23031
23032         BeOS portability.
23033         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
23034         BeOS has mbrtowc() but no <wctype.h>.
23035
23036 2006-08-21  Bruno Haible  <bruno@clisp.org>
23037
23038         BeOS portability.
23039         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
23040         exist.
23041
23042 2006-08-21  Bruno Haible  <bruno@clisp.org>
23043
23044         BeOS portability.
23045         * lib/mbchar.h: Include <wctype.h> only if it exists.
23046
23047 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23048
23049         Remove files that are no longer needed by their respective modules.
23050         * m4/obstack.m4: Remove.
23051         * m4/strerror_r.m4: Remove.
23052         * m4/uint32_t.m4: Remove.
23053         * m4/uintptr_t.m4: Remove.
23054         * m4/ullong_max.m4: Remove.
23055         * m4/xstrtoimax.m4: Remove.
23056         * m4/xstrtoumax.m4: Remove.
23057
23058         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
23059         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
23060         dependencies now capture this.
23061
23062         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
23063         Do not use AC_LIBSOURCES, since gnulib modules now do this.
23064         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
23065         * m4/human.m4 (gl_HUMAN): Likewise.
23066         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
23067         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
23068
23069         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
23070
23071         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
23072         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
23073         stdint.
23074         * m4/human.m4 (gl_HUMAN): Likewise.
23075         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
23076         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
23077         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23078         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23079         * m4/xstrtol (gl_XSTRTOL): Likewise.
23080
23081         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
23082         AC_TYPE_LONG_LONG_INT.
23083         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23084         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
23085         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
23086         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23087
23088         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
23089         on stdbool.
23090
23091         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
23092         (gl_PREREQ_XSTRTOUL): Remove.
23093
23094         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
23095
23096         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
23097         mode.
23098
23099 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23100
23101         Add and change modules to make it easier for coreutils to use
23102         gnulib-tool.
23103         * modules/backupfile (Files): Remove m4/d-ino.m4.
23104         (Depends-on): Add d-ino.
23105         * modules/cycle-check (Depends-on): Add stdint.
23106         (lib_SOURCES): Add cycle-check.h.
23107         * modules/d-ino: New module.
23108         * modules/d-type: New module.
23109         * modules/error (Files): Remove m4/strerror_r.m4.
23110         * modules/filemode (Files): Add m4/st_dm_mode.m4.
23111         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
23112         m4/inttypes_h.m4, m4/uintmax_t.m4.
23113         (Depends-on): Add stdint.
23114         (lib_SOURCES): Add fsusage.h.
23115         * modules/getcwd (Files): Remove d-ino.m4.
23116         (Depends-on): Add d-ino.
23117         * modules/getndelim2 (Depends-on): Add stdint.
23118         * modules/glob (Files): Remove m4/d-type.m4.
23119         (Depends-on): Add d-type.
23120         * modules/host-os: New module.
23121         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
23122         m4/inttypes_h.m4, m4/uintmax_t.m4.
23123         * Depends-on: Add stdint.
23124         (lib_SOURCES): Add human.h.
23125         * modules/inttostr (Files): Remove m4/intmax_t.m4,
23126         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
23127         m4/uintmax_t.m4, m4/ulonglong.m4.
23128         (Depends-on): Add stdint.
23129         (EXTRA_DIST): Add inttostr.h.
23130         * modules/lchmod: New module.
23131         * modules/link-follow: New module.
23132         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
23133         (Depends-on): Add lchmod.
23134         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
23135         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
23136         (Depends-on): Add stdint.
23137         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
23138         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
23139         (Depends-on): Add stdint.
23140         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
23141         * modules/perl: New module.
23142         * modules/regex (Depends-on): Add stdint.
23143         * modules/rmdir-errno: New module.
23144         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23145         m4/intmax_t.m4.
23146         (Depends-on): Add stdint.
23147         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23148         m4/uintmax_t.m4.
23149         (Depends-on): Add stdint.
23150         * modules/unlink-busy: New module.
23151         * modules/utimecmp (Depends-on): Add stdint.
23152         * modules/uptime: New module.
23153         * modules/winsz-ioctl: New module.
23154         * modules/winsz-termios: New module.
23155         * modules/xnanosleep (Depends-on): Add nanosleep.
23156         * modules/ullong_max: Remove.
23157         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
23158         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
23159         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
23160         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
23161         (Depends-on): Add inttypes.
23162         (lib_SOURCES): Add xstrtol.h.
23163         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
23164         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
23165         * MODULES.html.sh: Move 'assert' into the assert section.
23166         Move 'dummy' into the linking section.
23167         Remove ullong_max.
23168         Add section for compatibility checks for POSIX:2001 functions,
23169         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
23170         winsz-ioctl, and winsz-termios into it.
23171         Add lchmod.
23172         Add top-level Misc section and put host-os, perl, and uptime
23173         into it.
23174
23175 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23176
23177         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
23178         now assume the stdint module.  Do not include inttypes.h.
23179         * lib/fsusage.h: Likewise.
23180         * lib/getndelim2.c: Likewise.
23181         * lib/human.h: Likewise.
23182         * lib/inttostr.h: Likewise.
23183         * lib/obstack.c: Likewise.
23184         * lib/regex_internal.h: Likewise.
23185         * lib/tempname.c: Likewise.
23186         * lib/utimecmp.c: Likewise.
23187         * lib/xstrtol.h: Likewise.
23188
23189         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
23190
23191         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
23192         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
23193         * lib/xtime.h: Likewise.
23194
23195 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23196
23197         * modules/openat (Files): Add lib/fchmodat.c.
23198         Fixes problem reported by Jay Youngman.
23199
23200 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23201
23202         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
23203         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
23204
23205 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
23206             Bruno Haible  <bruno@clisp.org>
23207
23208         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
23209         and is a script that invokes bison. Tighten the code. Add comments.
23210
23211 2006-08-18  Jim Meyering  <jim@meyering.net>
23212
23213         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
23214         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
23215         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
23216         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
23217
23218 2006-08-18  Bruno Haible  <bruno@clisp.org>
23219
23220         * modules/bison-i18n: New file.
23221         * MODULES.html.sh (Internationalization functions): Add it.
23222
23223 2006-08-18  Bruno Haible  <bruno@clisp.org>
23224
23225         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
23226         sys/statvfs.h. When getmntinfo was found, check its declaration and
23227         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
23228
23229 2006-08-18  Bruno Haible  <bruno@clisp.org>
23230
23231         * m4/bison-i18n.m4: New file, from bison.
23232
23233 2006-08-18  Bruno Haible  <bruno@clisp.org>
23234
23235         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
23236         (ME_DUMMY): Treat "kernfs" as a dummy.
23237         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
23238
23239 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23240
23241         Update from coreutils.
23242
23243         2006-08-15  Jim Meyering  <jim@meyering.net>
23244
23245         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
23246
23247         2006-01-17  Jim Meyering  <jim@meyering.net>
23248
23249         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
23250
23251         2006-01-11  Jim Meyering  <jim@meyering.net>
23252
23253         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
23254         Check for the lchmod function.
23255
23256 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23257
23258         Update from coreutils.
23259
23260         * lib/__fpending.h: Add copyright notice.
23261         * lib/fprintftime.h: Likewise.
23262         * lib/savedir.c: Use (C) in copyright notice.
23263         * lib/savedir.h: Likewise.
23264
23265         2006-08-15  Jim Meyering  <jim@meyering.net>
23266
23267         * lib/at-func.c: New file, with the logic of all emulated at-functions.
23268         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
23269         in support of the EXPECTED_ERRNO macro.
23270         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
23271         definitions.  Instead, define the appropriate symbols and include
23272         "at-func.c".
23273         * lib/mkdirat.c (mkdirat): Likewise.
23274         * lib/fchmodat.c (fchmodat): Likewise.
23275         (ENOSYS): Remove definition.
23276         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
23277         it.  Don't include "unistd--.h" -- it wasn't ever used.
23278
23279         2006-01-17  Jim Meyering  <jim@meyering.net>
23280
23281         Rewrite fts.c not to change the current working directory,
23282         by using openat, fstatat, fdopendir, etc..
23283
23284         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
23285         (HAVE_OPENAT_SUPPORT): Define.
23286         [_LIBC] (fchdir): Don't undef or define; no longer used.
23287         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
23288         Now, this `function' always succeeds, and consumes its file descriptor
23289         parameter -- so callers must not close such FDs.  Update callers.
23290         (diropen_fd, opendirat, cwd_advance_fd): New functions.
23291         (diropen): Add parameter, SP.  Adjust all callers.
23292         Implement using diropen_fd, rather than open.
23293         (fts_open): Initialize new member, fts_cwd_fd.
23294         Remove fts_rft-setting code.
23295         (fts_close): Close fts_cwd_fd, if necessary.
23296         (__opendir2): Define in terms of opendir or opendirat,
23297         depending on whether the FST_NOCHDIR flag is set.
23298         (fts_build): Since fts_safe_changedir consumes its FD, and since
23299         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
23300         and close the dup'd file descriptor upon failure.
23301         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
23302         (fts_safe_changedir): Tweak semantics to reflect that this function
23303         now calls cwd_advance_fd and hence consumes its FD argument.
23304         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
23305         [struct FTS] (fts_rft): Remove now-unused member.
23306         [struct FTS] (fts_cycle.state): Improve comment.
23307
23308         * lib/openat.c (openat_needs_fchdir): New function.
23309         * lib/openat.h (openat_needs_fchdir): Declare it.
23310
23311 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
23312
23313         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
23314         Problem and fix reported by Pádraig Brady in
23315         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
23316
23317 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23318
23319         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
23320
23321 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23322
23323         * lib/memcoll.c (memcoll): Optimize for the common case where the
23324         arguments are bytewise equal.
23325
23326 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23327
23328         * doc/regexprops-generic.texi: Add a copyright notice.
23329
23330 2006-08-15  Bruno Haible  <bruno@clisp.org>
23331
23332         * modules/tmpdir (License): Change to LGPL.
23333
23334 2006-08-15  Bruno Haible  <bruno@clisp.org>
23335
23336         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
23337         module.
23338
23339 2006-08-14  Simon Josefsson  <jas@extundo.com>
23340
23341         * config/srclist.txt: Add gnupload.
23342
23343 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23344
23345         Change copyright notice from LGPL 2 to GPL 2, since that's the
23346         standard form used in the gnulib repository.
23347         * tests/test-lock.c: Likewise.
23348         * tests/test-stdint.c: Likewise.
23349         * tests/test-tls.c: Likewise.
23350
23351         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
23352         prelude-manager.  User shorter URLs for GNU projects, without '?'.
23353         Add copyright notice.
23354
23355         * check-module: Add copyright notice.  Output a copyright
23356         notice if "--version" is specified.
23357         * modules/COPYING: New file.
23358         * tests/test-getaddrinfo.c: Add copyright notice.
23359         * tests/test-verify.c: Likewise.
23360
23361 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23362
23363         Change copyright notice from LGPL 2 to GPL 2, since that's the
23364         standard form used in the gnulib repository.
23365         * lib/lock.c: LGPL -> GPL.
23366         * lib/lock.h: Likewise.
23367         * lib/strnlen1.c: Likewise.
23368         * lib/strnlen1.h: Likewise.
23369         * lib/tls.c: Likewise.
23370         * lib/tls.h: Likewise.
23371         * lib/tmpdir.c: Likewise.
23372
23373         * lib/TODO: Remove; this belongs only in coreutils.
23374
23375 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23376
23377         Add copyright notices to long-enough files that lack them, since
23378         otherwise the files aren't clearly free.  Use the same notice that
23379         getdate.texi already uses.
23380         * doc/alloca-opt.texi: Add copyright notice.
23381         * doc/alloca.texi: Likewise.
23382         * doc/ctime.texi: Likewise.
23383         * doc/functions.texi: Likewise.
23384         * doc/gcd.texi: Likewise.
23385         * doc/gnulib-tool.texi: Likewise.
23386         * doc/inet_ntoa.texi: Likewise.
23387         * doc/visibility.texi: Likewise.
23388
23389         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
23390         * doc/quote.texi: Add copyright notice.
23391
23392         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
23393         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
23394         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
23395         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
23396         is now obsolete, and give a pointer to the Sun list.
23397         Add copyright notice.
23398
23399 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23400
23401         * config/srclistvars.sh: Add copyright notice.
23402
23403 2006-08-14  Eric Blake  <ebb9@byu.net>
23404
23405         Import the following change from libc:
23406
23407         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
23408
23409         Upstream bug 2997.
23410         * lib/misc/error.c: Add space between program name and message if file
23411         name is missing.
23412
23413 2006-08-12  Karl Berry  <karl@gnu.org>
23414
23415         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
23416         remove, these originate in gnulib now.
23417
23418 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23419
23420         * doc/Makefile (standards.info standards.html standards.dvi):
23421         Also depend on make-stds.texi.
23422
23423 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
23424
23425         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
23426         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
23427
23428         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
23429         in wchar_t.  Problem reported by Eric Blake.
23430
23431         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
23432         LEN is smaller than SIZE.  Suggested by Bruno Haible.
23433         Also, help the compiler to keep LEN in a register.
23434
23435 2006-08-11  Eric Blake  <ebb9@byu.net>
23436
23437         * users.txt: Sort.  Add tar.
23438
23439 2006-08-11  Bruno Haible  <bruno@clisp.org>
23440
23441         * users.txt: New file.
23442
23443 2006-08-11  Bruno Haible  <bruno@clisp.org>
23444
23445         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
23446         before <wchar.h>. Needed for OSF/1 and BSD/OS.
23447
23448 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23449
23450         * modules/snprintf (Depends-on): Remove minmax.
23451         (Maintainer): Add self and Bruno.
23452
23453 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23454
23455         * lib/.cppi-disable: Add snprintf.h, socket_.h.
23456         * lib/snprintf.c: Include <errno.h> and <limits.h>.
23457         (EOVERFLOW): Define if the system does not.
23458         Do not include "minmax.h"; it wasn't used.
23459         (snprintf): Don't assume size_t promotes to an unsigned type.
23460         Fix bug when generated string was too long for the buffer: the
23461         buffer's contents are supposed to be the initial prefix of the
23462         output.  Don't assume vasnprintf returns EOVERFLOW if the size
23463         exceeds INT_MAX; do the check ourselves.
23464
23465         Import the following changes from libc:
23466
23467         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
23468
23469         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
23470         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
23471         set wc to the byte which couldn't be converted.
23472         (re_string_reconstruct): Don't clear valid_raw_len before calling
23473         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
23474         tip_context using re_string_context_at.
23475
23476         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
23477
23478         * lib/posix/regex.h: g++ still cannot handled [restrict].
23479
23480         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
23481
23482         * lib/posix/regex.h: Remove special handling for VMS.
23483
23484 2006-08-10  Jim Meyering  <jim@meyering.net>
23485
23486         * modules/same-inode: New module.
23487         * modules/dev-ino: New module.
23488         * modules/cycle-check: Depend on these modules, rather than simply
23489         including their .h files.
23490         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
23491         required via m4/cycle-check.m4.
23492         * modules/same: Depend on new same-inode module, rather than
23493         including same-inode.h.
23494         * modules/chdir-safer: New file.
23495
23496         * modules/chown (Depends-on): Add stat-macros.
23497
23498 2006-08-10  Jim Meyering  <jim@meyering.net>
23499
23500         * m4/cycle-check.m4: New file.
23501         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
23502         * m4/dev-ino.m4, m4/same-inode.m4: New files.
23503
23504 2006-08-10  Eric Blake  <ebb9@byu.net>
23505
23506         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
23507         in from original proposal.
23508
23509 2006-08-10  Eric Blake  <ebb9@byu.net>
23510         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
23511
23512         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
23513         namespace.
23514
23515 2006-08-10  Bruno Haible  <bruno@clisp.org>
23516
23517         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
23518         as well.
23519
23520 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23521
23522         Sync from coreutils.
23523
23524         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
23525
23526         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
23527         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
23528
23529 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23530
23531         * modules/restrict: Remove; no longer needed now that we assume
23532         Autoconf 2.59 or later.
23533         * MODULES.html.sh: Remove 'restrict'.
23534         * modules/argp (Depends-on): Remove 'restrict'.
23535         * modules/base64 (Depends-on): Likewise.
23536         * modules/gc (Depends-on): Likewise.
23537         * modules/getaddrinfo (Depends-on): Likewise.
23538         * modules/glob (Depends-on): Likewise.
23539         * modules/inet_ntop (Depends-on): Likewise.
23540         * modules/inet_pton (Depends-on): Likewise.
23541         * modules/memxor (Depends-on): Likewise.
23542         * modules/regex (Depends-on): Likewise.
23543         * modules/strtok_r (Depends-on): Likewise.
23544         * modules/time_r (Depends-on): Likewise.
23545
23546 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23547
23548         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
23549         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
23550         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
23551         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
23552         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
23553         * m4/memxor.m4 (gl_MEMXOR): Likewise.
23554         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
23555         gl_C_RESTRICT replaced by AC_C_RESTRICT.
23556
23557         Merge from coreutils.
23558         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
23559         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
23560         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
23561         * m4/time_r.m4 (gl_TIME_R): Likewise.
23562
23563 2006-08-09  Karl Berry  <karl@gnu.org>
23564
23565         * config/srclist.txt: no more gettext-tools, per Bruno.
23566
23567 2006-08-08  Eric Blake  <ebb9@byu.net>
23568
23569         * modules/verror: New module.
23570         * MODULES.html.sh: Document it.
23571
23572 2006-08-08  Eric Blake  <ebb9@byu.net>
23573
23574         * lib/verror.h, lib/verror.c: New files.
23575
23576 2006-08-08  Eric Blake  <ebb9@byu.net>
23577
23578         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
23579         verror_at_line output complies with GNU Coding Standards even when
23580         file is NULL.
23581
23582 2006-08-07  Bruno Haible  <bruno@clisp.org>
23583
23584         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
23585         versions of AIX.
23586         Reported by Ralf Wildenhues.
23587
23588 2006-08-07  Bruno Haible  <bruno@clisp.org>
23589
23590         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
23591         in an AC_DEFUN. Needed so that the autoconf snippets can use
23592         AC_REQUIRE.
23593
23594 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23595
23596         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23597         Initialize pkgdata_DATA.
23598         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
23599         overriding it.
23600
23601 2006-08-06  Eric Blake  <ebb9@byu.net>
23602
23603         * lib/error.h: Fold in some upstream changes from glibc.
23604         * lib/error.c: Likewise.
23605
23606 2006-08-04  Bruno Haible  <bruno@clisp.org>
23607
23608         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23609         Make the mostlyclean-local rule depend on mostlyclean-generic.
23610         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
23611
23612 2006-07-31  Bruno Haible  <bruno@clisp.org>
23613
23614         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
23615         <stdlib.h>, <string.h>.
23616
23617 2006-07-30  Bruno Haible  <bruno@clisp.org>
23618
23619         * modules/readlink (License): Change to LGPL.
23620
23621 2006-07-30  Bruno Haible  <bruno@clisp.org>
23622
23623         * modules/javaversion (Makefile.am): Distribute javaversion.java and
23624         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
23625         set PKGDATADIR to point to it.
23626
23627 2006-07-30  Bruno Haible  <bruno@clisp.org>
23628
23629         * modules/csharpexec (configure.ac): Comment out macro invocation.
23630         * modules/javaexec (configure.ac): Likewise.
23631         * modules/javacomp-script (configure.ac): Likewise.
23632
23633         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
23634
23635 2006-07-30  Bruno Haible  <bruno@clisp.org>
23636
23637         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
23638         linked-list.
23639
23640 2006-07-30  Bruno Haible  <bruno@clisp.org>
23641
23642         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
23643
23644 2006-07-30  Bruno Haible  <bruno@clisp.org>
23645
23646         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23647         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
23648         get removed.
23649
23650 2006-07-29  Bruno Haible  <bruno@clisp.org>
23651
23652         Make it possible for gnulib-tool to work with locally modified or
23653         augmented gnulib repositories.
23654         * gnulib-tool (func_usage): Document --local-dir option.
23655         (local_gnulib_dir): New variable.
23656         Handle --local-dir option.
23657         (func_lookup_file): New function.
23658         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
23659         (func_get_description, func_get_filelist, func_get_description,
23660         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
23661         func_get_automake_snippet, func_get_include_directive,
23662         func_get_license, func_get_maintainer): Use func_lookup_file.
23663         (func_import, func_create_testdir): Use func_lookup_file.
23664
23665 2006-07-29  Bruno Haible  <bruno@clisp.org>
23666
23667         * modules/setenv (Depends-on): Add unistd.
23668
23669 2006-07-29  Bruno Haible  <bruno@clisp.org>
23670
23671         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
23672
23673 2006-07-29  Bruno Haible  <bruno@clisp.org>
23674
23675         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
23676
23677 2006-07-29  Bruno Haible  <bruno@clisp.org>
23678
23679         * gnulib-tool (import, update): If there is no Makefile.am, look at
23680         aclocal.m4, instead of bailing out.
23681
23682 2006-07-29  Bruno Haible  <bruno@clisp.org>
23683
23684         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
23685         Categorize the options by when they are useful.
23686
23687 2006-07-29  Bruno Haible  <bruno@clisp.org>
23688
23689         * gnulib-tool (func_usage): Document option --no-libtool.
23690         Handle option --no-libtool.
23691         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
23692         for changed semantics of $libtool variable.
23693         (func_import): Likewise. If libtool is not used, show this through
23694         an option --no-libtool.
23695         (func_create_testdir): Update.
23696
23697 2006-07-29  Bruno Haible  <bruno@clisp.org>
23698
23699         * gnulib-tool (func_import): Extend error message about missing
23700         --doc-base.
23701
23702 2006-07-29  Bruno Haible  <bruno@clisp.org>
23703
23704         * gnulib-tool (func_import): Don't create the $docbase directory if
23705         there is no file to store there.
23706
23707 2006-07-29  Bruno Haible  <bruno@clisp.org>
23708
23709         * gnulib-tool (autoconf_minversion): If a --dir option is given and
23710         relevant, look for configure.ac there, not in the current directory.
23711         Also use a simple search for AC_PREREQ, not "autoconf --trace".
23712
23713 2006-07-29  Bruno Haible  <bruno@clisp.org>
23714
23715         * gnulib-tool (SORT): New variable.
23716         (func_usage): Undocument --assume-autoconf option.
23717         Remove --assume-autoconf option handling.
23718         (autoconf_minversion): Determine from the contents of configure.ac.
23719         (func_import): Remove autoconf_minversion handling.
23720         Suggested by Eric Blake.
23721
23722 2006-07-29  Bruno Haible  <bruno@clisp.org>
23723
23724         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
23725
23726 2006-07-29  Bruno Haible  <bruno@clisp.org>
23727
23728         * config/srclist.txt (*setenv.[ch]): Remove rules.
23729
23730 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23731
23732         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
23733
23734 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23735
23736         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
23737         arpa/inet.h.
23738
23739 2006-07-28  Simon Josefsson  <jas@extundo.com>
23740
23741         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
23742         * modules/inet_pton (Depends-on): Likewise.
23743
23744 2006-07-28  Simon Josefsson  <jas@extundo.com>
23745
23746         * m4/netinet_in_h.m4: New file.
23747
23748 2006-07-28  Simon Josefsson  <jas@extundo.com>
23749
23750         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
23751         #include's.
23752
23753 2006-07-28  Simon Josefsson  <jas@extundo.com>
23754
23755         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
23756         #include's.
23757
23758 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
23759
23760         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
23761         setgid on directories only if they set these bits.
23762         * lib/modechange.h: Remove obsolete comment about masks.
23763
23764 2006-07-28  Eric Blake  <ebb9@byu.net>
23765
23766         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
23767         macro expansion.
23768
23769 2006-07-28  Bruno Haible  <bruno@clisp.org>
23770
23771         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
23772
23773 2006-07-28  Bruno Haible  <bruno@clisp.org>
23774
23775         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
23776
23777 2006-07-28  Bruno Haible  <bruno@clisp.org>
23778
23779         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
23780         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
23781         Define fallbacks.
23782         Avoids link error on FreeBSD 4.x.
23783         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23784
23785         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
23786         encoding.
23787         * lib/mbswidth.c (iswcntrl): Likewise.
23788
23789 2006-07-27  Bruno Haible  <bruno@clisp.org>
23790
23791         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
23792         test.
23793
23794 2006-07-27  Bruno Haible  <bruno@clisp.org>
23795
23796         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
23797         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
23798         defined.
23799
23800 2006-07-26  Eric Blake  <ebb9@byu.net>
23801
23802         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
23803
23804 2006-07-26  Eric Blake  <ebb9@byu.net>
23805
23806         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
23807         like mingw that lack mkstemp.
23808         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
23809         avoid compilation warning on mingw.
23810
23811 2006-07-26  Bruno Haible  <bruno@clisp.org>
23812
23813         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
23814         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
23815         INT_FAST*_MIN, INTPTR_MIN.
23816
23817 2006-07-25  Bruno Haible  <bruno@clisp.org>
23818
23819         * modules/version-etc (Depends-on): Add stdarg.
23820
23821 2006-07-25  Bruno Haible  <bruno@clisp.org>
23822
23823         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
23824         complex commands.
23825
23826 2006-07-25  Bruno Haible  <bruno@clisp.org>
23827
23828         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
23829         defined in <stdarg.h> or config.h.
23830
23831 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
23832
23833         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
23834         (gl_STDIO_SAFER): Remove.
23835
23836 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
23837
23838         * MODULES.html.sh (File stream based Input/Output):
23839         Add fopen-safer, tmpfile-safer; remove stdio-safer.
23840         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
23841         * modules/fopen-safer, modules/tmpfile-safer: New files.
23842         * modules/stdio-safer: Remove.
23843
23844 2006-07-24  Bruno Haible  <bruno@clisp.org>
23845
23846         * modules/tmpdir: New file.
23847         * MODULES.html.sh (File system functions): Add it.
23848
23849 2006-07-24  Bruno Haible  <bruno@clisp.org>
23850
23851         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
23852         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
23853
23854 2006-07-24  Bruno Haible  <bruno@clisp.org>
23855
23856         * modules/clean-temp: New file.
23857
23858 2006-07-24  Bruno Haible  <bruno@clisp.org>
23859
23860         * m4/tmpdir.m4: New file, from GNU gettext.
23861
23862 2006-07-24  Bruno Haible  <bruno@clisp.org>
23863
23864         * lib/tmpdir.h: New file, from GNU gettext.
23865         * lib/tmpdir.c: New file, from GNU gettext.
23866
23867 2006-07-24  Bruno Haible  <bruno@clisp.org>
23868
23869         * lib/clean-temp.h: New file, from GNU gettext.
23870         * lib/clean-temp.c: New file, from GNU gettext.
23871
23872 2006-07-23  Eric Blake  <ebb9@byu.net>
23873
23874         * modules/stdio-safer (Files): Add tmpfile-safer.c.
23875         (Depends-on): Add binary-io.
23876
23877 2006-07-23  Eric Blake  <ebb9@byu.net>
23878
23879         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
23880
23881 2006-07-23  Eric Blake  <ebb9@byu.net>
23882
23883         * lib/tmpfile-safer.c: New file.
23884         * lib/stdio-safer.h (fopen_safer): Add prototype.
23885         * lib/stdio--.h (tmpfile): Make safer.
23886
23887 2006-07-23  Bruno Haible  <bruno@clisp.org>
23888
23889         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
23890         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
23891         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
23892         gl_linked_remove_at): Use it.
23893
23894 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23895         and Simon Josefsson <jas@extundo.com>
23896
23897         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
23898
23899         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
23900
23901 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23902
23903         * modules/close-stream: New file.
23904         * modules/closeout (Description): Make it clear that it exits
23905         with a diagnostic on error.
23906         (Depends-on): Add close-stream.  Remove fpending, stdbool.
23907         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
23908
23909 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23910
23911         * m4/close-stream.m4: New file.
23912
23913 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23914
23915         * lib/close-stream.c, lib/close-stream.h: New files.
23916
23917 2006-07-22  Bruno Haible  <bruno@clisp.org>
23918
23919         Merge from GNU gettext 0.15.
23920
23921         2006-05-01  Bruno Haible  <bruno@clisp.org>
23922
23923                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
23924
23925         2006-07-22  Bruno Haible  <bruno@clisp.org>
23926
23927                 * modules/javaversion: New file.
23928                 * MODULES.html.sh (Java): Add javaversion.
23929
23930         2006-03-12  Bruno Haible  <bruno@clisp.org>
23931
23932                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
23933
23934         2005-12-04  Bruno Haible  <bruno@clisp.org>
23935
23936                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
23937                 (untested).
23938
23939         2006-06-21  Bruno Haible  <bruno@clisp.org>
23940
23941                 Avoid warnings from recent versions of mcs.
23942                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
23943                 -o, -L, -r any more. Use options documented since mcs-1.0
23944                 instead. Similarly for -g.
23945
23946         2005-12-04  Bruno Haible  <bruno@clisp.org>
23947
23948                 * build-aux/csharpcomp.sh.in: Suffix for resources is
23949                 .resources, not .resource.
23950
23951         2005-07-09  Bruno Haible  <bruno@clisp.org>
23952
23953                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
23954                 add a .dll suffix.
23955                 Reported by Mark Junker <mjscod@gmx.de>.
23956
23957         2006-07-22  Bruno Haible  <bruno@clisp.org>
23958
23959                 * modules/gettext: Upgrade to gettext-0.15.
23960                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
23961                 m4/visibility.m4.
23962                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
23963
23964 2006-07-22  Bruno Haible  <bruno@clisp.org>
23965
23966         Merge from GNU gettext 0.15.
23967
23968         2006-03-25  Bruno Haible  <bruno@clisp.org>
23969
23970                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
23971
23972         2006-07-21  Bruno Haible  <bruno@clisp.org>
23973
23974                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
23975                 "1.1".
23976
23977         2006-05-09  Bruno Haible  <bruno@clisp.org>
23978
23979                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
23980                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
23981                 for the conftestver execution.
23982
23983         2006-05-01  Bruno Haible  <bruno@clisp.org>
23984
23985                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
23986                 optional target-version argument. Verify that the compiler
23987                 groks source of the specified source-version, or add -source
23988                 option as necessary. Verify that the compiler produces
23989                 bytecode in the specified target-version, or add -target and
23990                 -source options as necessary. Make the result of the test
23991                 available as variable CONF_JAVAC. Also log error output in
23992                 config.log.
23993
23994         2006-03-11  Bruno Haible  <bruno@clisp.org>
23995
23996                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
23997
23998         2006-05-09  Bruno Haible  <bruno@clisp.org>
23999
24000                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
24001                 CLASSPATH_SEPARATOR to a semicolon.
24002
24003         2006-03-12  Bruno Haible  <bruno@clisp.org>
24004
24005                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
24006                 available as variable CONF_JAVA, for subsequent autoconf
24007                 tests. Also log error output in config.log.
24008
24009         2006-07-19  Bruno Haible  <bruno@clisp.org>
24010
24011                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
24012                 that getline works on glibc2 systems. Needed to avoid trouble
24013                 in relocatable.c.
24014                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
24015
24016         2005-12-04  Bruno Haible  <bruno@clisp.org>
24017
24018                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
24019                 launcher (untested).
24020
24021         2005-12-04  Bruno Haible  <bruno@clisp.org>
24022
24023                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
24024
24025         2006-07-22  Bruno Haible  <bruno@clisp.org>
24026
24027                 * gettext.m4: Update from GNU gettext-0.15.
24028                 * nls.m4: Likewise.
24029                 * po.m4: Likewise.
24030                 * inttypes-pri.m4: Likewise.
24031                 * inttypes-h.m4: Renamed from inttypes.m4.
24032                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
24033
24034 2006-07-22  Bruno Haible  <bruno@clisp.org>
24035
24036         Merge from GNU gettext 0.15.
24037
24038         2005-07-05  Bruno Haible  <bruno@clisp.org>
24039
24040                 * printf-args.c (printf_fetchargs): Work around broken
24041                 definition of wint_t on mingw.
24042
24043         2005-02-12  Bruno Haible  <bruno@clisp.org>
24044
24045                 * xallocsa.h: Add extern "C" for C++.
24046
24047         2006-05-17  Bruno Haible  <bruno@clisp.org>
24048
24049                 Cygwin portability.
24050                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
24051
24052         2006-04-30  Bruno Haible  <bruno@clisp.org>
24053
24054                 * progreloc.c: Include <mach-o/dyld.h> if available.
24055                 (find_executable): Use _NSGetExecutablePath when possible.
24056
24057         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
24058
24059                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
24060                 function.
24061
24062         2005-12-29  Bruno Haible  <bruno@clisp.org>
24063
24064                 * progreloc.c (set_program_name_and_installdir): Fix
24065                 compilation error.
24066
24067         2005-12-04  Bruno Haible  <bruno@clisp.org>
24068
24069                 Cygwin portability.
24070                 * progreloc.c: Include <windows.h> also on Cygwin.
24071                 (find_executable): Add support for Cygwin.
24072                 (set_program_name_and_installdir): Handle also platforms with
24073                 nonempty EXEEXT.
24074
24075         2006-07-11  Bruno Haible  <bruno@clisp.org>
24076
24077                 * javacomp.c: Fix a comment.
24078                 Reported by Jim Meyering.
24079
24080         2006-04-30  Bruno Haible  <bruno@clisp.org>
24081
24082                 * javacomp.h (compile_java_class): Add source_version,
24083                 target_version arguments.
24084                 * javacomp.c: Rewritten to choose only a compiler that
24085                 respects the specified source_version and target_version.
24086
24087         2006-06-27  Bruno Haible  <bruno@clisp.org>
24088
24089                 Assume correct S_ISDIR macro.
24090                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
24091
24092         2006-07-22  Bruno Haible  <bruno@clisp.org>
24093
24094                 * javaversion.h: New file, from GNU gettext.
24095                 * javaversion.c: New file, from GNU gettext.
24096                 * javaversion.java: New file, from GNU gettext.
24097                 * javaversion.class: New file, from GNU gettext.
24098
24099         2006-05-17  Bruno Haible  <bruno@clisp.org>
24100
24101                 Cygwin portability.
24102                 * javaexec.c (execute_java_class): Test for jview program
24103                 also on Cygwin.
24104
24105         2006-04-09  Bruno Haible  <bruno@clisp.org>
24106
24107                 * fatal-signal.c: Don't include string.h.
24108                 (at_fatal_signal): Use a copying loop instead of memcpy.
24109
24110         2005-12-04  Bruno Haible  <bruno@clisp.org>
24111
24112                 * csharpexec.c: Add support for 'clix' launcher (untested).
24113                 (execute_csharp_using_sscli): New function.
24114                 (execute_csharp_program): Call it.
24115
24116         2006-06-21  Bruno Haible  <bruno@clisp.org>
24117
24118                 Avoid warnings from recent versions of mcs.
24119                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
24120                 -o, -L, -r any more. Use options documented since mcs-1.0
24121                 instead. Similarly for -g.
24122
24123         2005-07-09  Bruno Haible  <bruno@clisp.org>
24124
24125                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
24126                 add a .dll suffix.
24127                 Reported by Mark Junker <mjscod@gmx.de>.
24128
24129         2006-06-17  Bruno Haible  <bruno@clisp.org>
24130
24131                 * config.charset: Update for NetBSD 3.0.
24132
24133         2006-05-17  Bruno Haible  <bruno@clisp.org>
24134
24135                 Cygwin portability.
24136                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
24137
24138         2006-05-16  Bruno Haible  <bruno@clisp.org>
24139
24140                 * localcharset.c [CYGWIN]: Include <windows.h>.
24141                 (get_charset_aliases): For Cygwin, return the same CPxxx
24142                 aliases list as under WIN32.
24143                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
24144                 the environment variables. Fall back to GetACP().
24145
24146         2006-04-05  Bruno Haible  <bruno@clisp.org>
24147
24148                 * config.charset: Update Juan Manuel Guerrero's address.
24149
24150         2005-02-12  Bruno Haible  <bruno@clisp.org>
24151
24152                 * allocsa.h: Add extern "C" for C++.
24153
24154         2005-02-10  Bruno Haible  <bruno@clisp.org>
24155
24156                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
24157                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
24158
24159         2006-07-22  Bruno Haible  <bruno@clisp.org>
24160
24161                 * gettext.h: Update to GNU gettext-0.15.
24162
24163 2006-07-22  Bruno Haible  <bruno@clisp.org>
24164
24165         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
24166         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
24167         lib-prefix.m4, longdouble.m4, ssize_t.m4.
24168
24169 2006-07-21  Eric Blake  <ebb9@byu.net>
24170
24171         * modules/stdlib-safer: New file.
24172         * MODULES.html.sh (File stream based Input/Output): Add
24173         stdlib-safer.
24174
24175 2006-07-21  Eric Blake  <ebb9@byu.net>
24176
24177         * lib/stdlib-safer.h: New file from coreutils, required by
24178         stdlib--.h.
24179
24180 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
24181
24182         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
24183
24184 2006-07-20  Bruno Haible  <bruno@clisp.org>
24185
24186         * gnulib-tool: Recognize new option --assume-autoconf.
24187         (autoconf_minversion): New variable.
24188         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
24189
24190 2006-07-20  Bruno Haible  <bruno@clisp.org>
24191
24192         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
24193
24194 2006-07-19  Derek R. Price  <derek@ximbiot.com>
24195
24196         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
24197         Reindent and repaginate.
24198
24199 2006-07-19  Derek Price  <derek@ximbiot.com>
24200
24201         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
24202         Correct grammar.
24203
24204 2006-07-17  Bruno Haible  <bruno@clisp.org>
24205
24206         * modules/list: New file.
24207         * modules/array-list: New file.
24208         * modules/carray-list, modules/carray-list-tests: New files.
24209         * modules/linked-list, modules/linked-list-tests: New files.
24210         * modules/avltree-list, modules/avltree-list-tests: New files.
24211         * modules/rbtree-list, modules/rbtree-list-tests: New files.
24212         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
24213         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
24214         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
24215         * modules/oset: New file.
24216         * modules/array-oset: New file.
24217         * modules/avltree-oset, modules/avltree-oset-tests: New files.
24218         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
24219         * tests/test-carray_list.c: New file.
24220         * tests/test-linked_list.c: New file.
24221         * tests/test-avltree_list.c: New file.
24222         * tests/test-rbtree_list.c: New file.
24223         * tests/test-linkedhash_list.c: New file.
24224         * tests/test-avltreehash_list.c: New file.
24225         * tests/test-rbtreehash_list.c: New file.
24226         * tests/test-avltree_oset.c: New file.
24227         * tests/test-rbtree_oset.c: New file.
24228         * MODULES.html.sh (Container data structures): New section.
24229
24230 2006-07-17  Bruno Haible  <bruno@clisp.org>
24231
24232         * m4/gl_list.m4: New file.
24233
24234 2006-07-17  Bruno Haible  <bruno@clisp.org>
24235
24236         * lib/gl_list.h: New file.
24237         * lib/gl_list.c: New file.
24238         * lib/gl_array_list.h: New file.
24239         * lib/gl_array_list.c: New file.
24240         * lib/gl_carray_list.h: New file.
24241         * lib/gl_carray_list.c: New file.
24242         * lib/gl_linked_list.h: New file.
24243         * lib/gl_linked_list.c: New file.
24244         * lib/gl_anylinked_list1.h: New file.
24245         * lib/gl_anylinked_list2.h: New file.
24246         * lib/gl_avltree_list.h: New file.
24247         * lib/gl_avltree_list.c: New file.
24248         * lib/gl_anyavltree_list1.h: New file.
24249         * lib/gl_anyavltree_list2.h: New file.
24250         * lib/gl_rbtree_list.h: New file.
24251         * lib/gl_rbtree_list.c: New file.
24252         * lib/gl_anyrbtree_list1.h: New file.
24253         * lib/gl_anyrbtree_list2.h: New file.
24254         * lib/gl_anytree_list1.h: New file.
24255         * lib/gl_anytree_list2.h: New file.
24256         * lib/gl_linkedhash_list.h: New file.
24257         * lib/gl_linkedhash_list.c: New file.
24258         * lib/gl_anyhash_list1.h: New file.
24259         * lib/gl_anyhash_list2.h: New file.
24260         * lib/gl_avltreehash_list.h: New file.
24261         * lib/gl_avltreehash_list.c: New file.
24262         * lib/gl_rbtreehash_list.h: New file.
24263         * lib/gl_rbtreehash_list.c: New file.
24264         * lib/gl_anytreehash_list1.h: New file.
24265         * lib/gl_anytreehash_list2.h: New file.
24266
24267         * lib/gl_oset.h: New file.
24268         * lib/gl_oset.c: New file.
24269         * lib/gl_array_oset.h: New file.
24270         * lib/gl_array_oset.c: New file.
24271         * lib/gl_avltree_oset.h: New file.
24272         * lib/gl_avltree_oset.c: New file.
24273         * lib/gl_rbtree_oset.h: New file.
24274         * lib/gl_rbtree_oset.c: New file.
24275         * lib/gl_anytree_oset.h: New file.
24276
24277 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24278
24279         * m4/mkancesdirs.m4: New file.
24280         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
24281         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
24282         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
24283         it.
24284
24285 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24286
24287         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
24288         * lib/mkancesdirs.h: New files.
24289         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
24290         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
24291         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
24292         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
24293         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
24294         callers changed.  Revamp internals significantly, by not
24295         attempting to create directories that are temporarily more
24296         permissive than the final results.  Do not attempt to use
24297         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
24298         This removes some race conditions, fixes some bugs, and simplifies
24299         things.  Use new dirchownmod function to do owner and mode changes.
24300         * lib/mkdir-p.h: Likewise.
24301         * lib/modechange.c (octal_to_mode): New function.
24302         (struct mode_change): New member mentioned.
24303         (make_node_op_equals): New arg mentioned.  All callers changed.
24304         (mode_compile): Keep track of which mode bits the user has explicitly
24305         mentioned.
24306         (mode_adjust): New arg DIR, so that we implement the X op correctly.
24307         New arg PMODE_BITS, to keep track of which mode bits the user
24308         mentioned; it treats S_ISUID and S_ISGID speciall.
24309         All callers changed.
24310         * lib/modechange.h: Likewise.
24311
24312 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24313
24314         * MODULES.html.sh: Add mkancestors.
24315         * modules/mkancesdirs: New module.
24316         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
24317         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
24318         The chdir-safer and afs files are now orphans; I'll remove them
24319         unless someone speaks up.
24320         Add lib/dirchownmod.c, lib/dirchownmod.h.
24321         (Depends-on): Remove alloca, chown, save-cwd, dirname.
24322         Add lchown, mkancesdirs.
24323         (Maintainer): Add self.
24324
24325 2006-07-15  Karl Berry  <karl@gnu.org>
24326
24327         * gnulib-tool: help message wording/arrangement.
24328
24329 2006-07-14  Simon Josefsson  <jas@extundo.com>
24330
24331         * doc/gnulib.texi (Libtool and Windows): New section.
24332
24333 2006-07-12  Simon Josefsson  <jas@extundo.com>
24334
24335         * modules/gendocs (License): Fix license, approved by Karl.
24336
24337 2006-07-12  Eric Blake  <ebb9@byu.net>
24338
24339         * MODULES.html.sh: Add gendocs.
24340
24341 2006-07-11  Eric Blake  <ebb9@byu.net>
24342
24343         * modules/fdl: New module, to install doc/fdl.texi.
24344         * MODULES.html.sh: Add new section for documentation modules.
24345         * gnulib-tool: Avoid space-tab.
24346         (--doc-base): New option, to manage files from doc.
24347
24348 2006-07-11  Eric Blake  <ebb9@byu.net>
24349
24350         * m4/absolute-header.m4: Fix comments to match recent change.
24351
24352 2006-07-11  Eric Blake  <ebb9@byu.net>
24353
24354         * gnulib-tool: List --doc-base before --tests-base.
24355
24356 2006-07-11  Derek R. Price  <derek@ximbiot.com>
24357
24358         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
24359
24360 2006-07-11  Bruno Haible  <bruno@clisp.org>
24361
24362         * README: Mention where to put documentation.
24363
24364 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24365
24366         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
24367
24368 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24369
24370         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
24371         to stdint.m4.
24372
24373 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24374
24375         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
24376         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
24377         "no/such/file/stdint.h" when there is no such file, so that
24378         the resulting C code can be parsed by dodgy compilers.
24379         Problems reported by Bob Proulx.
24380
24381 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24382
24383         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
24384         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24385         macros into the GNU _D_EXACT_NAMLEN.
24386         * lib/savedir.c:  Likewise.
24387         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
24388
24389 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24390         and Paul Eggert  <eggert@cs.ucla.edu>
24391
24392         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
24393         * m4/savedir.m4:
24394         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24395         macros into the GNU _D_EXACT_NAMLEN.
24396
24397 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24398
24399         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
24400         around the absolute name, to work around a problem with the HP-UX
24401         11.23 native C compiler, reported by Bob Proulx.
24402
24403 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24404
24405         * doc/maintain.texi, make-stds.texi: Sync from
24406         <http://savannah.gnu.org/projects/gnustandards>.
24407
24408 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24409
24410         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
24411
24412 2006-07-09  Jim Meyering  <jim@meyering.net>
24413
24414         * m4/glob.m4: Remove a doubled word in a comment.
24415
24416 2006-07-09  Jim Meyering  <jim@meyering.net>
24417
24418         * lib/argp-pv.c: Remove a doubled word in a comment.
24419         * lib/check-version.c (check_version): Likewise.
24420         * lib/javacomp.c (compile_java_class): Likewise.
24421
24422 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
24423
24424         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
24425         for the benefit of people using Autoconf 2.60.  If you want to
24426         support older Autoconf versions you can copy m4/onceonly_2_57.m4
24427         (or m4/onceonly.m4, if pre-2.57) manually.
24428
24429 2006-07-08  Jim Meyering  <jim@meyering.net>
24430
24431         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
24432         comment.
24433         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
24434         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
24435         comment.
24436
24437 2006-07-08  Jim Meyering  <jim@meyering.net>
24438
24439         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
24440
24441 2006-07-07  Simon Josefsson  <jas@extundo.com>
24442
24443         * tests/test-crc.c: Change expected crc value, the test vector
24444         were probably computed using the old broken crc.c?
24445
24446 2006-07-06  Simon Josefsson  <jas@extundo.com>
24447
24448         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
24449         now the canonical place for the M4 file).
24450
24451         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
24452         from the sys_socket dependency now.
24453
24454         * modules/inet_pton (Files): Ditto.
24455
24456         * modules/inet_ntop (Files): Ditto.
24457
24458 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24459
24460         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
24461         not gl_PREREQ_GETUSERSHELL.
24462
24463 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24464
24465         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
24466         with only one argument, for Autoconf 2.60.
24467         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
24468         expand to nothing, so add a shell command to avoid syntax error.
24469         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
24470
24471 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24472
24473         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
24474
24475 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24476
24477         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
24478         no longer needed.  Check for isblank decl.
24479         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
24480         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
24481         of existence.
24482
24483 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24484
24485         * lib/getloadavg.c: Use __VMS, not VMS.
24486         * lib/getopt.c: Likewise.
24487         * lib/getpagesize.h: Likewise.
24488         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
24489         and probably does not work.
24490
24491 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24492
24493         * lib/.cppi-disable: Add wcwidth.
24494         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
24495         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
24496         (ISGRAPH): Remove.  All uses changed to isgraph.
24497         (FOLD) [!defined _LIBC]: Remove special case.
24498         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
24499         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
24500         HAVE_ISBLANK.
24501         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
24502         case.
24503
24504 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
24505
24506         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
24507         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
24508         brackets.  Other minor changes to suppress some compiler
24509         warnings.
24510
24511 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24512         and Paul Eggert  <eggert@cs.ucla.edu>
24513
24514         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
24515         of invoking obsolescent AC_HEADER_DIRENT macro.
24516         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
24517         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
24518         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
24519         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
24520         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
24521         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
24522         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
24523         * m4/readdir.m4: Remove; no longer needed.
24524
24525 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24526         and Paul Eggert  <eggert@cs.ucla.edu>
24527
24528         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
24529         Don't worry about this obsolete case any more.
24530         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
24531         directories.
24532         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
24533         worry about this obsolete case any more.
24534         * lib/fts.c: Likewise.
24535         * lib/getcwd.c: Likewise.
24536         * lib/glob.h: Likewise.
24537         * lib/savedir.c: Likewise.
24538
24539 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24540
24541         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
24542         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
24543         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
24544         needed.
24545         All uses removed.
24546         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24547         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24548         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
24549         needed.
24550         * m4/getdate.m4 (gl_GETDATE): Likewise.
24551         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24552         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24553         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24554         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24555         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24556         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24557         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
24558         needed.
24559
24560 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24561
24562         * lib/memcasecmp.c: Include <limits.h>.
24563         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
24564         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
24565         Don't assume isdigit succeeds only on '0' through '9'.
24566
24567 2006-07-05  Eric Blake  <ebb9@byu.net>
24568
24569         * modules/getaddrinfo (Depends-on): Add snprintf.
24570
24571 2006-07-05  Eric Blake  <ebb9@byu.net>
24572
24573         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
24574         to avoid 'header present but could not be compiled' on cygwin.
24575
24576 2006-07-05  Eric Blake  <ebb9@byu.net>
24577
24578         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
24579         missing from netdb.h.
24580         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
24581
24582 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24583
24584         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
24585         no longer needed.
24586         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
24587         * m4/getdate.m4 (gl_GETDATE): Likewise.
24588         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24589         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24590         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24591         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24592         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24593
24594 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24595
24596         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
24597         All uses of is_space replaced by isspace.
24598         * lib/exit.h: Don't talk about STDC_HEADERS.
24599         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
24600         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
24601         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
24602         replaced by isprint etc.
24603         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
24604         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24605         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
24606         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
24607         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
24608         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24609
24610 2006-07-05  Bruno Haible  <bruno@clisp.org>
24611
24612         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
24613         the function exists, before testing against AIX.
24614         Reported by Martin Lambers <marlam@marlam.de>.
24615
24616 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24617
24618         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
24619         From Mark D. Baushke.
24620
24621 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24622
24623         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
24624         to the absolute name, not just one, to bypass Sun C 5.8's
24625         "warning: #include of /usr/include/... may be non-portable".
24626
24627 2006-07-04  Eric Blake  <ebb9@byu.net>
24628
24629         * modules/dirname-tests: New test module.
24630         * tests/test-dirname.c: New file, replacing dirname.c
24631         TEST_DIRNAME section that was recently deleted.
24632
24633 2006-07-04  Bruno Haible  <bruno@clisp.org>
24634
24635         Assume ANSI C header files and <ctype.h> functions.
24636         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
24637         (mbsnwidth): Use isprint, iscntrl instead.
24638
24639 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24640
24641         Merge from coreutils.
24642         * MODULES.html.sh: Add xstrtold.
24643         * modules/xstrtold: New file.
24644         * modules/cycle-check (Files): Add lib/same-inode.h.
24645         * modules/dirname (Files): Add m4/double-slash-root.m4.
24646         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
24647         * modules/mkdir-p (Files): Add lib/same-inode.h.
24648         * modules/same (Files): Add lib/same-inode.h.
24649
24650 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24651
24652         * m4/absolute-header.m4: Renamed from full-header-path.m4.
24653         This is to keep the terminology clean; POSIX talks about
24654         "absolute pathnames", not "full pathnames", but the GNU
24655         Coding Standards say to use "path" for something else;
24656         so use "absolute" to keep both sides happy.
24657         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
24658         Set gl_absolute_header, not gl_full_header_path.
24659         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
24660         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
24661         All uses changed.
24662
24663         Merge from coreutils.
24664
24665         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24666
24667         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
24668         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
24669         want to require the building of c-strtod.o.
24670         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
24671         needs -lm directly.
24672         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
24673
24674         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
24675
24676         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
24677         --as-needed option if available.  Problem reported by Albert Chin in
24678         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
24679         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
24680         cc merely issues a bunch of annoying warnings for --as-needed
24681         (this problem was reported by Bob Proulx).  Also, try linking with
24682         -lm to detect a bug in binutils 2.16 (this problem was reported
24683         by Ralf Wildenhues).
24684
24685         2006-06-18  Jim Meyering  <jim@meyering.net>
24686
24687         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
24688         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
24689         macro.
24690         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
24691         also check for glibc-2.4's abort-inducing bug.
24692
24693         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
24694         Low-probability clean-up should be to use rmdir to get rid of
24695         the just-created directory, not unlink.
24696
24697         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
24698         configure fail, and request a bug report to inform us about it.
24699         Add a comment that, barring reports to the contrary, in 2007 we'll
24700         assume ftruncate is universally available.
24701
24702         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24703
24704         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
24705
24706         2006-03-12  Jim Meyering  <jim@meyering.net>
24707
24708         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
24709         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
24710         * m4/same.m4 (gl_SAME): Likewise.
24711         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
24712
24713         2006-03-11  Eric Blake  <ebb9@byu.net>
24714
24715         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
24716         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
24717         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
24718         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
24719
24720 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24721
24722         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
24723         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
24724         reported by Mark D. Baushke, one in
24725         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
24726
24727         Merge from coreutils.
24728
24729         * lib/.cppi-disable: Add stdint_.h.
24730         * lib/.cvsignore: Add stdint.h.
24731
24732         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24733
24734         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
24735         both double and long double versions.
24736         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
24737         * lib/xstrtold.c: New file.
24738         * lib/xstrtod.h (xstrtold): New decl.
24739
24740         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
24741
24742         * lib/filemode.c (setst): Remove.
24743         (strmode): Rewrite to avoid setst.  This makes the code shorter,
24744         (arguably) clearer, and the generated code is a bit smaller on my
24745         Debian GNU/Linux stable x86 host.
24746
24747         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24748
24749         * lib/filemode.c: Include "filemode.h" first, to test the interface.
24750         Assume that filemode.h includes sys/types.h and sys/stat.h.
24751         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
24752         (ftypelet): Reorder to put common cases first, for efficiency.
24753         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
24754         to do 'M'.
24755         (strmode): Renamed from mode_string, and now stores 12 bytes instead
24756         of 10, for compatibility with FreeBSD.  All callers changed.
24757         (filemodestring): Now stores 12 bytes instead of 10, and sets file
24758         types that can't be deduced solely from st_mode.  First arg is now a
24759         const pointer.
24760         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
24761         (strmode): Renamed from mode_string.
24762         (filemodestring): New decl.
24763         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
24764         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
24765         needed.
24766         (S_ISPORT, S_ISWHT): New macros, if not already defined.
24767
24768         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
24769
24770         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
24771         fsusage.h now does that.  Include fsusage.h first, to test interface.
24772         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
24773         at most one method (the old code could have generated decls that
24774         didn't conform to C89, not that this was ever exercised).
24775         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
24776
24777         2006-03-19  Jim Meyering  <jim@meyering.net>
24778
24779         Work even in a chroot where d_ino values for entries in "/"
24780         don't match the stat.st_ino values for the same names.
24781         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
24782         number, iterate through all entries again, using lstat instead.
24783         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
24784         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
24785
24786         * lib/getcwd.c (__getcwd): Clarify a comment.
24787         Use memcpy in place of a call to strcpy.
24788
24789         2006-03-12  Jim Meyering  <jim@meyering.net>
24790
24791         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
24792         matches that of the current directory (which we're about to chdir ".."
24793         out of), then save the dev-ino of the parent, instead.
24794
24795         * lib/same-inode.h (SAME_INODE): New file/macro.
24796         * lib/chdir-safer.c (SAME_INODE): Remove definition.
24797         Include "same-inode.h", instead.
24798         * lib/same.c: Likewise.
24799         * lib/cycle-check.h: Include "same-inode.h".
24800         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
24801         * lib/cycle-check.c (SAME_INODE): Remove definition.
24802         * lib/root-dev-ino.h: Include "same-inode.h".
24803
24804         2006-03-11  Eric Blake  <ebb9@byu.net>
24805
24806         * lib/same.c (same_name): s/base_name/last_component/
24807         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
24808         * lib/filenamecat.c (file_name_concat): Likewise.
24809
24810         2006-03-11  Eric Blake  <ebb9@byu.net>,
24811                     Paul Eggert  <eggert@cs.ucla.edu>
24812
24813         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
24814         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
24815         drive prefix.
24816         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
24817         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
24818         (last_component): New method.
24819         * lib/dirname.c (dir_len): Determine when drive letters need a
24820         subsequent slash.  Preserve // when it is special.
24821         (dir_name): Don't append dot when drive letter is absolute.
24822         [TEST_DIRNAME]: Move into a full-blown gnulib test.
24823         * lib/basename.c (base_name): New semantics - malloc the result.
24824         Preserve // when it is special.  Preserve relative files that look
24825         like drive letters.
24826         (base_len): Preserve // when it is special.
24827         (last_component): New method, similar to old base_name semantics.
24828         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
24829         base_name.  Strip redundant slashes from ///.
24830
24831 2006-07-03  Jim Meyering  <jim@meyering.net>
24832
24833         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
24834         macro is used before the first cycle_check call.
24835
24836 2006-07-03  Eric Blake  <ebb9@byu.net>
24837
24838         * modules/dirname (Depends-on): Add xstrndup.
24839
24840 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
24841
24842         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
24843         test cases, so that config.log is a bit easier to follow.
24844
24845 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
24846
24847         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
24848         both are 64 bits, since this seems to be the tradition, and this
24849         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
24850         we ever run into a host that prefers long long to long in this
24851         case, we'll need another configure-time test.  Problem reported by
24852         Jim Meyering.
24853
24854 2006-07-02  Eric Blake  <ebb9@byu.net>
24855
24856         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
24857
24858 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24859
24860         * modules/inttypes (Depends-on): No longer depends on stdint.
24861         * modules/stdint (Description): Say more about assumptions.
24862         Say that the fast types might differ.  Say macros are used.
24863         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
24864         (Makefile.am): Revise list of substituted symbols to match
24865         new stdint.m4.
24866         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
24867         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
24868         * tests/test-stdint.c (verify_same_types)
24869         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
24870         the code conforms to C99/C89.
24871         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
24872         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
24873
24874 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24875
24876         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
24877         but fix a bug, by requiring at least 64 bits.
24878         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
24879         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
24880         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
24881         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
24882
24883         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
24884         changes.  Make 2.59 a prerequisite.  Check and substitute for
24885         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
24886         inttypes.h.  Do not use special include files; just use the
24887         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
24888         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
24889         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
24890         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
24891         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
24892         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
24893         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
24894         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
24895         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
24896         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
24897         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
24898         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
24899         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
24900         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
24901         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
24902         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
24903         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
24904         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
24905         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
24906         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
24907         WINT_MAX.  Check for C99 conformance more strictly, by detecting
24908         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
24909         not check for things that C99 does not require, e.g., int8_t.  If
24910         a test isn't needed unless <stdint.h> isn't working, and is
24911         unlikely to be needed for any other reason, then don't do it
24912         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
24913         size_t, since we assume C89 freestanding at least.  Do not check
24914         for sig_atomic_t, wchar_t, or wint_t, since the code now does
24915         the right thing even if the types are not defined.  Instead use:
24916         (gl_STDINT_TYPE_PROPERTIES): New macro.
24917         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
24918         testing whether <sys/types.h> clashes, as Autoconf does this for
24919         us now.  All uses removed.
24920         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
24921         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
24922         (gl_CHECK_TYPE_SAME):
24923         Remove; no longer needed.
24924         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
24925         exists, since we'll return 0 anyway in that case.
24926         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
24927
24928 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24929
24930         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
24931         possible collision with system files.
24932         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
24933         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
24934         WCHAR_MIN and WCHAR_MAX in this case.
24935         (<stddef.h>): Do not include; no longer needed.
24936         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
24937         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
24938         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
24939         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
24940         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
24941         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
24942         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
24943         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
24944         !defined(__c99))]: Include in this case too, since it's harmless
24945         now.
24946         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
24947         dangerous to do so.
24948         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
24949         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
24950         (_STDINT_MIN, _STDINT_MAX): New macros.
24951         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
24952         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
24953         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
24954         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
24955         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
24956         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
24957         macros, not typedefs; this simplifies things quite a bit.
24958         Use long int for all types narrower than int64_t.
24959         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
24960         Define in terms of long long int or int64_t or long int,
24961         not int64_t or int32_t.  This saves some compile-time testing.
24962         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
24963         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
24964         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
24965         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
24966         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
24967         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
24968         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
24969         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
24970         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
24971         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
24972         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
24973         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
24974         undef any previous version and define our own version, for
24975         simplicity and consistency with the new macros for types.
24976         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
24977         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
24978         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
24979         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
24980         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
24981         @WINT_T_SUFFIX@ to keep things simple here.
24982         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
24983         Simplify by assuming typical 8/16/32/64 host, since we're
24984         already doing that elsewhere anyway.
24985         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
24986         and assume long long int is 64 bits if available.  This
24987         speeds up 'configure'.
24988
24989 2006-07-01  Eric Blake  <ebb9@byu.net>
24990
24991         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
24992         Reported by Andreas Buening.
24993
24994 2006-07-01  Eric Blake  <ebb9@byu.net>
24995
24996         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
24997
24998 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
24999
25000         * lib/getaddrinfo.c: fixed typo
25001
25002 2006-06-29  Jim Meyering  <jim@meyering.net>
25003
25004         * modules/strftime (Maintainer): Add my name, since with the
25005         FPRINTFTIME changes strftime.c has forked from glibc.
25006
25007 2006-06-29  Eric Blake  <ebb9@byu.net>
25008
25009         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
25010
25011 2006-06-29  Eric Blake  <ebb9@byu.net>
25012
25013         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
25014
25015 2006-06-29  Eric Blake  <ebb9@byu.net>
25016
25017         * lib/stat_.h: New file.
25018
25019 2006-06-29  Eric Blake  <ebb9@byu.net>
25020
25021         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
25022         unused static function.
25023
25024 2006-06-29  Eric Blake  <ebb9@byu.net>
25025
25026         * doc/functions.texi (Function Portability): Document missing lstat
25027         on mingw.
25028
25029 2006-06-29  Eric Blake  <ebb9@byu.net>
25030
25031         * MODULES.html.sh: Add sys_stat.
25032         * modules/sys_stat: New module.
25033         * modules/mkstemp (Depends-on): Add sys_stat.
25034
25035 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25036
25037         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
25038
25039 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25040
25041         * m4/c-bs-a.m4: Removed.
25042
25043 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25044
25045         * lib/strftime.c: Assume strftime() exists.
25046
25047 2006-06-29  Derek Price  <derek@ximbiot.com>
25048
25049         * modules/c-bs-a: Removed - \a is C89.
25050         * MODULES.html.sh: Remove c-bs-a.
25051
25052 2006-06-29  Bruno Haible  <bruno@clisp.org>
25053
25054         * modules/wcwidth (License): Change to LGPL.
25055
25056 2006-06-28  Simon Josefsson  <jas@extundo.com>
25057
25058         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
25059         on _WIN32.
25060
25061         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
25062         getnameinfo.
25063
25064 2006-06-28  Simon Josefsson  <jas@extundo.com>
25065
25066         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
25067
25068 2006-06-28  Simon Josefsson  <jas@extundo.com>
25069
25070         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
25071         functions there.  It will succeed on Windows XP, but on Windows
25072         2000 and (presumably) earlier, it will fail, and use the internal
25073         re-implementation.
25074         (use_win32_p): New function.
25075         (getaddrinfo): Use strtoul on servname, to support numeric ports.
25076         Support AI_NUMERICSERV to disable getservbyname.
25077         (getnameinfo): New function, only supports
25078         NI_NUMERICHOST|NI_NUMERICSERV for now.
25079
25080         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
25081         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
25082         getnameinfo.
25083
25084 2006-06-28  Eric Blake  <ebb9@byu.net>
25085
25086         * modules/wcwidth: New file.
25087         * modules/mbchar (Depends-on): Add wcwidth.
25088         * modules/mbswidth (Depends-on): Add wcwidth.
25089         * MODULES.html.sh: Add wcwidth.
25090
25091 2006-06-28  Eric Blake  <ebb9@byu.net>
25092
25093         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
25094         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
25095
25096 2006-06-28  Eric Blake  <ebb9@byu.net>
25097
25098         * lib/xvasprintf.h: Fix comments.
25099
25100 2006-06-28  Eric Blake  <ebb9@byu.net>
25101
25102         * lib/mbchar.h (wcwidth): Include wcwidth.h.
25103         * lib/mbswidth.c (wcwidth): Move from here...
25104         * lib/wcwidth.h: ...to this new file.
25105
25106 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25107
25108         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
25109
25110         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
25111         it's obsolete.
25112         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
25113
25114 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25115
25116         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
25117         Autoconf 2.60 says this stuff was obsolete.
25118
25119 2006-06-28  Bruno Haible  <bruno@clisp.org>
25120
25121         * modules/wcwidth (Files): Add m4/wchar_t.m4.
25122
25123 2006-06-28  Bruno Haible  <bruno@clisp.org>
25124
25125         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
25126         gt_TYPE_WCHAR_T.
25127
25128 2006-06-28  Bruno Haible  <bruno@clisp.org>
25129
25130         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
25131         declaration for wcwidth.
25132         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
25133
25134 2006-06-28  Bruno Haible  <bruno@clisp.org>
25135
25136         * lib/mkdtemp.c [MINGW]: Include <io.h>.
25137         (mkdir): Define using _mkdir.
25138
25139 2006-06-28  Bruno Haible  <bruno@clisp.org>
25140
25141         * lib/getaddrinfo.h: Fix POSIX URL.
25142         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
25143         _WIN32.
25144         (use_win32_p): Make static.
25145         (getaddrinfo): Reject service name if it is empty or does not consist
25146         solely of decimal digits, or if its value is > 65535.
25147         (getnameinfo): Remove useless casts.
25148
25149 2006-06-27  Simon Josefsson  <jas@extundo.com>
25150
25151         * modules/sys_select: New file, suggested by Bruno Haible, Paul
25152         Eggert and Martin Lambers.
25153
25154 2006-06-27  Simon Josefsson  <jas@extundo.com>
25155
25156         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
25157         Eggert and Martin Lambers.
25158
25159 2006-06-27  Bruno Haible  <bruno@clisp.org>
25160
25161         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
25162         result to 0, not to empty.
25163         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
25164
25165 2006-06-27  Bruno Haible  <bruno@clisp.org>
25166
25167         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
25168
25169 2006-06-26  Simon Josefsson  <jas@extundo.com>
25170
25171         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
25172         present.
25173
25174 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
25175
25176         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
25177         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
25178         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
25179
25180 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
25181
25182         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
25183
25184 2006-06-26  Bruno Haible  <bruno@clisp.org>
25185
25186         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
25187
25188 2006-06-26  Bruno Haible  <bruno@clisp.org>
25189
25190         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
25191
25192 2006-06-26  Bruno Haible  <bruno@clisp.org>
25193
25194         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
25195         SGI C compiler in pre-C99 mode.
25196         Suggested by Mark D. Baushke and Larry Jones.
25197
25198 2006-06-26  Bruno Haible  <bruno@clisp.org>
25199
25200         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
25201         WCHAR_MAX.
25202         Reported by Mark D. Baushke and Larry Jones.
25203
25204 2006-06-26  Bruno Haible  <bruno@clisp.org>
25205
25206         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
25207         in pre-C99 mode.
25208         Suggested by Mark D. Baushke and Larry Jones.
25209
25210 2006-06-23  Simon Josefsson  <jas@extundo.com>
25211             Bruno Haible  <bruno@clisp.org>
25212
25213         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
25214         Emit mostlyclean-local rule.
25215         (func_emit_tests_Makefile_am): Likewise.
25216         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
25217
25218 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
25219
25220         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
25221
25222 2006-06-23  Bruno Haible  <bruno@clisp.org>
25223
25224         * tests/test-stdint.c: Update to match ISO C 99 Technical
25225         Corrigendum 1.
25226
25227 2006-06-23  Bruno Haible  <bruno@clisp.org>
25228
25229         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
25230
25231 2006-06-23  Bruno Haible  <bruno@clisp.org>
25232
25233         * lib/stdint_.h: Treat IRIX like OpenBSD.
25234
25235 2006-06-23  Bruno Haible  <bruno@clisp.org>
25236
25237         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
25238         ISO C 99 Technical Corrigendum 1.
25239
25240 2006-06-22  Simon Josefsson  <jas@extundo.com>
25241
25242         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
25243         MinGW.
25244
25245 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25246
25247         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
25248         needed.  Some compiler complained about some of them.  Problem reported
25249         by Larry Jones in
25250         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
25251
25252 2006-06-21  Simon Josefsson  <jas@extundo.com>
25253
25254         * tests/test-getaddrinfo.c: New file.
25255
25256         * modules/getaddrinfo-tests: New file.
25257
25258         * MODULES.html.sh: Add inet_pton.
25259
25260         * modules/inet_pton: New file.
25261
25262 2006-06-21  Simon Josefsson  <jas@extundo.com>
25263
25264         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
25265         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
25266         of using the (limited) gnulib implementation on Windows XP.
25267
25268         * m4/inet_pton.m4: New file.
25269
25270 2006-06-21  Simon Josefsson  <jas@extundo.com>
25271
25272         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
25273         variable.
25274
25275         * lib/socket_.h: Don't define WINVER.
25276
25277         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
25278         slightly modified to work in gnulib.
25279
25280 2006-06-21  Simon Josefsson  <jas@extundo.com>
25281
25282         * doc/gnulib.texi (Windows sockets): Add.
25283
25284 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
25285
25286         * lib/read-file.c (fread_file): Start with buffer allocation of
25287         0 bytes rather than 1 byte; this simplifies the code.
25288         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
25289         code to free buffer and save/restore errno.
25290         (internal_read_file): Remove unused local.
25291
25292 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
25293
25294         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
25295         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
25296         Problem reported by Denis Excoffier in
25297         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
25298
25299 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25300
25301         * modules/sys_socket, modules/socklen: Include sys/types since
25302         FreeBSD 4.x's sys/socket.h needs it.
25303
25304 2006-06-19  Simon Josefsson  <jas@extundo.com>
25305
25306         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
25307
25308 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
25309
25310         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
25311
25312 2006-06-19  Bruno Haible  <bruno@clisp.org>
25313
25314         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
25315         and FULL_PATH_INTTYPES_H in angle brackets.
25316         Reported by Mark D. Baushke <mdb@gnu.org>.
25317
25318 2006-06-17  Eric Blake  <ebb9@byu.net>
25319
25320         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
25321         errno.
25322
25323 2006-06-17  Bruno Haible  <bruno@clisp.org>
25324
25325         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
25326         <sys/inttypes.h>.
25327
25328 2006-06-17  Bruno Haible  <bruno@clisp.org>
25329
25330         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
25331         whether errno is declared. Assume <errno.h> declares errno.
25332
25333 2006-06-17  Bruno Haible  <bruno@clisp.org>
25334
25335         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
25336
25337 2006-06-17  Bruno Haible  <bruno@clisp.org>
25338
25339         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
25340         problem on Solaris 2.5.1.
25341
25342 2006-06-16  Eric Blake  <ebb9@byu.net>
25343
25344         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
25345         * lib/unicodeio.c [!defined errno]: Likewise.
25346         * lib/strtol.c [!defined errno]: Likewise.
25347         * lib/strtod.c [!defined errno]: Likewise.
25348
25349 2006-06-15  Eric Blake  <ebb9@byu.net>
25350
25351         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
25352
25353 2006-06-15  Eric Blake  <ebb9@byu.net>
25354
25355         * config/srclist.txt (ssize_t.m4): Lose sync.
25356
25357 2006-06-15  Bruno Haible  <bruno@clisp.org>
25358
25359         * modules/stdint (Files): Include m4/full-header-path.m4,
25360         m4/size_max.m4, m4/wchar_t.m4.
25361         (Makefile.am): Many more substitutions.
25362         * modules/stdint-tests: New file.
25363         * tests/test-stdint.c: New file.
25364
25365 2006-06-15  Bruno Haible  <bruno@clisp.org>
25366
25367         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
25368         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
25369         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
25370         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
25371         gl_CHECK_TYPE_SAME): New macros.
25372
25373 2006-06-15  Bruno Haible  <bruno@clisp.org>
25374
25375         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
25376
25377 2006-06-15  Bruno Haible  <bruno@clisp.org>
25378
25379         * lib/stdint_.h: Rewritten to be fully auto-configured.
25380         Fixes bug on HP-UX/IA64.
25381
25382 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
25383
25384         * lib/getdate.y (__attribute__): Don't define if already defined.
25385         Problem reported by Larry Jones.
25386         * lib/utimens.c (__attribute__): Likewise.
25387
25388 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
25389
25390         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
25391         reported by Andreas Schwab.
25392
25393 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25394             Bruno Haible  <bruno@clisp.org>
25395
25396         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
25397         check for the declaration of strnlen and a run test that exposes the
25398         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
25399         rpl_strndup.
25400
25401 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25402             Bruno Haible  <bruno@clisp.org>
25403
25404         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
25405
25406 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25407
25408         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
25409         compile test, for Tru64 4.0D.
25410
25411 2006-05-28  Karl Berry  <karl@gnu.org>
25412
25413         * config/srclist.txt (printf-args.c): lose sync.
25414
25415 2006-05-26  Martin Lambers  <marlam@marlam.de>
25416
25417         * lib/getpass.c: Updates the test for the native W32 API, and adds
25418         missing includes, thus fixing compilation warnings.
25419
25420 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
25421
25422         * lib/exclude.c (exclude_fnmatch): New function.
25423         (excluded_file_name): Call exclude_fnmatch.
25424         * lib/exclude.h (excluded_file_name): New prototype
25425
25426 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
25427
25428         * lib/tempname.c (small_open, large_open): New macros.
25429         (__open, __open64) [!_LIBC]: Remove.
25430         (__gen_tempname): Use small_open and large_open instead of __open
25431         and __open64.  This fixes a portability bug on HP-UX 11.11i
25432         reported by Simon Wing-Tang in
25433         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
25434
25435 2006-05-24  Bruno Haible  <bruno@clisp.org>
25436
25437         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
25438         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
25439         Reported by Thorsten Maerz <torte@netztorte.de> via
25440         Aaron Stone <aaron@serendipity.cx>.
25441
25442 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25443
25444         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
25445         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
25446         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
25447         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
25448         not really conditional on the cache.
25449         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
25450
25451 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25452
25453         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
25454         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
25455         (my_usleep): Don't mishandle maximum value.
25456
25457 2006-05-19  Jim Meyering  <jim@meyering.net>
25458
25459         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
25460
25461 2006-05-17  Bruno Haible  <bruno@clisp.org>
25462
25463         Cygwin portability.
25464         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
25465
25466 2006-05-17  Bruno Haible  <bruno@clisp.org>
25467
25468         * lib/stdint_.h: Fix recognition of Cygwin.
25469
25470 2006-05-15  Bruno Haible  <bruno@clisp.org>
25471
25472         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
25473         on libtool patch by Ralf Wildenhues.
25474
25475 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25476
25477         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
25478         test for C99 conformance; (bool) 0.5 is an integer constant
25479         expression, but (bool) -0.5 is not.  Problem reported by Fedor
25480         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
25481
25482 2006-05-11  Simon Josefsson  <jas@extundo.com>
25483
25484         * m4/xvasprintf.m4: Fix obvious typo.
25485
25486 2006-05-11  Jim Meyering  <jim@meyering.net>
25487
25488         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
25489         James Lemley.
25490
25491 2006-05-10  Simon Josefsson  <jas@extundo.com>
25492
25493         * lib/md4.c: Typo fix, update copyright years.
25494         (K1, K2): Don't use L because it turn computations into 64-bit on
25495         64-bit platforms.
25496
25497 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
25498
25499         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
25500         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
25501         unwanted sign propagation, e.g., on hosts with 64-bit int.
25502         There still are some problems with reeelly weird theoretical hosts
25503         (e.g., 33-bit int) but it's not worth worrying about now.
25504         * lib/sha1.c (rol): Likewise.
25505         (K1, K2, K3, K4): Remove unnecessary L suffix.
25506
25507 2006-05-10  Bruno Haible  <bruno@clisp.org>
25508
25509         * lib/des.c: Cast to avoid warnings.
25510
25511 2006-05-09  Bruno Haible  <bruno@clisp.org>
25512
25513         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
25514         (Depends-on): Depend also on xsize, stdarg.
25515         (configure.ac): Add gl_XVASPRINTF.
25516
25517 2006-05-09  Bruno Haible  <bruno@clisp.org>
25518
25519         * m4/xvasprintf.m4: New file.
25520
25521 2006-05-09  Bruno Haible  <bruno@clisp.org>
25522
25523         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
25524         (EOVERFLOW): Define fallback value.
25525         (xstrcat): New function.
25526         (xvasprintf): Recognize the special case of a string concatenation.
25527
25528 2006-05-08  Eric Blake  <ebb9@byu.net>
25529
25530         * gnulib-tool (func_version): Base copyright year on CVS date.
25531         (func_emit_copyright_notice): New function.
25532         (func_emit_lib_Makefile_am): Use it.
25533         (func_emit_tests_Makefile_am): Likewise.
25534         (func_import): Likewise.
25535
25536 2006-05-08  Bruno Haible  <bruno@clisp.org>
25537
25538         * modules/stdarg: New file.
25539         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
25540
25541 2006-05-08  Bruno Haible  <bruno@clisp.org>
25542
25543         * m4/stdarg.m4: New file, from GNU gettext.
25544
25545 2006-05-08  Bruno Haible  <bruno@clisp.org>
25546
25547         * config/srclist.txt (build-aux/config.rpath): different from latest
25548         release.
25549
25550 2006-05-08  Bruno Haible  <bruno@clisp.org>
25551
25552         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
25553
25554 2006-05-05  Jim Meyering  <jim@meyering.net>
25555
25556         * m4/warning.m4: New file, derived from bison's file by the same name.
25557
25558 2006-05-03  Bruno Haible  <bruno@clisp.org>
25559
25560         * lib/stdint_.h: Shorter URL.
25561         * lib/inttypes.h: Likewise.
25562
25563 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25564
25565         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
25566
25567 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25568
25569         * lib/verify.h: Document the internals better.  Most of this change
25570         was written by Bruno Haible.
25571
25572 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25573
25574         * doc/verify.texi: New file, partly based on a proposal by
25575         Bruno Haible.
25576
25577 2006-05-02  Bruno Haible  <bruno@clisp.org>
25578
25579         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
25580         test from here...
25581         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
25582
25583 2006-04-29  Bruno Haible  <bruno@clisp.org>
25584
25585         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
25586         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
25587
25588 2006-04-29  Bruno Haible  <bruno@clisp.org>
25589
25590         * gnulib-tool: Make --update option actually work.
25591
25592 2006-04-29  Bruno Haible  <bruno@clisp.org>
25593
25594         * doc/gcd.texi: New file.
25595         * doc/gnulib.texi: Include it.
25596
25597 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
25598
25599         * lib/getdate.y (get_date): When adding relative date, start with the
25600         initial time, not with the result of the first mktime call.
25601
25602 2006-04-25  Bruno Haible  <bruno@clisp.org>
25603
25604         * gnulib-tool (func_import): Output the include directives in three
25605         blocks, sorted separately.
25606         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25607
25608 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25609
25610         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
25611         to define main with arguments, for C++.  Reported by Eric Blake.
25612         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
25613         Prefer 'int main ()' to 'int main (void)', for C++.
25614         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
25615         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
25616         for 'main', for C99 and C++.
25617
25618 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25619
25620         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
25621         Don't assume that exit status -1 is valid.
25622         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
25623         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25624         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
25625         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
25626         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
25627         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
25628         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
25629         functions can be used without declaring them, or that you can
25630         exit with status -1.
25631         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
25632
25633 2006-04-24  Karl Berry  <karl@gnu.org>
25634
25635         * config/srclist.txt (longdouble.m4): sync lost.
25636
25637 2006-04-24  Eric Blake  <ebb9@byu.net>
25638
25639         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
25640
25641 2006-04-24  Bruno Haible  <bruno@clisp.org>
25642
25643         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
25644         poll() implementation in AIX.
25645         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25646
25647 2006-04-24  Bruno Haible  <bruno@clisp.org>
25648
25649         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
25650         assigned exactly once.
25651
25652 2006-04-23  Claudio Fontana  <claudio@gnu.org>
25653             Bruno Haible  <bruno@clisp.org>
25654
25655         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
25656         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
25657         for AM_CPPFLAGS.
25658
25659 2006-04-23  Bruno Haible  <bruno@clisp.org>
25660
25661         * modules/copy-file: Depend on unistd.
25662         * modules/execute: Likewise.
25663         * modules/fatal-signal: Likewise.
25664         * modules/findprog: Likewise.
25665         * modules/mkdtemp : Likewise.
25666         * modules/pipe: Likewise.
25667         * modules/wait-process: Likewise.
25668
25669 2006-04-23  Bruno Haible  <bruno@clisp.org>
25670
25671         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
25672         condition was already detected.
25673         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25674
25675 2006-04-23  Bruno Haible  <bruno@clisp.org>
25676
25677         * lib/copy-file.c: Include <unistd.h> unconditionally.
25678         * lib/execute.c: Likewise.
25679         * lib/fatal-signal.c: Likewise.
25680         * lib/findprog.c: Likewise.
25681         * lib/mkdtemp.c: Likewise.
25682         * lib/pipe.h: Likewise.
25683         * lib/pipe.c: Likewise.
25684         * lib/wait-process.h: Likewise.
25685
25686 2006-04-23  Bruno Haible  <bruno@clisp.org>
25687
25688         * gnulib-tool (func_usage): Fix --import description. Document
25689         --update.
25690         (func_import): Create temporary file in a temporary directory, if
25691         --dry-run is specified. Silence errors from 'grep' when there are no
25692         m4 files in $m4dir.
25693         (func_create_testdir): Silence errors from 'grep' when there are no
25694         m4 files in $m4dir.
25695         Reported by Karl Berry <karl@freefriends.org>.
25696
25697 2006-04-20  Bruno Haible  <bruno@clisp.org>
25698
25699         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
25700         one argument, so that the code will be portable to Autoconf 2.60.
25701         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
25702         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
25703         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
25704
25705 2006-04-19  Derek Price  <derek@ximbiot.com>
25706             Eric Blake  <ebb9@byu.net>
25707
25708         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
25709         rather than "/full/path.h".  Update comment to match.  Shorten &
25710         generalize m4_translit call via AS_TR_CPP.
25711
25712 2006-04-19  Derek Price  <derek@ximbiot.com>
25713             Eric Blake  <ebb9@byu.net>
25714
25715         * lib/inttypes.h: Correct grammar in comment.
25716
25717 2006-04-18  Derek Price  <derek@ximbiot.com>
25718             Paul Eggert  <eggert@cs.ucla.edu>
25719
25720         * modules/inttypes: New file.
25721         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
25722
25723 2006-04-18  Derek Price  <derek@ximbiot.com>
25724             Paul Eggert  <eggert@cs.ucla.edu>
25725
25726         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
25727         New files.
25728
25729 2006-04-18  Derek Price  <derek@ximbiot.com>
25730             Paul Eggert  <eggert@cs.ucla.edu>
25731
25732         * lib/inttypes.h: New file.
25733         * lib/strtoimax.c: Assume <inttypes.h>.
25734
25735 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
25736
25737         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
25738         isn't mounted.  Problem reported by Kir Kolyshkin.
25739
25740 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
25741
25742         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
25743         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
25744         Derek R. Price.
25745         * lib/regex.h (RE_DUP_MAX): Update comment to match current
25746         implementation.
25747
25748 2006-04-12  Eric Blake  <ebb9@byu.net>
25749
25750         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
25751         is now done automatically by the corresponding Autoconf macro.
25752
25753 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
25754
25755         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
25756         time_r.h.
25757
25758 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25759
25760         Merge regex changes from libc, removing some of our
25761         POSIX-conformance changes that were rejected and redoing them in a
25762         less-intrusive way.
25763
25764         * lib/regcomp.c (re_compile_internal, init_dfa):
25765         Length arg is now size_t, not Idx.  All uses changed.
25766         (peek_token): Forward decl now says internal_function.
25767         (__re_error_msgid, __re_error_msgid_idx):
25768         Now static rather than extern with attribute_hidden.
25769         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
25770         For some reason libc prefers K&R style defns for external functions.
25771         (regerror) [!defined _LIBC]: Likewise.
25772         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
25773         (seek_collating_symbol_entry, lookup_collation_sequence_value):
25774         (build_range_exp, build_collating_symbol):
25775         Use K&R-style defn.
25776         (re_compile_fastmap): Use '\0' to memset, not 0.
25777         (utf8_sb_map): Make the calculations more obvious.
25778         (init_dfa, parse_bracket_exp, build_charclass_op):
25779         Call calloc and cast result, as glibc does.
25780         (init_word_char, fetch_token, peek_token, peek_token_bracket):
25781         (build_range_exp, build_collating_symbol):
25782         Now internal functions.
25783
25784         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
25785
25786         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
25787         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
25788         Don't depend on VMS; depend on __VMS instead, for POSIX
25789         namespace cleanness.
25790         (regoff_t): Define to ssize_t, not long int.
25791
25792         Remove the REG_ macros named below.  Instead, make the old names
25793         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
25794         __USE_GNU_REGEX.
25795         (REG_BACKSLASH_ESCAPE_IN_LISTS):
25796         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
25797         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
25798         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
25799         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
25800         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
25801         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
25802         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
25803         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
25804         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
25805         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
25806         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
25807         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
25808         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
25809         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
25810         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
25811         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
25812         (REG_NREGS):
25813         Remove.  All uses replaced by the old RE_* names.
25814         (RE_BACKSLASH_ESCAPE_IN_LISTS):
25815         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
25816         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
25817         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
25818         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
25819         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
25820         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
25821         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
25822         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
25823         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
25824         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
25825         Don't bother having these macros be independent of each others'
25826         values, since they no longer exist in the POSIX name space.
25827
25828         Rename the following member names back to their old names,
25829         unless !__USE_GNU_REGEX.  All uses changed back.
25830         (buffer): Renamed from re_buffer.
25831         (allocated): Renamed from re_allocated.
25832         (used): Renamed from re_used.
25833         (syntax): Renamed from re_syntax.
25834         (fastmap): Renamed from re_fastmap.
25835         (translate): Renamed from re_translate.
25836         (can_be_null): Renamed from re_can_be_null.
25837         (regs_allocated): Renamed from re_regs_allocated.
25838         (fastmap_accurate): Renamed from re_fastmap_accurate.
25839         (no_sub): Renamed from re_no_sub.
25840         (not_bol): Renamed from re_not_bol.
25841         (not_eol): Renamed from re_not_eol.
25842         (newline_anchor): Renamed from re_newline_anchor.
25843         (num_regs): Renamed from rm_num_regs.
25844         (start): Renamed from rm_start.
25845         (end): Renamed from rm_end.
25846
25847         (free_state): Move up a bit.
25848
25849         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
25850         #define to be empty.
25851         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
25852         when that is what is intended.
25853         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
25854         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
25855         (MAX): New macro.
25856         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
25857         All uses changed back to re_malloc, etc.  It's now the caller's
25858         responsibility to check for overflow; all callers changed.
25859         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
25860         (re_x2nrealloc): Remove.
25861         (free_state): Remove decl.
25862
25863         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
25864         (re_set_registers, re_exec):
25865         Use K&R-style defn.
25866
25867         2006-01-31  Roland McGrath  <roland@redhat.com>
25868
25869         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
25870         Reported by Mike Frysinger <vapier@gentoo.org>.
25871
25872         2006-01-15  Andreas Jaeger  <aj@suse.de>
25873
25874         [BZ #1950]
25875         * lib/regex_internal.c (re_string_reconstruct): Adjust for
25876         build_wcs_upper_buffer change.
25877         (build_wcs_upper_buffer): Change return type.
25878
25879         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
25880
25881         * lib/regex_internal.h: Include <stdint.h> if available.
25882
25883         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
25884
25885         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
25886
25887         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
25888
25889         * lib/regcomp.c: Adjust for changed secondary hash function.
25890
25891         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
25892
25893         * lib/regex.h: Pretty printing.
25894         Clean up namespace a bit.
25895
25896         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
25897
25898         * lib/regexec.c (update_cur_sifted_state, check_arrival,
25899         check_arrival_add_next_nodes): Avoid using uninitialized variable.
25900
25901         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25902                     Ulrich Drepper  <drepper@redhat.com>
25903
25904         [BZ #1302]
25905         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
25906         changed.
25907         (bitset_word_t): Renamed from bitset_word.  All uses changed.
25908
25909         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
25910
25911         [BZ #281]
25912         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
25913         * lib/regcomp.c: Remove unnecessary uses of
25914         unsigned RE_TRANSLATE_TYPE.
25915         * lib/regex_internal.h: Likewise.
25916         * lib/regex_internal.c: Likewise.
25917         * lib/regexec.c: Likewise.
25918         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
25919
25920         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
25921
25922         * lib/regexec.c (find_recover_state): Remove unnecessary
25923         initialization.
25924         (transit_state_bkref): Make DFA a const pointer.
25925         (get_subexp): Likewise.
25926         (check_arrival): Likewise.
25927         (update_cur_sifted_state): Likewise.
25928         (re_search_internal): Likewise.
25929         (prune_impossible_nodes): Likewise.
25930         (acquire_init_state_context): Likewise.
25931         (proceed_next_node): Likewise.
25932         (set_regs): Likewise.
25933         (free_fail_stack_return): Likewise.
25934         (check_arrival_expand_ecl): Mark DFA parameter as const.
25935         (check_arrival_expand_ecl_sub): Likewise.
25936         (check_subexp_limits): Likewise.
25937         (sub_epsilon_src_nodes):  Likewise.
25938         (add_epsilon_src_nodes):  Likewise.
25939         (merge_state_array): Likewise.
25940         (update_regs): Likewise.
25941         (build_trtable): Likewise.
25942         (sift_states_backward): Mark MCTX parameter as const.
25943         (build_sifted_states): Likewise.
25944         (update_cur_sifted_state): Likewise.
25945         (sift_states_mkref): Likewise.
25946         (check_arrival_expand_ecl): Mark eclosure as const.
25947         (check_dst_limits_calc_pos_1): Likewise.
25948         * lib/regex_internal.h (re_match_context_t): Make dfa a const
25949         pointer.
25950
25951         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
25952
25953         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
25954         (transit_state_sb): Likewise.
25955         (transit_state_mb): Likewise.
25956         (sift_states_iter_mb): Likewise.
25957         (check_arrival_add_next_nodes): Likewise.
25958         (check_node_accept_bytes): Change first parameter to pointer-to-const.
25959         [_LIBC] (re_search_2_stub): Use mempcpy.
25960
25961         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
25962         mbrtowc for very simple UTF-8 case.
25963
25964         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
25965         a pointer-to-const.
25966         (re_acquire_state_context): Likewise.
25967         * lib/regex_internal.h: Adjust prototypes.
25968
25969         * lib/regex.c: Prevent using C++ compilers.
25970
25971         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
25972         (re_acquire_state_context): Likewise.
25973
25974 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25975
25976         * modules/regex (Depends-on): Add ssize_t.
25977
25978 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25979
25980         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
25981         translation table.
25982
25983 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25984
25985         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
25986
25987 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
25988             Bruno Haible  <bruno@clisp.org>
25989
25990         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
25991         <sys/types.h> and <inttypes.h>.
25992
25993 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25994
25995         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
25996         `__error_t_defined', so argp.h will not typedef the former.
25997
25998 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
25999
26000         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
26001         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
26002         glibc names.  Even if glibc is changed to conform to POSIX, the
26003         traditional names will be available anyway, since regex depends on
26004         the extensions module.  Also, fix a longstanding typo in the
26005         implementation of Spencer ERE test #75 from grep 2.3.  Problems
26006         reported by Emanuele Giaquinta.  Also, change sense of cached
26007         variable, so that the message makes sense.
26008
26009 2006-03-24  Simon Josefsson  <jas@extundo.com>
26010
26011         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
26012         including some doc fixes.
26013         (base64_encode_alloc): Fix +1 bug on allocation failures.
26014
26015 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26016
26017         * lib/base64.c (base64_encode): Do not read past end of array with
26018         unsanitized input on systems with CHAR_BIT > 8.
26019
26020 2006-03-24  Eric Blake  <ebb9@byu.net>
26021
26022         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
26023
26024 2006-03-22  Karl Berry  <karl@gnu.org>
26025
26026         * config/srclist.txt (*setenv.[ch]): get from coreutils.
26027         * config/srclistvars.sh (COREUTILS): new var.
26028
26029 2006-03-17  Jim Meyering  <jim@meyering.net>
26030
26031         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
26032         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
26033
26034 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26035
26036         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
26037         no longer needs it.  Instead, check that regoff_t is as least
26038         as wide as ptrdiff_t.
26039
26040         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
26041         so that our regex.h stays compatible with the installed regex.
26042         This is helpful for installers who configure --without-included-regex.
26043         Problem reported by Emanuele Giaquinta.
26044
26045 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26046
26047         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
26048         Typedef to long int, not to off_, as POSIX will likely change
26049         in that direction.
26050
26051 2006-03-15  Eric Blake  <ebb9@byu.net>
26052
26053         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
26054
26055 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26056
26057         * lib/argp-help.c (validate_uparams): Fix typo
26058         * lib/argp-parse.c (argp_default_options): Consistently begin help
26059         messages with a lowercase letter.
26060
26061 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
26062
26063         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
26064         overrun buffers and shouldn't be used (much as gets shouldn't be
26065         used).
26066         * lib/time_r.c (asctime_r, ctime_r): Likewise.
26067
26068 2006-03-08  Simon Josefsson  <jas@extundo.com>
26069
26070         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
26071         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26072
26073 2006-03-08  Simon Josefsson  <jas@extundo.com>
26074
26075         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
26076         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26077
26078 2006-03-08  Simon Josefsson  <jas@extundo.com>
26079
26080         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
26081         signal that configure disabled the device.
26082
26083 2006-03-08  Simon Josefsson  <jas@extundo.com>
26084
26085         * build-aux/maint.mk: Fix refresh-po, to handle no translated
26086         languages.
26087
26088 2006-03-07  Simon Josefsson  <jas@extundo.com>
26089
26090         * modules/getopt (Depends-on): Add unistd.
26091
26092         * modules/unistd: New file.
26093
26094 2006-03-07  Simon Josefsson  <jas@extundo.com>
26095
26096         * modules/gc-random: New file.
26097
26098 2006-03-07  Simon Josefsson  <jas@extundo.com>
26099
26100         * m4/unistd_h.m4: New file.
26101
26102 2006-03-07  Simon Josefsson  <jas@extundo.com>
26103
26104         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
26105         test to be side-effect free by storing the result in the cache
26106         variable gl_cv_lib_readline, and moving the assignment of
26107         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
26108         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26109
26110 2006-03-07  Simon Josefsson  <jas@extundo.com>
26111
26112         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
26113         error on missing devices (the functions will return an error).
26114
26115         * m4/gc.m4: Move random stuff to gc-random.m4
26116
26117 2006-03-07  Simon Josefsson  <jas@extundo.com>
26118
26119         * lib/unistd_.h: New file.
26120
26121 2006-03-07  Simon Josefsson  <jas@extundo.com>
26122
26123         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
26124
26125 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26126
26127         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
26128         Problem reported by Juan Manuel Guerrero.
26129
26130 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26131
26132         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
26133         the unistd module.
26134         * lib/getlogin_r.c: Likewise.
26135         * lib/getlogin_r.h: Likewise.
26136         * lib/glob.c: Likewise.
26137         * lib/pagealign_alloc.c: Likewise.
26138         * lib/unistd_.h: Remove; no longer needed.
26139
26140 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26141
26142         * MODULES.html.sh (Support for systems lacking POSIX:2001):
26143         Add unistd.
26144         * modules/c-stack (Depends-on): Add unistd.
26145         * modules/getlogin_r: Likewise.
26146         * modules/glob: Likewise.
26147         * modules/pagealign_alloc: Likewise.
26148         * modules/unistd (Files): Remove lib/unistd_.h.
26149         (EXTRA_DIST): Remove.
26150         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
26151         need unistd_.h.
26152         (MOSTLYCLEANFILES): Remove unistd.h-t.
26153
26154 2006-03-03  Simon Josefsson  <jas@extundo.com>
26155
26156         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
26157
26158 2006-03-03  Simon Josefsson  <jas@extundo.com>
26159
26160         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
26161         libidn and bison.
26162
26163 2006-03-03  Simon Josefsson  <jas@extundo.com>
26164
26165         * build-aux/maint.mk: Add indent target.
26166
26167 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
26168
26169         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
26170         our replacement poll.h in any case, to avoid a differing
26171         declaration from a system header.  Seen on AIX.
26172
26173 2006-03-01  Simon Josefsson  <jas@extundo.com>
26174
26175         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
26176         <kasal@ucw.cz>.
26177
26178 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26179
26180         * modules/gettime (Depends-on): Add extensions module.
26181         * modules/nanosleep (Depends-on): Likewise.
26182         * modules/settime (Depends-on): Likewise.
26183
26184 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26185
26186         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
26187         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
26188         pedantically.
26189         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
26190         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
26191
26192         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
26193         not "==".  Reported by Ralf Wildenhues.
26194
26195 2006-03-01  Karl Berry  <karl@gnu.org>
26196
26197         * doc/Copyright/request-*: new files, synced from gnuorg.
26198
26199 2006-03-01  Karl Berry  <karl@gnu.org>
26200
26201         * config/srclist.txt (Copyright/*): new entries.
26202
26203 2006-02-28  Simon Josefsson  <jas@extundo.com>
26204
26205         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
26206
26207 2006-02-27  Simon Josefsson  <jas@extundo.com>
26208
26209         * lib/base64.h: Indent #define's.  From Jim Meyering
26210         <jim@meyering.net>.
26211
26212 2006-02-27  Jim Meyering  <jim@meyering.net>
26213
26214         Revert the change of 2006-02-24, so these files can continue
26215         to be sync'd from gettext.
26216         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
26217         of `config.h'.
26218
26219 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
26220
26221         * modules/intprops: New file.
26222         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
26223         Add intprops.
26224         * modules/getloadavg (Files): Remove lib/intprops.h.
26225         (Depends-on): Add intprops.
26226         * modules/human: Likewise.
26227         * modules/inttostr: Likewise.
26228         * modules/openat: Likewise.
26229         * modules/sig2str: Likewise.
26230         * modules/userspec: Likewise.
26231         * modules/utimecmp: Likewise.
26232         * modules/xnanosleep: Likewise.
26233         * modules/xstrtol: Likewise.
26234
26235 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
26236
26237         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
26238         * modules/lock-tests (TESTS): Use $(EXEEXT).
26239         * modules/tls-tests: Likewise.
26240         * modules/argp-tests: Likewise.
26241         (check_PROGRAMS): New var, replacing...
26242         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
26243
26244 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26245
26246         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
26247         `config.h'.
26248
26249 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
26250
26251         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
26252
26253 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26254
26255         Sync from coreutils.
26256         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
26257         gl_CHDIR_SAFER.
26258
26259 2006-02-22  Jim Meyering  <jim@meyering.net>
26260
26261         Sync from coreutils.
26262         * m4/chdir-safer.m4: New file.
26263
26264 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
26265
26266         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
26267         AT_FDCWD exceeds INT_MAX.
26268         * lib/openat.h (AT_FDCWD): Likewise.
26269
26270 2006-02-17  Eric Blake  <address@hidden>
26271
26272         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
26273
26274 2006-02-16  Simon Josefsson  <jas@extundo.com>
26275
26276         * modules/getaddrinfo (Depends-on): Add sys_socket.
26277
26278 2006-02-15  Simon Josefsson  <jas@extundo.com>
26279
26280         * build-aux/maint.mk: Add dsyntax-check rule.
26281
26282 2006-02-15  Eric Blake  <ebb9@byu.net>
26283
26284         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
26285         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
26286         'present but cannot compile' warnings on cygwin.
26287         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
26288         use ws2tcpip.h if sys/socket.h works.
26289         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
26290         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
26291
26292 2006-02-14  Simon Josefsson  <jas@extundo.com>
26293
26294         * modules/maintainer-makefile (Files): Rename.
26295
26296         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
26297         and (the local) Makefile.cfg to maint-cfg.mk.
26298
26299         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
26300         to the latter.
26301
26302         * modules/maintainer-makefile: New module.
26303
26304         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
26305         severaly stripped to make it possible to build it up from scratch
26306         with reliable tests.
26307
26308         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
26309         fixes to permit overriding the default actions when configure and
26310         makefile are not available.
26311
26312 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
26313
26314         Sync from coreutils.
26315         * modules/lstat (Depends-on): Don't depend on xalloc.
26316         (License): Change from GPL to LGPL, since this is now simply a
26317         replacement for a libc function.
26318
26319 2006-02-14  Jim Meyering  <jim@meyering.net>
26320
26321         Sync from coreutils.
26322
26323         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
26324         failure on deficient systems, and simplify gnulib lgpl dependencies.
26325         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
26326         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
26327
26328         * lib/xalloc-die.c: Remove unused definition of N_.
26329
26330 2006-02-14  Jim Meyering  <jim@meyering.net>
26331
26332         Sync from coreutils.
26333         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
26334         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
26335         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
26336         double-quote uses of that variable, to accommodate the rare case in
26337         which getmntent is available in none of the libraries checked.  This
26338         happens at least on FreeBSD 5.0.
26339
26340 2006-02-13  Simon Josefsson  <jas@extundo.com>
26341
26342         * gnulib-tool (Usage): Fix --import, from
26343         karl@freefriends.org (Karl Berry).
26344
26345 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26346
26347         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
26348
26349 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
26350
26351         * lib/argp-namefrob.h: Restore changes accidentally lost during the
26352         "autoupdate" on 2005-12-12.
26353
26354 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26355
26356         * modules/closeout (Depends-on): Remove atexit.
26357
26358 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26359
26360         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
26361         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
26362
26363 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
26364
26365         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
26366         __EXTENSIONS__ if this causes compilation to fail.  Problem
26367         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
26368         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
26369
26370 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
26371
26372         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
26373         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
26374         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
26375         All uses changed.
26376
26377 2006-01-26  Simon Josefsson  <jas@extundo.com>
26378
26379         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
26380         prototype is visible on mingw32.
26381
26382         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
26383         for mingw32.
26384
26385         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
26386         mingw32).
26387
26388 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
26389
26390         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
26391         attempt to open for write; this always fails, at least on POSIX
26392         hosts.  This reinstates the 2006-01-09 change, which was
26393         inadvertently removed.
26394
26395 2006-01-26  Bruno Haible  <bruno@clisp.org>
26396
26397         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
26398         Reported by Paul Eggert.
26399
26400 2006-01-26  Bruno Haible  <bruno@clisp.org>
26401             Paul Eggert  <eggert@cs.ucla.edu>
26402
26403         * lib/stdbool_.h (_Bool)
26404         [(! (defined __cplusplus || defined __BEOS__)
26405           && !defined __GNUC__
26406           && !(defined __HP_cc || defined __xlc__
26407                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
26408                || defined __sgi))]:
26409         #define to signed char in these cases too; this simplifies
26410         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
26411         etc., separately) and makes it more conservative.
26412
26413 2006-01-25  Simon Josefsson  <jas@extundo.com>
26414
26415         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
26416         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
26417         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
26418
26419 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
26420
26421         * lib/argp-namefrob.h: Bugfix. Remove stray #
26422
26423 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
26424
26425         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
26426         so that we test the test.
26427         Check for yet another HP-UX cc bug involving *bool |= bool.
26428
26429 2006-01-25  Karl Berry  <karl@gnu.org>
26430
26431         * config/srclist.txt (vasnprintf.c): sync lost.
26432
26433 2006-01-25  Jim Meyering  <jim@meyering.net>
26434
26435         Sync from the stable (b5) branch of coreutils:
26436
26437         * lib/fts.c (fts_children): Don't let close() clobber errno from
26438         failed fchdir().
26439
26440         * lib/fts.c (fts_stat): When following a symlink-to-directory,
26441         don't necessarily interpret stat-fails+lstat-succeeds as indicating
26442         a dangling symlink.  That can also happen at least for ELOOP.
26443         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
26444         FYI, this bug predates the inclusion of fts.c in coreutils.
26445
26446         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
26447         in their own block, so pre-c99 compilers don't object.
26448
26449         Avoid the double-free (first in fts_read, second in fts_close) that
26450         would occur when an `active' directory is made inaccessible (e.g.,
26451         via chmod a-x) during a traversal.
26452         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26453         before returning.  Reproduce this failure by
26454         mkdir -p a/b; cd a; chmod a-x . b
26455         Reported by Stavros Passas.
26456
26457 2006-01-25  Jim Meyering  <jim@meyering.net>
26458
26459         * lib/fileblocks.c: Remove more useless parentheses.
26460         * lib/readutmp.h: Likewise.
26461
26462 2006-01-25  Bruno Haible  <bruno@clisp.org>
26463
26464         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
26465         warnings.
26466         Reported by Paul Eggert.
26467
26468 2006-01-25  Bruno Haible  <bruno@clisp.org>
26469
26470         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
26471         rid of a trap command. For Solaris sh.
26472         Reported by Mark D. Baushke <mdb@gnu.org>.
26473
26474 2006-01-24  Simon Josefsson  <jas@extundo.com>
26475
26476         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
26477         Bruno.
26478
26479 2006-01-24  Karl Berry  <karl@gnu.org>
26480
26481         * config/srclist.txt (argp-namefrob.h): sync lost.
26482
26483 2006-01-24  Jim Meyering  <jim@meyering.net>
26484
26485         * modules/openat (Files): Add lib/intprops.h.
26486         From Mark D. Baushke.
26487
26488 2006-01-24  Jim Meyering  <jim@meyering.net>
26489
26490         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
26491         Reported by Mark D. Baushke.
26492
26493 2006-01-24  Jim Meyering  <jim@meyering.net>
26494
26495         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
26496
26497 2006-01-24  Bruno Haible  <bruno@clisp.org>
26498
26499         * modules/strnlen (Maintainer): Change from glibc to all.
26500
26501 2006-01-24  Bruno Haible  <bruno@clisp.org>
26502
26503         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
26504         Patch by Paul Eggert.
26505
26506 2006-01-24  Bruno Haible  <bruno@clisp.org>
26507
26508         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
26509         already has it.
26510         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
26511         2005-11-26.
26512
26513         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
26514         'signed char' to avoid problems with the built-in _Bool type.
26515         Reported by Paul Eggert on 2005-11-26.
26516
26517 2006-01-24  Bruno Haible  <bruno@clisp.org>
26518
26519         * gnulib-tool (func_import): Avoid constructing complicated sed
26520         expressions inside backquote.
26521         Report and solution by Mark D. Baushke <mdb@gnu.org>.
26522
26523 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
26524
26525         These changes imported from libc.
26526         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
26527         test and two separate function calls.
26528         * lib/strndup.c (__strndup): Add libc_hidden_def.
26529
26530 2006-01-23  Simon Josefsson  <jas@extundo.com>
26531
26532         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
26533         Remove the test_*_SOURCES variable: automake infers it by default.
26534         * modules/tls-tests: Likewise.
26535
26536 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26537
26538         Work around porting bugs reported by Dieter in
26539         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
26540         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
26541         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
26542         Include "getopt.h" first, to check interface.
26543         (getenv): Declare only if defined HAVE_DECL_GETENV &&
26544         !HAVE_DECL_GETENV.
26545         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
26546         (__strndup): Revert to K&R-style function dfns, the glibc style.
26547         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
26548         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
26549         Include strnlen.h first, to get prototype properly.
26550         (strnlen): Renamed from __strnlen.
26551         Remove weak alias.
26552
26553 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26554
26555         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
26556
26557 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26558
26559         * config/srclist.txt: Adjust to reflect glibc reorganization.
26560         This affects only comments.
26561
26562 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26563
26564          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
26565          Reported by Bruce Korb <bkorb@gnu.org>.
26566
26567 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
26568
26569         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
26570         to pacify gcc -Wswitch-default.
26571
26572 2006-01-22  Bruno Haible  <bruno@clisp.org>
26573
26574         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
26575         temporary buffer for sprintf, take into account the precision also
26576         for 'd', 'i', 'u', 'o', 'x', 'X'.
26577
26578 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26579
26580         * modules/argp-tests: New module
26581         * tests/test-argp.c: New file
26582         * tests/test-argp-2.sh: New file
26583
26584 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26585
26586         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
26587         (__argp_base_name): Removed
26588         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
26589         typo.
26590         (__argp_base_name): Provide macro definition or extern declaration
26591         depending on the configuration
26592
26593 2006-01-20  Simon Josefsson  <jas@extundo.com>
26594
26595         * modules/inet_ntop (Depends-on): Depend on sys_socket.
26596
26597 2006-01-20  Simon Josefsson  <jas@extundo.com>
26598
26599         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
26600
26601 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26602
26603         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
26604         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
26605         Suggested by Bruno Haible.
26606
26607 2006-01-20  Karl Berry  <karl@gnu.org>
26608
26609         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
26610         until changes propagate, I guess.
26611
26612 2006-01-19  Simon Josefsson  <jas@extundo.com>
26613
26614         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
26615
26616 2006-01-19  Simon Josefsson  <jas@extundo.com>
26617
26618         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
26619
26620 2006-01-19  Simon Josefsson  <jas@extundo.com>
26621
26622         * gnulib-tool: Set check_PROGRAMS.
26623
26624         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26625         modules/des-tests, modules/gc-arcfour-tests,
26626         modules/gc-arctwo-tests, modules/gc-des-tests,
26627         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26628         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26629         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26630         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26631         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26632         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
26633         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
26634         test_*_SOURCES.
26635
26636 2006-01-18  Simon Josefsson  <jas@extundo.com>
26637
26638         * modules/socklen (Depends-on): Depend on sys_socket.
26639
26640 2006-01-18  Simon Josefsson  <jas@extundo.com>
26641
26642         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26643         modules/des-tests, modules/gc-arcfour-tests,
26644         modules/gc-arctwo-tests, modules/gc-des-tests,
26645         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26646         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26647         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26648         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26649         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26650         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
26651         $(EXEEXT) to automake TESTS variable, for mingw32.
26652
26653 2006-01-17  Simon Josefsson  <jas@extundo.com>
26654
26655         * modules/socklen (Include): Need sys/socket.h.
26656
26657 2006-01-17  Bruno Haible  <bruno@clisp.org>
26658
26659         * modules/ssize_t (Include): Add <sys/types.h>.
26660
26661 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
26662
26663         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
26664         it's not portable and it doesn't work with cross-compiles.
26665         Problem reported by Bruno Haible.  Fix missing-$ typo in
26666         'test "gl_cv_ignore_unused_libraries" ...' that prevented
26667         -zignore from being used with Sun's C compiler.
26668
26669 2006-01-12  Simon Josefsson  <jas@extundo.com>
26670
26671         * lib/base64.c: Fix warning, reported by Bruno Haible
26672         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
26673
26674 2006-01-12  Bruno Haible  <bruno@clisp.org>
26675
26676         * modules/ldd: New file.
26677         * build-aux/ldd.sh.in: New file.
26678         * MODULES.html.sh (Support for building libraries and executables): Add
26679         ldd.
26680
26681 2006-01-12  Bruno Haible  <bruno@clisp.org>
26682
26683         * m4/ldd.m4: New file.
26684
26685 2006-01-12  Bruno Haible  <bruno@clisp.org>
26686
26687         * gnulib-tool (func_import, func_create_testdir): Don't go into an
26688         endless loop while replacing $auxdir with build-aux.
26689
26690 2006-01-11  Simon Josefsson  <jas@extundo.com>
26691
26692         * lib/stdint_.h (SIZE_MAX): Add missing (.
26693
26694 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
26695
26696         Sync from coreutils.
26697         * lib/md5.c: Fix commentary typos.
26698         (alignof, UNALIGNED_P): No need for a GCC-specific version.
26699         * lib/md5.h (__attribute__): Remove; unused.
26700         * lib/sha1.c: Fix commentary to match md5 better.
26701         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
26702         so that we don't need to worry about alignment.  All uses changed.
26703         This merges the 2005-10-28 md5 change into sha1.
26704
26705 2006-01-11  Jim Meyering  <jim@meyering.net>
26706
26707         Sync from coreutils.
26708         * lib/md5.c (OP): Fix spacing.
26709
26710 2006-01-11  Bruno Haible  <bruno@clisp.org>
26711
26712         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26713         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
26714         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
26715
26716 2006-01-11  Bruno Haible  <bruno@clisp.org>
26717
26718         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26719         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
26720         the "early" section as well.
26721
26722 2006-01-11  Bruno Haible  <bruno@clisp.org>
26723
26724         Avoid "ar: no archive members specified" error on MacOS X.
26725         * gnulib-tool (func_modules_add_dummy): New function.
26726         (func_import, func_create_testdir): Invoke it.
26727
26728 2006-01-11  Bruno Haible  <bruno@clisp.org>
26729
26730         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
26731         with $auxdir in AC_CONFIG_FILES statements.
26732
26733 2006-01-11  Bruno Haible  <bruno@clisp.org>
26734
26735         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26736         Initialize also noinst_HEADERS to empty.
26737
26738 2006-01-11  Bruno Haible  <bruno@clisp.org>
26739
26740         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
26741         variables.
26742         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
26743         autoreconf.
26744
26745 2006-01-11  Bruno Haible  <bruno@clisp.org>
26746
26747         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
26748         overridable by the user.
26749         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26750
26751 2006-01-10  Simon Josefsson  <jas@extundo.com>
26752
26753         * modules/sys_socket: New file.
26754
26755 2006-01-10  Simon Josefsson  <jas@extundo.com>
26756
26757         * m4/sys_socket_h.m4: New file.
26758
26759 2006-01-10  Simon Josefsson  <jas@extundo.com>
26760
26761         * lib/socket_.h: New file.
26762
26763 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26764
26765         * modules/readutmp (Maintainer): Add myself.
26766
26767 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26768
26769         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
26770         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
26771         People who are still concerned with buggy memcmp implementations
26772         can invoke gl_FUNC_MEMCMP themselves.
26773
26774 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26775
26776         * lib/regex_internal.h (BITSET_WORD_BITS):
26777         Work around a bug in 64-bit PGC (before version 6.1-2), where the
26778         preprocessor mishandles large unsigned values as if they were signed.
26779         Problem reported by Claudio Fontana in
26780         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
26781
26782 2006-01-10  Jim Meyering  <jim@meyering.net>
26783
26784         Avoid the double-free (first in fts_read, second in fts_close) that
26785         would occur when an `active' directory is made inaccessible (e.g.,
26786         via chmod a-x) during a traversal.
26787         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26788         before returning.  Reproduce this failure by
26789         mkdir -p a/b; cd a; chmod a-x . b
26790         Reported by Stavros Passas.
26791
26792         Sync from coreutils.
26793         * lib/sha1.c: Tweak grammar in a comment.
26794
26795 2006-01-10  Jim Meyering  <jim@meyering.net>
26796
26797         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
26798         Patch by Joerg Sonnenberger.
26799
26800 2006-01-10  Bruno Haible  <bruno@clisp.org>
26801
26802         * modules/readutmp: Depend on module free.
26803         * modules/strtok_r: Depend on module restrict.
26804
26805 2006-01-10  Bruno Haible  <bruno@clisp.org>
26806
26807         * modules/gettext (configure.ac): Add an invocation of
26808         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
26809
26810 2006-01-10  Bruno Haible  <bruno@clisp.org>
26811
26812         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
26813         Reported by Werner Lemberg <wl@gnu.org>.
26814
26815 2006-01-10  Bruno Haible  <bruno@clisp.org>
26816
26817         * lib/localcharset.c: Update from GNU gettext.
26818
26819 2006-01-10  Bruno Haible  <bruno@clisp.org>
26820
26821         * lib/argp.h (__const): Remove macro. Use const instead.
26822         * lib/argp-fmtstream.h (__const): Likewise.
26823         * lib/glob_.h (__const): Remove macro.
26824         * lib/glob-libc.h: Use const instead of __const.
26825
26826 2006-01-10  Bruno Haible  <bruno@clisp.org>
26827
26828         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
26829         variable.
26830         Needed to avoid an automake error regarding the 'gettext' module.
26831
26832 2006-01-09  Simon Josefsson  <jas@extundo.com>
26833
26834         * modules/inet_ntop (Depends-on): Add restrict.
26835
26836 2006-01-09  Simon Josefsson  <jas@extundo.com>
26837
26838         * modules/gc-rijndael-tests (License): Put under LGPL.
26839
26840         * modules/gc-des-tests (License): Likewise.
26841
26842         * modules/gc-arcfour-tests (License): Likewise.
26843
26844         * modules/gc-arctwo-tests (License): Likewise.
26845
26846         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
26847
26848         * modules/gc-hmac-sha1-tests (Files): Likewise.
26849
26850         * modules/gc-hmac-md5-tests (License): Likewise.
26851
26852         * modules/gc-sha1-tests (License): Likewise.
26853
26854         * modules/gc-md5-tests (License): Likewise.
26855
26856         * modules/gc-md4-tests (License): Likewise.
26857
26858         * modules/gc-md2-tests (License): Likewise.
26859
26860         * modules/gc-tests (License): Likewise.
26861
26862         * modules/des-tests (License): Likewise.
26863
26864         * modules/md4-tests (License): Likewise.
26865
26866         * modules/md2-tests (License): Likewise.
26867
26868 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26869
26870         Sync from coreutils:
26871
26872         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
26873         * modules/lib-ignore: New file.
26874         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
26875         chdir-safer.m4, lchmod.m4.
26876         * modules/openat: Add mkdirat.c, openat-priv.h.
26877
26878 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26879
26880         Sync from coreutils.
26881         * m4/lib-ignore.m4: New file.
26882         * m4/lchmod.m4: New file.
26883
26884 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26885
26886         Sync from coreutils.
26887         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
26888         for write access: POSIX says that must fail.
26889         * lib/fts.c (diropen): Likewise.
26890         * lib/save-cwd.c (save_cwd): Likewise.
26891         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
26892         well, for minor improvements on hosts that lack O_DIRECTORY.
26893         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
26894         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
26895         Fall back on chown if open failed with EACCES.
26896
26897         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
26898         Report an error at compile-time if only a 1-second nominal clock
26899         resolution is found.
26900
26901         * lib/lchmod.h: New file.
26902         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
26903         (make_dir_parents): Use lchown rather than chown, and
26904         lchmod rather than chmod.
26905
26906         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
26907         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
26908         "proc" reported by n0dalus.
26909
26910         * lib/mountlist.c: Include <limits.h>.
26911         (dev_from_mount_options)
26912         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
26913         New function.  It no longer assumes "dev=" has the System V meaning
26914         on Linux (since it doesn't).  It also parses "dev=" more carefully.
26915         (read_file_system_list)
26916         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
26917         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
26918         dev= in that case.
26919
26920         * lib/posixtm.h (PDS_PRE_2000): New macro.
26921         * lib/posixtm.c (year): Arg is now syntax_bits rather than
26922         allow_century.  All usages changed.  Reject dates outside the range
26923         1969-1999 if PDS_PRE_2000 is used.
26924
26925 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26926
26927         Sync from coreutils.
26928         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
26929         (Time of day items): Mention the possibility of leap seconds.
26930         Problem reported by Dr. David Alan Gilbert.
26931
26932 2006-01-09  Jim Meyering  <jim@meyering.net>
26933
26934         Sync from coreutils.
26935
26936         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
26937
26938         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
26939
26940         * lib/modechange.c (mode_compile): Reject an invalid mode string
26941         that starts with an octal digit.  From Andreas Gruenbacher.
26942
26943         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
26944         and dup to open_safer and dup_safer, respectively.
26945         (openat_permissive): Fix typo in comment.
26946
26947         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
26948         "gettext.h"; either no longer needed or are guaranteed by openat.h.
26949         (_): Remove; no longer needed.
26950         (openat): Renamed from rpl_openat; no need for rpl_openat
26951         since openat.h renames openat for us.
26952         Replace most of the body with a call to openat_permissive,
26953         to avoid duplicate code.
26954         Port to (probably hypothetical) environments were mode_t is
26955         wider than int.
26956         (openat_permissive): Require mode arg, so that we can check
26957         types better.  Put it just after flags.  Change cwd failure
26958         indicator from pointer-to-bool to pointer-to-errno-value.
26959         All callers changed.
26960         Invoke openat_save_fail and/or openat_restore_fail if
26961         cwd_errno is null, so that openat can call us.
26962         (openat_permissive, fdopendir, fstatat, unlinkat):
26963         Simplify errno handling to avoid some duplicate code,
26964         as it's OK to set errno on success.
26965         * lib/openat.h: Revamp code so that function macros depend on
26966         __OPENAT_PREFIX only, not also on AT_FDCWD.
26967         (openat_ro): Remove.  Caller changed to use openat_permissive.
26968         (openat_permissive): Now a macro, if not a function.
26969         (openat_restore_fail, openat_save_fail): Now always functions,
26970         since mkdirat needs them even if __OPENAT_PREFIX is defined.
26971
26972         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
26973         and openat.c.
26974         * lib/mkdirat.c: Include openat-priv.h.
26975         Remove definitions of macros defined therein.
26976         * lib/openat.c: Likewise.
26977
26978         * lib/mkdirat.c (mkdirat): New file and function.
26979         * lib/openat.h (mkdirat): Declare.
26980
26981         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
26982
26983         * lib/openat.h (openat_permissive): Declare.
26984         (openat_ro): Define.
26985
26986         * lib/openat.c (EXPECTED_ERRNO): New macro.
26987         (openat_permissive): New function -- used in remove.c rewrite.
26988         (all functions): Set errno just before returning, only if there
26989         was an actual failure.
26990         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
26991
26992         Emulate openat-family functions using Linux's procfs, if possible.
26993         Idea and some code based on Ulrich Drepper's glibc changes.
26994
26995         * lib/openat.c: (BUILD_PROC_NAME): New macro.
26996         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
26997         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
26998         before falling back on save_cwd and restore_cwd.
26999         (fdopendir, fstatat, unlinkat): Likewise.
27000
27001         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
27002         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
27003
27004         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
27005         as second argument to va_arg.  Otherwise, some versions of gcc
27006         warn that `if this code is reached, the program will abort'.
27007
27008 2006-01-09  Jim Meyering  <jim@meyering.net>
27009
27010         Sync from coreutils.
27011         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
27012         Require openat-priv.h.
27013
27014 2006-01-09  Bruno Haible  <bruno@clisp.org>
27015
27016         * modules/strnlen (Include): Use strnlen.h.
27017
27018 2006-01-09  Bruno Haible  <bruno@clisp.org>
27019
27020         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
27021
27022 2006-01-09  Bruno Haible  <bruno@clisp.org>
27023
27024         * lib/sysexit_.h (EX_OK): New macro.
27025         Suggested by Martin Lambers <marlam@marlam.de>.
27026
27027 2006-01-09  Bruno Haible  <bruno@clisp.org>
27028
27029         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
27030         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
27031
27032 2006-01-09  Bruno Haible  <bruno@clisp.org>
27033
27034         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
27035         numbers.
27036
27037 2006-01-09  Bruno Haible  <bruno@clisp.org>
27038
27039         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
27040         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
27041         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
27042         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
27043
27044 2006-01-09  Bruno Haible  <bruno@clisp.org>
27045
27046         * build-aux/javacomp.sh.in: New file, moved from lib/.
27047         * modules/javacomp-script (Files): Update.
27048         (configure.ac): Add AC_CONFIG_FILES invocation.
27049         (EXTRA_DIST): Remove variable.
27050
27051         * build-aux/javaexec.sh.in: New file, moved from lib/.
27052         * modules/javaexec (Files): Update.
27053         (configure.ac): Add AC_CONFIG_FILES invocation.
27054         (EXTRA_DIST): Remove javaexec.sh.in.
27055
27056         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
27057         * modules/csharpcomp-script (Files): Update.
27058         (configure.ac): Add AC_CONFIG_FILES invocation.
27059         (EXTRA_DIST): Remove variable.
27060
27061         * build-aux/csharpexec.sh.in: New file, moved from lib/.
27062         * modules/csharpexec (Files): Update.
27063         (configure.ac): Add AC_CONFIG_FILES invocation.
27064         (EXTRA_DIST): Remove csharpexec.sh.in.
27065
27066 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27067
27068         Sync from coreutils.
27069
27070         Add POSIX ACL support
27071         * lib/acl.h (copy_acl, set_acl): Add declarations.
27072         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
27073         systems other than Linux.
27074         (chmod_or_fchmod): New function: use fchmod when possible,
27075         and chmod otherwise.
27076         (file_has_acl): Add a POSIX ACL implementation, with a
27077         Linux-specific subcase.
27078         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
27079         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
27080         acls are unsupported.
27081         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
27082         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
27083         are unsupported.
27084
27085 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27086
27087         Sync from coreutils.
27088         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
27089
27090 2006-01-07  Bruno Haible  <bruno@clisp.org>
27091
27092         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
27093         gl_EARLY.
27094
27095 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27096
27097         * lib/strftime.c (tzname): Don't declare if it is already #defined.
27098         Problem reported for Mingw by Mark Junker.
27099
27100 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27101
27102         * README: Gnulib normally doesn't generate a tarball.
27103
27104 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
27105
27106         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
27107         long int, not int, for nanosecond counts, so that people who are
27108         used to POSIX struct timespec won't be surprised.  Reported by Jim
27109         Meyering.
27110
27111 2005-12-28  Bruno Haible  <bruno@clisp.org>
27112
27113         * build-aux/config.rpath: Update from GNU gettext.
27114
27115 2005-12-16  Jim Meyering  <jim@meyering.net>
27116
27117         * modules/fprintftime: New module.
27118         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
27119
27120 2005-12-16  Jim Meyering  <jim@meyering.net>
27121
27122         * m4/fprintftime.m4: New file.
27123
27124 2005-12-16  Jim Meyering  <jim@meyering.net>
27125
27126         * lib/fprintftime.c, lib/fprintftime.h: New files.
27127
27128 2005-12-15  Simon Josefsson  <jas@extundo.com>
27129
27130         * modules/socklen (configure.ac): Fix M4 macro name, to align with
27131         new m4/socklen.m4.
27132
27133 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27134
27135         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
27136         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
27137
27138 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27139
27140         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
27141         * lib/argp-help.c (fill_in_uparams): Check if the constructed
27142         struct uparams is valid. Fall back to the default values if it is
27143         not.
27144
27145 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27146
27147         * modules/argp (Files): Add argp-pin.c
27148         (Depends-on): dirname
27149         (lib_SOURCES): Add argp-pin.c
27150
27151 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27152
27153         * m4/argp.m4:  Check if program_invocation_name and
27154         program_invocation_short_name are declared and define appropriate
27155         macros if they are not.
27156
27157 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27158
27159         * lib/argp-help.c (__argp_base_name): New function
27160         (__argp_short_program_name): Rewrite using __argp_base_name
27161         * lib/argp-namefrob.h: Define program_invocation_name and
27162         program_invocation_short_name if requested
27163         (__argp_base_name): Add prototype
27164         * lib/argp-parse.c (argp_def): Use gettext wrappers
27165         (argp_default_parser): Use __argp_base_name
27166         * lib/argp-pin.c: New file. Defines program_invocation_name and
27167         program_invocation_short_name on systems that lack them.
27168
27169 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27170
27171         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
27172         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27173         porting problem reported by Georg Schwarz in
27174         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27175
27176 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27177
27178         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
27179         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27180         porting problem reported by Georg Schwarz in
27181         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27182
27183 2005-12-05  Bruno Haible  <bruno@clisp.org>
27184
27185         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
27186         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
27187         Reported by Mark Junker <mjscod@gmx.de>.
27188
27189 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
27190
27191         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
27192         Use implementation from Albert Chin, with some
27193         comments/corrections by Stepan Kasal and myself.
27194
27195 2005-12-02  Bruno Haible  <bruno@clisp.org>
27196
27197         * gnulib-tool (func_import): Accept GPLed build tool modules when
27198         --lgpl is given.
27199         * modules/csharpcomp-script: New file.
27200         * modules/csharpcomp: Depend on it.
27201         * modules/javacomp-script: New file.
27202         * modules/javacomp: Depend on it.
27203         Suggested by Simon Josefsson.
27204
27205 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
27206
27207         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
27208         statement, to work around an HP-UX 10.20 compiler bug reported by
27209         Peter O'Gorman.
27210
27211 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27212
27213         * modules/savedir (Depends-on): Add openat.
27214
27215 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27216
27217         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
27218         (uintmax_t) [defined uintmax_t]: Do not declare.
27219         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
27220         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
27221         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
27222         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
27223         sake of portability to weird hosts that C allows (though we don't
27224         know of any practical examples).
27225
27226         * lib/savedir.h (fdsavedir): New decl.
27227         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
27228         contains most of the former guts of savedir.
27229         (savedir): Use savedirstream.
27230         Include "openat.h".
27231
27232 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
27233
27234         * modules/obstack (Files): Add m4/ulonglong.m4.
27235         Problem reported by Davide Angelocola.
27236
27237 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
27238
27239         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
27240         coreutils no longer futzes with rounding modes.
27241
27242 2005-11-14  Jim Meyering  <jim@meyering.net>
27243
27244         * lib/mkstemp-safer.c: Include <config.h>, required for possible
27245         replacement of mkstemp.
27246
27247 2005-11-10  Simon Josefsson  <jas@extundo.com>
27248
27249         * lib/readline.c: Remove EOL.
27250
27251 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27252
27253         * modules/gethrxtime (Depends-on): Add gettime.
27254
27255 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27256
27257         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
27258         or gettimeofday; no longer needed.
27259
27260 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27261
27262         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
27263         time business.
27264         (gethrxtime) [! (HAVE_NANOUPTIME
27265         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
27266         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
27267         our own approximation.
27268
27269 2005-11-08  Eric Blake  <ebb9@byu.net>
27270
27271         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27272
27273 2005-11-08  Eric Blake  <ebb9@byu.net>
27274
27275         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27276
27277 2005-11-04  Bruno Haible  <bruno@clisp.org>
27278
27279         * gnulib-tool: Implement --update mode.
27280
27281 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27282
27283         Fix porting problem reported by Theodoros V. Kalamatianos.
27284         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
27285         Don't assume that futimes failing means we must fail.
27286
27287 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27288
27289         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
27290         variables to suggest the intended function of the PATH_MAX check.
27291
27292 2005-10-30  Kean Johnston  <jkj@sco.com>
27293
27294         Trivial changes to support SCO systems.
27295         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
27296         as PATH_MAX.
27297         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
27298         where __ptr is null when no I/O is pending.
27299
27300 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27301
27302         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
27303         leave errno alone.  Problem reported by Dmitry V. Levin.
27304
27305 2005-10-28  Simon Josefsson  <jas@extundo.com>
27306
27307         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
27308         Test more.
27309
27310         * tests/test-gc-md2.c, tests/test-md2.c: New files.
27311
27312         * modules/md2, modules/md2-tests: New files.
27313
27314 2005-10-28  Simon Josefsson  <jas@extundo.com>
27315
27316         * m4/inet_ntop.m4: More tests.
27317
27318         * m4/gc-md2.m4, md2.m4: New file.
27319
27320 2005-10-28  Simon Josefsson  <jas@extundo.com>
27321
27322         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
27323         "restrict" keywords, as per POSIX.  Protect the function
27324         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
27325         Don't use K&R prototypes.  Check the sprintf return values.
27326         Re-define EAFNOSUPPORT if not present.  Indent.
27327
27328         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
27329         suggested by Bruno Haible <bruno@clisp.org>.
27330
27331         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
27332
27333         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
27334
27335         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
27336         libgcrypt).
27337
27338         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
27339
27340         * lib/md2.h, lib/md2.c: New files.
27341
27342 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
27343
27344         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
27345         errno alone.  Problem reported by Frederic Jolliton.
27346
27347 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
27348
27349         * modules/verify (License): Change from GPL to LGPL.  This is a
27350         tiny module and there are apparently near-equivalents that are
27351         under the BSD license.
27352
27353 2005-10-24  Simon Josefsson  <jas@extundo.com>
27354
27355         * modules/sha1: Relicense to LGPL.
27356
27357 2005-10-24  Simon Josefsson  <jas@extundo.com>
27358
27359         * lib/md4.h: Shrink buffer size, now that we changed the type.
27360
27361 2005-10-23  Simon Josefsson  <jas@extundo.com>
27362
27363         * gnulib-tool (func_import): Fix --tests-base.
27364
27365 2005-10-22  Simon Josefsson  <jas@extundo.com>
27366
27367         * modules/arcfour (Depends-on): Need stdint.
27368
27369 2005-10-22  Simon Josefsson  <jas@extundo.com>
27370
27371         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
27372         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
27373
27374 2005-10-22  Simon Josefsson  <jas@extundo.com>
27375
27376         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
27377         suggested by Bruno Haible <bruno@clisp.org>.
27378
27379 2005-10-22  Simon Josefsson  <jas@extundo.com>
27380
27381         * lib/crc.h: Include stddef.h, for size_t.
27382
27383 2005-10-22  Simon Josefsson  <jas@extundo.com>
27384
27385         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
27386         arcfour_context struct (simplify test vector testing in GNU
27387         Shishi).
27388
27389 2005-10-21  Simon Josefsson  <jas@extundo.com>
27390
27391         * modules/des, modules/des-tests: New files.
27392
27393         * modules/gc-des, modules/gc-des-tests: New files.
27394
27395         * tests/test-des.c, tests/test-gc-des.c: New file.
27396
27397 2005-10-21  Simon Josefsson  <jas@extundo.com>
27398
27399         * modules/arctwo, modules/arctwo-tests: New files.
27400
27401         * tests/test-arctwo.c: New file.
27402
27403         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
27404
27405         * tests/test-gc-arctwo.c: New file.
27406
27407 2005-10-21  Simon Josefsson  <jas@extundo.com>
27408
27409         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
27410         Bruno Haible <bruno@clisp.org>.
27411
27412         * m4/gc-des.m4: New file.
27413
27414 2005-10-21  Simon Josefsson  <jas@extundo.com>
27415
27416         * m4/arctwo.m4: New file.
27417
27418         * m4/gc-arctwo.m4: New file.
27419
27420 2005-10-21  Simon Josefsson  <jas@extundo.com>
27421
27422         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
27423         block.
27424
27425 2005-10-21  Simon Josefsson  <jas@extundo.com>
27426
27427         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
27428         <bruno@clisp.org>.
27429
27430         * lib/hmac-sha1.c (hmac_sha1): Likewise.
27431
27432         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
27433         Bruno Haible <bruno@clisp.org>.
27434
27435         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
27436         <bruno@clisp.org>.
27437
27438 2005-10-21  Simon Josefsson  <jas@extundo.com>
27439
27440         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
27441
27442 2005-10-21  Simon Josefsson  <jas@extundo.com>
27443
27444         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
27445
27446 2005-10-21  Simon Josefsson  <jas@extundo.com>
27447
27448         * lib/des.h, lib/des.c: New files.
27449
27450         * lib/gc-gnulib.c: Support DES.c
27451
27452 2005-10-21  Simon Josefsson  <jas@extundo.com>
27453
27454         * lib/arctwo.h, lib/arctwo.c: New files.
27455
27456         * lib/gc-gnulib.c: Support ARCTWO.
27457
27458 2005-10-21  Simon Josefsson  <jas@extundo.com>
27459
27460         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
27461         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27462
27463 2005-10-21  Simon Josefsson  <jas@extundo.com>
27464
27465         * gnulib-tool (func_import, func_create_testdir): Define automake
27466         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
27467         Makefile.am snippet),
27468         suggested by Bruno Haible <bruno@clisp.org>.
27469
27470         * modules/gc (Makefile.am): Use it.
27471
27472 2005-10-21  Bruno Haible  <bruno@clisp.org>
27473
27474         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
27475         patch.
27476
27477 2005-10-19  Simon Josefsson  <jas@extundo.com>
27478
27479         * tests/test-gc-rijndael.c: New file.
27480
27481         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
27482
27483 2005-10-19  Simon Josefsson  <jas@extundo.com>
27484
27485         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
27486         interface too.
27487
27488 2005-10-19  Simon Josefsson  <jas@extundo.com>
27489
27490         * tests/test-gc-arcfour.c: New file.
27491
27492         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
27493
27494 2005-10-19  Simon Josefsson  <jas@extundo.com>
27495
27496         * modules/gc-md4, modules/gc-md4-tests: New file.
27497
27498         * tests/test-gc-md4.c: New file.
27499
27500 2005-10-19  Simon Josefsson  <jas@extundo.com>
27501
27502         * m4/gc-md4.m4: New file.
27503
27504 2005-10-19  Simon Josefsson  <jas@extundo.com>
27505
27506         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
27507         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
27508         <kasal@ucw.cz>.
27509
27510 2005-10-19  Simon Josefsson  <jas@extundo.com>
27511
27512         * m4/gc-arcfour.m4: New file.
27513
27514         * m4/gc-rijndael.m4: New file.
27515
27516 2005-10-19  Simon Josefsson  <jas@extundo.com>
27517
27518         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
27519
27520 2005-10-19  Simon Josefsson  <jas@extundo.com>
27521
27522         * lib/gc-gnulib.c: Support ARCFOUR.
27523
27524 2005-10-19  Simon Josefsson  <jas@extundo.com>
27525
27526         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
27527         support.
27528
27529         * lib/gc.h: Add ECB enum type.
27530
27531         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
27532
27533 2005-10-18  Simon Josefsson  <jas@extundo.com>
27534
27535         * tests/test-md5.c: New file.
27536
27537         * modules/md5-tests: New file.
27538
27539 2005-10-18  Simon Josefsson  <jas@extundo.com>
27540
27541         * tests/test-md4.c: New file.
27542
27543         * modules/md4, modules/md4-tests: New files.
27544
27545 2005-10-18  Simon Josefsson  <jas@extundo.com>
27546
27547         * m4/md4.m4: New file.
27548
27549 2005-10-18  Simon Josefsson  <jas@extundo.com>
27550
27551         * lib/md4.h, lib/md4.c: New files, based on md5.?.
27552
27553 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
27554
27555         * gnulib-tool (func_create_testdir): Omit the second check whether
27556         BUILT_SOURCES in nonempty.
27557
27558 2005-10-17  Simon Josefsson  <jas@extundo.com>
27559
27560         * tests/test-rijndael.c: New file.
27561
27562 2005-10-17  Simon Josefsson  <jas@extundo.com>
27563
27564         * modules/sha1: Depend on stdint instead of md5.
27565
27566         * modules/md5: Depend on stdint, remove uint32_t.
27567
27568 2005-10-17  Simon Josefsson  <jas@extundo.com>
27569
27570         * modules/gc-sha1-tests: New file.
27571
27572         * tests/test-gc-sha1.c: New file.
27573
27574 2005-10-17  Simon Josefsson  <jas@extundo.com>
27575
27576         * m4/md5.m4: Remove call to uint32_t.m4.
27577
27578 2005-10-17  Simon Josefsson  <jas@extundo.com>
27579
27580         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
27581
27582         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
27583         md5.h.
27584
27585         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
27586
27587         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
27588
27589 2005-10-17  Simon Josefsson  <jas@extundo.com>
27590
27591         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
27592
27593 2005-10-17  Simon Josefsson  <jas@extundo.com>
27594
27595         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
27596
27597 2005-10-17  Simon Josefsson  <jas@extundo.com>
27598
27599         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
27600
27601         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
27602
27603 2005-10-17  Bruno Haible  <bruno@clisp.org>
27604
27605         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
27606         that it can also be used in a test.
27607
27608 2005-10-16  Bruno Haible  <bruno@clisp.org>
27609
27610         * gnulib-tool (func_emit_tests_Makefile_am): Also define
27611         TESTS_ENVIRONMENT, so that individual tests can augment it.
27612
27613         * gnulib-tool (func_create_testdir): Use an intermediate target for
27614         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
27615         macros, like $(ALLOCA_H), which cannot be passed through the command
27616         line.
27617
27618 2005-10-15  Simon Josefsson  <jas@extundo.com>
27619
27620         * modules/rijndael-tests: New file.
27621
27622         * modules/rijndael: New file.
27623
27624 2005-10-15  Simon Josefsson  <jas@extundo.com>
27625
27626         * m4/rijndael.m4: New file.
27627
27628 2005-10-15  Simon Josefsson  <jas@extundo.com>
27629
27630         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
27631
27632         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
27633
27634 2005-10-14  Simon Josefsson  <jas@extundo.com>
27635
27636         * tests/test-arcfour.c: New file.
27637
27638         * modules/arcfour, modules/arcfour-tests: New files.
27639
27640 2005-10-14  Simon Josefsson  <jas@extundo.com>
27641
27642         * m4/arcfour.m4: New file.
27643
27644 2005-10-14  Simon Josefsson  <jas@extundo.com>
27645
27646         * lib/arcfour.h, lib/arcfour.c: New files.
27647
27648 2005-10-14  Roland McGrath  <roland@redhat.com>
27649
27650         Import from libc.  [BZ #1331]
27651         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
27652         macro argument.
27653         Reported by Matej Vela <vela@debian.org>.
27654
27655 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27656
27657         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
27658         include <wchar.h>; no longer needed.
27659
27660 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27661
27662         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
27663
27664 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
27665         and  Ulrich Drepper  <drepper@redhat.com>
27666
27667         Import from libc.
27668         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
27669         instead of inline stream orientation test and two separate
27670         function calls.  Pay no attention to USE_IN_LIBIO.
27671
27672 2005-10-13  Simon Josefsson  <jas@extundo.com>
27673
27674         * modules/gc-hmac-md5-tests: New file.
27675
27676         * tests/test-gc-hmac-sha1.c: New file.
27677
27678         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
27679
27680         * modules/gc-hmac-md5-tests: New file.
27681
27682         * tests/test-gc-md5.c: New file.
27683
27684         * modules/gc-md5-tests: New file.
27685
27686 2005-10-13  Simon Josefsson  <jas@extundo.com>
27687
27688         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
27689         Move memory allocation outside of loop.
27690
27691 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
27692
27693         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
27694         intermediate directory is in a read-only file system.  Problem
27695         reported by Eric Blake.
27696
27697 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
27698
27699         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
27700
27701 2005-10-12  Simon Josefsson  <jas@extundo.com>
27702
27703         * tests/test-hmac-sha1.c: New file.
27704
27705         * modules/hmac-sha1-tests: New file.
27706
27707         * modules/hmac-sha1: New file.
27708
27709 2005-10-12  Simon Josefsson  <jas@extundo.com>
27710
27711         * modules/gc-sha1: New file.
27712
27713 2005-10-12  Simon Josefsson  <jas@extundo.com>
27714
27715         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
27716
27717         * tests/test-gc-pbkdf2-sha1.c: New file.
27718
27719 2005-10-12  Simon Josefsson  <jas@extundo.com>
27720
27721         * modules/gc-md5, modules/gc-hmac-md5: New files.
27722
27723         * modules/gc (Files): Remove md5, memxor and hmac files.
27724
27725 2005-10-12  Simon Josefsson  <jas@extundo.com>
27726
27727         * m4/gc-pbkdf2-sha1.m4: New file.
27728
27729         * m4/gc-hmac-sha1.m4: New file.
27730
27731         * m4/gc-sha1: New file.
27732
27733         * m4/hmac-sha1.m4: New file.
27734
27735 2005-10-12  Simon Josefsson  <jas@extundo.com>
27736
27737         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
27738
27739         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
27740
27741 2005-10-12  Simon Josefsson  <jas@extundo.com>
27742
27743         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
27744         suggested by Bruno Haible <bruno@clisp.org>.
27745
27746 2005-10-12  Simon Josefsson  <jas@extundo.com>
27747
27748         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
27749
27750 2005-10-12  Simon Josefsson  <jas@extundo.com>
27751
27752         * lib/gc-pbkdf2-sha1.c: New file.
27753
27754         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
27755
27756 2005-10-12  Simon Josefsson  <jas@extundo.com>
27757
27758         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
27759
27760         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
27761
27762 2005-10-12  Simon Josefsson  <jas@extundo.com>
27763
27764         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
27765         GC_USE_HMAC_MD5, respectively.
27766
27767         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
27768         (gc_md5): Fix typo.
27769
27770         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
27771
27772         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
27773
27774         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
27775
27776 2005-10-12  Bruno Haible  <bruno@clisp.org>
27777
27778         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
27779         Reported by Stepan Kasal <kasal@ucw.cz>.
27780
27781 2005-10-11  Simon Josefsson  <jas@extundo.com>
27782
27783         * tests/test-crc.c: New file.
27784
27785         * modules/crc, modules/crc-tests: New files.
27786
27787 2005-10-11  Simon Josefsson  <jas@extundo.com>
27788
27789         * m4/crc.m4: New file.
27790
27791 2005-10-11  Simon Josefsson  <jas@extundo.com>
27792
27793         * lib/gc.h: Add gc_hash and gc_hash_buffer.
27794
27795         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
27796
27797         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
27798
27799 2005-10-11  Simon Josefsson  <jas@extundo.com>
27800
27801         * lib/crc.h, lib/crc.c: New files.
27802
27803         * lib/gc.h (gc_hash_buffer): Add doc.
27804
27805 2005-10-11  Bruno Haible  <bruno@clisp.org>
27806
27807         * modules/c-strcasestr: New file.
27808         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
27809
27810 2005-10-11  Bruno Haible  <bruno@clisp.org>
27811
27812         * modules/c-strcase: New file.
27813         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
27814
27815 2005-10-11  Bruno Haible  <bruno@clisp.org>
27816
27817         * lib/strcasecmp.c: Include limits.h.
27818         (strcasecmp): Avoid integer overflow on exotic platforms.
27819         * lib/strncasecmp.c: Include limits.h.
27820         (strncasecmp): Avoid integer overflow on exotic platforms.
27821         Reported by Paul Eggert.
27822
27823 2005-10-11  Bruno Haible  <bruno@clisp.org>
27824
27825         * lib/c-strcasestr.h: New file, from GNU gettext.
27826         * lib/c-strcasestr.c: New file, from GNU gettext.
27827
27828 2005-10-11  Bruno Haible  <bruno@clisp.org>
27829
27830         * lib/c-strcase.h: New file, from GNU gettext.
27831         * lib/c-strcasecmp.c: New file, from GNU gettext.
27832         * lib/c-strncasecmp.c: New file, from GNU gettext.
27833
27834 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
27835
27836         * modules/mempcpy (License): GPL -> LGPL.
27837         * modules/strchrnul (License): Likewise.
27838         * modules/sysexits (License): Likewise.
27839
27840 2005-10-08  Simon Josefsson  <jas@extundo.com>
27841
27842         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
27843
27844 2005-10-07  Simon Josefsson  <jas@extundo.com>
27845
27846         * m4/memxor.m4: Remove gl_C_RESTRICT call.
27847
27848 2005-10-06  Simon Josefsson  <jas@extundo.com>
27849
27850         * tests/test-hmac-md5.c: New file.
27851
27852         * modules/hmac-md5-tests: New file.
27853
27854         * modules/hmac-md5: New file.
27855
27856 2005-10-06  Simon Josefsson  <jas@extundo.com>
27857
27858         * m4/hmac-md5.m4: New file.
27859
27860         * m4/memxor.m4: Require gl_C_RESTRICT.
27861
27862 2005-10-06  Simon Josefsson  <jas@extundo.com>
27863
27864         * lib/memxor.c (memxor): Avoid casts and warnings.
27865
27866 2005-10-06  Simon Josefsson  <jas@extundo.com>
27867
27868         * lib/hmac-md5.c: New file.
27869
27870         * lib/hmac.h: New file.
27871
27872 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
27873
27874         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
27875         promotes to int, not unsigned int, to catch the AIX 5.3
27876         compiler bug.
27877
27878 2005-10-05  Simon Josefsson  <jas@extundo.com>
27879
27880         * modules/memxor: New file.
27881
27882         * modules/iconv (Files): Move config.rpath to havelib, it is used
27883         there.
27884
27885         * modules/havelib (Files): Add config.rpath.
27886
27887 2005-10-05  Simon Josefsson  <jas@extundo.com>
27888
27889         * m4/memxor.m4: New file.
27890
27891 2005-10-05  Simon Josefsson  <jas@extundo.com>
27892
27893         * lib/memxor.c (memxor): Fix compiler error.
27894
27895         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
27896         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
27897
27898         * lib/memxor.h, lib/memxor.c: New files.
27899
27900         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
27901         we assume all systems have it, suggested by Jim Meyering
27902         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
27903         any systems lack sys/socket.h; mingw32 is known to lack it, but we
27904         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
27905         same reasons.
27906
27907 2005-10-05  Simon Josefsson  <jas@extundo.com>
27908
27909         * config/srclist.txt: Add glibc bug 1423 for md5.h.
27910
27911 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
27912
27913         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
27914         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
27915         needed, since the source code now assumes these .h files.
27916
27917 2005-10-05  Derek Price  <derek@ximbiot.com>
27918
27919         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
27920
27921 2005-10-05  Bruno Haible  <bruno@clisp.org>
27922
27923         * modules/stdint (License): Change to LGPL.
27924
27925 2005-10-04  Simon Josefsson  <jas@extundo.com>
27926
27927         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
27928         D. Baushke" <mdb@gnu.org>.
27929
27930 2005-10-04  Bruno Haible  <bruno@clisp.org>
27931
27932         * lib/verify.h (verify_true): Provide alternative definition for C++.
27933
27934 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
27935
27936         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
27937         (SSIZE_MAX): New macro, if not already defined.
27938         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
27939         than 2 GiB.
27940
27941 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
27942
27943         Sync from coreutils.
27944         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
27945         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
27946         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
27947         ULLONG_MAX doesn't work with 2.7.2.1.
27948
27949 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
27950
27951         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
27952         From Ben Pfaff.
27953
27954         * modules/exclude (Depends-on): Depend on verify.
27955         * modules/strtoimax (Depends-on): Likewise.
27956         * modules/utimecmp (Depends-on): Likewise.
27957
27958 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
27959
27960         * lib/exclude.c: Include verify.h.
27961         (verify): Remove.  All callers changed to use verify.h's version.
27962         * lib/strtoimax.c: Likewise.
27963         * lib/utimecmp.c: Likewis.e
27964
27965         Sync from coreutils.
27966         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
27967         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
27968         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
27969         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
27970         bother returning ENOSYS if settimeofday or stime fails; just let
27971         them return whatever errno they want to return.
27972         * lib/utimens.c: Include unistd.h, for dup2.
27973         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
27974         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
27975
27976 2005-10-02  Jim Meyering  <jim@meyering.net>
27977
27978         Sync from coreutils.
27979         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
27980         from glibc-2.2.5 that fails for read-only files.
27981
27982 2005-10-02  Jim Meyering  <jim@meyering.net>
27983
27984         Sync from coreutils.
27985         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
27986         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
27987         `#if HAVE_CONFIG_H'.
27988         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
27989         Remove AT_FDCWD test.
27990         Do not consume the fd unless successful.
27991         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
27992         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
27993         block, so that we don't even try to compile it if settimeofday is
27994         available.  This works around a compilation failure on OSF1 V5.1,
27995         due to stime requiring a `long int*' while tv_sec is `int'.
27996
27997 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
27998
27999         Sync from coreutils.
28000         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
28001         against `yes', rather than just testing for nonempty.
28002
28003 2005-10-01  Simon Josefsson  <jas@extundo.com>
28004
28005         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
28006         and Darwin.
28007
28008         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
28009         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
28010         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
28011         freeaddrinfo and gai_strerror are declared by the POSIX headers.
28012         Check if struct addrinfo is declared.
28013
28014 2005-10-01  Simon Josefsson  <jas@extundo.com>
28015
28016         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
28017         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
28018         AI_* and EAI_* definitions.  Protect function declarations.
28019
28020 2005-10-01  Jim Meyering  <jim@meyering.net>
28021
28022         Sync from coreutils.
28023
28024         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
28025         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
28026         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
28027         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28028         in the inet and nsl libraries.  Required on Solaris 5.7.
28029
28030 2005-10-01  Jim Meyering  <jim@meyering.net>
28031
28032         Sync from coreutils.
28033         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28034         in the inet and nsl libraries.  Required on Solaris 5.7.
28035
28036 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
28037
28038         * lib/getdelim.c (getdelim): Remove unused variables.
28039
28040 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
28041
28042         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
28043         so that the code works even with ancient cpp.  Portability problem
28044         with GCC 2.7.2.1 reported by Thomas M.Ott.
28045
28046 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
28047
28048         * modules/regex (Depends-on): Add strcase.
28049
28050         * modules/gethostname (Licence): Change from GPL to LGPL, since
28051         gethostname.c is a trivial implementation of a standard library
28052         function.
28053         * modules/poll (License): Change from GPL to LGPL, since it's
28054         derived from LGPL code.
28055
28056 2005-09-27  Jim Meyering  <jim@meyering.net>
28057
28058         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
28059         HAVE_CONFIG_H.
28060
28061         * lib/intprops.h (signed_type_or_expr__): Define.
28062         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
28063         for unsigned types.
28064
28065 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
28066
28067         * lib/verify.h (verify_expr): Remove, replacing with:
28068         (verify_true): New macro that returns true instead of void.
28069         (verify_type__): Remove.
28070         (verify): Use verify_true rather than verify_type__.
28071
28072 2005-09-26  Bruno Haible  <bruno@clisp.org>
28073
28074         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
28075         is necessary.
28076         (lib_SOURCES): Remove mbchar.c.
28077         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
28078         (Files): Add m4/mbrtowc.m4.
28079         * modules/mbiter: Likewise.
28080         * modules/mbuiter: Likewise.
28081
28082 2005-09-26  Bruno Haible  <bruno@clisp.org>
28083
28084         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
28085         compile mbchar.c if they are not both present.
28086         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
28087         * m4/mbiter.m4 (gl_MBITER): Likewise.
28088         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
28089         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
28090         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
28091
28092 2005-09-25  Jim Meyering  <jim@meyering.net>
28093
28094         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
28095         also uses socklen_t.
28096
28097 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
28098
28099         * lib/utimens.c (ENOSYS): Define if not already defined.
28100         (futimens): Support having a null PATH if the file descriptor
28101         is nonnegative.
28102
28103         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
28104         Remove.
28105         (__attribute): Define to empty unless GCC 3.1 or later.
28106         This works around a core dump on OpenBSD 3.4, which has GCC
28107         2.95.3, which dumps core when given __attribute__(()).  It also
28108         simplifies other tests, since we really don't want to bother with
28109         worrying about which ancient version of GCC supported what.
28110         Original problem reported by Yoann Vandoorselaere, with part of
28111         the fix suggested by Derek Price.
28112
28113 2005-09-24  Jim Meyering  <jim@meyering.net>
28114
28115         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
28116         so we can once again use a positive bitfield width of 1 -- now we
28117         don't have to explain why we were using a bitfield width of 2.
28118
28119 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28120
28121         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
28122         and similarly for the other external symbols.  Problem reported
28123         by James Gallager.
28124
28125         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
28126         bug reported by Jim Meyering.
28127
28128         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
28129         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
28130         not needed, since socklen is a prerequisite module.
28131
28132 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28133
28134         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
28135         Problem reported by Eric Blake.
28136         (getaddrinfo): Initialize se so that it's not garbage.
28137         Redo internal storage allocation so that it doesn't make unportable
28138         assumptions about alignment.
28139         Fix a memory leak.
28140
28141         * lib/utimens.c (futimens): Use futimesat if available.
28142         Prefer it to futimes since it doesn't have the futimes bug.
28143
28144         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
28145         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
28146         Instead, declare a function that returns a pointer to an array,
28147         and use verify_type__ to declare the size of the array.
28148         Problem and germ of a solution reported by Bruno Haible.
28149         (verify_type__): Use 2, not 1, for bitfield size, to avoid
28150         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
28151
28152 2005-09-23  Jim Meyering  <jim@meyering.net>
28153
28154         Sync from coreutils.
28155         Correct build failure (socklen_t not defined) on at least
28156         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
28157         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
28158
28159 2005-09-23  Jim Meyering  <jim@meyering.net>
28160
28161         * modules/getaddrinfo (Depends-on): Add socklen.
28162
28163 2005-09-23  Bruno Haible  <bruno@clisp.org>
28164
28165         * tests/test-verify.c: New file.
28166
28167 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28168
28169         Sync from coreutils.
28170
28171         * modules/argmatch (Depends-on): Add verify.
28172         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
28173         unistd-safer.
28174         * modules/save-cwd (Depends-on): Likewise.
28175
28176         * modules/openat (Files): Add lib/openat-die.c.
28177         (Depends-on): Remove error, exitfail.
28178         Add dirname.
28179
28180         * modules/verify: New file.
28181         * MODULES.html.sh (Diagnostics <assert.h>): New section,
28182         with "verify" module.
28183
28184 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28185
28186         Sync from coreutils.
28187
28188         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
28189         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
28190         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
28191         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
28192         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
28193         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
28194         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
28195         Don't bother checking for string.h, stdlib.h, unistd.h.
28196         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
28197         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
28198         module's job.
28199         * m4/jm-macros.m4 (gl_MACROS): Likewise.
28200         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
28201
28202         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
28203         (gl_GETDATE): Use it.
28204
28205         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
28206
28207 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28208
28209         Sync from coreutils.
28210
28211         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
28212         stat-time.h.
28213         * lib/argmatch.h: Include verify.h
28214         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
28215         (ARGMATCH_ASSERT): Remove; unused.
28216         * lib/canonicalize.c: Assume STDC_HEADERS.
28217         * lib/exclude.c: Include "strcase.h".
28218         * lib/regex_internal.h [!defined _LIBC]: Likewise.
28219         * lib/getusershell.c: Include stdio--.h rather than stdio.h
28220         and stdio-safer.h.
28221         (getusershell): Call fopen, not fopen_safer.
28222         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
28223         Do not include unistd-safer.h.
28224         (save_cwd): Don't call fd_safer; no longer needed
28225         now that we include fcntl--.h.
28226
28227         * lib/getdate.y (relative_time): New type.
28228         (RELATIVE_TIME_0): New constant.
28229         (parser_control): Use relative_time instead of doing it ourselves.
28230         (%union): Add new relative_time rel member.
28231         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
28232         Now typeless.
28233         (relunit, relunit_snumber): Now of type rel.
28234         (zone, rel, relunit, get_date): Adjust to above changes.
28235
28236         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
28237         Do not include unistd-safer.h.
28238         (getloadavg): Don't call fd_safer; no longer needed
28239         now that we include fcntl--.h.
28240
28241         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
28242         (make_dir_parents): Treat ENOSYS like EEXIST.
28243
28244         Improve quality of diagnostics on restore_cwd failure.
28245         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
28246         (make_dir_parents): Last arg is now int * (for errno), not bool *.
28247         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
28248         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
28249         each time through the loop.  Do not diagnose restore_cwd failure;
28250         that is the caller's job (and perhaps the caller does not care).
28251
28252         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
28253         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
28254         If the file already exists but is not a directory, don't bother
28255         to try to make its parents.
28256         Close potential file descriptor leak if we can't chdir("/") (!).
28257         Don't always return true if chdir($PWD) fails; return true only
28258         if the requested action was done successfully (except for the
28259         chdir($PWD)).
28260         Don't log final directory unless we actually made it.
28261         Refactor to avoid duplicate code to fix up permissions.
28262         Don't attempt to fix up parent permissions if chdir($PWD) fails.
28263
28264         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
28265         to make it a bit faster and (I hope) clearer.
28266         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
28267         Fix bug in formats like %2N.
28268
28269         * lib/verify.h: New file.
28270
28271 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28272
28273         Sync from coreutils.
28274         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
28275
28276 2005-09-22  Jim Meyering  <jim@meyering.net>
28277
28278         Sync from coreutils.
28279
28280         * m4/lstat.m4 (gl_FUNC_LSTAT):
28281         Use AC_LIBSOURCES to require lstat.c and lstat.h.
28282         Remove obsolete comment.
28283         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
28284         * m4/xstrtod.m4: Likewise.
28285
28286         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
28287
28288 2005-09-22  Jim Meyering  <jim@meyering.net>
28289
28290         Sync from coreutils.
28291
28292         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
28293
28294         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
28295         the .tm_year member, since otherwise gcc-4.0 would now warn about
28296         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
28297
28298         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
28299         order to avoid an unsuppressible warning from gcc on 64-bit systems.
28300
28301         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
28302         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
28303         when run in a time zone for which daylight savings time is in effect
28304         for the starting date.
28305
28306         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
28307         stop us from restricting permissions of just-created absolute-named
28308         directories.
28309         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
28310         to restore initial working directory.
28311         * lib/mkdir-p.c (make_dir_parents): New parameter:
28312         different_working_dir, to tell caller if/when we change the working
28313         directory and are unable to return to the initial one.
28314         * lib/mkdir-p.h (make_dir_parents): Update prototype.
28315         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
28316         `return false'.  This fixes a bug introduced on 2004-07-30.
28317
28318         * lib/openat.c (fdopendir): Be sure to close the supplied
28319         file descriptor before returning.  This makes our replacement
28320         implementation a little closer to Solaris's, where fdopendir
28321         ties the file descriptor to the returned DIR* pointer.
28322         * lib/openat.c (unlinkat): New function.
28323         * lib/openat.h (unlinkat): Add prototype.
28324         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
28325         (openat_restore_fail): Rename from openat_restore_die.
28326         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
28327
28328         Provide an alternative to exiting immediately upon save_cwd or
28329         restore_cwd failure.  Now, an application can arrange e.g.,
28330         to perform a longjump in that case.
28331         * lib/openat.c: Include dirname.h.
28332         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
28333         (rpl_openat, fdopendir, fstatat): Call openat_save_die
28334         and openat_restore_die rather than calling error directly.
28335         Don't include "error.h" or "exitfail.h"; they're no longer needed.
28336
28337         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
28338         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
28339         define.
28340
28341         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
28342         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
28343                             int utc, int nanoseconds);
28344         Background:
28345         date should not have to allocate a megabyte of virtual memory to
28346         handle a format argument like +%1048575T.  When implemented with
28347         strftime, it must allocate such a buffer, use strftime to fill it
28348         in, print it, then free it.
28349         With fprintftime, it simply prints everything and exits.
28350         With no need for memory allocation, that's one fewer way to fail.
28351         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
28352         optional field width, not before, so we accept %9:z, not %:9z.
28353         (my_strftime): Be sure to use L_('x') for literals.
28354
28355         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
28356         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
28357         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
28358         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
28359         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
28360         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
28361         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
28362         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
28363         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
28364         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
28365         * lib/xgethostname.c, lib/xreadlink.c:
28366         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
28367
28368         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
28369         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
28370         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
28371         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
28372         and don't include <sys/file.h>).
28373
28374 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
28375
28376         Sync from coreutils.
28377
28378         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
28379         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
28380         [!LDAV_DONE]: Avoid unused variable warning.
28381
28382 2005-09-21  Bruno Haible  <bruno@clisp.org>
28383
28384         * lib/unicodeio.h (unicode_to_mb): New declaration.
28385
28386 2005-09-20  Derek Price  <derek@ximbiot.com>
28387
28388         * lib/getaddrinfo.c: Don't include <netdb.h> included from
28389         getaddrinfo.h.
28390
28391 2005-09-20  Bruno Haible  <bruno@clisp.org>
28392
28393         * gnulib-tool: Remove trailing slashes from the values specified for
28394         --source-base, --m4-base, --tests-base, --aux-dir.
28395         Suggested by Simon Josefsson <jas@extundo.com>.
28396
28397 2005-09-20  Bruno Haible  <bruno@clisp.org>
28398
28399         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
28400         func_modules_to_filelist, func_import, func_create_testdir): Make all
28401         sorting results locale-independent, so that gnulib-cache.m4 doesn't
28402         change when gnulib-tool is invoked in a different locale.
28403
28404 2005-09-19  Simon Josefsson  <jas@extundo.com>
28405
28406         * m4/socklen.m4: Fix typo.
28407
28408 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28409
28410         Use a consistent style for including <config.h>.
28411         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
28412         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
28413         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
28414         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
28415         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
28416         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
28417         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
28418         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
28419         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
28420         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
28421         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
28422         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
28423         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
28424         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
28425         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
28426         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
28427         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
28428         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
28429         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
28430         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
28431         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
28432         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
28433         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
28434         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
28435         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
28436         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
28437         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
28438         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
28439         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
28440         lib/xstrtoumax.c, lib/yesno.c:
28441         Standardize inclusion of config.h.
28442         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
28443         lib/inttostr.h:  Removed inclusion of config.h from header files.
28444         * lib/inttostr.c:  Adjusted in-tree users.
28445         * lib/timespec.h: Remove superfluous warning to include config.h.
28446         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
28447         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
28448         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
28449         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
28450         config.h with HAVE_CONFIG_H.
28451
28452 2005-09-19  Jim Meyering  <jim@meyering.net>
28453
28454         * modules/pathmax (License): Change to LGPL.
28455
28456 2005-09-19  Derek Price  <derek@ximbiot.com>
28457
28458         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
28459
28460 2005-09-19  Bruno Haible  <bruno@clisp.org>
28461
28462         * gnulib-tool (import): Provide default for --tests-base.
28463
28464 2005-09-19  Bruno Haible  <bruno@clisp.org>
28465
28466         * doc/quote.texi: New file, extracted from gnulib.texi.
28467         * doc/ctime.texi: New file, extracted from gnulib.texi.
28468         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
28469         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
28470         * doc/gnulib.texi: Include them.
28471
28472 2005-09-18  Bruno Haible  <bruno@clisp.org>
28473
28474         Portability fix.
28475         * gnulib-tool (func_readlink): New function.
28476         (func_ln_if_changed): Use it.
28477
28478 2005-09-18  Bruno Haible  <bruno@clisp.org>
28479
28480         * gnulib-tool: Support --with-tests also with --import.
28481         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
28482         (func_import): Use variables $testsbase and $inctests. Emit a
28483         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
28484         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
28485         SUBDIRS += $testsdir.
28486         (func_create_testdir): Update.
28487
28488 2005-09-18  Bruno Haible  <bruno@clisp.org>
28489
28490         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
28491         instead of $dry_run.
28492         (func_cp_if_changed, func_mv_if_changed): Remove functions.
28493         (func_ln_if_changed): Don't handle dry-run here.
28494         (func_import): In dry-run mode, detect more precisely which actions
28495         would be performed, and don't use "...ing" verbs.
28496
28497 2005-09-18  Bruno Haible  <bruno@clisp.org>
28498
28499         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
28500         (func_import): Use join on two temporary files instead of three nested
28501         loops, in order to determine which files are new or old.
28502
28503 2005-09-18  Bruno Haible  <bruno@clisp.org>
28504
28505         * gnulib-tool (func_import): Comment out code that spits out the
28506         new files with --dry-run.
28507
28508 2005-09-18  Bruno Haible  <bruno@clisp.org>
28509
28510         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
28511
28512 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28513
28514         * lib/stat-time.h: New file.
28515         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
28516         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
28517         in a different way.
28518         (timespec_cmp): New function.
28519         * lib/utimecmp.c: Include stat-time.h.
28520         (SYSCALL_RESOLUTION): Depend on whether various struct stat
28521         members exist, not on the obsolescent ST_MTIM_NSEC.
28522         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
28523
28524 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28525
28526         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
28527
28528 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28529
28530         * MODULES.html.sh (File system functions): Add stat-time.
28531         * modules/stat-time: New file.
28532         * modules/timespec (Files): Remove m4/st_mtim.m4; this
28533         is now done in a different way, by the stat-time module.
28534         * modules/utimecmp (Depends-on): Add stat-time.
28535
28536 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
28537
28538         * m4/st_mtim.m4: Remove.  Superseded by...
28539         * m4/stat-time.m4: New file.
28540         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
28541         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
28542
28543 2005-09-15  Derek Price  <derek@ximbiot.com>
28544
28545         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
28546
28547 2005-09-15  Derek Price  <derek@ximbiot.com>
28548
28549         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
28550         * lib/regex_internal.c: Ditto, using this...
28551         (__GNUC_PREREQ): ...new macro.
28552         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
28553         using...
28554         (__GNUC_PREREQ): ...this new macro.
28555
28556         * lib/strstr.h: Include string.h. Define strstr as a macro here.
28557
28558 2005-09-15  Derek Price  <derek@ximbiot.com>
28559             Paul Eggert  <eggert@cs.ucla.edu>
28560
28561         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
28562         changes, consolidating in...
28563         * lib/regex_internal.h: ...this file.
28564
28565 2005-09-13  Jim Meyering  <jim@meyering.net>
28566
28567         * lib/canon-host.c: Filter through gnu indent and reword comments
28568         slightly.
28569         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
28570
28571 2005-09-13  Derek Price  <derek@ximbiot.com>
28572
28573         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
28574         failure.
28575         Reported by Jim Meyering  <jim@meyering.net>.
28576
28577 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
28578
28579         * lib/base64.c: Typo.
28580         (base64_encode): Put b64str in initialized data section.
28581
28582 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
28583
28584         Merge glibc and coreutils changes into gnulib, plus a few
28585         extra fixes.
28586         * lib/md5.c: Use #error rather than a string.
28587         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
28588         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
28589         (__attribute__): Define to empty for non recent-GCC.
28590         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
28591         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
28592         Renamed from their non-__ counterparts, with new macros replacing
28593         them if not _LIBC.  Add __THROW attribute.
28594         (rol): Remove.
28595         (struct md5_ctx): Align buffer if using GCC.
28596         * lib/sha1.h (struct sha1_ctx): Likewise.
28597         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
28598         The old name was backwards.
28599         (NOTSWAP): Remove; not used.
28600         (rol): New macro, moved here from md5.h.
28601         (sha1_process_block): Remove a FIXME that doesn't make sense.
28602
28603 2005-09-12  Derek Price  <derek@ximbiot.com>
28604
28605         Return usable errors from canon-host.
28606         * lib/canon-host.h: New file.
28607         * lib/canon-host.c (canon_host): Wrap...
28608         (canon_host_r): ...this new function, which now relies exclusively on
28609         getaddrinfo.
28610         (ch_strerror): New function.
28611         (last_cherror): New global.
28612         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
28613         interface.
28614         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
28615         void *.
28616         (freeaddrinfo): Free ai->ai_canonname when set.
28617
28618 2005-09-12  Derek Price  <derek@ximbiot.com>
28619
28620         Make canon-host require getaddrinfo.
28621         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
28622         AC_LIBSOURCE canon-host.h.  Call...
28623         (gl_PREREQ_CANON_HOST): ...this new function, which requires
28624         gl_GETADDRINFO.
28625         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
28626
28627 2005-09-12  Derek Price  <derek@ximbiot.com>
28628
28629         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
28630         LGPL.
28631         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
28632
28633 2005-09-12  Derek Price  <derek@ximbiot.com>
28634
28635         * lib/gai_strerror.c: Include config.h when available.  Include
28636         getaddrinfo.h before other headers to test interface.
28637         Reported by Larry Jones <lawrence.jones@ugs.com>.
28638
28639 2005-09-12  Derek Price  <derek@ximbiot.com>
28640             Paul Eggert  <eggert@cs.ucla.edu>
28641
28642         * modules/glob (Files): Add glob-libc.h.
28643
28644 2005-09-12  Derek Price  <derek@ximbiot.com>
28645             Paul Eggert  <eggert@cs.ucla.edu>
28646
28647         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
28648         glob_.h, glob-libc.h.
28649         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
28650
28651 2005-09-12  Derek Price  <derek@ximbiot.com>
28652             Paul Eggert  <eggert@cs.ucla.edu>
28653
28654         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
28655         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
28656         protecting things that should be done only in gnulib contexts.
28657         * lib/glob_.h: New file, containing only the glob things needed for
28658         gnulib.
28659         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
28660         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
28661         (glob, globfree, glob_pattern_p): Now defined simply in terms of
28662         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
28663         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
28664         and to respect the namespace rules better.
28665
28666 2005-09-08  Simon Josefsson  <jas@extundo.com>
28667
28668         * modules/socklen: New file.
28669
28670 2005-09-08  Simon Josefsson  <jas@extundo.com>
28671
28672         * m4/socklen.m4: New file.
28673
28674 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28675
28676         * modules/utimens (Files): Add m4/utimbuf.m4, since
28677         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
28678         Reported by Sergey Poznyakoff.
28679
28680 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28681
28682         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
28683         definitions, since that's the preferred style in glibc.
28684         Fix a minor spacing issue, and update copyright notice to match
28685         glibc's.
28686
28687 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28688
28689         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
28690
28691 2005-09-06  Simon Josefsson  <jas@extundo.com>
28692
28693         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
28694         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
28695
28696 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28697
28698         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
28699         warning.
28700
28701 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28702
28703         * config/srclist.txt: Add glibc bug 1302.
28704
28705 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
28706
28707         Change bitset word type from unsigned int to unsigned long int,
28708         as this has better performance on typical 64-bit hosts.
28709         Port bitset code to hosts with unusual word sizes.
28710         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
28711         (build_collating_symbol):
28712         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
28713         argument is a bitset.  This is merely a style issue, but it makes
28714         it clearer that an entire array is expected.
28715         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
28716         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
28717         Port to the case where bitset_word is not the same as unsigned int.
28718         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
28719         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
28720         Likewise.
28721         * lib/regexec.c (check_dst_limits_calc_pos_1,
28722         check_subexp_matching_top):
28723         (build_trtable, group_nodes_into_DFAstates):
28724         Likewise.
28725         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
28726         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
28727         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
28728         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
28729         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
28730         * lib/regcomp.c (optimize_subexps, lower_subexp):
28731         Work even if bitset_word has holes in its bitwise representation.
28732         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
28733         * lib/regexec.c (check_dst_limits_calc_pos_1,
28734         check_subexp_matching_top):
28735         Likewise.
28736         * lib/regex_internal.c (re_string_reconstruct):
28737         Don't assume UCHAR_MAX == 255.
28738         * lib/regex_internal.h (bitset_set_all): Likewise.
28739         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
28740         All uses changed.
28741         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
28742         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
28743         All uses changed.
28744         (BITSET_WORD_MAX): New macro.
28745         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
28746         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
28747         (bitset_empty, bitset_copy):
28748         Prefer sizeof (bitset) to multiplying it out ourselves.
28749         (bitset_not_merge): Remove; unused.
28750         (bitset_contain): Return bool, not unsigned int with one bit on.
28751         All callers changed.
28752         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
28753         alignment than re_node_set; do this by defining a new internal
28754         type struct dests_alloc and using it to allocate memory.
28755
28756 2005-09-05  Bruno Haible  <bruno@clisp.org>
28757
28758         * gnulib-tool (func_import): Fix comparison in handling of symbolic
28759         links.
28760
28761 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
28762
28763         * modules/size_max (Makefile.am): Add size_max.h
28764
28765 2005-09-04  Derek Price  <derek@ximbiot.com>
28766
28767         * gnulib-tool (func_import): Fix reversed $symbolic logic.
28768
28769 2005-09-03  Simon Josefsson  <jas@extundo.com>
28770
28771         * gnulib-tool: Fix typo.
28772
28773 2005-09-03  Simon Josefsson  <jas@extundo.com>
28774
28775         * config/srclist.txt: Add glibc bug 1293.
28776
28777 2005-09-03  Derek Price  <derek@ximbiot.com>
28778
28779         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
28780         From Larry Jones <lawrence.jones@ugs.com>.
28781
28782 2005-09-02  Simon Josefsson  <jas@extundo.com>
28783
28784         * modules/socklen: New file.
28785
28786 2005-09-02  Simon Josefsson  <jas@extundo.com>
28787
28788         * modules/havelib: New module.
28789
28790         * modules/gettext, modules/iconv, modules/lock, modules/readline:
28791         Use havelib.
28792
28793 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
28794
28795         Check for arithmetic overflow when calculating sizes, to prevent
28796         some buffer-overflow issues.  These patches are conservative, in the
28797         sense that when I couldn't determine whether an overflow was possible,
28798         I inserted a run-time check.
28799         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
28800         macros.
28801         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
28802         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
28803         (re_xnrealloc, re_x2nrealloc): New inline functions.
28804         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
28805         parse_bracket_exp):
28806         (build_equiv_class, build_charclass): Check for arithmetic overflow
28807         in size expression calculations.
28808         * lib/regex_internal.c (re_string_realloc_buffers):
28809         (build_wcs_upper_buffer, re_node_set_add_intersect):
28810         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
28811         (re_dfa_add_node, register_state): Likewise.
28812         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
28813         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
28814         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
28815         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
28816
28817 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
28818
28819         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
28820         m4/ulonglong.m4.  Problem reported by Martin Lambers.
28821
28822 2005-09-02  Bruno Haible  <bruno@clisp.org>
28823
28824         Support for lib vs. lib64 distinction on biarch platforms.
28825         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
28826         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
28827         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
28828
28829 2005-09-02  Bruno Haible  <bruno@clisp.org>
28830
28831         * gnulib-tool (import): In the other first-use case, provide defaults
28832         as well.
28833
28834 2005-09-02  Bruno Haible  <bruno@clisp.org>
28835
28836         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
28837         patches not yet found in the latest gettext release.
28838
28839 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
28840
28841         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
28842         to avoid a collision with bits/local_lim.h in glibc.
28843         All uses changed.  Problem reported by Dmitry V. Levin in
28844         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
28845
28846         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
28847         bugs in int versus size_t comparisons.
28848         (re_string_context_at): Fix bug where the code assumed that
28849         Idx is signed.
28850
28851         Use bool where appropriate.
28852         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
28853         All callers changed.
28854         (calc_eclosure_iter): Likewise, for ROOT arg.
28855         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
28856         (build_charclass_op): Likewise, for NON_MATCH arg.
28857         * lib/regex_internal.c (re_string_allocate, re_string_construct):
28858         (re_string_construct_common): Likewise, for ICASE arg.
28859         * lib/regexec.c (re_search_2_stub, re_search_stub):
28860         Likewise, for RET_LEN arg.
28861         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
28862         (set_regs): Likewise, for FL_BACKTRACK arg.
28863         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
28864         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
28865         (calc_eclosure_iter, parse_bracket_exp):
28866         Use bool for internal variables that are booleans.
28867         * lib/regexec.c (re_search_internal, check_matching,
28868         proceed_next_node):
28869         (set_regs, build_sifted_states, sift_states_bkref):
28870         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
28871         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
28872         (find_collation_sequence_value):
28873         Likewise.
28874         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
28875         (re_node_set_compare):
28876         Return bool, not int. All callers changed.
28877         * lib/regexec.c (check_halt_node_context, check_dst_limits):
28878         (build_trtable, check_node_accept): Likewise.
28879         * lib/regex_internal.h: Include stdbool.h.
28880
28881         Fix bugs uncovered when converting to bool.
28882         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
28883         failure instead of charging ahead blindly.
28884         * lib/regex_internal.c (register_state): Likewise.
28885         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
28886         for freeing internal storage.
28887         (group_nodes_into_DFA_states): Use unsigned int, not int, for
28888         bitset pieces used as boolean, to avoid undefined behavior
28889         on hosts that do int overflow checking.
28890
28891 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
28892
28893         * config/srclist.txt: Add glibc bugs 1285-1287.
28894
28895 2005-09-01  Jim Meyering  <jim@meyering.net>
28896
28897         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
28898         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
28899         Require gl_STAT_MACROS, too.
28900
28901 2005-09-01  Bruno Haible  <bruno@clisp.org>
28902
28903         * gnulib-tool (import): In the first-use case, provide defaults.
28904
28905 2005-09-01  Bruno Haible  <bruno@clisp.org>
28906
28907         * gnulib-tool (func_import): Remove the .tmp files.
28908
28909 2005-09-01  Bruno Haible  <bruno@clisp.org>
28910
28911         * gnulib-tool (func_import): Fix handling of symbolic links.
28912
28913 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
28914
28915         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
28916         old glibc regex code mishandles strings longer than 2**31 bytes.
28917         This patch fixes this when the regex code is used in gnulib
28918         (i.e., outside glibc).
28919
28920         This patch should not affect the use of the regex code inside
28921         glibc.  No doubt this problem also needs to be handled for glibc
28922         as well, but the result will be an incompatible change to the
28923         glibc ABI, and the old ABI will have to be supported too.  That
28924         can be the the subject for another patch.
28925
28926         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
28927         governing whether the rest of this patch is active.  By default,
28928         the macro is disabled and the patch has no effect.
28929         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
28930         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
28931         (struct re_pattern_buffer, re_search, re_search_2, re_match):
28932         (re_match_2, re_set_registers): Use the new types.
28933         * lib/regex_internal.h (Idx, re_hashval_t): New types.
28934         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
28935         New macros.
28936         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
28937         (re_string_context_at, bin_tree_t, re_dfastate_t):
28938         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
28939         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
28940         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
28941         (re_string_char_size_at, re_string_wchar_at):
28942         (re_string_elem_size_at):
28943         Use the new types and macros to port to 64-bit hosts.
28944         Use unsigned types for internal values, so that the code
28945         mostly works even for arrays larger than SSIZE_MAX.
28946         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
28947         (search_duplicated_node, calc_eclosure_iter, fetch_number):
28948         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
28949         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
28950         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
28951         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
28952         (calc_inveclosure, parse_dup_op, build_range_exp):
28953         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
28954         (fetch_number, create_token_tree, mark_opt_subexp):
28955         Likewise.
28956         * lib/regex_internal.c (re_string_construct_common,
28957         create_ci_newstate):
28958         (create_cd_newstate, re_string_allocate, re_string_construct):
28959         (re_string_realloc_buffers, build_wcs_upper_buffer):
28960         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
28961         (re_string_reconstruct, re_string_peek_byte_case):
28962         (re_string_fetch_byte_case, re_string_context_at):
28963         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
28964         (re_node_set_init_copy, re_node_set_add_intersect):
28965         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
28966         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
28967         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
28968         (re_acquire_state, re_acquire_state_context, register_state):
28969         Likewise.
28970         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
28971         search_cur_bkref_entry):
28972         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
28973         (re_search_internal, re_search_2_stub, re_search_stub)
28974         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
28975         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
28976         (update_cur_sifted_state, check_dst_limits):
28977         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
28978         (check_subexp_limits, sift_states_bkref, merge_state_array):
28979         (check_subexp_matching_top, get_subexp, get_subexp_sub):
28980         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
28981         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
28982         (expand_bkref_cache, check_node_accept_bytes):
28983         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
28984         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
28985         (acquire_init_state_context, check_halt_node_context):
28986         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
28987         (sift_states_backward, clean_state_log_if_needed):
28988         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
28989         (find_recover_state, transit_state_sb, transit_state_mb):
28990         (transit_state_bkref, build_trtable, match_ctx_clean):
28991         Likewise.
28992         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
28993         to work around an assumption that REG_MISSING is negative.
28994
28995         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
28996         (seek_collating_symbol_entry) [defined _LIBC]:
28997         (lookup_collation_sequence_value) [defined _LIBC]:
28998         (build_range_exp, build_collating_symbol) [defined _LIBC]:
28999         Use prototypes rather than old-style function definitions.
29000         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
29001         (transit_state_sb) [0]:
29002         (find_collation_sequence_value) [defined _LIBC]: Likewise.
29003
29004         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
29005         rm_eo.
29006
29007         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
29008         (optimize_subexps, lower_subexp):
29009         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
29010         since the signed shift might overflow.  Use 1u<<31 instead.
29011         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
29012         Likewise.
29013         * lib/regexec.c (check_dst_limits_calc_pos_1,
29014         check_subexp_matching_top): Likewise.
29015
29016         * lib/regcomp.c (optimize_subexps, lower_subexp):
29017         Use CHAR_BIT rather than 8, for clarity.
29018         * lib/regexec.c (check_dst_limits_calc_pos_1):
29019         (check_subexp_matching_top): Likewise.
29020         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
29021         have to worry about portability issues when shifting it left.
29022         Remove no-longer-needed test for table_size > 0.
29023         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
29024         in a word, as the resulting behavior is undefined.
29025         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
29026         in one case, a <= should have been an <, and in another case the
29027         whole test was missing.
29028         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
29029         the standard name CHAR_BIT.
29030         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
29031         this is not true on one's complement and signed-magnitude hosts.
29032
29033         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
29034         next_last_offset.
29035         (struct re_dfa_t): Remove unused member states_alloc.
29036         * lib/regcomp.c (init_dfa): Don't initialize unused members.
29037
29038 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29039
29040         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
29041         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
29042         and large-file glibc and in 32-bit large-file Solaris.
29043
29044 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29045
29046         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
29047         lengths fit in regoff_t; this isn't true if regoff_t is the same
29048         width as size_t.
29049         * lib/regex.c (re_search_internal): 5th arg is LAST_START
29050         (= START + RANGE) instead of RANGE.  This avoids overflow
29051         problems when regoff_t is the same width as size_t.
29052         All callers changed.
29053         (re_search_2_stub): Check for overflow when adding the
29054         sizes of the two strings.
29055         (re_search_stub): Check for overflow when adding START
29056         to RANGE; if it occurs, substitute the extreme value.
29057
29058 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29059
29060         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
29061
29062 2005-08-31  Jim Meyering  <jim@meyering.net>
29063
29064         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
29065         a pointer-to-const.
29066         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
29067         (register_state): Likewise.
29068         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
29069         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
29070         (group_nodes_into_DFAstates): Likewise.
29071
29072 2005-08-31  Jim Meyering  <jim@meyering.net>
29073
29074         * check-module: Add a FIXME comment.
29075
29076 2005-08-31  Eric Blake  <ebb9@byu.net>
29077
29078         * modules/unistd-safer (Files): Add unistd--.h.
29079         * modules/stdio-safer (Files): Add stdio--.h.
29080
29081 2005-08-31  Derek Price  <derek@ximbiot.com>
29082
29083         * lib/getdelim.c (getdelim): Return EOF on EOF.
29084         Reported by Larry Jones <lawrence.jones@ugs.com>.
29085
29086 2005-08-31  Bruno Haible  <bruno@clisp.org>
29087
29088         Avoid unnecessary diffs in the generated lib/Makefile.am.
29089         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
29090         the generated files.
29091         (func_import): Don't set cmd.
29092
29093 2005-08-31  Bruno Haible  <bruno@clisp.org>
29094
29095         * lib/strstr.c: Include <stddef.h>, for NULL.
29096         * lib/strcasestr.c: Likewise.
29097         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
29098
29099 2005-08-31  Bruno Haible  <bruno@clisp.org>
29100
29101         * gnulib-tool: New option --macro-prefix.
29102         (func_import): Use macro_prefix.
29103         (import): Handle option --macro-prefix.
29104
29105 2005-08-31  Bruno Haible  <bruno@clisp.org>
29106
29107         * gnulib-tool (import): Rename most ac_* variables to cached_*.
29108         Also use new variables cached_lgpl, cached_libtool.
29109
29110 2005-08-31  Bruno Haible  <bruno@clisp.org>
29111
29112         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
29113         always instantiating them.
29114
29115 2005-08-31  Bruno Haible  <bruno@clisp.org>
29116
29117         * gnulib-tool (func_import): Read the previous cached settings
29118         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
29119         earlier added by gnulib but are now dropped. Warn when a gnulib file
29120         overwrites a non-gnulib file.
29121
29122 2005-08-31  Bruno Haible  <bruno@clisp.org>
29123
29124         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
29125         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
29126         projects that don't keep autogenerated files in CVS. Put into
29127         actioncmd only the specified modules, not the transitive closure.
29128
29129 2005-08-31  Bruno Haible  <bruno@clisp.org>
29130
29131         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
29132         Create directories that shall be filled.
29133         (import): Don't look for gl_* macros in configure.ac. Recurse across
29134         all directories containing a gnulib-cache.m4 files, if meaningful.
29135
29136 2005-08-31  Bruno Haible  <bruno@clisp.org>
29137
29138         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
29139         (import): Set seen_libtool when we see gl_LIBTOOL.
29140
29141 2005-08-31  Bruno Haible  <bruno@clisp.org>
29142
29143         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
29144         declaration macro definitions from generated gnulib.m4.
29145
29146 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
29147
29148         * lib/iconvme.h: Add prototype for iconv_alloc.
29149
29150 2005-08-29  Simon Josefsson  <jas@extundo.com>
29151
29152         * lib/iconvme.c: Fix errno.
29153
29154 2005-08-29  Bruno Haible  <bruno@clisp.org>
29155
29156         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
29157         that it works when the directory contains spaces.
29158
29159 2005-08-29  Bruno Haible  <bruno@clisp.org>
29160
29161         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
29162
29163 2005-08-29  Bruno Haible  <bruno@clisp.org>
29164
29165         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
29166         Emit more advice.
29167
29168 2005-08-29  Bruno Haible  <bruno@clisp.org>
29169         and Stepan Kasal  <kasal@ucw.cz>
29170
29171         * check-module: If more parameters are given, check each of them
29172         separately; add more exceptions, as noted by Jim Meyering.
29173         (check_module): New procedure.
29174         (%exempt_header): Now contains all exceptions.
29175
29176 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
29177
29178         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
29179
29180 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
29181
29182         * lib/iconvme.c: Split iconv_string into iconv_alloc.
29183
29184 2005-08-28  Bruno Haible  <bruno@clisp.org>
29185
29186         * m4/gnulib-tool.m4: New file.
29187
29188 2005-08-27  Jim Meyering  <jim@meyering.net>
29189
29190         * modules/unistd-safer (Files): Add pipe-safer.c.
29191         * modules/fcntl-safer (Files): Add creat-safer.c.
29192
29193 2005-08-27  Jim Meyering  <jim@meyering.net>
29194
29195         * m4/stdlib-safer.m4: New file.  From coreutils.
29196         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
29197         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
29198         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
29199         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
29200         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
29201
29202 2005-08-27  Jim Meyering  <jim@meyering.net>
29203
29204         * lib/fopen-safer.c: Merge minor changes from coreutils.
29205         * lib/dup-safer.c: Likewise.
29206         * lib/fd-safer.c: Likewise.
29207
29208         Merge from coreutils.
29209         * lib/stdio--.h: New file.
29210         * lib/stdlib--.h: New file.
29211         * lib/mkstemp-safer.c: New file.
29212
29213         GNU tar needs these.
29214         * lib/pipe-safer.c: New file.
29215         * lib/creat-safer.c: New file.
29216         * lib/fcntl--.h (creat): Define to creat_safer.
29217         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
29218         * lib/unistd--.h (pipe): Define to pipe_safer.
29219         * lib/unistd-safer.h: Declare pipe_safer.
29220
29221 2005-08-26  Simon Josefsson  <jas@extundo.com>
29222
29223         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
29224         Haible <bruno@clisp.org>.
29225
29226 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
29227
29228         * lib/regex_internal.h: Remove all references to
29229         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
29230         or better.
29231         (bitset_not, bitset_merge, bitset_not_merge):
29232         (bitset_mask, re_string_allocate, re_string_construct):
29233         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
29234         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
29235         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
29236         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
29237         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29238         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29239         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
29240         (re_acquire_state_context):
29241         Remove unnecessary forward decls.
29242         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
29243         Put __attribute at function definition,
29244         now that the function decl has been removed.
29245         * lib/regex_internal.c (re_string_peek_byte_case):
29246         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
29247         Likewise.
29248
29249 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
29250
29251         * m4/regex.m4: Add AC_PREREQ(2.50).
29252         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
29253
29254 2005-08-25  Simon Josefsson  <jas@extundo.com>
29255
29256         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
29257         __fsetlocking.
29258
29259 2005-08-25  Simon Josefsson  <jas@extundo.com>
29260
29261         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
29262         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
29263         GLIBC specific code.
29264
29265 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29266
29267         Make regex safe for g++.  This fixes one real bug (an "err"
29268         that should have been "*err").  g++ problem reported by
29269         Sam Steingold.
29270         * lib/regex_internal.h (re_calloc): New macro, consistent with
29271         re_malloc etc.  All callers of calloc changed to use re_calloc.
29272         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
29273         not int.  All callers changed.
29274         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
29275         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
29276         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
29277         (find_recover_state): Change "err" to "*err"; this fixes what
29278         appears to be a real bug.
29279         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
29280         versus int.
29281
29282 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29283
29284         * modules/regex (Depends-on): Add malloc, since the code
29285         assumes that !malloc(0) means failure.
29286
29287 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29288
29289         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
29290
29291         alloca modernization/simplification for regex.
29292         * lib/regex.c: Remove portability cruft for alloca.  This no longer
29293         needs to be at the start of the file, and can be moved into
29294         regex_internal.h and simplified.
29295         * lib/regex_internal.h: Include <alloca.h>.
29296         (__libc_use_alloca) [!defined _LIBC]: New macro.
29297         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
29298         now works outside glibc.
29299
29300 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29301
29302         * config/srclist.txt: Add glibc bugs 1241, 1245.
29303
29304 2005-08-25  Jim Meyering  <jim@meyering.net>
29305
29306         * lib/open-safer.c: Include <config.h>.
29307         Otherwise, we'd lose LARGEFILE support in any file using
29308         e.g. "fcntl--.h"
29309
29310 2005-08-25  Bruno Haible  <bruno@clisp.org>
29311
29312         * m4/minmax.m4: Require autoconf 2.52.
29313         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
29314         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
29315         alternatives of translit over the alphabet.
29316         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
29317
29318 2005-08-24  Simon Josefsson  <jas@extundo.com>
29319
29320         * tests/test-getpass.c: New file.
29321
29322 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29323
29324         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
29325         for GNU regex features.
29326
29327 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29328
29329         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
29330         * lib/regex.h (regerror): Likewise.
29331
29332         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
29333         requires this.  (The code never needed it.)
29334
29335         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
29336         All uses of recently-renamed identifiers changed to use the new,
29337         POSIX-compliant names.  The code will build and run just fine
29338         without these changes, but it's better to eat our own dog food
29339         and use the standard-conforming names.
29340
29341         * lib/regex.h: Fix a multitude of POSIX name space violations.
29342         These changes have an effect only for programs that define
29343         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
29344         do not change anything for programs compiled in the normal way.
29345         Also, there is no effect on the ABI.
29346
29347         (_REGEX_SOURCE): New macro.
29348         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
29349         defined and _GNU_SOURCE is not; this fixes a name space violation.
29350
29351         Rename the following macros to obey POSIX requirements.
29352         The old names are still visible as macros if _REGEX_SOURCE is defined.
29353         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
29354         RE_BACKSLASH_ESCAPE_IN_LISTS.
29355         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
29356         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
29357         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
29358         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
29359         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
29360         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
29361         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
29362         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
29363         (REG_INTERVALS): renamed from RE_INTERVALS.
29364         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
29365         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
29366         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
29367         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
29368         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
29369         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
29370         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
29371         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
29372         RE_UNMATCHED_RIGHT_PAREN_ORD.
29373         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
29374         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
29375         (REG_DEBUG): renamed from RE_DEBUG.
29376         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
29377         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
29378         unusual, since we can't clash with the POSIX REG_ICASE.
29379         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
29380         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
29381         (REG_NO_SUB): renamed from RE_NO_SUB.
29382         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
29383         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
29384         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
29385         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
29386         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
29387         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
29388         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
29389         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
29390         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
29391         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
29392         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
29393         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
29394         RE_SYNTAX_POSIX_MINIMAL_BASIC.
29395         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
29396         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
29397         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
29398         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
29399         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
29400         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
29401         (REG_FIXED): Renamed from REGS_FIXED.
29402         (REG_NREGS): Renamed from RE_NREGS.
29403
29404         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
29405         of other REG_* macros, since POSIX says the user is allowed to
29406         #undef these macros selectively.
29407
29408         (reg_errcode_t): Update comment stating what other tables need
29409         to be consistent.
29410
29411         Rename the following enum values to obey POSIX requirements.
29412         The old names are still visible as macros.
29413         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
29414         is not defined, since GNU is supposed to be a superset of POSIX as
29415         much as possible, and since we want reg_errcode_t to be a signed
29416         type for implementation consistency.
29417         (_REG_NOERROR): Renamed from REG_NOERROR.
29418         (_REG_NOMATCH): Renamed from REG_NOMATCH.
29419         (_REG_BADPAT): Renamed from REG_BADPAT.
29420         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
29421         (_REG_ECTYPE): Renamed from REG_ECTYPE.
29422         (_REG_EESCAPE): Renamed from REG_EESCAPE.
29423         (_REG_ESUBREG): Renamed from REG_ESUBREG.
29424         (_REG_EBRACK): Renamed from REG_EBRACK.
29425         (_REG_EPAREN): Renamed from REG_EPAREN.
29426         (_REG_EBRACE): Renamed from REG_EBRACE.
29427         (_REG_BADBR): Renamed from REG_BADBR.
29428         (_REG_ERANGE): Renamed from REG_ERANGE.
29429         (_REG_ESPACE): Renamed from REG_ESPACE.
29430         (_REG_BADRPT): Renamed from REG_BADRPT.
29431         (_REG_EEND): Renamed from REG_EEND.
29432         (_REG_ESIZE): Renamed from REG_ESIZE.
29433         (_REG_ERPAREN): Renamed from REG_ERPAREN.
29434         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
29435         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
29436         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
29437         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
29438
29439         (_REG_RE_NAME, _REG_RM_NAME): New macros.
29440         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
29441         changed.  But support the old name if the new one is not defined
29442         and if _REGEX_SOURCE.
29443
29444         Change the following member names in struct re_pattern_buffer.
29445         The old names are still supported if !_REGEX_SOURCE.
29446         The new names are always supported, regardless of _REGEX_SOURCE.
29447         (re_buffer): Renamed from buffer.
29448         (re_allocated): Renamed from allocated.
29449         (re_used): Renamed from used.
29450         (re_syntax): Renamed from syntax.
29451         (re_fastmap): Renamed from fastmap.
29452         (re_translate): Renamed from translate.
29453         (re_can_be_null): Renamed from can_be_null.
29454         (re_regs_allocated): Renamed from regs_allocated.
29455         (re_fastmap_accurate): Renamed from fastmap_accurate.
29456         (re_no_sub): Renamed from no_sub.
29457         (re_not_bol): Renamed from not_bol.
29458         (re_not_eol): Renamed from not_eol.
29459         (re_newline_anchor): Renamed from newline_anchor.
29460
29461         Change the following member names in struct re_registers.
29462         The old names are still supported if !_REGEX_SOURCE.
29463         The new names are always supported, regardless of _REGEX_SOURCE.
29464         (rm_num_regs): Renamed from num_regs.
29465         (rm_start): Renamed from start.
29466         (rm_end): Renamed from end.
29467
29468         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
29469         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
29470         Prepend __ to parameter names.
29471
29472         Undo yesterday's changes.
29473
29474 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29475
29476         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
29477         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
29478         lib/regex.c.
29479
29480 2005-08-24  Jim Meyering  <jim@meyering.net>
29481
29482         Sync from coreutils.
29483         * m4/fcntl-safer.m4: New file.
29484
29485         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
29486         and object files for this module.
29487
29488 2005-08-24  Jim Meyering  <jim@meyering.net>
29489
29490         Sync from coreutils.
29491         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
29492
29493 2005-08-24  Jim Meyering  <jim@meyering.net>
29494
29495         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
29496         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
29497
29498 2005-08-24  Jim Meyering  <jim@meyering.net>
29499
29500         * modules/fcntl-safer: New module.
29501         * modules/fts (Depends-on): Add fcntl-safer.
29502         * MODULES.html.sh (File descriptor based Input/Output):
29503         Add fcntl-safer.
29504
29505 2005-08-24  Bruno Haible  <bruno@clisp.org>
29506
29507         Support for unit test modules.
29508         * modules/README: Mention tests modules.
29509         * modules/TEMPLATE-TESTS: New file.
29510         * gnulib-tool: New options --extract-tests-module, --with-tests and
29511         --tests-base (unused for the moment).
29512         (testsbase, inctests): New variables.
29513         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
29514         (func_verify_module): Exclude TEMPLATE-TESTS.
29515         (func_verify_nontests_module, func_verify_tests_module): New functions.
29516         (func_get_dependencies): Add implicit dependency for tests modules.
29517         (func_get_tests_module): New function.
29518         (func_modules_transitive_closure): When --with-tests was specified,
29519         include the unit tests as well, unless explicitly avoided.
29520         (func_emit_lib_Makefile_am): Ignore the tests modules here.
29521         (func_emit_tests_Makefile_am): New function.
29522         (func_create_testdir): When --with-tests was specified, emit a
29523         tests/ directory.
29524         * MODULES.html.sh (Future developments): Update.
29525
29526 2005-08-24  Bruno Haible  <bruno@clisp.org>
29527
29528         * modules/tls-tests: New file.
29529         * tests/test-tls.c: New file, from GNU gettext.
29530
29531 2005-08-24  Bruno Haible  <bruno@clisp.org>
29532
29533         * modules/lock-tests: New file.
29534         * tests/test-lock.c: New file, from GNU gettext.
29535
29536 2005-08-24  Bruno Haible  <bruno@clisp.org>
29537
29538         * lib/lock.h: Add multiple inclusion guard.
29539         * lib/tls.h: Add multiple inclusion guard.
29540
29541 2005-08-24  Bruno Haible  <bruno@clisp.org>
29542
29543         * gnulib-tool: Add support for the --aux-dir option to
29544         --create-testdir, --create-megatestdir, --test, --megatest.
29545         (func_create_testdir, func_create_megatestdir): Optionally emit a
29546         AC_CONFIG_AUX_DIR directive.
29547         (create-testdir, create-megatestdir, test, megatest): Provide a
29548         default value for $auxdir.
29549
29550 2005-08-24  Bruno Haible  <bruno@clisp.org>
29551
29552         * gnulib-tool (import): Use compound statement instead of subshell
29553         where possible.
29554
29555 2005-08-24  Bruno Haible  <bruno@clisp.org>
29556
29557         * gnulib-tool (import): Change --aux-dir default to "build-aux".
29558
29559 2005-08-24  Bruno Haible  <bruno@clisp.org>
29560
29561         * gnulib-tool (func_version): Update.
29562
29563 2005-08-24  Bruno Haible  <bruno@clisp.org>
29564
29565         * gnulib-tool (func_import, func_create_testdir,
29566         func_create_megatestdir): Quote all autoconf macro arguments.
29567
29568 2005-08-24  Bruno Haible  <bruno@clisp.org>
29569
29570         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
29571         option --force, because --force causes the aclocal.m4 of each
29572         subdirectory to be newer than the corresponding config.h.in.
29573
29574 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29575
29576         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
29577         All contents moved to gl_REGEX.
29578         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
29579         assume that it does.
29580
29581 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29582
29583         * lib/regex.h (REG_NOSYS)
29584         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
29585         Define, since POSIX requires it as of 2001.
29586         (_REG_ENOSYS)
29587         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
29588         New private symbol, used to keep the enum signed in all cases.
29589         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
29590         Youngman in
29591         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
29592
29593         * lib/regex_internal.c (re_string_skip_chars, register_state):
29594         (calc_state_hash):
29595         Remove forward decls; no longer needed now that we use prototypes.
29596         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
29597         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
29598         (clean_state_log_if_needed): Likewise.
29599
29600 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29601
29602         * config/srclist.txt: Add glibc bugs 1231-1233.
29603
29604 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29605
29606         Fix problems reported by Sam Steingold in
29607         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
29608         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
29609         assumed that reg_errcode_t is a signed type, which is not
29610         necessarily true if _XOPEN_SOURCE is not defined.
29611         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
29612         since some compilers warn about it otherwise.
29613
29614 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29615
29616         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
29617         (init_word_char, create_initial_state, duplicate_node_closure):
29618         (fetch_token, peek_token_bracket, build_range_exp):
29619         (build_collating_symbol): Remove forward decls; no longer needed
29620         now that we use prototypes.
29621
29622         * lib/regcomp.c:
29623         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
29624         (re_compile_fastmap_iter, regcomp, regerror, regfree):
29625         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
29626         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
29627         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
29628         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
29629         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
29630         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
29631         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
29632         (build_range_exp, build_collating_symbol, parse_bracket_exp):
29633         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
29634         (build_charclass, build_charclass_op, fetch_number, create_tree):
29635         (create_token_tree, mark_opt_subexp, duplicate_tree):
29636         Use prototypes rather than old-style definitions.
29637
29638         * lib/regex_internal.c:
29639         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
29640         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
29641         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
29642         (re_string_reconstruct, re_string_peek_byte_case):
29643         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
29644         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
29645         (re_node_set_init_copy, re_node_set_add_intersect):
29646         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29647         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29648         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
29649         (re_acquire_state, re_acquire_state_context, register_state):
29650         (create_ci_newstate, create_cd_newstate, free_state):
29651         Likewise.
29652         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
29653         re_search_2):
29654         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
29655         (re_search_internal, prune_impossible_nodes):
29656         (acquire_init_state_context, check_matching, static):
29657         (check_halt_node_context, check_halt_state_context, proceed_next_node):
29658         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
29659         (update_regs, sift_states_backward, build_sifted_states):
29660         (clean_state_log_if_needed, merge_state_array):
29661         (update_cur_sifted_state, add_epsilon_src_nodes):
29662         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
29663         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
29664         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
29665         (find_recover_state, check_subexp_matching_top, transit_state_mb):
29666         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
29667         (check_arrival, check_arrival_add_next_nodes):
29668         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
29669         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
29670         (check_node_accept_bytes, check_node_accept, extend_buffers):
29671         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
29672         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
29673         (sift_ctx_init):
29674         Likewise.
29675
29676         * lib/regex_internal.h:
29677         (re_string_allocate, re_string_construct, re_string_reconstruct):
29678         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
29679         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
29680         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
29681         (re_string_context_at, re_string_peek_byte_case):
29682         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
29683         is defined, since we now use prototypes always.
29684
29685         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
29686         C89 or better.  All uses removed.
29687
29688 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29689
29690         * config/srclist.txt: Add glibc bugs 1220-1227.
29691
29692 2005-08-20  Jim Meyering  <jim@meyering.net>
29693
29694         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
29695         of unused local, dfa.
29696
29697 2005-08-20  Bruno Haible  <bruno@clisp.org>
29698
29699         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
29700
29701 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29702
29703         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
29704         (re_node_set_insert_last, re_dfa_add_node):
29705         Rename local variables to avoid GCC shadowing warnings.
29706
29707 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29708
29709         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
29710         [defined lint]: Suppress bogus uninitialized-variable warnings.
29711
29712         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
29713         and let the caller return REG_ESPACE if out of space.  This
29714         removes an uninitialied-variable warning with GCC 4.0.1, and also
29715         avoids taking the address of a local variable.  All callers
29716         changed.
29717
29718 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29719
29720         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
29721         $LIBCSRC/posix/regexec.c.
29722         Add glibc bug 1217 for regcomp.c.
29723
29724 2005-08-19  Jim Meyering  <jim@meyering.net>
29725
29726         * lib/regexec.c (proceed_next_node): Redo local variables to
29727         avoid GCC shadowing warnings.
29728
29729 2005-08-18  Bruno Haible  <bruno@clisp.org>
29730
29731         * lib/strstr.c (strstr): Fix return value in multibyte case.
29732         * lib/strcasestr.c (strcasestr): Likewise.
29733
29734 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
29735
29736         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
29737
29738 2005-08-17  Jim Meyering  <jim@meyering.net>
29739
29740         Make the %s format (seconds since the epoch) work for a negative
29741         number and when used with a zero-padded field width, e.g. %015s.
29742
29743         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
29744         label so that it precedes the code to set `digits'.  Otherwise,
29745         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
29746         print `00-22'.  Now, it prints `-0022', as it should.
29747
29748 2005-08-17  Bruno Haible  <bruno@clisp.org>
29749
29750         * modules/strstr (Files): Add m4/mbrtowc.m4.
29751         (Depends-on): Add mbuiter.
29752
29753 2005-08-17  Bruno Haible  <bruno@clisp.org>
29754
29755         * modules/strcasestr: New file.
29756         * MODULES.html.sh (String handling, based on ANSI C 89): Add
29757         strcasestr.
29758
29759 2005-08-17  Bruno Haible  <bruno@clisp.org>
29760
29761         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
29762
29763 2005-08-17  Bruno Haible  <bruno@clisp.org>
29764
29765         * modules/mbuiter: New file.
29766         * MODULES.html.sh (Extended multibyte and wide character utilities):
29767         Add mbuiter.
29768
29769 2005-08-17  Bruno Haible  <bruno@clisp.org>
29770
29771         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
29772         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
29773
29774 2005-08-17  Bruno Haible  <bruno@clisp.org>
29775
29776         * m4/strcasestr.m4: New file.
29777
29778 2005-08-17  Bruno Haible  <bruno@clisp.org>
29779
29780         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
29781         * lib/strstr.c: Completely rewritten, with multibyte locale support.
29782
29783 2005-08-17  Bruno Haible  <bruno@clisp.org>
29784
29785         * lib/strcasestr.h: New file.
29786         * lib/strcasestr.c: New file.
29787
29788 2005-08-17  Bruno Haible  <bruno@clisp.org>
29789
29790         * lib/strcasecmp.c: Use mbuiter.h.
29791
29792 2005-08-17  Bruno Haible  <bruno@clisp.org>
29793
29794         * lib/mbuiter.h: New file.
29795
29796 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
29797
29798         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
29799         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
29800         and gl_GETOPT are both invoked via different paths (as happens
29801         with GNU tar CVS because it uses both argp and getopt), the former
29802         wins.
29803
29804 2005-08-16  Bruno Haible  <bruno@clisp.org>
29805
29806         * modules/tls: New file.
29807         * MODULES.html.sh (Multithreading): Add tls.
29808
29809 2005-08-16  Bruno Haible  <bruno@clisp.org>
29810
29811         * modules/strnlen1: New file.
29812         * MODULES.html.sh (String handling): Add strnlen1.
29813
29814 2005-08-16  Bruno Haible  <bruno@clisp.org>
29815
29816         * modules/strcase (Files): Add m4/mbrtowc.m4.
29817         (Depends-on): Add strnlen1, mbchar.
29818
29819 2005-08-16  Bruno Haible  <bruno@clisp.org>
29820
29821         * modules/mbiter: New file.
29822         * MODULES.html.sh (Extended multibyte and wide character utilities):
29823         Add mbiter.
29824
29825 2005-08-16  Bruno Haible  <bruno@clisp.org>
29826
29827         * modules/mbfile: New file.
29828         * MODULES.html.sh (Extended multibyte and wide character utilities):
29829         Add mbfile.
29830
29831 2005-08-16  Bruno Haible  <bruno@clisp.org>
29832
29833         * modules/mbchar: New file.
29834         * MODULES.html.sh (Extended multibyte and wide character utilities):
29835         New section.
29836
29837 2005-08-16  Bruno Haible  <bruno@clisp.org>
29838
29839         * m4/tls.m4: New file, from GNU gettext.
29840
29841 2005-08-16  Bruno Haible  <bruno@clisp.org>
29842
29843         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
29844         always.
29845         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
29846
29847 2005-08-16  Bruno Haible  <bruno@clisp.org>
29848
29849         * m4/mbiter.m4: New file.
29850
29851 2005-08-16  Bruno Haible  <bruno@clisp.org>
29852
29853         * m4/mbfile.m4: New file.
29854
29855 2005-08-16  Bruno Haible  <bruno@clisp.org>
29856
29857         * m4/mbchar.m4: New file.
29858
29859 2005-08-16  Bruno Haible  <bruno@clisp.org>
29860
29861         * lib/tls.h: New file, from GNU gettext.
29862         * lib/tls.c: New file, from GNU gettext.
29863
29864 2005-08-16  Bruno Haible  <bruno@clisp.org>
29865
29866         * lib/strnlen1.h: New file.
29867         * lib/strnlen1.c: New file.
29868
29869 2005-08-16  Bruno Haible  <bruno@clisp.org>
29870
29871         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
29872         (mbi_init): Update.
29873         (mbi_avail, mbi_advance): Let the iteration end before the terminating
29874         NUL byte, not after it.
29875
29876 2005-08-16  Bruno Haible  <bruno@clisp.org>
29877
29878         * lib/strcase.h (strcasecmp): Add note in comments.
29879         * lib/strncasecmp.c: Use code from strcasecmp.c.
29880         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
29881         (strcasecmp): Work correctly in multibyte locales.
29882
29883 2005-08-16  Bruno Haible  <bruno@clisp.org>
29884
29885         * lib/mbiter.h: New file.
29886
29887 2005-08-16  Bruno Haible  <bruno@clisp.org>
29888
29889         * lib/mbfile.h: New file.
29890
29891 2005-08-16  Bruno Haible  <bruno@clisp.org>
29892
29893         * lib/mbchar.h: New file.
29894         * lib/mbchar.c: New file.
29895
29896 2005-08-16  Bruno Haible  <bruno@clisp.org>
29897
29898         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
29899         the valid ones. Makes the comparison operations transitive:
29900         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
29901         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
29902
29903 2005-08-15  Simon Josefsson  <jas@extundo.com>
29904
29905         * modules/ssize_t (License): Change to 'unlimited'.
29906
29907         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
29908
29909 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
29910
29911         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
29912         Add comments for each pending glibc patch.
29913
29914 2005-08-15  Bruno Haible  <bruno@clisp.org>
29915
29916         * lib/regex.h (__restrict_arr): Don't define to __restrict if
29917         __cplusplus is defined.
29918
29919 2005-08-14  Jim Meyering  <jim@meyering.net>
29920
29921         Sync from coreutils.
29922
29923         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
29924         Use the hash-table-based cycle-detection code not just when
29925         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
29926         Reported by James Youngman in
29927         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
29928         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
29929         FTS_TIGHT_CYCLE_CHECK.
29930         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
29931         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
29932         once again.
29933         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
29934         * lib/fts.c (fd_safer): Remove decl.
29935         Include fcntl--.h rather than unistd-safer.h
29936         (fts_safe_changedir): Don't call fd_safer; no longer needed
29937         now that we include fcntl--.h.
29938
29939 2005-08-12  Simon Josefsson  <jas@extundo.com>
29940
29941         * modules/getndelim2: Use ssize_t module.
29942         * modules/getnline: Likewise.
29943         * modules/safe-read: Likewise.
29944         * modules/xreadlink: Likewise.
29945
29946         * modules/ssize_t: New file.
29947
29948 2005-08-12  Simon Josefsson  <jas@extundo.com>
29949
29950         * m4/readline.m4: Look for termcap, curses or ncurses if required.
29951
29952 2005-08-12  Simon Josefsson  <jas@extundo.com>
29953
29954         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29955         ssize_t.
29956
29957 2005-08-12  Simon Josefsson  <jas@extundo.com>
29958
29959         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
29960         readline, getdelim and check_version.
29961         (Support for systems lacking ISO C 99: Sizes of integer types):
29962         Add size_max.
29963
29964 2005-08-12  Bruno Haible  <bruno@clisp.org>
29965
29966         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
29967
29968 2005-08-11  Simon Josefsson  <jas@extundo.com>
29969
29970         * modules/readline: New file.
29971
29972         * modules/strnlen (Files): Add strnlen.h.
29973
29974 2005-08-11  Simon Josefsson  <jas@extundo.com>
29975
29976         * m4/readline.m4: New file.
29977
29978 2005-08-11  Simon Josefsson  <jas@extundo.com>
29979
29980         * lib/readline.h, readline.c: New file.
29981
29982 2005-08-11  Simon Josefsson  <jas@extundo.com>
29983
29984         * doc/gnulib.texi (Initial import, Finishing touches): Mention
29985         gl_AVOID.
29986
29987 2005-08-11  Bruno Haible  <bruno@clisp.org>
29988
29989         * lib/strnlen.h (strnlen): Change parameter name to match comment.
29990
29991 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
29992
29993         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
29994
29995 2005-08-10  Simon Josefsson  <jas@extundo.com>
29996
29997         * tests/test-iconvme.c: New file.
29998
29999 2005-08-10  Simon Josefsson  <jas@extundo.com>
30000
30001         * m4/strnlen.m4: New file.
30002
30003         * m4/strndup.m4: Don't check for strnlen declaration, done in
30004         strnlen.m4.
30005
30006 2005-08-10  Simon Josefsson  <jas@extundo.com>
30007
30008         * lib/strndup.c: Use strnlen.h.
30009
30010         * lib/strnlen.h: New file.
30011
30012 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
30013
30014         * README: Typos.
30015
30016 2005-08-02  Simon Josefsson  <jas@extundo.com>
30017
30018         * modules/readline: New file.
30019
30020 2005-08-02  Simon Josefsson  <jas@extundo.com>
30021
30022         * modules/getdelim: New file.
30023
30024         * modules/getline: Rewrite, don't use getndelim2.
30025
30026 2005-08-02  Simon Josefsson  <jas@extundo.com>
30027
30028         * m4/getline.m4: Separate out getdelim stuff into separate module.
30029
30030         * m4/getdelim.m4: New file.
30031
30032 2005-08-02  Simon Josefsson  <jas@extundo.com>
30033
30034         * lib/getline.h, getline.c: Rewrite.
30035
30036         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
30037
30038 2005-07-31  Bruno Haible  <bruno@clisp.org>
30039
30040         * lib/lock.h (gl_lock_initializer): New macro.
30041         (gl_lock_define_initialized): Use it.
30042         (gl_rwlock_initializer): New macro.
30043         (gl_rwlock_define_initialized): Use it.
30044         (gl_recursive_lock_initializer): New macro.
30045         (gl_recursive_lock_define_initialized): Use it.
30046
30047 2005-07-30  Karl Berry  <karl@gnu.org>
30048
30049         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
30050         Report from Ben Pfaff, regarding getopt.
30051
30052 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
30053
30054         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
30055         normal way.
30056         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
30057         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
30058         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
30059         (gl_GETOPT): Use the new macros.  Most of the implementation
30060         is moved to the new macros.  This is for programs like Emacs
30061         that don't want all the functionality of gl_GETOPT.
30062
30063 2005-07-26  Bruno Haible  <bruno@clisp.org>
30064
30065         * m4/lock.m4: Update from GNU gettext.
30066
30067 2005-07-26  Bruno Haible  <bruno@clisp.org>
30068
30069         * lib/lock.h: Update from GNU gettext.
30070         * lib/lock.c: Update from GNU gettext.
30071
30072 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
30073
30074         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
30075         obsolescent AC_TRY_RUN.  Include the default includes files, for
30076         'exit'.
30077
30078 2005-07-24  Bruno Haible  <bruno@clisp.org>
30079
30080         * modules/visibility: New file.
30081         * MODULES.html.sh (Misc): Add visibility.
30082
30083 2005-07-24  Bruno Haible  <bruno@clisp.org>
30084
30085         * m4/visibility.m4: New file.
30086
30087 2005-07-24  Bruno Haible  <bruno@clisp.org>
30088
30089         * doc/visibility.texi: New file.
30090
30091 2005-07-22  Bruno Haible  <bruno@clisp.org>
30092
30093         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
30094         $(ALLOCA_H), redundant through BUILT_SOURCES.
30095         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
30096         redundant through BUILT_SOURCES.
30097         * modules/byteswap (Makefile.am): Remove explicit dependency on
30098         $(BYTESWAP_H), redundant through BUILT_SOURCES.
30099         * modules/fnmatch (Makefile.am): Remove explicit dependency on
30100         $(FNMATCH_H), redundant through BUILT_SOURCES.
30101         * modules/getopt (Makefile.am): Remove explicit dependency on
30102         $(GETOPT_H), redundant through BUILT_SOURCES.
30103         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
30104         redundant through BUILT_SOURCES.
30105         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
30106         redundant through BUILT_SOURCES.
30107         * modules/stdbool (Makefile.am): Remove explicit dependency on
30108         $(STDBOOL_H), redundant through BUILT_SOURCES.
30109         * modules/stdint (Makefile.am): Remove explicit dependency on
30110         $(STDINT_H), redundant through BUILT_SOURCES.
30111         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
30112         Remove explicit dependency on $(SYSEXITS_H).
30113         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
30114
30115 2005-07-18  Simon Josefsson  <jas@extundo.com>
30116
30117         * lib/check-version.c (check_version): Accept identical versions too.
30118
30119 2005-07-18  Bruno Haible  <bruno@clisp.org>
30120
30121         * modules/lock: New file.
30122         * MODULES.html.sh (Multithreading): New section.
30123
30124 2005-07-18  Bruno Haible  <bruno@clisp.org>
30125
30126         * m4/lock.m4: New file, from GNU gettext.
30127
30128 2005-07-18  Bruno Haible  <bruno@clisp.org>
30129
30130         * lib/lock.h: New file, from GNU gettext.
30131         * lib/lock.c: New file, from GNU gettext.
30132
30133 2005-07-18  Bruno Haible  <bruno@clisp.org>
30134
30135         * lib/lock.h (gl_once_t): New type.
30136         (gl_once_define, gl_once): New macros.
30137         * lib/lock.c (fresh_once): New variable.
30138         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
30139         functions.
30140
30141 2005-07-16  Simon Josefsson  <jas@extundo.com>
30142
30143         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
30144         workaround, suggested by Bruno.
30145
30146 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30147
30148         * modules/xalloc (Depends-on): Add xalloc-die.
30149         * modules/xvasprintf (Depends-on): Add xalloc-die.
30150
30151 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30152
30153         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
30154         with a minor change.
30155
30156 2005-07-15  Bruno Haible  <bruno@clisp.org>
30157
30158         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
30159         When using lib/poll.c, define poll as rpl_poll.
30160
30161 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
30162
30163         * modules/argp (Depends-on): Remove unlocked-io.
30164
30165 2005-07-14  Derek Price  <derek@ximbiot.com>
30166
30167         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
30168         for glob symlink bug.
30169
30170 2005-07-14  Bruno Haible  <bruno@clisp.org>
30171
30172         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
30173         Instead, test for *_unlocked function declarations directly.
30174
30175 2005-07-11  Simon Josefsson  <jas@extundo.com>
30176
30177         * modules/size_max: New file.
30178
30179         * modules/xsize: Depend on size_max module for size_max.m4.
30180
30181 2005-07-11  Simon Josefsson  <jas@extundo.com>
30182
30183         * lib/size_max.h: New file.
30184
30185 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
30186
30187         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
30188         copyright symbol and the year.
30189         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
30190         (version_etc_va): Use parameterized copyright notice.
30191         Reword to conform to the current GNU coding standards.
30192
30193 2005-07-11  Karl Berry  <karl@gnu.org>
30194
30195         * doc/gnulib.texi (Quoting): new node.
30196         (Initial import): more info, from Patrice.
30197
30198 2005-07-11  Bruno Haible  <bruno@clisp.org>
30199
30200         * gnulib-tool (func_usage): Document option --avoid.
30201         (Command line options): Handle --avoid.
30202         (func_acceptable): New function.
30203         (func_modules_transitive_closure): Use it.
30204
30205 2005-07-11  Bruno Haible  <bruno@clisp.org>
30206
30207         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
30208         Reported by Jim Meyering.
30209
30210 2005-07-10  Bruno Haible  <bruno@clisp.org>
30211
30212         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
30213         Needed when size_t is smaller than 'unsigned int'.
30214         Reported by Paul Eggert.
30215
30216 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30217
30218         * modules/argp (Depends-on): Add unlocked-io
30219
30220 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30221
30222         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
30223         block of defines.
30224
30225 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
30226
30227         * config/srclist.txt: Comment out regcomp.c, since we have a porting
30228         fix now.
30229
30230 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
30231         and Paul Eggert  <eggert@cs.ucla.edu>
30232
30233         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
30234         in wint_t, not wchar_t.  Remove now-unnecessary cast.
30235
30236 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30237
30238         * modules/regex (Files): Add lib/regex_internal.c,
30239         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
30240         (Depends-on): Add extensions.
30241         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
30242
30243 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30244
30245         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
30246         pathconf.
30247         * m4/same.m4 (gl_SAME): Likewise.
30248         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
30249
30250         * m4/regex.m4: Adjust to new libc regex implementation.
30251         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
30252         all the .c and .h parts of (the new) regex.
30253         Quote the m4 stuff better.
30254         Check for RE_ICASE bug of old gnulib.
30255         Check for REG_STARTEND of recent libc.
30256         Rename local variables from jm_* to gl_*.
30257         Quote operand of "test -f".
30258         Say "recent enough" version of libc, not "version 2".
30259         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
30260         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
30261         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
30262         Remove check for btowc, isascii.
30263         Require AM_LANGINFO_CODESET.
30264
30265 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30266
30267         * lib/regex.c, regex.h: Sync from libc.
30268         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
30269         * lib/regexec.c:
30270         New files, synced from libc, except that regex_internal.h
30271         currently has a small porting fix.
30272
30273 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30274
30275         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
30276         regex_internal.c, regexec.c.
30277         Add regex_internal.h too, but as a comment, since the libc version
30278         is currently broken in gnulib mode.
30279
30280 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
30281
30282         Support programs like Emacs that use gnulib but not gettext.
30283         * MODULES.html.sh (Internationalization functions): Add gettext-h.
30284         * modules/gettext-h: New file.
30285         * modules/gettext (Files): Remove lib/gettext.h.
30286         (Depends-on): Add gettext-h.
30287         (Makefile.am): Remove lib_SOURCES.
30288         * modules/argmatch, modules/c-stack, modules/closeout:
30289         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
30290         * modules/execute, modules/file-type, modules/getaddrinfo:
30291         * modules/getopt, modules/human, modules/javacomp:
30292         * modules/javaexec, modules/mkdir-p, modules/obstack:
30293         * modules/openat, modules/pagealign_alloc, modules/pipe:
30294         * modules/quotearg, modules/regex, modules/rpmatch:
30295         * modules/unicodeio, modules/userspec, modules/version-etc:
30296         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
30297         * modules/xsetenv:
30298         Depend on gettext-h, not gettext.
30299
30300 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
30301
30302         * gnulib-tool (func_import): Add support for 'public domain' license.
30303         * modules/alloca, modules/atexit, modules/memmove:
30304         Now public domain, not GPL.
30305         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
30306         * modules/realloc, modules/strerror, modules/strtod:
30307         Now LGPL, not GPL.
30308
30309 2005-07-05  Bruno Haible  <bruno@clisp.org>
30310
30311         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
30312         autoconf CVS. Needed for mingw.
30313
30314 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30315
30316         Remove the dependency of the strftime module on the tzset module.
30317         * modules/strftime (Depends-on): Remove dependency on tzset.
30318
30319 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30320
30321         Remove the dependency of the strftime module on the tzset module.
30322         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
30323         gl_FUNC_TZSET_CLOBBER.
30324
30325 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30326
30327         Remove the dependency of the strftime module on the tzset module.
30328         * lib/strftime.c (my_strftime)
30329         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
30330         Copy the input structure, to work around some of the bug with
30331         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
30332         Solaris releases, you should also use the tzset module, but we won't
30333         require it as a dependency any more since we don't want LGPLed code
30334         to depend on GPLed code.
30335
30336 2005-07-02  Jim Meyering  <jim@meyering.net>
30337
30338         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
30339         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
30340         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
30341         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
30342
30343 2005-07-02  Jim Meyering  <jim@meyering.net>
30344
30345         * lib/backupfile.c (backup_args): Change a `0' to NULL.
30346
30347 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
30348
30349         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
30350         declares only 'struct timespec;' (!).
30351
30352 2005-07-01  Jim Meyering  <jim@meyering.net>
30353
30354         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
30355         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
30356         * lib/save-cwd.c, tempname.c:
30357         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
30358         and don't include <sys/file.h>).
30359
30360 2005-06-29  Jim Meyering  <jim@meyering.net>
30361
30362         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
30363         type name.  Use the variable name instead.
30364         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
30365         Likewise.
30366
30367 2005-06-28  Simon Josefsson  <jas@extundo.com>
30368
30369         * modules/check-version (Files): Add check-version.m4.
30370
30371 2005-06-28  Simon Josefsson  <jas@extundo.com>
30372
30373         * m4/check-version.m4: New file, suggested by Jim Meyering
30374         <jim@meyering.net>.
30375
30376 2005-06-28  Simon Josefsson  <jas@extundo.com>
30377
30378         * lib/check-version.h, lib/check-version.c: New files.
30379
30380 2005-06-28  Simon Josefsson  <jas@extundo.com>
30381
30382         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
30383         collision with global variable.  Better indentation.  Don't
30384         increment buffer pointer beyond buffer end.  Based on comments
30385         from Paul Eggert <eggert@cs.ucla.edu>.
30386
30387         * lib/base64.h: Indent.
30388
30389 2005-06-28  Simon Josefsson  <jas@extundo.com>
30390
30391         * doc/gnulib.texi (Library version handling): New section.
30392
30393 2005-06-28  Jim Meyering  <jim@meyering.net>
30394
30395         * check-module (find_included_lib_files): Hard-code another
30396         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
30397         but modules/fts-lgpl (correctly) does not list those files.
30398
30399         * modules/canonicalize (Files): Add lib/pathmax.h.
30400
30401 2005-06-25  Simon Josefsson  <jas@extundo.com>
30402
30403         * modules/check-version: New file.
30404
30405 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
30406
30407         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
30408         initializer of struct addrinfo, as an indication that we don't
30409         care how many members the structure has.
30410
30411 2005-06-24  Derek Price  <derek@ximbiot.com>
30412         and Bruno Haible  <bruno@clisp.org>
30413
30414         Remove stat module & update lstat.
30415         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
30416         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30417         * m4/stat.m4: Remove this file.
30418
30419 2005-06-24  Derek Price  <derek@ximbiot.com>
30420         and Bruno Haible  <bruno@clisp.org>
30421
30422         Remove stat module & update lstat.
30423         * lib/stat.c: Remove this file...
30424         (slash_aware_lstat): ...moving this content and its support...
30425         * lib/lstat.c (rpl_lstat): ...into here.
30426         * lib/lstat.h: New file.
30427
30428 2005-06-24  Derek Price  <derek@ximbiot.com>
30429         and Bruno Haible  <bruno@clisp.org>
30430
30431         Remove stat module & update lstat.
30432         * config/srclist.txt (libc sources): Remove stat.
30433
30434 2005-06-24  Derek Price  <derek@ximbiot.com>
30435         and Bruno Haible  <bruno@clisp.org>
30436
30437         Remove stat module & update lstat.
30438         * MODULES.html.sh (stat): Remove.
30439         * MODULES.html: Regenerated.
30440         * modules/lstat (Description): Correct function name.
30441         (Files): Add "lstat.h".
30442         (Depends-on): Remove stat, add xalloc, stat-macros.
30443         * modules/stat: Remove this file.
30444         (Include): Add "lstat.h", remove <sys/stat.h>.
30445
30446 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
30447
30448         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
30449         (ranged_convert): Don't save conversion in a temporary struct.
30450         This causes a warning with GCC 4.0.0, and anyway in the typical
30451         case it's not worth the extra 100 bytes or so of code.
30452         (ranged_convert, __mktime_internal): When calling a function via a
30453         pointer P, use P () rather than (*P) (), as we now assume C89 or
30454         better.
30455
30456 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30457
30458         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
30459         "who -r" failed to give output.  Problem reported by Tim Waugh.
30460
30461         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
30462         (xcalloc): Use it to avoid needless tests.
30463         Problem reported by Jim Meyering.
30464
30465 2005-06-20  Derek Price  <derek@ximbiot.com>
30466
30467         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
30468         unnecessary for Autoconfs > 2.59c.
30469
30470 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30471
30472         * lib/argp.h (__option_is_short): Check upper limit of
30473         __key. Isprint() requires its argument to have the value
30474         of an unsigned char or EOF.
30475
30476 2005-06-16  Jim Meyering  <jim@meyering.net>
30477
30478         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
30479         when either N or S is zero.
30480
30481 2005-06-16  Derek Price  <derek@ximbiot.com>
30482
30483         * m4/bison.m4: Declare YACC & YFLAGS precious.
30484
30485 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
30486
30487         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
30488         multibyte string or pattern, fall back on unibyte matching.
30489         Problem reported by James Youngman.
30490
30491 2005-06-08  Bruno Haible  <bruno@clisp.org>
30492
30493         * modules/csharpcomp: New file.
30494         * MODULES.html.sh (C#): Add csharpcomp.
30495
30496 2005-06-08  Bruno Haible  <bruno@clisp.org>
30497
30498         * m4/csharpcomp.m4: New file, from GNU gettext.
30499
30500 2005-06-08  Bruno Haible  <bruno@clisp.org>
30501
30502         * lib/csharpcomp.h: New file, from GNU gettext.
30503         * lib/csharpcomp.c: New file, from GNU gettext.
30504         * lib/csharpcomp.sh.in: New file, from GNU gettext.
30505
30506 2005-06-08  Bruno Haible  <bruno@clisp.org>
30507
30508         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
30509         warning on mingw.
30510
30511 2005-06-07  Derek Price  <derek@ximbiot.com>
30512
30513         Sync from CVS.
30514         * lib/glob_.h: Indent nested #ifdef.
30515
30516 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30517
30518         Sync from coreutils.
30519         Use "file name" when talking about file names, instead of "filename"
30520         or "path", as per the GNU coding standards.
30521         * lib/mkdir-p.c: Renamed from makepath.c.
30522         (make_dir_parents): Renamed from make_path.  All callers changed.
30523         * lib/mkdir-p.h: Likewise.  All includers changed.
30524         * lib/filenamecat.c: Renamed from path-concat.c.
30525         (file_name_concat): Renamed from path_concat.  All callers changed.
30526         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
30527         * lib/filenamecat.h: Likewise.  All includers changed.
30528         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
30529         in comments or local variable names.
30530         * lib/basename.c: Likewise.
30531         * lib/canonicalize.c, canonicalize.h: Likewise.
30532         * lib/dirname.c, dirname.h: Likewise.
30533         * lib/euidaccess.c: Likewise.
30534         * lib/exclude.c: Likewise
30535         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
30536         * lib/fsusage.c, fsuage.h: Likewise.
30537         * lib/fts.c, fts_.h: Likewise.
30538         * lib/getcwd.c: Likewise.
30539         * lib/getloadavg.c: Likewise.
30540         * lib/mkstemp.c: Likewise.
30541         * lib/mountlist.c, mountlist.h: Likewise.
30542         * lib/openat.c, openat.h: Likewise.
30543         * lib/readlink-stub.c: Likewise.
30544         * lib/readutmp.c, readutmp.h: Likewise.
30545         * lib/rename.c: Likewise.
30546         * lib/rmdir.c: Likewise.
30547         * lib/same.c: Likewise.
30548         * lib/savedir.c: Likewise.
30549         * lib/stripslash.c: Likewise.
30550         * lib/tempname.c: Likewise.
30551         * lib/xreadlink.c: Likewise.
30552         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
30553         All uses changed.
30554         * lib/exclude.h: Likewise.
30555
30556         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
30557         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30558         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
30559         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30560         * lib/pathmax.h: Include <limits.h> unconditionally, since other
30561         files have been getting away with it for years (MORE/BSD 4.3
30562         is extinct now).
30563         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
30564         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30565
30566         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
30567         Define to 256, not 255, as per modern POSIX.
30568
30569 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30570
30571         Sync from coreutils.
30572         Use "file name" when talking about file names, instead of "filename"
30573         or "path", as per the GNU coding standards.
30574         * MODULES.html.sh: mkdir-p renamed from makepath.
30575         filenamecat renamed from path-concat.
30576         * modules/filenamecat: Renamed from modules/path-concat.
30577         (Files): filenamecat.h and filenamecat.c renamed from
30578         path-concat.h and path-concat.c.
30579         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
30580         (Include): filenamecat.h, not path-concat.h.
30581         * modules/mkdir-p: Renamed from modules/makepath.
30582         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
30583         makepath.c.
30584         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
30585         (Include): mkdir-p.h, not makepath.h.
30586
30587 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30588
30589         Sync from coreutils.
30590         * m4/mkdir-p.m4: Renamed from makepath.m4.
30591         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
30592         Rename files from makepath.c to mkdir-p.c, and from
30593         makepath.h to mkdir-p.h.
30594         * m4/filenamecat.m4: Renamed from path-concat.m4.
30595         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
30596         Rename files from path-concat.c to filenamecat.c,
30597         and from path-concat.h to filenamecat.h.
30598         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
30599         "file name" in local variables or comments.
30600         * m4/rename.m4: Likewise.
30601
30602 2005-06-01  Bruno Haible  <bruno@clisp.org>
30603
30604         * modules/csharpexec: New file.
30605         * MODULES.html.sh (C#): New section.
30606
30607 2005-06-01  Bruno Haible  <bruno@clisp.org>
30608
30609         * m4/csharp.m4: New file, from GNU gettext.
30610         * m4/csharpexec.m4: New file, from GNU gettext.
30611
30612 2005-06-01  Bruno Haible  <bruno@clisp.org>
30613
30614         * lib/csharpexec.h: New file, from GNU gettext.
30615         * lib/csharpexec.c: New file, from GNU gettext.
30616         * lib/csharpexec.sh.in: New file, from GNU gettext.
30617
30618 2005-05-31  Derek Price  <derek@ximbiot.com>
30619             Paul Eggert  <eggert@cs.ucla.edu>
30620
30621         Sync from cvs.
30622         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30623
30624 2005-05-31  Derek Price  <derek@ximbiot.com>
30625             Paul Eggert  <eggert@cs.ucla.edu>
30626
30627         Sync from cvs.
30628         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30629
30630 2005-05-29  Derek Price  <derek@ximbiot.com>
30631
30632         * config/srclist.txt (glob_.h, glob.c): Add these files.
30633
30634 2005-05-29  Derek Price  <derek@ximbiot.com>
30635
30636         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
30637         * modules/glob: New file.
30638         * modules/getlogin_r: Add link to POSIX spec in description.
30639
30640 2005-05-29  Derek Price  <derek@ximbiot.com>
30641             Paul Eggert  <eggert@cs.ucla.edu>
30642
30643         * m4/glob.m4: New file.
30644
30645 2005-05-29  Derek Price  <derek@ximbiot.com>
30646             Paul Eggert  <eggert@cs.ucla.edu>
30647
30648         * lib/glob_.h, lib/glob.c: New files.
30649
30650 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30651
30652         * modules/fts (Files): Remove m4/inttypes-pri.m4.
30653         * modules/fts-lgpl (Depends-on): Remove gettext.
30654
30655 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30656
30657         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
30658         and don't require gt_INTTYPES_PRI.
30659
30660 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30661
30662         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
30663
30664         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
30665         the configuration hassle isn't worth it.
30666         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
30667         (LONGEST_MODIFIER, PRIuMAX): Remove.
30668
30669 2005-05-27  Bruno Haible  <bruno@clisp.org>
30670
30671         * lib/getlogin_r.h: Remove second include of <stddef.h>.
30672
30673 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
30674
30675         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
30676         _POSIX_PTHREAD_SEMANTICS for Solaris.
30677
30678 2005-05-25  Derek Price  <derek@ximbiot.com>
30679
30680         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
30681
30682 2005-05-25  Derek Price  <derek@ximbiot.com>
30683             Paul Eggert  <eggert@cs.ucla.edu>
30684
30685         * modules/getlogin_r, m4/getlogin_r.m4: New files.
30686         * lib/getlogin_r.c, getlogin_r.h: New files.
30687
30688 2005-05-25  Bruno Haible  <bruno@clisp.org>
30689             Derek Price  <derek@ximbiot.com>
30690
30691         * lib/getlogin_r.h: Simplify API documentation.
30692
30693 2005-05-23  Derek Price  <derek@ximbiot.com>
30694
30695         * modules/minmax (Files): Add m4/minmax.m4.
30696         (configure.ac): Add gl_MINMAX.
30697
30698 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
30699
30700         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
30701         so that unistd-safer.h (GPL'ed code) need not be included.
30702
30703 2005-05-22  Bruno Haible  <bruno@clisp.org>
30704
30705         * m4/minmax.m4: New file.
30706         Based on a patch by Derek Price <derek@ximbiot.com>.
30707
30708 2005-05-22  Bruno Haible  <bruno@clisp.org>
30709
30710         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
30711         (INT64_MIN): Fix definition.
30712         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
30713
30714         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
30715         NEED_SIGNED_INT_TYPES.
30716
30717         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
30718         HAVE_SYSTEM_INTTYPES.
30719
30720 2005-05-22  Bruno Haible  <bruno@clisp.org>
30721
30722         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
30723         Also include <sys/param.h> if it defines MIN, MAX.
30724         Based on a patch by Derek Price <derek@ximbiot.com>.
30725
30726 2005-05-21  Jim Meyering  <jim@meyering.net>
30727
30728         * modules/fts (Files): Add m4/inttypes-pri.m4.
30729         (Depends-on): Add lstat and remove gettext.  Alphabetize.
30730
30731 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30732
30733         New fts module.
30734         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
30735         (setup_dir, free_dir): New functions.
30736         (enter_dir, leave_dir): Define trivial
30737         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
30738         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
30739         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
30740         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
30741         Move to fts-cycle.c.
30742         (fts_open): Use setup_dir.
30743         (fts_close): Use free_dir.
30744         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
30745         This adds a label and some gotos, but the alternatives were messier.
30746         Check for memory allocation failure when entering a dir.
30747         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
30748         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
30749         (FTS): New member fts_cycle, that is a union that contains the
30750         old active_dir_ht and cycle_state.  All uses changed to mention
30751         fts_cycle.ht and fts_cycle.state.
30752         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
30753         fts.c, with the following changes:
30754         (setup_dir, free_dir): New functions.
30755         (enter_dir): Now returns bool.  Return true if successful, false
30756         if memory exhausted.  All callers changed.
30757         Do not bother partly cleaning up on
30758         memory allocation failure; that is free_dir's job.
30759         However, free ad if hash_insert fails, to avoid memory leak.
30760         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
30761         fts->fts_options to see which union member to use.
30762
30763 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30764
30765         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
30766         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
30767
30768 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30769
30770         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
30771
30772 2005-05-20  Jim Meyering  <jim@meyering.net>
30773
30774         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
30775         Now a macro, to pacify GCC.
30776
30777 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30778
30779         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
30780         of -1.
30781
30782 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30783
30784         * lib/chown.c (rpl_chown): Return -1 on failure.
30785
30786 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
30787
30788         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
30789         Don't check for stddef.h.
30790         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
30791         don't use its results.
30792         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
30793         since we include them unconditionally.  Don't require
30794         AM_STDBOOL_H, since stdbool is a prerequisite.
30795         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
30796         since we assume C89 or better.
30797         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
30798         as we don't use their results.
30799         Don't check for fchdir, memmove, memset, strrchr, as we use
30800         them unconditionally.
30801         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
30802         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
30803
30804 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
30805
30806         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
30807         Include <stddef.h> unconditionally, since we assume C89 now.
30808         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
30809         * lib/fts.c: Include fts_.h first, to check interface.
30810         Do not include intprops.h; no longer needed.
30811         Include cycle-check.h and hash.h, since fts_.h no longer does.
30812         Remove unnecessary casts of closedir to void.
30813         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
30814         decide whether to decrement nlinks.
30815         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
30816         (FTS): Use struct hash_table * instead of Hash_table, so that
30817         we no longer need to include hash.h here.
30818
30819 2005-05-18  Jim Meyering  <jim@meyering.net>
30820
30821         * modules/dirfd (License): Change to LGPL.  Most of the code
30822         is already in the public domain.
30823
30824 2005-05-18  Jim Meyering  <jim@meyering.net>
30825
30826         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
30827         Reported by Yoann Vandoorselaere.
30828
30829 2005-05-17  Jim Meyering  <jim@meyering.net>
30830
30831         * m4/fts.m4: New file, from coreutils.
30832
30833 2005-05-17  Jim Meyering  <jim@meyering.net>
30834
30835         * lib/fts.c, lib/fts_.h: New files, from coreutils.
30836
30837 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30838
30839         Sync from coreutils.
30840         * m4/unlinkdir.m4: New file.
30841
30842 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30843
30844         Sync from coreutils.
30845         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
30846         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
30847         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
30848         White space changes only.
30849         * lib/makepath.c (make_path): Port to hosts where leading "//" is
30850         special.
30851         * lib/yesno.c: Include getline.h, not ctype.h.
30852         (yesno): Don't remove leading white space; POSIX doesn't allow it.
30853         Use getline to remove arbitrary restriction on response length.
30854
30855 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30856
30857         * config/srclist-update: Spell out "Street" in FSF postal
30858         mail address; this is the style the FSF seems to prefer.
30859
30860         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
30861         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
30862         this updates FSF postal mail address.
30863
30864         Sync from coreutils.
30865         * modules/unlinkdir: New file.
30866         * modules/yesno (Depends-on): Add getline.
30867         * MODULES.html.sh (File system functions): Add unlinkdir.
30868
30869 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30870
30871         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
30872         lib/strsep.h:
30873         Change the initial comment to refer to GPL, not LGPL.
30874         gnulib-tool will change it to LGPL as needed.
30875
30876         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
30877         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
30878         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
30879         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
30880         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
30881         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
30882         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
30883         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
30884         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
30885         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
30886         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
30887         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
30888         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
30889         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
30890         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
30891         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
30892         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
30893         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
30894         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
30895         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
30896         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
30897         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
30898         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
30899         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
30900         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
30901         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
30902         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
30903         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
30904         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
30905         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
30906         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
30907         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
30908         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
30909         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
30910         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
30911         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
30912         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
30913         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
30914         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
30915         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
30916         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
30917         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
30918         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
30919         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
30920         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
30921         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
30922         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
30923         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
30924         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
30925         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
30926         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
30927         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
30928         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
30929         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
30930         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
30931         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
30932         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
30933         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
30934         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
30935         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
30936         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
30937         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
30938         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
30939         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
30940         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
30941         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
30942         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
30943         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
30944         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
30945         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
30946         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
30947         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
30948         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
30949         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
30950         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
30951         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
30952         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
30953         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
30954         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
30955         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
30956         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
30957         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
30958         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
30959         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
30960         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
30961         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
30962         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
30963         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
30964         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
30965         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
30966         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
30967         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
30968         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
30969         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
30970         lib/yesno.c, lib/yesno.h:
30971         Update FSF postal mail address.
30972
30973 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30974
30975         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
30976         tests/test-memmem.c, tests/test-stpncpy.c:
30977         Update FSF postal mail address.
30978
30979 2005-05-13  Bruno Haible  <bruno@clisp.org>
30980
30981         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
30982         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
30983         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
30984         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
30985         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
30986         Add support for 64-bit integers in the MSVC compiler.
30987
30988 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30989
30990         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
30991
30992 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
30993
30994         * gnulib-tool (func_import): Sort and uniquify recommended includes.
30995
30996 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
30997
30998         * doc/getdate.texi (General date syntax): Don't say that date
30999         date --iso-8601=ns generates acceptable dates; it doesn't yet.
31000         Problem reported by Nic Ferrier.
31001
31002 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31003
31004         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
31005         specified in ai_socktype. Fix invalid ai_protocol
31006         check. ai_protocol is usually set to 0 or depending on
31007         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
31008         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
31009         ai_socktype / ai_protocol in the returned addrinfo structure.
31010
31011 2005-05-10  Simon Josefsson  <jas@extundo.com>
31012
31013         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
31014         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
31015
31016 2005-05-10  Karl Berry  <karl@gnu.org>
31017
31018         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
31019         (from http://www.gnu.org/licenses).
31020         * doc/COPYING.LIB: also rename to COPYING.LESSER.
31021         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
31022         fdl.texi suffices.
31023
31024 2005-05-10  Karl Berry  <karl@gnu.org>
31025
31026         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
31027         (COPYING.DOC): remove.
31028
31029         * config/srclist-update: new FSF address.
31030
31031 2005-05-10  Derek Price  <derek@ximbiot.com>
31032
31033         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
31034         possible.
31035
31036 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31037             Bruno Haible  <bruno@clisp.org>
31038
31039         * modules/inet_ntop: New file.
31040         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31041         inet_ntop.
31042
31043 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31044             Bruno Haible  <bruno@clisp.org>
31045
31046         * m4/inet_ntop.m4: New file.
31047
31048 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31049             Bruno Haible  <bruno@clisp.org>
31050
31051         * lib/inet_ntop.h: New file.
31052         * lib/inet_ntop.c: New file, from glibc with modifications.
31053
31054 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
31055
31056         * modules/time_r (License): Change to LGPL.
31057         * modules/extensions (License): Change to LGPL.  Actually,
31058         the license is more permissive than that, but currently gnulib-tool
31059         doesn't know how to handle more-permissive licenses.
31060
31061         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
31062         Problem reported by Dave Love.
31063
31064 2005-05-08  Jim Meyering  <jim@meyering.net>
31065
31066         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
31067         blank.
31068
31069 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
31070
31071         * modules/argmatch (Depends-on): Add stdbool.
31072         * modules/backupfile (Depends-on): Likewise.
31073         * modules/chdir-long (Depends-on): Likewise.
31074         * modules/closeout (Depends-on): Likewise.
31075         * modules/cycle-check (Depends-on): Likewise.
31076         * modules/dirname (Depends-on): Likewise.
31077         * modules/fnmatch (Depends-on): Likewise.
31078         * modules/fsusage (Depends-on): Likewise.
31079         * modules/fwriteerror (Depends-on): Likewise.
31080         * modules/getcwd (Depends-on): Likewise.
31081         * modules/getloadavg (Depends-on): Likewise.
31082         * modules/hard-locale (Depends-on): Likewise.
31083         * modules/makepath (Depends-on): Likewise.
31084         * modules/mountlist (Depends-on): Likewise.
31085         * modules/nanosleep (Depends-on): Likewise.
31086         * modules/posixtm (Depends-on): Likewise.
31087         * modules/quotearg (Depends-on): Likewise.
31088         * modules/readtokens (Depends-on): Likewise.
31089         * modules/readtokens0 (Depends-on): Likewise.
31090         * modules/readutmp (Depends-on): Likewise.
31091         * modules/save-cwd (Depends-on): Likewise.
31092         * modules/strftime (Depends-on): Likewise.
31093         * modules/userspec (Depends-on): Likewise.
31094         * modules/utimecmp (Depends-on): Likewise.
31095         * modules/xgetcwd (Depends-on): Likewise.
31096         * modules/xnanosleep (Depends-on): Likewise.
31097         * modules/xstrtod (Depends-on): Likewise.
31098         * modules/yesno (Depends-on): Likewise.
31099
31100 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
31101
31102         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
31103         needless checks.
31104
31105 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31106
31107         Merge from coreutils.  Among other things,
31108         add bulletproofing for cases where stdin, stdout, or stderr are closed.
31109         * lib/fd-safer.c: New file.
31110         * lib/fcntl-safer.h, open-safer.c: Remove.
31111         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
31112         * lib/dup-safer.c: Include unistd-safer.h first.
31113         Don't include errno.h.
31114         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
31115         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
31116         * lib/file-type.c: Rely on file-type.h change.
31117         * lib/getloadavg.c: Include unistd-safer.h.
31118         (getloadavg): Use safer open.
31119         * lib/getusershell.c: Include "stdio-safer.h".
31120         (getusershell): Use safer fopen.
31121         * lib/long-options.c (long_options): Use NULL rather than 0.
31122         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
31123         'free'.
31124         * lib/modechange.c: Likewise.
31125         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
31126         (MODE_DONE): New constant.
31127         (struct mode_change): Remove 'next' member.
31128         (make_node_op_equals): New function; like the old one of the
31129         same name, except it allocates an array.
31130         (mode_compile, mode_create_from_ref): Use it.
31131         (mode_compile): Allocate result as an array, not a linked list.
31132         Parse octal string ourself, so that we catch mistakes like "+0".
31133         (mode_adjust): Arg is an array, not a linked list.
31134         * lib/modechange.c: Include stat-macros.h, xalloc.h.
31135         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
31136         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
31137         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
31138         Remove.  This is now stat-macros.h's job.
31139         (talloc): Remove.  All callers replaced by xalloc, so that
31140         our invokers don't have to worry about reporting memory failures.
31141         (make_node_op_equals): Remove.
31142         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31143         New constants.
31144         (struct mode_change): Moved here from modechange.h.
31145         (mode_append_entry): Remove.
31146         (mode_compile): Remove MASKED_OPS arg, since it encouraged
31147         apps to have incorrect behavior.  Use simpler algorithm for head
31148         and tail.  Don't futz with umask; that's now the job of mode_adjust.
31149         Detect more invalid usages rather than having somewhat-random behavior.
31150         Don't insert an "a=" action, as that leads to incorrect behavior.
31151         (mode_compile, mode_create_from_ref): Return NULL on error instead
31152         of an enum, since now there's only one way to have an error.  All
31153         callers changed.
31154         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
31155         at the correct time.  Simplify calculation of "+u" and its ilk.
31156         Don't mishandle "+X".
31157         (mode_free): Remove "register" and localize decls.
31158         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31159         (struct mode_change): Move to modechange.c; callers don't
31160         need to see this stuff.
31161         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
31162         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
31163         (mode_change, mode_adjust): Reflect the new signatures noted above.
31164         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
31165         that might redefine system include files.
31166         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
31167         (my_usleep): Use NULL rather than (void *) 0.
31168         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
31169         Use siginterrupt to specify that system calls should be interrupted.
31170         (rpl_nanosleep): Move initialization of suspended closer to call of
31171         my_usleep.
31172         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
31173         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
31174         (desirable_utmp_entry): New function.
31175         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
31176         using x2nrealloc, to simplify logic.
31177         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
31178         size calculation.  Do not assume utmp file is a regular file.
31179         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
31180         (READ_UTMP_CHECK_PIDS): New constant.
31181         * lib/save-cwd.c: Include unistd-safer.h.
31182         (save_cwd): Use fd_safer.
31183         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
31184         [!_LIBC] Include "stat-macros.h" instead.
31185         * lib/unistd-safer.h (fd_safer): New decl.
31186
31187 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31188
31189         * modules/getloadavg (Depends-on): Add unistd-safer.
31190         * modules/getusershell (Depends-on): Add stdio-safer.
31191         * modules/lstat (Depends-on): Remove xalloc.
31192         * modules/mkstemp (Depends-on): Add stat-macros.
31193         * modules/modechange (Depends-on): Remove xstrtol.
31194         Add stat-macros, xalloc.
31195         * modules/save-cwd (Depends-on): Add unistd-safer.
31196         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
31197         * modules/unistd-safer (Files): Add lib/fd-safer.c
31198         (Makefile.am): Remove lib_SOURCES.
31199
31200         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
31201         Remove fcntl-safer; unistd-safer supersedes it.
31202
31203 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31204
31205         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
31206         AC_HEADER_STAT.
31207         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
31208         (gl_PREREQ_CHOWN): Remove.
31209         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
31210         it.  Don't require AC_HEADER_STAT.
31211         (gl_PREREQ_LSTAT): Remove.
31212         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
31213         Don't require AC_HEADER_STAT.
31214         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
31215         (gl_PREREQ_RMDIR): Remove.
31216         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
31217         mention stat-macros.h or AC_HEADER_STAT, since we'll make
31218         the stat-macros module a prerequisite.
31219         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
31220         * m4/filemode.m4 (gl_FILEMODE): Likewise.
31221         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
31222         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
31223         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
31224         variable names.
31225         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
31226         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
31227         variable prefixes.
31228         * m4/fcntl-safer.m4: Remove.
31229         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
31230         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
31231         Invoke gl_PREREQ_FD_SAFER.
31232         (gl_PREREQ_FD_SAFER): New macro.
31233         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
31234         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
31235         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
31236         Remove duplicate call to AC_LIBOBJ(readutmp).
31237         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
31238
31239         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
31240         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
31241
31242 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31243
31244         * MODULES.html.sh (Misc): Add byteswap.
31245
31246 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31247
31248         * modules/getcwd (Depends-on): Add extensions.
31249         * modules/openat (Depends-on): Likewise.
31250
31251 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31252
31253         * modules/byteswap: New file.
31254
31255 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31256
31257         * m4/byteswap.m4: New file.
31258
31259 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31260
31261         * lib/byteswap_.h: New file.
31262
31263 2005-04-25  Karl Berry  <karl@gnu.org>
31264
31265         * m4/gettext.m4: Update from GNU gettext 0.14.4.
31266
31267 2005-04-25  Albert Chin  <china@thewrittenword.com>
31268
31269         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
31270         Toolkit C bug.
31271
31272 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
31273
31274         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
31275         (func_ln_if_changed) Remove forcibly for no error message
31276         in case file does not exist.
31277
31278 2005-04-19  Simon Josefsson  <jas@extundo.com>
31279
31280         * gnulib-tool (Options): Make --symlink mean --symbolic.
31281
31282 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
31283
31284         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
31285
31286 2005-04-16  Simon Josefsson  <jas@extundo.com>
31287
31288         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
31289
31290 2005-04-15  Simon Josefsson  <jas@extundo.com>
31291
31292         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
31293
31294 2005-04-15  Simon Josefsson  <jas@extundo.com>
31295
31296         * gnulib-tool: Rename --symlink to --symbolic.
31297
31298 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
31299
31300         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
31301         symbolic links to files instead of copying/moving.  Add --aux-dir,
31302         specifying directory relative --dir where auxiliary build tools
31303         are placed.
31304
31305 2005-04-14  Bruno Haible  <bruno@clisp.org>
31306
31307         * modules/allocsa (License): Change to LGPL.
31308         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
31309
31310 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
31311
31312         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
31313         that "UTC +1 second" continues to work.  Problem reported
31314         by Dmitry V. Levin.
31315         (relunit_snumber): New rule.
31316         (relunit): Use it.
31317
31318 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
31319
31320         * lib/getdate.y (universal_time_zone_table): New constant.
31321         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
31322         universal_time_zone_table.
31323         (lookup_zone): Prefer universal_time_zone_table to
31324         local_time_zone_table, so that "GMT" time stamps are allowed in
31325         London during the summer.  Problem reported by Ian Abbott.
31326
31327 2005-04-12  Jim Meyering  <jim@meyering.net>
31328
31329         * lib/human.c (humblock): Set *options even when returning due to
31330         xstrtoumax conversion failure.  Thanks to a used-uninitialized
31331         warning from gcc-4.
31332
31333 2005-04-09  Jim Meyering  <jim@meyering.net>
31334
31335         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
31336         -Wuninitialized: initialize tm0.tm_year.
31337
31338 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
31339
31340         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
31341         count, since there's no maximum.  All uses changed.
31342         Add member dsts_seen.
31343         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
31344         not being INT_MAX.
31345         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
31346         Use pc_rels_seen to decide whther a date is absolute.
31347
31348         * lib/getdate.y (number): Don't overwrite year.
31349         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
31350         check.
31351
31352 2005-04-02  Simon Josefsson  <jas@extundo.com>
31353
31354         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
31355         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
31356
31357 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
31358
31359         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
31360         where no absolute path name can be longer than PATH_MAX.
31361
31362 2005-03-27  Jim Meyering  <jim@meyering.net>
31363
31364         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
31365
31366 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
31367
31368         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
31369         "one's complement" -> "ones' complement" in comment, as per Knuth.
31370         "value of type" -> "type or expression" in comment.
31371         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
31372
31373 2005-03-26  Jim Meyering  <jim@meyering.net>
31374
31375         Comment nits.
31376         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
31377         Correct typos: s/or/of/.
31378
31379 2005-03-26  Jim Meyering  <jim@meyering.net>
31380
31381         * modules/check-include-files: Move to ../ and rename to...
31382         * check-module: ...this.
31383
31384 2005-03-25  Jim Meyering  <jim@meyering.net>
31385
31386         * modules/xvasprintf (Files): Add xalloc.h.
31387
31388 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
31389
31390         * modules/gettext (Files): config/config.rpath ->
31391         build-aux/config.rpath
31392         * modules/iconv (Files): Likewise.
31393         Problem reported by Oskar Liljeblad.
31394
31395 2005-03-23  Jim Meyering  <jim@meyering.net>
31396
31397         * modules/check-include-files: New script to check for
31398         missing dependencies, multiple includes, etc.
31399
31400         * modules/c-strtold (Depends-on): Add xalloc.
31401         * modules/c-strtod (Depends-on): Add xalloc.
31402         * modules/hash (Depends-on): Add xalloc.
31403         (Files): Remove lib/xalloc.h.
31404
31405         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
31406         * modules/userspec (Files): Add lib/inttostr.h.
31407
31408 2005-03-23  Jim Meyering  <jim@meyering.net>
31409
31410         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
31411
31412 2005-03-22  Jim Meyering  <jim@meyering.net>
31413
31414         * modules/stat-macros: New module.
31415         * modules/canonicalize, modules/euidaccess, modules/file-type,
31416         * modules/filemode, modules/lchown, modules/makepath,
31417         * modules/rmdir, modules/stat: Depend on new stat-macros module
31418         rather than listing lib/stat-macros.h manually.
31419         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
31420
31421 2005-03-22  Jim Meyering  <jim@meyering.net>
31422
31423         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
31424
31425 2005-03-22  Bruno Haible  <bruno@clisp.org>
31426
31427         * config/srclist.txt: Replace target directory 'config' with
31428         'build-aux'.
31429         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
31430         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
31431         ../build-aux/.
31432
31433 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
31434
31435         * modules/chdir-long (Depends-on): Add mempcpy.
31436
31437         * modules/acl, modules/backupfile, modules/c-strtod,
31438         modules/c-strtold, modules/canon-host, modules/canonicalize,
31439         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
31440         modules/exclude, modules/exitfail, modules/file-type,
31441         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
31442         modules/getdate, modules/getline, modules/getpagesize,
31443         modules/getpass, modules/getugroups, modules/group-member,
31444         modules/hard-locale, modules/hash, modules/human, modules/idcache,
31445         modules/inttostr, modules/long-options, modules/makepath,
31446         modules/md5, modules/memcasecmp, modules/memcoll,
31447         modules/modechange, modules/mountlist, modules/path-concat,
31448         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
31449         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
31450         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
31451         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
31452         modules/strftime, modules/strndup, modules/strverscmp,
31453         modules/timespec, modules/unlocked-io, modules/userspec,
31454         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
31455         modules/yesno:
31456         Remove lib_SOURCES line from Makefile.am section, as this is now
31457         done automatically by the corresponding Autoconf macro.
31458
31459 2005-03-21  Jim Meyering  <jim@meyering.net>
31460
31461         Changes imported from coreutils.
31462
31463         * lib/cycle-check.c: Don't include xalloc.h.
31464
31465         * lib/path-concat.c: Don't include assert.h.
31466         (path_concat): Remove assertion that would have triggered
31467         for ABASE starting with more than one slash.
31468         Reported by Andreas Schwab.
31469
31470         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
31471         properly when ABASE is an absolute file name.
31472         Correct the description of this function.
31473         Include <assert.h>.
31474         Add an assertion and a test driver.
31475         This fixes a bug introduced on 2004-07-02.
31476         Andreas Schwab reported the resulting failure of cp --parents:
31477         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
31478
31479 2005-03-21  Jim Meyering  <jim@meyering.net>
31480
31481         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
31482         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
31483
31484 2005-03-21  Jim Meyering  <jim@meyering.net>
31485         and  Paul Eggert  <eggert@cs.ucla.edu>
31486
31487         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
31488         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
31489         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
31490         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
31491         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
31492         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
31493         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
31494         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
31495         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
31496         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
31497         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
31498         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
31499         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
31500         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
31501         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
31502         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
31503         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
31504         for these modules.
31505
31506 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
31507
31508         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
31509         (which shouldn't happen), generate nothing instead of returning 0
31510         immediately, so that nstrftime (NULL, ...) doesn't return 0.
31511
31512 2005-03-16  Bruno Haible  <bruno@clisp.org>
31513
31514         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
31515         HAVE_LONGLONG_64BIT.
31516
31517 2005-03-16  Bruno Haible  <bruno@clisp.org>
31518
31519         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
31520         HAVE_LONGLONG_64BIT.
31521
31522 2005-03-16  Bruno Haible  <bruno@clisp.org>
31523
31524         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
31525         HAVE_LONGLONG_64BIT.
31526
31527 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31528
31529         * lib/strftime.c (my_strftime): Prepend space to format so that we can
31530         reliably distinguish strftime failure from empty output on POSIX
31531         hosts.
31532
31533 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31534
31535         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
31536         (iconv_string): Don't guess a size-zero buffer, as that might cause
31537         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
31538         result would be 'too large', where 'too large' is (heuristically)
31539         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
31540         overflow concerns.  This will prevent some unwanted malloc failures
31541         when the inputs are very large.
31542
31543 2005-03-15  Karl Berry  <karl@gnu.org>
31544
31545         * config/srclist.txt (config.rpath): from gettext.
31546         * config/config.rpath: update.
31547
31548 2005-03-15  Bruno Haible  <bruno@clisp.org>
31549
31550         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
31551         to 'negate'.
31552
31553         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
31554         variable.
31555
31556         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
31557         results.
31558
31559 2005-03-14  Simon Josefsson  <jas@extundo.com>
31560
31561         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
31562         <fx@gnu.org>.
31563
31564 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
31565
31566         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
31567         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
31568         intprops.h.
31569         * lib/strtol.c: Likewise.
31570
31571 2005-03-14  Jim Meyering  <jim@meyering.net>
31572
31573         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
31574         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
31575         to be nonzero so that we (and caller) can detect the difference
31576         between a valid zero-length expansion and an error return, even
31577         when the underlying strftime fails before writing anything into
31578         that location.
31579
31580 2005-03-14  Bruno Haible  <bruno@clisp.org>
31581
31582         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
31583         Update from GNU gettext 0.14.3.
31584
31585 2005-03-10  Jim Meyering  <jim@meyering.net>
31586
31587         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
31588
31589 2005-03-10  Jim Meyering  <jim@meyering.net>
31590
31591         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
31592         so that this module works on systems without fchdir.
31593
31594 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
31595
31596         Factor int-properties macros into a single file, except for
31597         glibc-related files.
31598         * lib/intprops.h: New file.
31599         * lib/getloadavg.c: Include it instead of limits.h.
31600         (INT_STRLEN_BOUND): Remove.
31601         * lib/human.c: Include intprops.h.
31602         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
31603         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
31604         302/1000.
31605         * lib/inttostr.h: Include intprops.h instead of limits.h.
31606         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
31607         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
31608         for consistency with intprops.h.
31609         (time_t_is_integer, twos_complement_arithmetic): Use them.
31610         * lib/sig2str.h: Include <signal.h>, intprops.h.
31611         (INT_STRLEN_BOUND): Remove.
31612         * lib/strftime.c (TYPE_SIGNED): Remove.
31613         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
31614         * lib/strtol.c: Adjust comments to match intprops.h.
31615         * lib/userspec.c: Include intprops.h.
31616         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
31617         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
31618         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
31619         instead of rolling our own expressions.
31620         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
31621
31622         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
31623         instead of int.
31624         (my_strftime): Do not mishandle years close to INT_MAX, by doing
31625         the right thing even if adding 1900 would overflow.  Similarly
31626         for tm_mon + 1 and tm_yday + 1.
31627         Make %Y always equivalent to %C%y, and similarly for %G and %g.
31628         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
31629         (DO_SIGNED_NUMBER): New macro.
31630         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
31631
31632 2005-03-07  Bruno Haible  <bruno@clisp.org>
31633
31634         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
31635
31636 2005-03-07  Bruno Haible  <bruno@clisp.org>
31637
31638         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
31639
31640 2005-03-04  Derek R. Price  <derek@ximbiot.com>
31641
31642         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
31643         (func_import): Only replace files via --import when they have actually
31644         changed.
31645
31646 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31647
31648         * m4/mmap-anon.m4: New file.
31649         * m4/pagealign_alloc.m4: New file.
31650
31651 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31652             Bruno Haible  <bruno@clisp.org>
31653
31654         * modules/pagealign_alloc: New file.
31655         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
31656
31657 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31658             Bruno Haible  <bruno@clisp.org>
31659
31660         * lib/pagealign_alloc.h: New file.
31661         * lib/pagealign_alloc.c: New file.
31662
31663 2005-03-03  Bruno Haible  <bruno@clisp.org>
31664
31665         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
31666         Use an all-permissive copyright notice, recommended by RMS.
31667
31668 2005-03-02  Bruno Haible  <bruno@clisp.org>
31669
31670         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
31671         of AIX, the replacement has to be done only after <string.h> is
31672         included, therefore not in config.h. stpncpy.h does the replacement,
31673         and stpncpy.c uses it.
31674
31675 2005-03-02  Bruno Haible  <bruno@clisp.org>
31676
31677         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
31678         stpncpy.c uses it.
31679
31680 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31681
31682         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
31683         The workaround isn't strictly needed for POSIX conformance, and
31684         it's too much of a pain to configure and maintain.  We'll ask
31685         people to fix their kernels instead.
31686         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
31687         (NANOSLEEP_BUG_WORKAROUND): Remove.
31688         (xnanosleep): Remove the workaround.
31689
31690 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31691
31692         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
31693         Reported by Derek Price.
31694         (Include): Add "timespec.h".
31695
31696         * modules/xnanosleep (Depends-on): Remove gethrxtime.
31697
31698 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31699
31700         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
31701         to detect nanosleep bug.
31702
31703 2005-03-01  Bruno Haible  <bruno@clisp.org>
31704
31705         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
31706
31707 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
31708
31709         * modules/gethrxtime: New file.
31710         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
31711         (Depends-on): Add gethrxtime.
31712         (configure.ac): Add gl_XNANOSLEEP.
31713         (Makefile.am): Remove lib_SOURCES line.
31714
31715 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31716
31717         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
31718         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
31719
31720 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31721
31722         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
31723         * lib/timespec.h (gettime): Return void, since it always
31724         succeeds now.  All uses changed.
31725         * lib/gettime.c (gettime) Likewise.
31726         [HAVE_NANOTIME]: Prefer nanotime.
31727         Assume gettimeofday succeeds, as POSIX requires.
31728         Assime time () succeeds, since other code already does.
31729         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
31730         (timespec_subtract): Remove.
31731         (NANOSLEEP_BUG_WORKAROUND): New constant.
31732         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
31733         things considerably.  Use it only on GNU/Linux hosts, since the
31734         workaround shouldn't be needed elsewhere.
31735
31736 2005-02-24  Bruno Haible  <bruno@clisp.org>
31737
31738         * modules/gettext (Files): Add m4/glibc2.m4.
31739
31740 2005-02-24  Bruno Haible  <bruno@clisp.org>
31741
31742         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
31743         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
31744         * m4/progtest.m4:
31745         Update from GNU gettext 0.14.2.
31746         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
31747
31748 2005-02-24  Bruno Haible  <bruno@clisp.org>
31749
31750         * lib/localcharset.c: Update from GNU gettext 0.14.2.
31751         * lib/config.charset: Update from GNU gettext 0.14.2.
31752
31753 2005-02-24  Bruno Haible  <bruno@clisp.org>
31754
31755         * lib/gettext.h: Update from GNU gettext 0.14.2.
31756
31757 2005-02-23  Simon Josefsson  <jas@extundo.com>
31758
31759         * m4/iconvme.m4: New file.
31760
31761 2005-02-23  Jim Meyering  <jim@meyering.net>
31762
31763         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
31764         change.
31765         Thanks to Bruno Haible for catching it.
31766
31767 2005-02-22  Simon Josefsson  <jas@extundo.com>
31768
31769         * modules/iconvme: New file.
31770
31771         * MODULES.html.sh: Add iconvme.
31772
31773 2005-02-22  Simon Josefsson  <jas@extundo.com>
31774
31775         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
31776
31777 2005-02-22  Simon Josefsson  <jas@extundo.com>
31778
31779         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
31780
31781 2005-02-22  Jim Meyering  <jim@meyering.net>
31782
31783         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
31784         s/ifndef/ifdef/.
31785
31786 2005-02-20  Neil Conway  <neilc@samurai.com>
31787
31788         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
31789         returned by OSX/Darwin if the specified buffer is not large
31790         enough for the hostname.
31791
31792 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31793
31794         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
31795         pass it to _help, otherwise the latter coredumps trying to
31796         dereference state.root_argp.
31797
31798 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31799
31800         * modules/chdir-long (Depends-on): Add memrchr.
31801         * modules/memrchr (Files): Add lib/memrchr.h.
31802         (Include): "memrchr.h".
31803
31804 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31805
31806         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
31807
31808 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31809
31810         * lib/memrchr.h: New file.
31811         * lib/chdir-long.c: Include it.
31812         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
31813         Don't bother including stddef.h.
31814
31815 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
31816
31817         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
31818         inclusion.
31819         Include <sys/types.h>, for dev_t.
31820         (ME_DUMMY, ME_REMOTE): Move from here....
31821         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
31822         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
31823         Dmitry V. Levin.
31824         Include mountlist.h first, to test the interface.
31825
31826 2005-01-29  Bruno Haible  <bruno@clisp.org>
31827
31828         * lib/progname.c (program_name): Initialize.
31829         Needed when linking statically on MacOS X.
31830
31831 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
31832
31833         Sync from coreutils.
31834         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
31835         (Depends-on): Add c-strtod.
31836         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
31837
31838 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
31839
31840         Sync from coreutils.
31841         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
31842
31843         Remove files that are specific to coreutils.
31844         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
31845
31846 2005-01-28  Bruno Haible  <bruno@clisp.org>
31847
31848         * modules/javacomp: New file.
31849         * MODULES.html.sh (Java): Add javacomp.
31850
31851 2005-01-28  Bruno Haible  <bruno@clisp.org>
31852
31853         * m4/javacomp.m4: New file, from GNU gettext.
31854
31855 2005-01-28  Bruno Haible  <bruno@clisp.org>
31856
31857         * lib/javacomp.sh.in: New file, from GNU gettext.
31858         * lib/javacomp.h: New file, from GNU gettext.
31859         * lib/javacomp.c: New file, from GNU gettext.
31860
31861 2005-01-26  Simon Josefsson  <jas@extundo.com>
31862
31863         * lib/gai_strerror.c: Use GPL in header.
31864
31865 2005-01-26  Bruno Haible  <bruno@clisp.org>
31866
31867         * modules/javaexec: New file.
31868         * MODULES.html.sh (Java): Add javaexec.
31869
31870 2005-01-26  Bruno Haible  <bruno@clisp.org>
31871
31872         * m4/javaexec.m4: New file, from GNU gettext.
31873
31874 2005-01-26  Bruno Haible  <bruno@clisp.org>
31875
31876         * lib/javaexec.sh.in: New file, from GNU gettext.
31877         * lib/javaexec.h: New file, from GNU gettext.
31878         * lib/javaexec.c: New file, from GNU gettext.
31879
31880 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31881
31882         * modules/lchown (Depends-on): Remove lchown.h
31883
31884 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31885
31886         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
31887         must be defined if the header file was not found, in order
31888         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
31889
31890 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31891
31892         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
31893         initializers for struct pentry_state.
31894         (__argp_error): Check return value of __asprintf
31895         (__argp_failure): Translate error message
31896
31897         * lib/argp-parse.c: Removed braces around the expansion of N_()
31898
31899 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
31900
31901         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
31902         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
31903         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
31904         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
31905         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
31906         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
31907         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
31908         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
31909         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
31910         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
31911         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
31912         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
31913         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
31914         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
31915         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
31916         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
31917         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
31918         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
31919         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
31920         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
31921         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
31922         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
31923         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
31924         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
31925         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
31926         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
31927         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
31928         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
31929         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
31930         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
31931         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
31932         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
31933         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
31934         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
31935         xstrtol.m4, xstrtoumax.m4, yesno.m4:
31936         Use an all-permissive copyright notice, recommended by RMS.
31937
31938 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
31939
31940         * modules/chdir-long (Depends-on): Remove mempcpy.
31941
31942 2005-01-21  Jim Meyering  <jim@meyering.net>
31943
31944         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
31945         same value as for Solaris 9.
31946
31947         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
31948         component length.  This included changing the parameter to be
31949         of type `char *' rather than `char const *'.
31950         * lib/chdir-long.h (chdir_long): Update prototype.
31951
31952         * lib/openat.c (fdopendir, fstatat): New functions.
31953         * lib/openat.h: Include headers required for use of DIR and struct
31954         stat.
31955         [AT_SYMLINK_NOFOLLOW]: Define.
31956         (fdopendir, fstatat): Add prototypes.
31957
31958 2005-01-21  Bruno Haible  <bruno@clisp.org>
31959
31960         * modules/classpath: New file.
31961         * MODULES.html.sh (Java): Add classpath.
31962
31963 2005-01-21  Bruno Haible  <bruno@clisp.org>
31964
31965         * lib/classpath.h: New file, from GNU gettext.
31966         * lib/classpath.c: New file, from GNU gettext.
31967
31968 2005-01-20  Simon Josefsson  <jas@extundo.com>
31969
31970         * modules/version-etc-fsf: New file.
31971
31972 2005-01-20  Simon Josefsson  <jas@extundo.com>
31973
31974         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
31975         * lib/version-etc.c: Remove version_etc_copyright.
31976         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
31977         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
31978
31979 2005-01-20  Simon Josefsson  <jas@extundo.com>
31980
31981         * lib/base64.h (isbase64): Add.
31982
31983         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
31984         using a unsigned prototype, don't inline.
31985         (base64_decode): Use it.
31986
31987 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
31988
31989         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
31990         it.
31991
31992 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
31993
31994         * lib/save-cwd.c (save_cwd): Remove code to support the case
31995         where fchdir is missing or flaky.
31996
31997 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
31998
31999         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
32000
32001 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32002
32003         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
32004         AC_LIBSOURCES now does this.
32005         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
32006         with new ullong_max module.
32007
32008 2005-01-19  Bruno Haible  <bruno@clisp.org>
32009
32010         * modules/sh-quote: New file.
32011         * MODULES.html.sh (Executing programs): Add sh-quote.
32012
32013 2005-01-19  Bruno Haible  <bruno@clisp.org>
32014
32015         * lib/sh-quote.h: New file, from GNU gettext.
32016         * lib/sh-quote.c: New file, from GNU gettext.
32017
32018 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32019
32020         Merge from coreutils.
32021         * m4/ullong_max.m4: New file.
32022         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
32023         (gl_MACROS): Assume localeconv exists.
32024
32025 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32026
32027         Merge changes from coreutils, as described below in several
32028         changelogs dated today.
32029
32030         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
32031         (O_DIRECTORY): Remove; not needed here, since "." must be
32032         a directory.  All uses removed.
32033         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
32034         universal on Suns, and we also need to test for IRIX.
32035         Revamp code to use 'if' rather than '#if'.
32036         Avoid unnecessary comparison of cwd->desc to 0.
32037
32038         * lib/utimens.c (futimens): Robustify the previous patch, by checking
32039         for known valid error numbers rather than observed invalid ones.
32040
32041 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32042
32043         * modules/ullong_max: New file.
32044
32045         * modules/chdir-long, modules/openat: New files.
32046         * modules/save-cwd (Depends-on): Depend on chdir-long.
32047         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
32048
32049 2005-01-18  Jim Meyering  <jim@meyering.net>
32050
32051         Merge from coreutils.
32052         * m4/chdir-long.m4, m4/openat.m4: New files.
32053         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
32054         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
32055         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
32056         is sane and DOES follow symlinks.  Besides, testing 20 different
32057         systems found no broken chown implementations.
32058         Prompted by a change in rsync's copy of this macro.
32059         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
32060
32061         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
32062
32063         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
32064         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
32065         NULL-means-set-to-current-time semantics.
32066         Remove temporary file immediately, rather than waiting
32067         for configure's at-exit trap code to do it.
32068
32069 2005-01-18  Jim Meyering  <jim@meyering.net>
32070
32071         * lib/version-etc.c (version_etc_copyright): Update copyright date.
32072
32073         * lib/utimens.c (futimens): Account for the fact that futimes
32074         can also fail with errno == ENOSYS or errno == ENOENT.
32075         Patch from Dmitry V. Levin.
32076
32077         Change the name of the robust chdir function from chdir to chdir_long.
32078         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
32079         (restore_cwd): Use chdir_long, not chdir.
32080         * lib/chdir-long.c: Renamed from chdir.c.
32081         * lib/chdir-long.h: Renamed from chdir.h.
32082         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
32083         Hurd.
32084
32085 2005-01-18  Bruno Haible  <bruno@clisp.org>
32086
32087         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
32088         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
32089         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
32090         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
32091         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
32092         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
32093         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
32094         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
32095         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
32096         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
32097         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
32098         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
32099         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
32100         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
32101         Use an all-permissive copyright notice, recommended by RMS.
32102
32103 2005-01-18  Bob Proulx  <bob@proulx.com>
32104
32105         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
32106         simplify offsetof() macro construct to avoid compile failure with
32107         native HP-UX 11.0 ANSI C compiler.
32108
32109 2005-01-17  Bruno Haible  <bruno@clisp.org>
32110
32111         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
32112         redundant because stpncpy.m4 takes care of it.
32113
32114 2005-01-17  Bruno Haible  <bruno@clisp.org>
32115
32116         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
32117
32118 2005-01-17  Bruno Haible  <bruno@clisp.org>
32119
32120         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
32121         used.
32122
32123 2005-01-17  Bruno Haible  <bruno@clisp.org>
32124
32125         * lib/fwriteerror.h (fwriteerror): Change specification to include
32126         fclose.
32127         * lib/fwriteerror.c: Include <stdbool.h>.
32128         (fwriteerror): At the end, close the file stream. Record whether
32129         stdout was already closed.
32130
32131 2005-01-17  Bruno Haible  <bruno@clisp.org>
32132
32133         * lib/execute.c (environ): Declare if needed.
32134         * lib/pipe.c (environ): Likewise.
32135         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
32136
32137 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32138
32139         * modules/argp: Depend on vsnprintf
32140
32141 2005-01-10  Jim Meyering  <jim@meyering.net>
32142
32143         * modules/closeout (Depends-on): Add atexit.
32144
32145 2005-01-06  Bruno Haible  <bruno@clisp.org>
32146
32147         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
32148
32149 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
32150
32151         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
32152         definitions to be after all include files, to avoid collisions.
32153         Problem reported by Bob Proulx.
32154
32155 2005-01-04  Jim Meyering  <jim@meyering.net>
32156
32157         Changes imported from coreutils.
32158         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
32159         as the mkstemp template, use a temporary directory and an
32160         8.3-friendly template to avoid trouble on systems like DJGPP.
32161         Reported by Juan M. Guerrero via Stepan Kasal.
32162         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
32163         close. Remove the temporary directory right away, rather than waiting
32164         for configure's at-exit trap code to do it.
32165         Suggestion from Stepan Kasal.
32166
32167 2005-01-01  Simon Josefsson  <jas@extundo.com>
32168
32169         * gnulib-tool: Print #include directives when --import'ing.
32170
32171 2004-12-28  Simon Josefsson  <jas@extundo.com>
32172
32173         * tests/test-base64.c: Include required header files.  Remove
32174         unused variables.
32175
32176 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32177
32178         * modules/error (Depends-on): Remove gettext.
32179
32180 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32181
32182         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
32183         not needed.  This removes a dependency on the gettext module.
32184         [defined _LIBC]: Do not include <libintl.h>; not needed.
32185
32186 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32187
32188         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
32189         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
32190
32191 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32192
32193         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
32194         HAVE_DECL_STRTOLD.
32195
32196 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32197
32198         * modules/getdate (Depends-on): Remove alloca-opt.
32199
32200 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32201
32202         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
32203
32204 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32205
32206         * lib/argp-parse.c: Include <stddef.h>.
32207         (alignof, alignto): New macros.
32208         (parser_init): Don't assume that void * is aligned sufficiently
32209         for struct option.
32210
32211         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
32212         need to extend the stack.
32213         (YYINITDEPTH): New macro, so that the initial stack isn't overly
32214         large.
32215
32216 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32217
32218         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
32219
32220 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32221
32222         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
32223         (2004-10-24) change.  Apparently this was a false alarm.
32224
32225         * modules/getdate: Depend on alloca-opt, not alloca.
32226
32227 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32228
32229         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
32230         Remove now-obsolete comment about AIX.
32231         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
32232         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
32233         (YYMAXDEPTH): New macro.
32234
32235 2004-12-18  Simon Josefsson  <jas@extundo.com>
32236
32237         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
32238
32239 2004-12-18  Bruno Haible  <bruno@clisp.org>
32240
32241         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
32242
32243 2004-12-18  Bruno Haible  <bruno@clisp.org>
32244
32245         * lib/fatal-signal.c (fatal_signals): Make non-const.
32246         (init_fatal_signals): New function.
32247         (uninstall_handlers, install_handlers): Ignore signals that were set to
32248         SIG_IGN.
32249         (at_fatal_signal): Call init_fatal_signals.
32250         (init_fatal_signal_set): Likewise. Ignore signals that were set to
32251         SIG_IGN.
32252         Reported by Paul Eggert.
32253
32254 2004-12-18  Bruno Haible  <bruno@clisp.org>
32255
32256         * doc/alloca.texi: New file.
32257         * doc/alloca-opt.texi: New file.
32258
32259 2004-12-17  Jim Meyering  <jim@meyering.net>
32260
32261         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
32262         Otherwise, install-sh could exit with improper exit status when
32263         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
32264
32265 2004-12-16  Simon Josefsson  <jas@extundo.com>
32266
32267         * tests/test-base64.c: Add license.
32268
32269 2004-12-15  Stepan Kasal  <address@hidden>
32270
32271         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
32272
32273 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
32274
32275         * modules/getcwd (Files): Add m4/d-ino.m4.
32276         Suggested by Mark D. Baushke.
32277
32278 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32279
32280         * lib/getdate.y (textint): New member "negative".
32281         (time_zone_hhmm): New function.
32282         Expect 14 shift-reduce conflicts, not 13.
32283         (o_colon_minutes): New rule.
32284         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
32285         (yylex): Set the "negative" member of signed numbers.
32286
32287 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32288
32289         * doc/getdate.texi (Time of day items, Time zone items):
32290         Describe new formats +00:00, UTC+00:00.
32291
32292 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
32293
32294         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
32295         spurious "-l"s.  Problem reported by Stepan Kasal.
32296
32297 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
32298
32299         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
32300         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
32301
32302 2004-12-04  Simon Josefsson  <jas@extundo.com>
32303
32304         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
32305         Vandoorselaere <yoann@prelude-ids.org>.
32306
32307 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32308
32309         Changes imported from coreutils.
32310         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
32311         exist.
32312         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
32313
32314 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32315
32316         Changes imported from coreutils.
32317         * lib/hard-locale.c: Assume <locale.h> exists.
32318         Include "strdup.h".
32319         (GLIBC_VERSION): New macro.
32320         (hard_locale): Assume setlocale exists.
32321         Rewrite to avoid #ifdef.
32322         Use strdup rather than malloc + strcpy.
32323         * lib/human.c: Assume <locale.h> exists.
32324         (human_readable): Assume localeconv exists.
32325
32326 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32327
32328         * modules/hard-locale (Depends-on): Add strdup.
32329
32330 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32331
32332         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
32333         convert T2, not T.  (Imported from libc.)
32334
32335 2004-11-30  Simon Josefsson  <jas@extundo.com>
32336
32337         * modules/restrict (License): Change to LGPL.
32338
32339 2004-11-30  Simon Josefsson  <jas@extundo.com>
32340
32341         * m4/restrict.m4: Add copyright and copying conditions.
32342
32343 2004-11-30  Simon Josefsson  <jas@extundo.com>
32344
32345         * m4/base64.m4: New file.
32346
32347 2004-11-30  Simon Josefsson  <jas@extundo.com>
32348
32349         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
32350         base64.
32351
32352         * tests/test-base64.c: New file.
32353
32354         * modules/base64: New file.
32355
32356 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32357
32358         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
32359         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
32360
32361         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
32362
32363 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32364
32365         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
32366         (__getcwd.c): Don't restore errno; glibc doesn't.
32367         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
32368         first, falling back to our code only if its results look suspicious.
32369         Ensure that the resulting buffer is only as large as necessary.
32370
32371         * lib/readutmp.c: Include readutmp.h first.
32372         Include <errno.h>, since readutmp.h no longer does that.
32373         * lib/readutmp.h: Don't include <errno.h>,
32374         <sys/param.h>, <time.h>; not needed to establish interface.
32375         (errno): Remove decl.
32376         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
32377         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
32378         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
32379
32380 2004-11-28  Simon Josefsson  <jas@extundo.com>
32381
32382         * lib/base64.h, base64.c: New file.
32383
32384 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
32385
32386         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
32387
32388 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
32389
32390         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
32391         (Depends-on): Remove pathmax, same.  Add mempcpy.
32392         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
32393         (Makefile.am): Append getcwd.h to lib_SOURCES.
32394         (Include): Add getcwd.h.
32395         (Maintainer): Change from Jim Meyering to "all, glibc",
32396         since getdate now uses intended-for-glibc code.
32397         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
32398         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
32399
32400 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32401
32402         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
32403         HP's ANSI C compiler.
32404         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
32405         Declaring int functions causes warnings on some modern systems and
32406         shouldn't be needed to compile on ancient ones.
32407         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
32408         defined.
32409
32410         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
32411         with the following changes.
32412         (__set_errno): Parenthesize properly.
32413         Include <stdbool.h>.
32414         (MIN, MAX, MATCHING_INO): New macros.
32415         (__getcwd): Define with prototype, not K&R form.
32416         Use heuristics to allocate default buffer on stack if possible.
32417         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
32418         behavior, and to avoid the PATH_MAX limit when computing
32419         ../../../../...
32420         Use MATCHING_INO to compare inode number to file.
32421         Check for arithmetic overflow in size calculations.
32422         Fix bug in reallocation of dot array that caused getcwd to fail
32423         on directories nested deeper than 75.
32424         Be more careful about saving errno on error.
32425         Do not use realloc; use only free+malloc, as this is a bit
32426         more flexible and avoids a needless copy operation.
32427         Do not inspect st_dev and st_ino for symbolic links; POSIX
32428         doesn't specify the latter.
32429         Check for closedir errors.
32430         Avoid needless casts.
32431         Use "#ifdef weak_alias" around weak_alias, to be like other
32432         glibc code.
32433         The following changes to getcwd.c have effect only when used in
32434         gnulib; they have no effect inside glibc proper.
32435         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
32436         as alloca isn't used.
32437         (alloca, __alloca): Likewise.
32438         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
32439         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32440         unconditionally, as gnulib assumes C89 or better.
32441         Do not include <sys/param.h>.
32442         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
32443         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
32444         better.
32445         (NULL) [!defined NULL]: Remove; we assume C89 or better.
32446         Include <dirent.h> in a way that is compatible with modern Autoconf.
32447         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
32448         New macros, if not already defined.
32449         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
32450         Use "_LIBC", not "defined _LIBC", for consistency.
32451         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
32452         a mempcpy module.
32453         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
32454         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
32455         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
32456         credit only to Jim Meyering and adjust the copyright dates.
32457         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
32458         <stdlib.h>, <unistd.h>, "pathmax.h".
32459         Instead, include "xgetcwd.h" (first) and "getcwd.h".
32460         (INITIAL_BUFFER_SIZE): Remove.
32461         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
32462
32463 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32464
32465         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
32466         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
32467         Use the _ONCE methods, for efficiency.
32468         Check for fcntl.h.  In test program, include <errno.h>
32469         and <fcntl.h> if available.  Remove old K&R cruft from
32470         test program.  Check for common errors in GNU/Linux,
32471         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
32472         don't do AC_LIBOBJ, as that's getcwd.m4's job.
32473         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
32474         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
32475         name accordingly.
32476         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
32477         accommodate new getcwd.c.
32478         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
32479         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
32480         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
32481         that's all we need now.
32482
32483 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32484
32485         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
32486         argp-parse.c depends on getopt internals, that means we should
32487         always use our getopt, to be on the safe side.
32488         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
32489         order not to spoil the result of an eventual previous invocation
32490         of gl_GETOPT_SUBSTITUTE.
32491
32492 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32493
32494         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
32495         redefinition warnings. To avoid them, include the defines
32496         in `#if !defined __need_getopt ... #endif'. The only place
32497         where __getopt_argv_const is used is in definitions
32498         of getopt_long and getopt_long_only below, which are as well
32499         protected by `#ifndef __need_getopt'.
32500         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
32501         __need_getopt after including <stdio.h> and <unistd.h> These
32502         headers might have defined it.
32503
32504 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32505
32506         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
32507
32508 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32509
32510         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
32511         (futimens): New function, which uses futimes if available.
32512         (futimens, utimens): Support timespec==NULL, with same semantics
32513         as utime and utimens.
32514         * lib/utimens.h (futimens): New decl.
32515
32516 2004-11-23  Jim Meyering  <jim@meyering.net>
32517
32518         * lib/getopt_.h: Remove trailing blanks.
32519
32520 2004-11-23  Jim Meyering  <jim@meyering.net>
32521
32522         * lib/__fpending.c: Add comment.
32523
32524 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
32525
32526         * modules/canonicalize (Depends-on): Add xreadlink.
32527         Problem reported by James Youngman.
32528
32529 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
32530
32531         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
32532         New macros.
32533         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
32534         optopt): Use them instead of invoking ## directly; otherwise, the
32535         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
32536
32537 2004-11-19  Bruno Haible  <bruno@clisp.org>
32538
32539         * lib/strtok_r.c: Move comments from here...
32540         * lib/strtok_r.h: ... to here.
32541
32542 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32543
32544         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
32545         implementations that mishandle size_t overflow.
32546
32547 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32548
32549         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
32550         might fail.  Problem reported by Yoann Vandoorselaere.
32551         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
32552         implementations that mishandle size_t overflow.
32553
32554 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32555
32556         * modules/canon-host (Depends-on): Add strdup.
32557
32558 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32559
32560         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
32561
32562 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32563
32564         * lib/canon-host.c: Include "strdup.h".
32565         (canon_host): Use getaddrinfo if available, so that IPv6 works.
32566         Use strdup instead of malloc/strcpy to duplicate strings.
32567
32568         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
32569         (human_space_before_unit): New constant.
32570         * lib/human.c (human_readable): Support it.
32571
32572         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
32573         (xgetcwd): Set errno correctly when failing.
32574         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
32575         the failure is actually due to a PATH_MAX problem.
32576
32577         Further getopt changes to make it more likely that glibc will
32578         buy the changes back.
32579         * lib/getopt.c (POSIXLY_CORRECT): New constant.
32580         (getopt): Use it, so to preserve glibc semantic
32581         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
32582         when compiling for libc.
32583         * lib/getopt_.h (__getopt_argv_const): Bring it back.
32584         (getopt_long, getopt_long_only): Use it.
32585
32586         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32587         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
32588         (getopt): Argv is now char * const *, as per standard.
32589         (_getopt_internal_r, _getopt_internal): Argv is now char **,
32590         not char *__getopt_argv_const *.
32591         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32592         _getopt_long_only_r): Likewise.
32593         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
32594         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32595         _getopt_long_r, _getopt_long_only_r): Likewise.
32596         * lib/getopt_.h (__getopt_argv_const): Remove.
32597         (getopt): Argv is now char * const *, as per standard.
32598
32599         * lib/getdate.y (tORDINAL): New token.
32600         (day, relunit): Allow it for relative times.
32601         (relative_time_table): Use tORDINAL for ordinals.
32602
32603 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32604
32605         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
32606         Document that "second" isn't allowed as an ordinal number.
32607
32608 2004-11-16  Jim Meyering  <jim@meyering.net>
32609
32610         * modules/closeout (Depends-on): Add fpending.
32611
32612 2004-11-15  Jim Meyering  <jim@meyering.net>
32613
32614         * lib/closeout.c: Include "__fpending.h" once again.
32615         Include <stdbool.h>.
32616         (close_stdout): Don't fail just because stdout was closed initially,
32617         since some programs don't write to stdout in the normal course of
32618         operation (other than --version and --help), and we don't want this
32619         function to make e.g. `touch file >&-' fail.
32620         But do fail if it was closed and someone has tried to write to it.
32621         E.g., `printf foo >&-' must fail.
32622
32623 2004-11-13  Jim Meyering  <jim@meyering.net>
32624
32625         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
32626
32627 2004-11-12  Simon Josefsson  <jas@extundo.com>
32628
32629         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
32630         small doc fix is still pending.
32631
32632 2004-11-11  Simon Josefsson  <jas@extundo.com>
32633
32634         * modules/strtok_r: New file.
32635
32636         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32637         strtok_r.
32638
32639 2004-11-11  Simon Josefsson  <jas@extundo.com>
32640
32641         * m4/strtok_r.m4: New file.
32642
32643         * m4/getopt.m4: Replace opterr.
32644
32645 2004-11-11  Simon Josefsson  <jas@extundo.com>
32646
32647         * lib/strtok_r.h, strtok_r.c: New file.
32648
32649 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32650
32651         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
32652         of replacing opterr, getopt, etc.  This should handle the
32653         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
32654
32655 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32656
32657         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
32658         we can stop lying to compilers about the constness of argv when we
32659         are compiled outside glibc.
32660         (getopt, getopt_long, getopt_long_only): Use it.
32661         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32662         _getopt_internal, getopt): Likewise.
32663         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32664         _getopt_long_only_r): Likewise.
32665         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32666         _getopt_long_r, _getopt_long_only_r): Likewise.
32667
32668         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
32669         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
32670         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
32671         the other external symbols.
32672         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
32673         declaration, since the above renaming now works around collisions.
32674
32675 2004-11-11  Jim Meyering  <jim@meyering.net>
32676
32677         * lib/linebreak.c: Remove trailing blanks.
32678         * lib/alloca_.h: Likewise.
32679         * lib/acosl.c: Likewise.
32680         * lib/euidaccess.c: Likewise.
32681         * lib/allocsa.h: Likewise.
32682
32683 2004-11-10  Simon Josefsson  <jas@extundo.com>
32684
32685         * m4/getaddrinfo.m4: New file.
32686
32687 2004-11-10  Simon Josefsson  <jas@extundo.com>
32688
32689         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
32690
32691 2004-11-10  Simon Josefsson  <jas@extundo.com>
32692
32693         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32694         getaddrinfo.
32695
32696         * modules/getaddrinfo: New file.
32697
32698 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32699
32700         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
32701
32702 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32703
32704         * lib/mktime.c (SHR): New macro, which is a portable
32705         substitute for >> that should work even on Crays.
32706         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
32707         Problem reported by Mark D. Baushke in
32708         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
32709         * lib/getdate.y (SHR): Likewise.
32710         (tm_diff): Use it.
32711         * lib/strftime.c (SHR): Likewise.
32712         (tm_diff): Use it.
32713         * lib/quotearg.c (struct quoting_options): Use unsigned int for
32714         quote_these_too, so that right shifts are well defined.  All uses
32715         changed.
32716
32717 2004-11-10  Jim Meyering  <jim@meyering.net>
32718
32719         Ensure that no close failure goes unreported.
32720         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
32721         return early when it seems there's nothing to flush.
32722         Don't include __fpending.h.
32723
32724 2004-11-10  Jim Meyering  <jim@meyering.net>
32725
32726         * modules/closeout (Depends-on): Remove fpending.
32727
32728 2004-11-10  Jim Meyering  <jim@meyering.net>
32729
32730         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
32731
32732 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32733
32734         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
32735         gl_FUNC_STRFTIME.
32736         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
32737         and AC_REQUIRE when possible, to avoid duplicate checks.
32738         Check for <wchar.h>.
32739
32740 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32741
32742         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
32743
32744 2004-11-09  Bruno Haible  <bruno@clisp.org>
32745
32746         * m4/sockpfaf.m4: New file.
32747
32748 2004-11-05  Bruno Haible  <bruno@clisp.org>
32749
32750         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
32751         Reported by Mark D. Baushke <mdb@cvshome.org>.
32752
32753 2004-11-04  Bruno Haible  <bruno@clisp.org>
32754
32755         2004-09-11  Bruno Haible  <bruno@clisp.org>
32756                 * allocsa.valgrind: New file.
32757         2004-02-06  Bruno Haible  <bruno@clisp.org>
32758                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
32759                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
32760                 Reported by Christopher Seip <chris.seip@hp.com>.
32761
32762 2004-11-04  Bruno Haible  <bruno@clisp.org>
32763
32764         * modules/allocsa (Files): Add lib/allocsa.valgrind.
32765         (Makefile.am): Distribute it.
32766
32767 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
32768
32769         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
32770         with errno == ERANGE if the buffer is too small.
32771         Problem reported by Mark D. Baushke.
32772
32773 2004-11-03  Albert Chin  <china@thewrittenword.com>
32774             Paul Eggert  <eggert@cs.ucla.edu>
32775
32776         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
32777         equivalent, substitute $ac_type for equivalent type rather than
32778         blindly using uint32_t *always* which won't work if uint32_t is not
32779         available.  Define _UINT32_T to work around typedef of uint32_t if
32780         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
32781         2.5.1.
32782
32783 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32784
32785         * m4/jm-macros.m4: Sync from coreutils.
32786         (gl_MACROS): Check for mbrlen, for pathchk.
32787         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
32788
32789 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32790
32791         * lib/xreadlink.c (MAXSIZE): New macro.
32792         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
32793         size does not exceed MAXSIZE.  Avoid cast.
32794         As suggested by Mark D. Baushke in
32795         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
32796         if readlink fails with buffer size just under MAXSIZE, try again
32797         with MAXSIZE.
32798
32799 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32800
32801         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
32802
32803 2004-11-02  Derek R. Price  <derek@ximbiot.com>
32804         and  Paul Eggert  <eggert@cs.ucla.edu>
32805
32806         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
32807         (get_date): Overparenthesize to avoid GCC warning.
32808
32809 2004-11-02  Bruno Haible  <bruno@clisp.org>
32810
32811         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
32812         returns void.
32813
32814 2004-11-02  Bruno Haible  <bruno@clisp.org>
32815
32816         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
32817         function returns void.
32818
32819 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
32820
32821         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
32822         fflush_unlocked, flockfile, funlockfile, funlockfile,
32823         fputs_unlocked, putc_unlocked.
32824
32825 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
32826
32827         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
32828         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
32829         already declared.
32830
32831 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32832
32833         * modules/getdate (Files): Add doc/getdate.texi.
32834         (Depends-on): Add setenv, xalloc.
32835
32836 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32837
32838         * lib/getdate.y: Add support for TZ="foo" within a date string.
32839         Fix some bugs near time_t boundaries.  Reject dates with
32840         out-of-range components, e.g., "Sept 31".
32841         Include <stdlib.h>, "setenv.h", "xalloc.h".
32842         (ISDIGIT_LOCALE): Remove; unused.
32843         Note that the TZ and time functions used here are not reentrant.
32844         (mktime_ok, get_tz): New functions.
32845         (TZBUFSIZE): New constant.
32846         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
32847         This requires that we sometimes generate our own TZ="XXX..." setting.
32848
32849 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32850
32851         * doc/getdate.texi: New file, from coreutils with modifications for
32852         the new TZ parsing.
32853
32854 2004-10-27  Derek R. Price  <derek@ximbiot.com>
32855
32856         * lib/mktime.c (not_equal_tm): Remove redundant check.
32857
32858 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32859
32860         * modules/regex (lib_SOURCES): Add regex.c.
32861         Reported by James Youngman in
32862         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
32863
32864 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32865
32866         * lib/getdate.y: Use Bison 1.875 features, and some minor
32867         code cleanups.  This change does not affect semantics.
32868         Don't include <stdlib.h>; no longer needed.
32869         Don't include unlocked-io.h; only the "#if TEST" code uses
32870         stdio, and performance isn't crucial there.
32871         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
32872         Bison 1.875 features as described below.
32873         All uses of "PC." replaced by "pc->".
32874         (YYSTYPE): Add a forward declaration.
32875         (yylex, yyerror): Use full prototypes in forward decls.
32876         Use "%pure-parser" rather than obsolescent "%pure_parser".
32877         Use %parse-param and %lex-param instead of obsolescent
32878         YYPARSE_PARAM and YYLEX_PARAM.
32879         (meridian_table, month_and_day_table, time_units_table,
32880         relative_time_table, time_zone_table, military_table,
32881         lookup_zone, lookup_word, get_date):
32882         Use NULL instead of 0 where appropriate.
32883         (to_hour): Avoid abort (), to avoid a dependency on
32884         stdlib.h.
32885         (yyerror, yylex): Now accepts parser_control * arg.
32886         (main) [TEST]: Use '\0' rather than 0 for char.
32887
32888 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
32889
32890         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
32891
32892 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
32893
32894         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
32895         It's now the caller's responsibility to handle the case where
32896         !HAVE_GETPAGESIZE && !defined getpagesize.
32897
32898         * lib/mktime.c (leapyear): Arg is long int, not int.
32899
32900 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
32901
32902         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
32903
32904 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
32905
32906         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
32907         missing.  Problem reported by James Youngman.
32908
32909 2004-10-16  Simon Josefsson  <jas@extundo.com>
32910
32911         * gnulib-tool: Fix comments.  Fix parse problem.
32912         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
32913
32914 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
32915
32916         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
32917         implementation of getopt_long.  Problem reported by Alexander Taler in:
32918         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
32919
32920 2004-10-15  Bruno Haible  <bruno@clisp.org>
32921
32922         * gnulib-tool: Untabify. Initialize supplied_libname.
32923         (func_usage): More homogenous output.
32924         (func_modules_transitive_closure, func_modules_to_filelist,
32925         func_emit_lib_Makefile_am): New functions.
32926         (func_import): New function, extracted from big case statement. Use
32927         func_get_license, func_modules_transitive_closure,
32928         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
32929         opt_lgpl. Don't use test -a, as it's not portable.
32930         (func_create_testdir): Use func_modules_transitive_closure,
32931         func_modules_to_filelist, func_emit_lib_Makefile_am.
32932
32933 2004-10-15  Bruno Haible  <bruno@clisp.org>
32934
32935         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
32936
32937 2004-10-15  Bruno Haible  <bruno@clisp.org>
32938
32939         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
32940         the portions belonging to each module.
32941         Suggested by Derek Robert Price <derek@ximbiot.com>.
32942
32943 2004-10-12  Simon Josefsson  <jas@extundo.com>
32944
32945         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
32946         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
32947         to real functions.
32948
32949 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32950
32951         * modules/vsnprintf: New file.
32952
32953 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32954
32955         * m4/vsnprintf.m4: New file.
32956
32957 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32958
32959         * lib/vsnprintf.h: New file.
32960         * lib/vsnprintf.c: New file.
32961
32962 2004-10-11  Bruno Haible  <bruno@clisp.org>
32963
32964         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
32965         vsnprintf.
32966
32967 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
32968
32969         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
32970
32971 2004-10-07  Bruno Haible  <bruno@clisp.org>
32972
32973         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
32974         fits into the provided buffer.
32975
32976 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
32977
32978         * lib/diacrit.c, diacrit.h: Add GPL notice.
32979
32980         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
32981         notice.
32982         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
32983         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
32984         This avoids a potential constant-folding bug.
32985
32986 2004-10-05  Bruno Haible  <bruno@clisp.org>
32987
32988         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
32989         for the declaration of strsep.
32990
32991 2004-10-05  Bruno Haible  <bruno@clisp.org>
32992
32993         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
32994
32995 2004-10-04  Simon Josefsson  <jas@extundo.com>
32996
32997         * modules/memmem: New file.
32998         * tests/test-memmem.c: New file.
32999         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
33000
33001 2004-10-04  Simon Josefsson  <jas@extundo.com>
33002
33003         * m4/memmem.m4: New file.
33004
33005 2004-10-04  Simon Josefsson  <jas@extundo.com>
33006
33007         * lib/memmem.h: New file.
33008         * lib/memmem.c: New file, taken from glibc.
33009
33010 2004-10-04  Simon Josefsson  <jas@extundo.com>
33011
33012         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
33013         '#ifdef USE_UNLOCKED_IO'.
33014
33015 2004-10-04  Simon Josefsson  <jas@extundo.com>
33016
33017         * config/srclist.txt: Add memmem from glibc.
33018
33019 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33020
33021         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
33022
33023         * modules/argmatch, modules/argp, modules/closeout, modules/error,
33024         modules/exclude, modules/getdate, modules/getline,
33025         modules/getndelim2, modules/getpass, modules/getpass-gnu,
33026         modules/getusershell, modules/linebuffer, modules/md5,
33027         modules/mountlist, modules/posixtm, modules/readtokens,
33028         modules/readutmp, modules/regex, modules/sha1,
33029         modules/version-etc, modules/yesno:
33030         Remove dependency on unlocked-io.
33031
33032 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33033
33034         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
33035
33036         * m4/unlocked-io.m4: Add copyright notice.
33037         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
33038
33039 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33040
33041         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
33042         * lib/xmalloc.c (xmemdup): Likewise.
33043         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
33044         XFREE): Remove these long-obsolescent macros.
33045         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
33046         * lib/xstrdup.c: Remove.
33047
33048         * lib/regex.c (re_comp): Cast gettext return value to char *,
33049         Problem reported by Martin Neitzel via Mark D. Baushke.
33050
33051 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33052
33053         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
33054         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
33055         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
33056         regex.c, sha1.c, version-etc.c, yesno.c:
33057         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
33058         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
33059         the includer's responsibility.
33060
33061         Sync from coreutils.
33062
33063         * lib/modechange.c (mode_compile): Don't decrement a pointer that
33064         points to the start of a string, as the C Standard says the
33065         resulting behavior is undefined.
33066
33067         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
33068         simple -> simple_backups, numbered_existing ->
33069         numbered_existing_backups, numbered -> numbered_backups
33070         to avoid shadowing problems.  All uses changed.
33071         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
33072         * lib/backupfile.c (check_extension, numbered_backup):
33073         Rename locals to avoid shadowing 'basename'.
33074         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
33075         once.
33076
33077         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
33078         * lib/.cvsignore: Add getopt.h.
33079
33080 2004-10-04  Bruno Haible  <bruno@clisp.org>
33081
33082         * modules/README: New file.
33083         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
33084         not a module.
33085
33086 2004-10-02  Jim Meyering  <jim@meyering.net>
33087
33088         * lib/dirfd.h, getpagesize.h: Add copyright notice.
33089
33090 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33091
33092         * modules/strsep: New file.
33093
33094 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33095
33096         * m4/strsep.m4: New file.
33097
33098 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33099
33100         * lib/strsep.h: New file.
33101         * lib/strsep.c: New file.
33102
33103 2004-10-01  Simon Josefsson  <jas@extundo.com>
33104
33105         * lib/snprintf.c (snprintf): Handle size==0.
33106
33107 2004-10-01  Simon Josefsson  <jas@extundo.com>
33108             Bruno Haible  <bruno@clisp.org>
33109
33110         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
33111         (snprintf): Declare 'args'.
33112
33113 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
33114
33115         * lib/snprintf.c: Remove comments as to why each header is needed.
33116
33117 2004-10-01  Bruno Haible  <bruno@clisp.org>
33118
33119         * MODULES.html.sh: Add strsep.
33120
33121 2004-09-30  Simon Josefsson  <jas@extundo.com>
33122
33123         * modules/snprintf: New file.
33124
33125 2004-09-30  Simon Josefsson  <jas@extundo.com>
33126
33127         * m4/snprintf.m4: New file.
33128
33129 2004-09-30  Simon Josefsson  <jas@extundo.com>
33130
33131         * lib/snprintf.h, lib/snprintf.c: New files.
33132
33133 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
33134
33135         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
33136         (hol_entry_help): Never translate an empty string.
33137         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
33138         * lib/argp.h (OPTION_NO_TRANS): New option.
33139
33140 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33141
33142         * modules/argp (Maintainer): Replace Simon Josefsson
33143         by Sergey Poznyakoff.
33144
33145 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33146
33147         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
33148         changes merged back into glibc.
33149
33150 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33151
33152         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
33153
33154 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
33155
33156         * lib/xvasprintf.c: Include xalloc.h.
33157         (xvasprintf): Use xalloc_die, not xmalloc_die.
33158
33159 2004-09-29  Bruno Haible  <bruno@clisp.org>
33160
33161         * modules/alloca-opt: New file, derived from modules/alloca.
33162         * modules/allocsa: Depend on alloca-opt instead of alloca.
33163         * modules/setenv: Likewise.
33164         * modules/vasnprintf: Likewise.
33165         * MODULES.html.sh: Add alloca-opt.
33166
33167 2004-09-28  Simon Josefsson  <jas@extundo.com>
33168
33169         * gnulib-tool: New parameter --lgpl, to asseert that modules are
33170         LGPL, and to replace license template from GPL to LGPL.
33171
33172 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33173
33174         * modules/dummy: Change license to LGPL.
33175
33176 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33177
33178         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
33179
33180 2004-09-24  Simon Josefsson  <jas@extundo.com>
33181
33182         * modules/minmax (License): Change from GPL to LGPL.
33183
33184 2004-09-23  Simon Josefsson  <jas@extundo.com>
33185
33186         * gnulib-tool (--import): Typo.
33187
33188 2004-09-23  Simon Josefsson  <jas@extundo.com>
33189
33190         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
33191
33192 2004-09-22  Bruno Haible  <bruno@clisp.org>
33193
33194         * modules/*: Add 'License' field.
33195         * gnulib-tool: Accept --extract-license option.
33196         (func_get_license): New function.
33197
33198 2004-09-21  Bruno Haible  <bruno@clisp.org>
33199
33200         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
33201         Reported by Simon Josefsson.
33202
33203 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33204
33205         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
33206         gl_AC_TYPE_LONG_LONG.
33207
33208 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33209
33210         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
33211
33212 2004-09-18  Simon Josefsson  <jas@extundo.com>
33213         and  Paul Eggert  <eggert@cs.ucla.edu>
33214
33215         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
33216         calls with autoreconf.  Define GL_LIB.
33217
33218 2004-09-14  Karl Berry  <karl@gnu.org>
33219
33220         * config/srclist.txt: unsync setenv.c, sigh.
33221
33222 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33223
33224         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
33225         Problem reported by Bruno Haible in:
33226         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
33227
33228 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33229
33230         * config/srclist.txt: Comment out argp-pvh.c.
33231
33232 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
33233
33234         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
33235         in case some system header has #define'd it.  Problem reported by
33236         Soeren D. Schulze in
33237         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
33238
33239 2004-09-09  Karl Berry  <karl@gnu.org>
33240
33241         * regex.[ch]: delete from the root.  These were supposed to be
33242                 synced with emacs cvs, but this has not happened for about
33243                 a year, and anyway nothing else uses emacs regex.[ch].
33244                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
33245                 lib/regex[.ch] is untouched.
33246
33247 2004-09-09  Bruno Haible  <bruno@clisp.org>
33248
33249         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
33250
33251 2004-09-09  Bruno Haible  <bruno@clisp.org>
33252
33253         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
33254         modifications.
33255         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
33256
33257 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33258
33259         * modules/xvasprintf: New file.
33260         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
33261
33262 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33263
33264         * lib/xvasprintf.h: New file.
33265         * lib/xvasprintf.c: New file.
33266         * lib/xasprintf.c: New file.
33267
33268 2004-09-08  Bruno Haible  <bruno@clisp.org>
33269
33270         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
33271
33272 2004-09-08  Bruno Haible  <bruno@clisp.org>
33273
33274         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
33275         length is > INT_MAX.
33276         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
33277         more.
33278
33279 2004-09-08  Bruno Haible  <bruno@clisp.org>
33280
33281         * lib/stdint_.h: New file, taken from GNU clisp.
33282
33283 2004-09-08  Bruno Haible  <bruno@clisp.org>
33284             Oskar Liljeblad  <oskar@osk.mine.nu>
33285
33286         * modules/stdint: New file.
33287         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
33288
33289 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33290
33291         Import from coreutils.
33292         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
33293         strings on unbounded length.  alloca's performance benefits aren't
33294         that important here.
33295         (V_STRDUP): Remove.
33296         (parse_with_separator): New function, with most of the internals
33297         of the old parse_user_spec.  Allow user to omit both user and group,
33298         for compatibility with FreeBSD.
33299         Clone only the user name, not the entire spec.
33300         Do not set *uid, *gid unless entirely successful.
33301         Avoid memory leak in some failing cases.
33302         Fix regression for USER.GROUP reported by Dmitry V. Levin in
33303         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
33304         (parse_user_spec): Rewrite to use parse_with_separator.
33305
33306 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33307
33308         * modules/userspec: Don't depend on alloca.
33309
33310 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33311
33312         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
33313
33314 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
33315
33316         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
33317         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
33318         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
33319
33320 2004-08-16  Simon Josefsson  <jas@extundo.com>
33321
33322         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
33323         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
33324         Add --dry-run for --import.
33325         Let user provided command line parameters override configure.ac
33326         settings.
33327
33328 2004-08-12  Simon Josefsson  <jas@extundo.com>
33329
33330         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
33331         as discussed with Paul Eggert in threads rooted at
33332         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
33333         and
33334         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
33335         Before, the test was empty, and relied on ELIDE_CODE in source
33336         code.)
33337         (gl_PREREQ_GETOPT): New macro.
33338         (gl_GETOPT): Use them.
33339
33340 2004-08-12  Simon Josefsson  <jas@extundo.com>
33341
33342         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
33343         * lib/getopt_.h: Renamed from getopt.h.
33344
33345 2004-08-12  Simon Josefsson  <jas@extundo.com>
33346
33347         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
33348         Change default library name from libfoo to libgnu.
33349         Now, if you have a configure.ac that says:
33350                 gl_SOURCE_BASE(gl)
33351                 gl_M4_BASE(gl/m4)
33352                 gl_MODULES(error getopt etcetera)
33353                 gl_INIT
33354         you can import all you need by running:
33355                 ../gnulib/gnulib-tool --import
33356
33357         * modules/getopt (Files): Rename getopt.h to getopt_.h.
33358         (Makefile.am): Rewrite, use logic from argz.
33359         (Include): Use <getopt.h> instead of "getopt.h".
33360
33361 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33362
33363         * modules/argp (Files): Add m4/unlocked-io.m4.
33364         (Depends-on): Add extensions.
33365
33366 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33367
33368         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
33369         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
33370         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
33371         Check for program_invocation_name, program_invocation_short_name,
33372         flockfile, funlockfile, features.h, _getopt_long_only_r.
33373
33374 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33375
33376         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
33377         its complicated substitute.
33378         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
33379         and program_invocation_name.
33380         (__argp_basename) [!_LIBC]: Remove; the only use was
33381         replaced by its body.
33382         (__argp_short_program_name): Change condition from
33383         !defined __argp_short_program_name to
33384         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
33385         to match argp-namefrob.h.
33386         (__argp_failure): Don't assume strerror_r returns char *.
33387         * lib/argp-parse.c (N_): Define unconditionally.
33388         (argp_default_options): Fill out initializers with 0 to avoid
33389         gcc warnings.
33390
33391 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33392
33393         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
33394         getopt1.c.
33395
33396 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33397
33398         Merge from coreutils.
33399
33400         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
33401
33402         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
33403         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
33404
33405 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33406
33407         Merge from coreutils.
33408
33409         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
33410         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
33411         for Reliant Unix 5.43.
33412
33413         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
33414         (union fooround): Use uintmax_t, not long int.
33415         The rest is a merge from libc:
33416         [defined _LIBC]: Include <shlib-compat.h>.
33417         (_obstack) [defined _LIBC]: Remove after 2.3.4.
33418
33419         * lib/settime.c (settime): Recode to avoid warning with
33420         Sun Forte C 6U2.
33421
33422         * lib/strverscmp.c: Convert to UTF-8.
33423
33424 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33425
33426         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
33427         m4/uintmax_t.m4.
33428
33429 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33430
33431         * modules/xalloc-die: New file.
33432         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
33433
33434         * modules/md5 (Files): Add m4/uint32_t.m4.
33435         * modules/sha1: Renamed from modules/sha.
33436         (Files):
33437         Rename lib/sha.h to lib/sha1.h.
33438         Rename lib/sha.c to lib/sha1.c.
33439         Rename m4/sha.m4 to m4/sha1.m4.
33440         (lib_SOURCES): Likewise.
33441         (configure.ac): Rename gl_SHA to gl_SHA1.
33442         (Include): sha.h -> sha1.h.
33443
33444 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33445
33446         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
33447         * m4/sha1.m4: Renamed from sha.m4.
33448         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
33449
33450 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33451
33452         * lib/obstack.h (obstack_empty_p):
33453         Don't assume that chunk->contents is suitably aligned.
33454         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
33455         Likewise. Problem reported by Benno in
33456         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
33457
33458         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
33459         readable.  This could be improved further but it'd take some work.
33460
33461 2004-08-08  Simon Josefsson  <jas@extundo.com>
33462
33463         * modules/xgethostname (Depends-on): Remove exit and error (not
33464         used).
33465
33466         * modules/getpass-gnu: Add getpass.h.
33467         (Depends-on): Add stdbool.
33468         * modules/getpass: Add getpass.h.
33469
33470 2004-08-08  Simon Josefsson  <jas@extundo.com>
33471
33472         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
33473         Check getpass declaration.
33474
33475 2004-08-08  Simon Josefsson  <jas@extundo.com>
33476
33477         * lib/xgethostname.c: Don't include error.h (not used).
33478
33479         * lib/getpass.h: Add.
33480         * lib/getpass.c: Include getpass.h first.
33481
33482 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
33483
33484         * lib/xalloc-die.c: New file.
33485         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
33486         All uses removed.
33487         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
33488         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
33489         xalloc-die.c.
33490         (_, N_, xalloc_die): Move to xalloc-die.c.
33491         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
33492         so that we needn't mess with xalloc_msg_memory_exhausted.
33493
33494         * lib/sha1.h: Renamed from sha.h.
33495         (SHA1_H): Renamed from _SHA_H.
33496         (sha1_ctx): Renamed from sha_ctx.
33497         (sha1_init_ctx): Renamed from sha_init_ctx.
33498         (sha1_process_block): Renamed from sha_process_block.
33499         (sha1_process_bytes): Renamed from sha_process_bytes.
33500         (sha1_finish_ctx): Renamed from sha_finish_ctx.
33501         (sha1_read_ctx): Renamed from sha_read_ctx.
33502         (sha1_stream): Renamed from sha_stream.
33503         (sha1_buffer): Renamed from sha_buffer.
33504         * lib/sha1.c: Likewise; renamed from sha.c.
33505         Do not include <sys/types.h>.
33506         Include <stddef.h> rather than <stdlib.h>.
33507
33508 2004-08-08  Bruno Haible  <bruno@clisp.org>
33509
33510         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
33511         FILESYSTEM_PREFIX_LEN.
33512         * lib/progreloc.c: Likewise.
33513         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
33514
33515 2004-08-06  Simon Josefsson  <jas@extundo.com>
33516
33517         * modules/progname (Depends-on): Don't depend on stdbool.
33518
33519 2004-08-06  Simon Josefsson  <jas@extundo.com>
33520
33521         * modules/getsubopt: New file.
33522         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
33523         getsubopt.
33524
33525 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33526
33527         More merge from coreutils.
33528
33529         * m4/utimens.m4, m4/utimecmp.m4: New files.
33530         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
33531         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
33532         prereq.m4, sha.m4: Import changes from coreutils.
33533
33534 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33535
33536         More merge from coreutils.
33537         * modules/raise, modules/readtokens0, modules/utimens:
33538         * modules/utimecmp, module/xnanosleep: New files.
33539         * modules/strftime: Add lib/strftime.h.
33540         Change include from <time.h> to "strftime.h".
33541         * modules/yesno: Add lib/yesno.h.
33542         * modules/backupfile: Remove lib/addext.c.
33543         * modules/euidaccess: Add stat-macros.h.
33544         * modules/canonicalize, modules/euidaccess,
33545         modules/filemode, modules/lchown, modules/makepath,
33546         modules/rmdir, modules/stat: Likewise.
33547
33548 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33549
33550         Merge from tar.
33551         * lib/argp-help.c (make_hol, hol_append): Don't assume that
33552         SIZE_MAX is a valid preprocessor constant.
33553         (__argp_basename): Change from "#ifndef _LIBC"
33554         to "#ifndef __argp_short_program_name", so that
33555         we don't compile these functions for tar.
33556
33557         More merges from coreutils.
33558         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
33559         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
33560         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
33561         * lib/addext.c: Remove; no longer needed.
33562         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
33563         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
33564         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
33565         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
33566         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
33567         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
33568         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
33569         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
33570         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
33571         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
33572         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
33573         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
33574         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
33575         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
33576         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
33577         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
33578         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
33579         Import changes from coreutils.
33580
33581 2004-08-05  Simon Josefsson  <jas@extundo.com>
33582
33583         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
33584
33585 2004-08-05  Simon Josefsson  <jas@extundo.com>
33586
33587         * m4/getsubopt.m4: New file.
33588
33589 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33590
33591         Merge from coreutils.
33592
33593         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
33594         * m4/getcwd-path-max.m4: New files.
33595
33596         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
33597         FILESYSTEM_PREFIX_LEN ->
33598         FILE_SYSTEM_PREFIX_LEN.
33599         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
33600         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
33601         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
33602         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
33603
33604         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
33605         prerequisite modules now handle the DOS stuff.
33606         Don't check for unistd.h.
33607
33608 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33609
33610         Merge from coreutils.
33611
33612         * lib/.gdb-history: Remove; this doesn't belong here.
33613
33614         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
33615         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
33616         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
33617         * lib/getcwd.c: New files.
33618
33619         * lib/dirname.h: Include <stdbool.h>.
33620         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
33621         for consistency with POSIX terminology.  All uses changed.
33622         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
33623         (strip_trailing_slashes): Use bool for booleans.
33624         * lib/stripslash.c (strip_trailing_slashes): Likewise.
33625
33626         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
33627         sometimes returns a positive errno value even when it succeeds.
33628         (print_errno_message) [!LIBC]: Fall back on strerror if
33629         __strerror_r fails.
33630
33631         * lib/path-concat.c (mempcpy): Don't define if a system header defines
33632         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
33633         (longest_relative_suffix): New function.
33634         (path_concat): Use it.  Assume first argument is not NULL.
33635         Port to DOS.  Omit redundant separators.
33636         Report an error instead of returning NULL.
33637         Use mempcpy instead of memcpy.
33638         (xpath_concat): Remove: not declared or used.
33639
33640         * lib/same.h: Include <stdbool.h>
33641         (same_name): Return bool, not int.
33642         * lib/same.c (same_name): Likewise.
33643         (errno): Don't declare; we assume C89 or better now.
33644
33645         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
33646         if not already defined.
33647
33648         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
33649         * lib/dup-safer.c (errno): Likewise.
33650
33651 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33652
33653         Merge from coreutils.
33654         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
33655         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
33656         * modules/path-concat: Don't depend on strdup.
33657
33658 2004-08-03  Simon Josefsson  <jas@extundo.com>
33659
33660         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
33661         * lib/progname.h: Don't include stdbool.h.
33662
33663 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33664
33665         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
33666         * MODULES.html.sh (func_all_modules): Remove fatal.
33667
33668 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33669
33670         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
33671
33672 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33673
33674         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
33675         working.
33676
33677 2004-08-02  Simon Josefsson  <jas@extundo.com>
33678
33679         * lib/getsubopt.h: New file, with comments from Bruno Haible.
33680         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
33681         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
33682
33683 2004-08-01  Simon Josefsson  <jas@extundo.com>
33684
33685         * lib/xgetdomainname.c: Include stdlib.h, for free().
33686
33687 2004-07-19  Bruno Haible  <bruno@clisp.org>
33688
33689         * MODULES.html.sh (func_all_modules): Add dummy.
33690
33691 2004-07-16  Simon Josefsson  <jas@extundo.com>
33692
33693         * modules/dummy: New file.
33694
33695 2004-07-16  Simon Josefsson  <jas@extundo.com>
33696
33697         * lib/dummy.c: New file.
33698
33699 2004-07-16  Bruno Haible  <bruno@clisp.org>
33700
33701         * lib/backupfile.h: Add extern "C" for C++.
33702         * lib/closeout.h: Likewise.
33703         * lib/copy-file.h: Likewise.
33704         * lib/findprog.h: Likewise.
33705         * lib/full-write.h: Likewise.
33706         * lib/pathname.h: Likewise.
33707         * lib/progname.h: Likewise.
33708         * lib/stpcpy.h: Likewise.
33709         * lib/stpncpy.h: Likewise.
33710         * lib/strcase.h: Likewise.
33711         * lib/strstr.h: Likewise.
33712         * lib/xalloc.h: Likewise.
33713
33714         * lib/mbswidth.h: Add extern "C" for C++.
33715         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
33716
33717 2004-07-13  Robert Millan  <robertmh@gnu.org>
33718
33719         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
33720
33721 2004-07-09  Simon Josefsson  <jas@extundo.com>
33722
33723         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
33724         failed without this.)
33725
33726 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33727
33728         * modules/chown (Files): Add lib/fchown-stub.c, since
33729         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
33730
33731 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33732
33733         * lib/fchown-stub.c: New file.
33734
33735 2004-06-24  Jim Meyering  <jim@meyering.net>
33736
33737         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
33738
33739 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33740
33741         * modules/argz: Omit "#include".
33742
33743         * MODULES.html.sh (func_all_modules): Add calloc, to match
33744         2004-06-01 addition of calloc module.
33745
33746 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33747
33748         * m4/argz.m4: New file, which is autoupdated from libtool.
33749
33750 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33751
33752         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
33753         libtool.
33754
33755 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33756
33757         * config/srclist-update: Don't insist on "USA." before the
33758         close-comment, as libtool omits the period and puts the */ on a
33759         separate line.
33760         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
33761         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
33762
33763 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
33764
33765         * modules/argz: New file.
33766         * MODULES.html.sh (func_all_modules): Add argz.
33767
33768 2004-06-12  Jim Meyering  <jim@meyering.net>
33769         and  Paul Eggert  <eggert@cs.ucla.edu>
33770
33771         * modules/hash (Files): Add lib/xalloc.h.
33772         * modules/pipe (Depends-on): Add wait-process.
33773         * modules/stat (Depends-on): Add xalloc.
33774         * modules/userspec (Files): Add lib/userspec.h.
33775         * modules/xstrto
33776
33777         Upgrade from gettext-0.13.
33778         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
33779         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
33780         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
33781
33782 2004-06-10  Jim Meyering  <jim@meyering.net>
33783
33784         * lib/calloc.c: New file.
33785
33786 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33787
33788         * lib/getdate.y (yylex): Allow space between sign and number.
33789         Problem reported by Dan Jacobson.
33790
33791 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
33792
33793         Merge from coreutils CVS.
33794
33795         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
33796         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
33797         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
33798         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
33799         xstrtol.m4: Fix copyright date and/or serial number.
33800
33801         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
33802         See if we need an fchown replacement.
33803         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
33804         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
33805         and use the replacement function if we detect either defect.
33806
33807         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
33808         gl_UTIMECMP.
33809
33810 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
33811         and  Jim Meyering  <jim@meyering.net>
33812
33813         Merge from coreutils CVS.
33814
33815         * lib/stat-macros.h: New file, with contents from file-type.h
33816         and coreutils' system.h.
33817         * lib/file-type.c: Include "stat-macros.h".
33818         * lib/file-type.h (file_type): Move all macro definitions to new file,
33819         stat-macros.h.
33820
33821         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
33822         Wrap old code with this conditional.
33823         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
33824         function that does not dereference symlinks.
33825         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
33826
33827         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
33828         dependency problems.
33829         (xreadlink): Accept new arg SIZE, for efficiency.
33830         All decls and uses changed.
33831         * lib/xreadlink.h: Include <stddef.h>, for size_t.
33832
33833         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
33834         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
33835
33836         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
33837         sysexits.h.
33838
33839 2004-06-01  Jim Meyering  <jim@meyering.net>
33840
33841         * m4/calloc.m4: New file.
33842
33843 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
33844
33845         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
33846         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
33847         Also, fix a typo in a diagnostic.
33848
33849 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
33850
33851         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
33852         or AC_FUNC_REALLOC.
33853
33854 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
33855
33856         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
33857         macros to be defined.
33858         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
33859         the allocator returns NULL because the requested size is zero.
33860
33861 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
33862
33863         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
33864         var.  Add comment explaining why libc still defines it.  This
33865         merges the following patch from glibc:
33866         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
33867
33868 2004-05-20  Andreas Schwab  <schwab@suse.de>
33869
33870         * m4/free.m4: Replace free if it not known to work, not the other
33871         way round.
33872
33873 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
33874
33875         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
33876         present in glibc since revision 1.1 of this file.
33877         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
33878         obstack_alignment_mask, obstack_alloc, obstack_base,
33879         obstack_blank, obstack_blank_fast, obstack_chunk_size,
33880         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
33881         obstack_grow0, obstack_init, obstack_int_grow,
33882         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
33883         obstack_next_free, obstack_object_size, obstack_ptr_grow,
33884         obstack_ptr_grow_fast, obstack_room): Remove declarations of
33885         nonexistent functions.
33886
33887 2004-05-18  Karl Berry  <karl@gnu.org>
33888
33889         * config/srclist.txt: break link for vasnprintf.c.
33890
33891 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
33892
33893         Port obstack to the AS/400, where pointers are 16 bytes wide and
33894         you cannot cast an integer to a valid pointer.  This patch is
33895         currently waiting to be integrated into glibc; see
33896         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
33897
33898         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
33899         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
33900         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
33901         (struct obstack): temp member is now a union of a pointer and
33902         an integer, instead of an integer.  All integer uses changed.
33903         This does not affect the physical layout of struct obstack,
33904         except on hosts (like the AS/400) where the size or alignment of
33905         void * is greater than that of ptrdiff_t.
33906         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
33907         __STDC__)]: Store temporary in pointer member of union, not
33908         integer member.
33909         * lib/obstack.c: Include <stddef.h>, for offsetof.
33910         (struct fooalign): Remove; it doesn't need a name.
33911         (union fooround): Change double to long double, and add void *.
33912         (DEFAULT_ALIGNMENT): Use offsetof to compute.
33913         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
33914         not a macro.  Hence the values are always int; so remove all
33915         casts-to-int in uses.
33916
33917 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
33918
33919         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
33920         we can get this patch merged into glibc.
33921
33922 2004-05-17  Derek R. Price  <derek@ximbiot.com>
33923             Paul Eggert  <eggert@cs.ucla.edu>
33924
33925         * m4/argp: Depend on alloca.
33926
33927 2004-05-17  Derek R. Price  <derek@ximbiot.com>
33928             Paul Eggert  <eggert@cs.ucla.edu>
33929
33930         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
33931         freecoding.
33932
33933 2004-05-17  Bruno Haible  <bruno@clisp.org>
33934
33935         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
33936         precision that consists of a '.' followed by an empty digit string.
33937         Patch by Tor Lillqvist <tml@iki.fi>.
33938
33939 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
33940
33941         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
33942         for backward compatibility with older code.  We need our own
33943         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
33944         it under some other name, and our alloca.h will define it.
33945
33946 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
33947             Derek Price  <derek@ximbiot.com>
33948
33949         * lib/alloca.c: Include <alloca.h>, to get our interface.
33950         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
33951         include <alloca.h> first.  Use C89 prototype for alloca; this
33952         requires including <stddef.h> for size_t.  Use extern "C" if C++.
33953         Use #elif for simplicity, since we can assume C89 now.
33954         Don't try to source the system alloca.h since it will not be found
33955         and to prevent recursively including its replacement.
33956         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
33957         * lib/regex.c: Likewise.
33958
33959 2004-05-16  Derek Price  <derek@ximbiot.com>
33960             Paul Eggert  <eggert@cs.ucla.edu>
33961
33962         getline cleanup.  This changes the getndelim2 API: both order of
33963         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
33964         no delimiter).
33965
33966         * lib/getline.c: Don't include stddef.h or stdio.h, since our
33967         interface does that.
33968         (getline): Always use getdelim, so that we don't have two
33969         copies of this code.
33970         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
33971         if available.
33972         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
33973         (GETNDELIM2_MAXIMUM): New macro.
33974         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
33975         instead of the old practice of delim2==0.  All callers changed.
33976         Return -1 on overflow, instead of returning junk.
33977         Do not set *linesize unless allocation succeeds.
33978         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
33979         that we include sys/types.h.
33980         * lib/getnline.h: Likewise.
33981         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
33982         (getndelim2): Reorder arguments.
33983         * lib/getnline.c (getnline, getndelim):
33984         Don't discard the NMAX argument.
33985         (getnline): Invoke getndelim, to avoid code duplication.
33986         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
33987         of (size_t) -1 by callers of the getnline family.
33988
33989 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
33990
33991         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
33992         Check for gettimeofday.
33993         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
33994         Check for settimeofday, stime.
33995
33996 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
33997
33998         * lib/nanosleep.c (suspended): Change its type from int to
33999         sig_atomic_t volatile.
34000         (first_call): Make it private to rpl_nanosleep, and have it
34001         be zero initially as that's a bit faster.
34002         (my_usleep): Round up fractional times instead of truncating them,
34003         as this is the usual meaning for 'sleep'.
34004
34005         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
34006         doesn't work.
34007         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
34008         (ENOSYS): Define if not defined.
34009         (settime): Fall back on stime if it exists and settimeofday fails.
34010         But don't bother with fallbacks if a method fails with errno == EPERM.
34011
34012 2004-05-11  Jim Meyering  <jim@meyering.net>
34013
34014         Prior to this change, the save_cwd caller required read access to the
34015         current directory on most systems (ones with the fchdir function).
34016
34017         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
34018         fails, try write-only, and finally, resort to using xgetcwd.
34019
34020 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
34021
34022         * lib/obstack.c, obstack.h: Import changes from libc.
34023
34024 2004-04-28  Bruno Haible  <bruno@clisp.org>
34025
34026         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
34027         also implicitly appends .exe to executables.
34028         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
34029         accepts Windows pathnames.
34030         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34031         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34032         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34033         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34034         Reported by Derek Robert Price <derek@ximbiot.com>.
34035
34036 2004-04-21  Karl Berry  <karl@gnu.org>
34037
34038         * config/srclist.txt (localcharset.c): break sync.
34039
34040 2004-04-20  Paul Eggert  <eggert@twinsun.com>
34041
34042         * m4/host-os.m4: Add a copyright notice.
34043
34044 2004-04-20  Jim Meyering  <jim@meyering.net>
34045
34046         Change UTILS_ to gl_ in AC_DEFINE'd names.
34047         Change utils_- and jm_-prefixed variables, too.
34048         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
34049         UTILS_FUNC_MKDIR_TRAILING_SLASH.
34050         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
34051
34052         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
34053         Don't emit trailing blanks.
34054         Also rename jm_-prefixed variables to have gl_ prefix.
34055
34056         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
34057         Also rename jm_-prefixed variables to have gl_ prefix.
34058
34059         * m4/jm-macros.m4: Reflect the renamings.
34060         * m4/prereq.m4: Likewise.
34061
34062 2004-04-20  Jim Meyering  <jim@meyering.net>
34063
34064         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
34065         memory.
34066
34067 2004-04-20  Jim Meyering  <jim@meyering.net>
34068             Bruno Haible  <bruno@clisp.org>
34069
34070         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
34071         memory when realloc fails.
34072
34073 2004-04-19  Jim Meyering  <jim@meyering.net>
34074
34075         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
34076         now that readutmp.c may call `free (0)'.
34077
34078 2004-04-19  Bruno Haible  <bruno@clisp.org>
34079
34080         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
34081         * m4/inttypes_h.m4: Likewise.
34082         * m4/stdint_h.m4: Likewise.
34083         * m4/intmax_t.m4: Likewise.
34084         * m4/uintmax_t.m4: Likewise.
34085
34086 2004-04-18  Jim Meyering  <jim@meyering.net>
34087
34088         * m4/prereq.m4: Don't forbid jm_ prefix.
34089
34090         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
34091         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
34092         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
34093         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
34094         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
34095         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
34096         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
34097         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
34098         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
34099         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
34100         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
34101         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
34102         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
34103         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
34104         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
34105         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
34106         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
34107         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
34108         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
34109
34110 2004-04-18  Jim Meyering  <jim@meyering.net>
34111
34112         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
34113         failure, don't leak memory and do call END_UTMP_ENT.
34114
34115 2004-04-16  Jim Meyering  <jim@meyering.net>
34116
34117         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
34118         coreutils' stat program.
34119         (gl_PREREQ): Don't require jm_PREREQ_STAT.
34120
34121 2004-04-11  Paul Eggert  <eggert@twinsun.com>
34122
34123         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
34124         C89.
34125         (CHAR_BIT): Remove, since we assume C89.
34126         Include <stdint.h> if available, as per current Autoconf CVS advice.
34127
34128 2004-03-31  Jim Meyering  <jim@meyering.net>
34129
34130         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
34131         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
34132         * m4/xalloc.m4: Likewise.
34133
34134 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34135
34136         Merge from coreutils.
34137
34138         * m4/inttostr.m4: New file.
34139         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
34140         Require AM_STDBOOL_H and gl_TIMESPEC instead.
34141         Require gl_CLOCK_TIME.
34142         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
34143
34144 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34145
34146         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
34147         not bool, to be more consistent with Unix conventions.
34148         Suggested by Bruno Haible.
34149
34150         Merge from coreutils.
34151
34152         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
34153         * lib/umaxtostr.c: New files.
34154
34155         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
34156         the usual <time.h> dance.
34157         (get_date): Change signature to support fractional time stamps.
34158         All callers changed.
34159         * lib/getdate.y: Include "getdate.h" first, as we can now
34160         assume C89 and don't need to worry about 'const'.
34161         Similarly, include "unlocked-io.h" near start, not in middle.
34162         Include <limits.h>.
34163         (textint.value): Use long int rather than int.
34164         (textint.digits): Use size_t rather than int.
34165         (BILLION, LOG10_BILLION): New constants.
34166         (parser_control): New member rel_ns.  Members day_ordinal,
34167         time_zone, month, day, hour, minutes, rel_year, rel_month,
34168         rel_day, rel_hour, rel_minutes, rel_seconds
34169         are now long int, not int.  Member seconds is now struct timespec,
34170         not int.  New member timespec_seen.  Members dates_seen, days_seen,
34171         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
34172         not int.
34173         (%union.intval): Now long int, not int.
34174         New member timespec.
34175         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
34176         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
34177         (spec): Now is a timespec or an item list.
34178         (timespec, items): New nonterminals.
34179         (time, rel, relunit, number, get_date):
34180         Add support for fractional seconds.
34181         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
34182         (gmtime, localtime, mktime): Remove decls; not needed with C89.
34183         (to_hour): First arg is now long int, not int.
34184         (to_year): Returns long int, not int.
34185         Don't treat year -70 like 70.
34186         (tm_diff): Returns long int, not int.
34187         (lookup_word): Use bool instead of int when appropriate.
34188         (yylex): Use size_t for count, not int.
34189         Detect overflow when parsing large integer constants.
34190         Add support for fractions.
34191         (get_date): Make pointers 'const' if possible.
34192         Use more-portable code to detect integer overflow.
34193         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
34194         Don't use ctime; it's not reliable if the year has >4 digits.
34195
34196         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
34197         This is for compatibility with BSD.
34198
34199         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
34200         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
34201         From coreutils' system.h.
34202
34203         * lib/userspec.c: Don't include "posixver.h".
34204         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
34205         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
34206         compatible extension.  Simplify code by removing a boolean int
34207         that was always nonzero if a string was nonnull.
34208
34209 2004-03-30  Jim Meyering  <jim@meyering.net>
34210
34211         Merge from coreutils.
34212
34213         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
34214         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
34215         on some systems one must include <grp.h> before it.
34216         Reported by Christian Krackowizer.
34217
34218 2004-03-30  Jim Meyering  <jim@meyering.net>
34219
34220         Merge from coreutils.
34221
34222         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
34223
34224         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
34225         an empty input stream.
34226
34227         * lib/readtokens.c: Include <stdbool.h>.
34228         (readtoken): Use `size_t' rather than int/long.
34229         All callers adjusted.
34230         Use `bool' rather than `int' where appropriate.
34231         Use memset rather than an explicit loop.
34232         Use x2nrealloc rather than xrealloc.
34233         Allow the use of `\0' as a delimiter.
34234         (readtokens): Likewise.
34235         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
34236
34237 2004-03-30  Jim Meyering  <jim@meyering.net>
34238
34239         * m4/realloc.m4: Remove file, since now it does no more than
34240         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
34241         the `configure.ac' section of module/realloc.
34242         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
34243
34244 2004-03-30  Bruno Haible  <bruno@clisp.org>
34245
34246         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
34247         nonnull.
34248
34249 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34250
34251         Merge changes to getloadavg.c from coreutils and Emacs.
34252
34253         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
34254         Define to an expression, not to the empty string.
34255         Include cloexec.h and xalloc.h.
34256         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
34257         Use set_cloexec_flag rather than rolling our own.
34258         * lib/cloexec.c, lib/cloexec.h: New files.
34259
34260 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34261
34262         * m4/cloexec.m4: New file.
34263
34264 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34265
34266         * lib/getopt.h: Sync with libc CVS.
34267
34268 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34269             Bruno Haible  <bruno@clisp.org>
34270
34271         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
34272         mbswidth.
34273
34274 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34275             Bruno Haible  <bruno@clisp.org>
34276
34277         * lib/mbswidth.h: Include <wchar.h> only if
34278         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
34279         <wchar.h>.
34280         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
34281
34282 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34283
34284         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
34285         Sync with libc CVS.
34286         * lib/getopt_int.h: New file, also synced from libc.
34287
34288 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34289
34290         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
34291         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
34292         Bring back getopt.c, getopt.h, getopt1.c.
34293
34294 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34295
34296         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
34297         All uses changed.  Check for sa_sigaction member; this fixes
34298         a bug first reported by Jason Andrade in
34299         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34300
34301 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34302
34303         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
34304         '#if' expressions.  Unlike the code it replaces, it does not
34305         depend on (defined _SC_PAGESIZE).  However, it does depend on
34306         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
34307         first reported by Jason Andrade in
34308         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34309
34310 2004-02-25  Simon Josefsson  <jas@extundo.com>
34311
34312         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
34313
34314 2004-02-25  Simon Josefsson  <jas@extundo.com>
34315
34316         * lib/strdup.h: New file.
34317         * lib/strdup.c: Include it.
34318         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
34319         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
34320
34321 2004-02-23  Karl Berry  <karl@gnu.org>
34322
34323         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
34324         (from fencepost.gnu.org:/gd/gnuorg).
34325
34326 2004-02-23  Karl Berry  <karl@gnu.org>
34327
34328         * config/srclistvars.sh (GNUORG) [karl]: redefine.
34329         * config/srclist.txt: add maintain/standards documents.
34330
34331 2004-02-18  Bruno Haible  <bruno@clisp.org>
34332
34333         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
34334         Reported by Derek Robert Price <derek@ximbiot.com>.
34335
34336 2004-02-16  Karl Berry  <karl@gnu.org>
34337
34338         * config/mkinstalldirs, install-sh: update from automake.
34339
34340 2004-02-06  Karl Berry  <karl@gnu.org>
34341
34342         * m4/po.m4: update from gettext 0.14.1.
34343
34344 2004-02-06  Karl Berry  <karl@gnu.org>
34345
34346         * lib/config.charset: update from gettext 0.14.1.
34347
34348 2004-02-05  Paul Eggert  <eggert@twinsun.com>
34349
34350         Add comments and code, prompted by suggestions from Bruno Haible
34351         for sh-quote.
34352         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
34353         describing the enum quoting_style values.
34354         * lib/quotearg.c (quotearg_alloc): New function.
34355         (quotearg_buffer_restyled): Treat lone { and } as special.
34356         Treat = as special.  Work around bug with older shells
34357         that "see" a '\' that is really the 2nd byte of a multibyte char.
34358         Quote empty string with shell_quoting_style.
34359
34360 2004-02-03  Bruno Haible  <bruno@clisp.org>
34361
34362         * m4/pipe.m4: New file, from GNU gettext.
34363
34364 2004-02-03  Bruno Haible  <bruno@clisp.org>
34365
34366         * lib/pipe.h: New file, from GNU gettext.
34367         * lib/pipe.c: New file, from GNU gettext.
34368
34369 2004-01-27  Bruno Haible  <bruno@clisp.org>
34370
34371         * m4/execute.m4: New file, from GNU gettext.
34372
34373 2004-01-27  Bruno Haible  <bruno@clisp.org>
34374
34375         * lib/execute.h: New file, from GNU gettext.
34376         * lib/execute.c: New file, from GNU gettext.
34377         * lib/w32spawn.h: New file, from GNU gettext.
34378
34379 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34380
34381         Merge from diffutils.
34382
34383         * lib/file-type.c (file_type): Add typed memory objects.
34384         * lib/file-type.h (S_TYPEISTMO): New macro.
34385
34386         * lib/c-stack.h (c_stack_action): Remove argv argument.
34387         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
34388         (die): Don't calculate message unless segv_action returns.
34389         (get_stack_location, min_address_from_argv, max_address_from_argv,
34390         volatile stack_base, volatile_stack_size): Remove.
34391         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
34392         that every segmentation violation is a stack overflow.  (Ouch!)
34393         See Debian bug 136249 (still outstanding) for more info about why
34394         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
34395
34396 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34397
34398         Exit-status fix from coreutils.
34399
34400         Use exit_failure consistently in place of EXIT_FAILURE,
34401         so that program exit statuses are consistent on failure.
34402
34403         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
34404         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
34405         * lib/argmatch.h: Comment fix to match the above.
34406         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
34407         Now a macro referring to exit_failure, instead of a separate
34408         variable.  Include "exitfail.h" to get it.
34409         * lib/xstrtol.h: Include "exitfail.h".
34410         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
34411
34412         * lib/long-options.c (parse_long_options): Use prototype
34413         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
34414         for clarity.
34415
34416 2004-01-21  Jim Meyering  <jim@meyering.net>
34417
34418         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
34419         so as not to conflict with a different-sized __mktime_internal
34420         function in GNU libc.
34421         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
34422         Problem building statically-linked `ls' reported by Michael Brunnbauer.
34423
34424 2004-01-20  Karl Berry  <karl@gnu.org>
34425
34426         * config/config.guess: update from config.
34427
34428         * config/srclistvars.sh: GNUWWWLICENSES for karl.
34429
34430 2004-01-20  Bruno Haible  <bruno@clisp.org>
34431
34432         Safer stack allocation.
34433         * lib/setenv.c: Include allocsa.h.
34434         (alloca): Remove fallback definition.
34435         (freea): Remove macro.
34436         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
34437         instead of freea.
34438
34439 2004-01-20  Bruno Haible  <bruno@clisp.org>
34440
34441         * m4/eealloc.m4: New file, from GNU gettext.
34442
34443 2004-01-20  Bruno Haible  <bruno@clisp.org>
34444
34445         * m4/allocsa.m4: New file, from GNU gettext.
34446
34447 2004-01-20  Bruno Haible  <bruno@clisp.org>
34448
34449         * lib/xallocsa.h: New file, from GNU gettext.
34450         * lib/xallocsa.c: New file, from GNU gettext.
34451
34452 2004-01-20  Bruno Haible  <bruno@clisp.org>
34453
34454         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
34455
34456 2004-01-20  Bruno Haible  <bruno@clisp.org>
34457
34458         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
34459         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
34460         specially.
34461
34462 2004-01-20  Bruno Haible  <bruno@clisp.org>
34463
34464         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
34465         patch.
34466
34467 2004-01-20  Bruno Haible  <bruno@clisp.org>
34468
34469         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
34470
34471 2004-01-20  Bruno Haible  <bruno@clisp.org>
34472
34473         * lib/eealloc.h: New file.
34474
34475 2004-01-20  Bruno Haible  <bruno@clisp.org>
34476
34477         * lib/binary-io.h: Avoid warnings on Cygwin.
34478
34479 2004-01-20  Bruno Haible  <bruno@clisp.org>
34480
34481         * lib/allocsa.h: New file, from GNU gettext.
34482         * lib/allocsa.c: New file, from GNU gettext.
34483
34484 2004-01-18  Karl Berry  <karl@gnu.org>
34485
34486         * doc/gpl.texi, doc/lgpl.texi: new files.
34487
34488 2004-01-18  Karl Berry  <karl@gnu.org>
34489
34490         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
34491         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
34492
34493 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34494
34495         Merge from coreutils.
34496
34497         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
34498         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
34499         (gl_DEFAULT_POSIX2_VERSION): Move
34500         the documentation from 'configure' into 'config.hin',
34501         so that 'configure --help' isn't burdened by it and
34502         we don't have to worry about its formatting there.
34503         Reword the documentation so that it's more succinct
34504         and can be run together into a single paragraph.
34505         * m4/same.m4 (gl_SAME): Check for pathconf.
34506
34507 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34508
34509         Merge from coreutils.
34510
34511         * lib/posixver.c: Include posixver.h.
34512
34513         * lib/same.c: Include <stdbool.h>, <limits.h>.
34514         (_POSIX_NAME_MAX): Define if not defined.
34515         (MIN): New macro.
34516         (same_name): If file names are silently truncated, report
34517         that the file names are the same if they are the same after
34518         the silent truncation.
34519
34520         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
34521         conversion function.
34522         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
34523         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
34524         longer needed.
34525
34526 2004-01-15  Jim Meyering  <jim@meyering.net>
34527
34528         Merge from coreutils.
34529
34530         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
34531         if no library is required.
34532         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
34533         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
34534         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
34535         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
34536         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
34537         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
34538         value, $ac_cv_search_crypt, if it's "none required".
34539         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
34540         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
34541         not gl_FUNC_GETLOADAVG.
34542         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
34543         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
34544
34545 2004-01-15  Jim Meyering  <jim@meyering.net>
34546
34547         Merge from coreutils.
34548
34549         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
34550         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
34551         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
34552
34553         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
34554         optional configure-time default.
34555
34556         * lib/version-etc.c (version_etc_copyright): Update copyright date.
34557
34558         * lib/xreadlink.c (xreadlink): Correct outdated comment.
34559
34560 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
34561
34562         Merge from coreutils.
34563
34564         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
34565         value, $ac_cv_search_nanosleep, if it's "none required".
34566
34567 2004-01-14  Paul Eggert  <eggert@twinsun.com>
34568
34569         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
34570         with like-named macro in fnmatch.c.
34571         (EXT): Use an internal constant instead.
34572
34573         Merge fnmatch patches from glibc.
34574         * lib/fnmatch.c (mbsinit): Remove define.
34575         Add libc_hidden_ver (__fnmatch, fnmatch).
34576         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
34577         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
34578
34579 2004-01-14  Karl Berry  <karl@gnu.org>
34580
34581         * config/install-sh: update from automake.
34582
34583 2004-01-13  Karl Berry  <karl@gnu.org>
34584
34585         * config/install-sh: update from automake.
34586
34587 2004-01-09  Karl Berry  <karl@gnu.org>
34588
34589         * config/install-sh: update from automake.
34590
34591 2004-01-05  Karl Berry  <karl@gnu.org>
34592
34593         * config/config.{sub,guess}: update from config.
34594
34595 2003-12-31  Karl Berry  <karl@gnu.org>
34596
34597         * config/depcomp: update from automake.
34598
34599 2003-12-14  Karl Berry  <karl@gnu.org>
34600
34601         * lib/config.charset: update from gettext-runtime.
34602
34603 2003-12-03  Paul Eggert  <eggert@twinsun.com>
34604
34605         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
34606         Bug reported by Alfred M. Szmidt.
34607
34608 2003-12-03  Bruno Haible  <bruno@clisp.org>
34609
34610         * m4/gettext.m4: Upgrade from gettext-0.13.
34611         * m4/po.m4: Upgrade from gettext-0.13.
34612         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
34613         * m4/intmax.m4: New file, from gettext-0.13.
34614         * m4/printf-posix.m4: New file, from gettext-0.13.
34615
34616 2003-11-29  Karl Berry  <karl@gnu.org>
34617
34618         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
34619
34620 2003-11-25  Paul Eggert  <eggert@twinsun.com>
34621             Bruno Haible  <bruno@clisp.org>
34622
34623         * lib/printf-parse.h: Don't include sys/types.h.
34624         (ARG_NONE): New macro.
34625         (char_directive): Change type of *arg_index fields to size_t.
34626         * lib/printf-parse.c: Don't include sys/types.h.
34627         (SSIZE_MAX): Remove macro.
34628         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
34629         Remove unnecessary overflow check.
34630         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
34631         fields.
34632
34633 2003-11-25  Bruno Haible  <bruno@clisp.org>
34634
34635         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
34636
34637 2003-11-25  Bruno Haible  <bruno@clisp.org>
34638
34639         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
34640         gt_TYPE_SSIZE_T.
34641
34642 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34643
34644         * modules/alloca: Remove dependency on xalloc.
34645
34646 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34647
34648         * lib/alloca.c: Remove dependency on xalloc module.
34649         (xalloc_die): Remove.
34650         (memory_full) [!defined emacs]: New macro.
34651         [!defined emacs]: Don't include xalloc.h.
34652         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
34653         address arithmetic overflows.  Change datatypes a bit to avoid
34654         unnecessary casts.
34655
34656 2003-11-22  Jim Meyering  <jim@meyering.net>
34657
34658         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
34659         s/size/size_t/.
34660
34661 2003-11-21  Karl Berry  <karl@gnu.org>
34662
34663         * config/config.{sub,guess}: update from config.
34664
34665 2003-11-18  Karl Berry  <karl@gnu.org>
34666
34667         * config/config.{sub,guess}: update from config.
34668
34669         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
34670
34671 2003-11-17  Paul Eggert  <eggert@twinsun.com>
34672
34673         * README: Mention that S+T cannot overflow if S is the size of
34674         an existing object and T is sufficiently small.
34675
34676 2003-11-17  Jim Meyering  <jim@meyering.net>
34677
34678         On systems without utime and without a utimes function capable of
34679         dealing with a NULL struct utimbuf* argument, this utime replacement
34680         could -- in unusual circumstances -- leak a file descriptor.
34681         * lib/utime.c: Include <unistd.h> and <errno.h>.
34682         (utime_null): Be sure to close `fd' and to preserve errno.
34683         Reported by Geoff Collyer via Arnold Robbins.
34684
34685 2003-11-17  Bruno Haible  <bruno@clisp.org>
34686
34687         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
34688         (Depends-on): Add xsize.
34689
34690 2003-11-17  Bruno Haible  <bruno@clisp.org>
34691
34692         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
34693
34694 2003-11-17  Bruno Haible  <bruno@clisp.org>
34695
34696         * lib/vasnprintf.c (alloca): Remove fallback definition.
34697         (freea): Remove definition.
34698         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
34699         Reported by Paul Eggert.
34700
34701 2003-11-16  Paul Eggert  <eggert@twinsun.com>
34702             Bruno Haible  <bruno@clisp.org>
34703
34704         Protect against address arithmetic overflow.
34705         * lib/printf-args.h: Include stddef.h.
34706         (arguments): Change type of field 'count' to size_t.
34707         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
34708         'unsigned int' where appropriate.
34709         * lib/printf-parse.h: Include sys/types.h.
34710         (char_directive): Change type of *arg_index fields to ssize_t.
34711         (char_directives): Change type of fields 'count', max_*_length to
34712         size_t.
34713         * lib/printf-parse.c: Include sys/types.h and xsize.h.
34714         (SSIZE_MAX): Define fallback value.
34715         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
34716         instead of 'int' where appropriate. Check a_allocated, d_allocated
34717         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
34718         * lib/vasnprintf.c: Include xsize.h.
34719         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
34720         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
34721         overflow. Avoid wraparound when converting a width or precision from
34722         decimal to binary.
34723
34724 2003-11-16  Bruno Haible  <bruno@clisp.org>
34725
34726         Update from GNU gettext.
34727         * lib/printf-parse.c: Generalize to it can be compiled for wide
34728         strings.
34729         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
34730         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
34731         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
34732         SNPRINTF): New macros.
34733         Don't include <alloca.h> if the file is used inside libintl.
34734         (local_wcslen): New function, for Solaris 2.5.1.
34735         (VASNPRINTF): Use it instead of wcslen.
34736
34737 2003-11-16  Bruno Haible  <bruno@clisp.org>
34738
34739         * lib/xsize.h (xmax): New function.
34740         (xsum, xsum3, xsum4): Declare as "pure" functions.
34741
34742 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34743
34744         * modules/xalloc (Files): Undo latest change, since xalloc.h
34745         no longer needs SIZE_MAX or PTRDIFF_MAX.
34746
34747 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34748
34749         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
34750         gl_PTRDIFF_MAX.
34751
34752 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34753
34754         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
34755         "return", to pacify some unknown compiler.  Problem reported
34756         by Joerg Schilling.
34757
34758 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34759
34760         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
34761         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
34762         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
34763         heuristic is just as accurate as far as we know, and it removes a
34764         dependency on size_max.m4 and ptrdiff_max.m4.
34765
34766 2003-11-11  Bruno Haible  <bruno@clisp.org>
34767
34768         * modules/xsize (Files): Add m4/size_max.m4.
34769         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
34770
34771 2003-11-11  Bruno Haible  <bruno@clisp.org>
34772
34773         * m4/size_max.m4: New file.
34774         * m4/ptrdiff_max.m4: New file.
34775         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
34776         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
34777         (gl_XALLOC): Invoke it.
34778
34779 2003-11-11  Bruno Haible  <bruno@clisp.org>
34780
34781         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
34782         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
34783         defined.
34784
34785 2003-11-10  Paul Eggert  <eggert@twinsun.com>
34786
34787         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
34788         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
34789         rejected some allocations of exactly SIZE_MAX - 2 bytes.
34790         From Bruno Haible.
34791         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
34792         not (size_t) -1, since it's defined here.
34793
34794 2003-11-09  Karl Berry  <karl@gnu.org>
34795
34796         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
34797
34798 2003-11-06  Paul Eggert  <eggert@twinsun.com>
34799
34800         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
34801         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
34802         Reject sizes of exactly SIZE_MAX bytes.
34803         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
34804         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
34805
34806 2003-11-05  Bruno Haible  <bruno@clisp.org>
34807
34808         * lib/xsize.h: Include limits.h, to avoid a possible collision with
34809         SIZE_MAX defined in <limits.h> on Solaris.
34810
34811 2003-11-04  Jim Meyering  <jim@meyering.net>
34812
34813         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
34814         variable names, rather than @VAR@.
34815         * modules/poll: Likewise.
34816
34817 2003-11-04  Bruno Haible  <bruno@clisp.org>
34818
34819         * modules/xsize: New file.
34820         * modules/linebreak: Depend on xsize.
34821         * MODULES.html.sh (func_all_modules): Add xsize.
34822
34823 2003-11-04  Bruno Haible  <bruno@clisp.org>
34824
34825         * m4/xsize.m4: New file.
34826
34827 2003-11-04  Bruno Haible  <bruno@clisp.org>
34828
34829         * lib/xsize.h: New file.
34830         * lib/linebreak.c: Include xsize.h.
34831         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
34832         argument for overflow.
34833         Suggested by Paul Eggert.
34834
34835 2003-11-03  Karl Berry  <karl@gnu.org>
34836
34837         * config/config.{guess,sub}: update from config.
34838
34839 2003-11-03  Jim Meyering  <jim@meyering.net>
34840
34841         * modules/userspec (lib_SOURCES): Add userspec.h.
34842         (Include): Add "userspec.h".
34843         Improve description.
34844
34845 2003-11-03  Jim Meyering  <jim@meyering.net>
34846
34847         * lib/userspec.c: Include "userspec.h".
34848         * lib/userspec.h: New file.
34849
34850 2003-11-03  Bruno Haible  <bruno@clisp.org>
34851
34852         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
34853
34854 2003-11-03  Bruno Haible  <bruno@clisp.org>
34855
34856         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
34857         available, to avoid (extremely rare) race condition.
34858         Suggested by Paul Eggert.
34859
34860 2003-11-02  Karl Berry  <karl@gnu.org>
34861
34862         * config/srclist.txt (vasprintf.c): sync broken, sigh.
34863
34864 2003-10-31  Paul Eggert  <eggert@twinsun.com>
34865
34866         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
34867         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
34868         (read_filesystem_list): Set and use me_type_malloced.
34869         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
34870         whatever the type happens to be), for brevity and consistency.
34871         Check for size calculation overflow on Alphas running OSF/1.
34872
34873 2003-10-31  Jim Meyering  <jim@meyering.net>
34874
34875         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
34876
34877         * lib/linebuffer.c: Include <string.h> for declaration of memset.
34878
34879 2003-10-30  Paul Eggert  <eggert@twinsun.com>
34880             Bruno Haible  <bruno@clisp.org>
34881
34882         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
34883         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
34884
34885 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
34886
34887         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
34888         netbsd*-gnu*.  Suggested by Robert Millan.
34889
34890 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34891
34892         * modules/group-member: Depend on stdbool.
34893
34894 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34895
34896         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
34897
34898 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34899
34900         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
34901         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
34902         after the 'gnu' in these cases.  This fixes some bugs in the
34903         previous change, and is based on suggestions by Robert Millan.
34904
34905 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34906
34907         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
34908         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
34909         no longer needed.
34910         * lib/quotearg.c (quotearg_n_options): Use it.
34911         * lib/group-member.c: Include <stdbool.h>.
34912         (free_group_info): Arg is now const *; don't free arg.
34913         (get_group_info): Now returns bool and accepts struct group_info *,
34914         rather than returning a malloc'ed struct group_info *.
34915         All uses changed.  Check for overflow in internal size calculation.
34916
34917         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
34918         rather than xmalloc/xrealloc.
34919         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
34920         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
34921         conformance bug: the old code used a pointer after freeing the
34922         storage that it addressed.
34923         * lib/hash.c (hash_initialize): Simplify the code by using
34924         xalloc_oversized rather than doing it by hand.
34925         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
34926         the buffer preserved.  Use free and xmalloc instead.
34927         * lib/quotearg.c (quotearg_n_options): Likewise.
34928         Use a simpler test for size overflow.  Don't use xalloc_oversized
34929         because unsigned int might be wider than size_t (!); this suggests
34930         that we should switch from unsigned int to size_t for slot numbers.
34931
34932 2003-10-28  Paul Eggert  <eggert@twinsun.com>
34933
34934         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
34935         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
34936         NetBSD kernels.  Requested by Richard Stallman.
34937
34938 2003-10-27  Paul Eggert  <eggert@twinsun.com>
34939
34940         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
34941         to allocate the returned structure.  Do not allocate a subarray,
34942         as x2nrealloc will do that.
34943         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
34944         instead of xnrealloc.
34945         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
34946
34947 2003-10-27  Bruno Haible  <bruno@clisp.org>
34948
34949         * lib/stdbool_.h: Better support for BeOS.
34950
34951 2003-10-26  Paul Eggert  <eggert@twinsun.com>
34952
34953         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
34954         now uses inline.
34955
34956 2003-10-26  Paul Eggert  <eggert@twinsun.com>
34957
34958         * lib/xalloc.h (xalloc_oversized): New static inline function, for
34959         callers that want to do their own size-overflow checking.  Include
34960         <stdbool.h>, since xalloc_oversized returns bool.
34961         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
34962         to use xalloc_oversized.
34963
34964         Add two functions x2realloc, x2nrealloc, for programs that grow
34965         arrays dynamically by doubling their sizes.
34966         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
34967         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
34968         New functions.
34969
34970         Port to C99 semantics for 'inline' of external functions.
34971         Bug reported by Bruno Haible.
34972         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
34973         with the old contents of xnmalloc.
34974         (xnmalloc, xmalloc): Use it.
34975         (xnrealloc_inline): New static inline function,
34976         with the old contents of xnrealloc.
34977         (xnrealloc, xrealloc): Use it.
34978
34979         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
34980         that.
34981
34982 2003-10-26  Karl Berry  <karl@gnu.org>
34983
34984         * config/srclist.txt (COPYING.DOC): no longer available from
34985         /gd/gnuorg; don't know where the ultimate source is.
34986
34987 2003-10-25  Paul Eggert  <eggert@twinsun.com>
34988
34989         Fix several address-calculation bugs in the hash modules,
34990         plus some minor code cleanup.
34991
34992         * lib/hash.h: Include <stdbool.h>, for bool.
34993         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
34994         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
34995         hash_get_n_entries, hash_get_max_bucket_length,
34996         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
34997         hash_rehash): Use size_t rather than unsigned.
34998         * lib/hash.c (struct hash_table, hash_get_n_buckets,
34999         hash_get_n_buckets_used, hash_get_n_entries,
35000         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
35001         hash_get_entries, hash_do_for_each, hash_string, is_prime,
35002         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
35003         Likewise.
35004         (SIZE_MAX): Define if not defined.
35005         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
35006         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
35007         hash_print):
35008         Use const * when possible.
35009         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
35010         (check_tuning): Fix bug: if tuning parameters were very close to
35011         0 or 1, rounding errors could have caused subscript violations.
35012         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
35013         (hash_initialize): Add 'fail:' label
35014         to free table and return NULL, and use it to simplify code.
35015         Use calloc rather than clearing the storage ourself.
35016         (hash_initialize, hash_rehash): Check for arithmetic overflow in
35017         buffer size calculations.
35018         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
35019         Include <stddef.h>, for size_t.
35020         * lib/hash-pjw.c (hash_pjw): Likewise.
35021         Switch to method described by Bruno Haible.
35022         Include <limits.h>, for CHAR_BIT.
35023         (SIZE_BITS): New macro.
35024
35025 2003-10-23  Paul Eggert  <eggert@twinsun.com>
35026
35027         * m4/getline.m4 (AM_FUNC_GETLINE):
35028         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
35029         hosts.  Problem reported by Derek Robert Price in
35030         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
35031         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
35032         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
35033
35034 2003-10-21  Paul Eggert  <eggert@twinsun.com>
35035
35036         * lib/getndelim2.c (getndelim2): When size calculation overflows,
35037         ceiling the allocation at NMAX bytes rather than silently
35038         discarding input bytes before NMAX is reached.  This makes
35039         a difference only if NMAX exceeds SIZE_MAX / 2.
35040
35041         * lib/obstack.c: Merge from glibc.
35042         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
35043         Add libc_hidden_def (_obstack_newchunk).
35044         (_obstack_free) [! defined _LIBC]: Remove.
35045         [defined _LIBC]: Make a strong alias from obstack_free, rather than
35046         a clone of the function body.
35047         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
35048         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
35049
35050         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
35051         glibc.
35052         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
35053         arg to memcpy.
35054
35055         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
35056         (obstack_ptr_grow_fast, obstack_int_grow_fast):
35057         Don't use lvalue casts, as GCC plans to remove support for them
35058         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
35059         was also present in the non-GCC version, indicating that this
35060         code had always been buggy and had never been widely used.
35061         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
35062         Use the fast variant of each macro, rather than copying the
35063         definiens of the fast variant; that way, we'll be more likely to
35064         catch future bugs in the fast variants.
35065
35066 2003-10-20  Bruno Haible  <bruno@clisp.org>
35067
35068         * modules/wait-process: New file.
35069         * MODULES.html.sh (func_all_modules): Add wait-process.
35070
35071 2003-10-20  Bruno Haible  <bruno@clisp.org>
35072
35073         * m4/wait-process.m4: New file.
35074
35075 2003-10-20  Bruno Haible  <bruno@clisp.org>
35076
35077         * lib/wait-process.h: New file, from GNU gettext.
35078         * lib/wait-process.c: New file, from GNU gettext.
35079
35080 2003-10-19  Jim Meyering  <jim@meyering.net>
35081
35082         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
35083         HPUX 10.20.
35084
35085 2003-10-18  Karl Berry  <karl@gnu.org>
35086
35087         * config/config.guess: update from config.
35088
35089 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35090
35091         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
35092         (getgroups): First arg is int, not size_t.
35093         Don't let 'free' mangle errno.
35094
35095 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35096
35097         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
35098
35099 2003-10-16  Karl Berry  <karl@gnu.org>
35100
35101         * config/config.{guess,sub}: update from config.
35102
35103 2003-10-16  Jim Meyering  <jim@meyering.net>
35104
35105         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
35106         memcpy.
35107
35108 2003-10-15  Paul Eggert  <eggert@twinsun.com>
35109
35110         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
35111         (SIZE_MAX): Remove.
35112         (new_exclude, add_exclude_file): Initial size no longer needs to
35113         be a power of 2.
35114         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
35115         our own address arithmetic overflow checking.
35116
35117         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
35118         (fnmatch): Do not alloca more than 2000 wide characters;
35119         instead, use malloc for large buffers.
35120         Check for address arithmetic overflow, and return -1
35121         with errno set to ENOMEM in that case.
35122         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
35123         (NEW_PATTERN): Do not alloca more than 8000 bytes;
35124         instead, return -1.  Check for address arithmetic overflow.
35125
35126 2003-10-14  Paul Eggert  <eggert@twinsun.com>
35127
35128         Handle invalid suffixes and overflow independently, so that
35129         callers can treat them independently as needed.  Fix some bugs in
35130         suffix handling, e.g., "100k@" was not diagnosed as an invalid
35131         suffix for a human-readable blocksize.  The major caller-visible
35132         change is the addition of a new
35133         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
35134         that both overflow and suffix chars were found.
35135
35136         * lib/human.c (humblock): Don't check separately for invalid suffix
35137         char; that is xstrtoumax's job (now that its bug is fixed).
35138         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
35139         INTMAX_MAX]: New macros.
35140         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
35141         TYPE_MAXIMUM): New macros.
35142         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
35143         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
35144         if overflow occurs, as it's what __strtol does and it's more useful
35145         in practice.
35146         (__xstrtol): If __strtol reports some error other than ERANGE,
35147         reflect it to the caller as LONGINT_INVALID.  If it reports
35148         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
35149         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
35150         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
35151         value.
35152         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
35153         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
35154         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
35155         [defined UINTMAX_MAX]: New macros.
35156
35157 2003-10-14  Bruno Haible  <bruno@clisp.org>
35158
35159         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
35160
35161 2003-10-14  Bruno Haible  <bruno@clisp.org>
35162
35163         * m4/sig_atomic_t: New file, from GNU gettext.
35164         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
35165
35166 2003-10-14  Bruno Haible  <bruno@clisp.org>
35167
35168         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
35169         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
35170         Also use volatile where needed.
35171
35172 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35173
35174         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
35175         Change maintainer from Bruno Haible to 'all'.
35176
35177 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35178
35179         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
35180
35181 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35182
35183         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
35184         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
35185         and define in terms of the other primitives.
35186         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
35187         (SIZE_MAX): Define if not already defined.
35188         (array_size_overflow): New function.
35189         (xalloc_die): Abort instead of exiting if 'error' returns.
35190         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
35191         (xmalloc, xrealloc): Use them.
35192         (xcalloc): Check for address arithmetic overflow.
35193         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
35194         a bit faster than strcpy.
35195
35196 2003-10-10  Simon Josefsson  <jas@extundo.com>
35197
35198         * modules/argp (Depends-on): Add restrict and strcase.
35199
35200 2003-10-10  Simon Josefsson  <jas@extundo.com>
35201
35202         * m4/argp.m4: Add AC_C_INLINE.
35203
35204 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35205
35206         Merge getpass from libc, plus a few fixes.
35207
35208         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
35209         Include <stdbool.h>.
35210         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
35211         __fsetlocking to empty.
35212         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
35213         do include <bits/libc-lock.h>.
35214         Do not include <fcntl.h>; not needed.
35215         [_LIBC]: Include <wchar.h>.
35216         (NOTCANCEL_MODE): New macro.
35217         (flockfile, funlockfile) [_LIBC]: New macros.
35218         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
35219         [!_LIBC]: New macros.
35220         (call_fclose): New function.
35221         (getpass): Use it.  Save tty stream separately; this simplifies the
35222         code and makes it more reliable if stdin happens to equal stdout.
35223         Invoke __fsetlocking on tty.
35224         Handle thread cancellation if needed.
35225         Namespace cleanup (use __tcgetattr, __getline).
35226         Use bool for Booleans.
35227         [USE_IN_LIBIO]: Handle wide streams.
35228         [!_LIBC]: Unconditionally do the fseek, since we don't know what
35229         stream might go where.
35230
35231         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
35232         doesn't have to include <stdio.h> before us.
35233         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
35234         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
35235         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
35236         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
35237         if not declared, so that we can use getpass.c code from libc without
35238         rewriting it.
35239         (flockfile, ftrylockfile, funlockfile): New macros.
35240
35241 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35242
35243         * modules/getpass: Depend on stdbool.
35244
35245 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35246
35247         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
35248
35249 2003-10-07  Karl Berry  <karl@gnu.org>
35250
35251         * config/config.{guess,sub}: update from config.
35252
35253 2003-10-06  Jim Meyering  <jim@meyering.net>
35254             Bruno Haible  <bruno@clisp.org>
35255
35256         This lets translators provide better translations for the
35257         "Written by ..." part of --version output.
35258         * lib/version-etc.h: Include stdarg.h.
35259         (version_etc_copyright): Declare as readonly.
35260         (version_etc): Make this function variadic with a NULL-terminated list
35261         of author name strings.
35262         (version_etc_va): New declaration.
35263         * lib/version-etc.c: Include stdarg.h, stdlib.h.
35264         (version_etc_copyright): Declare as readonly.
35265         (version_etc_va): New function. Provide a different translatable string
35266         for each possible number of authors < 10. Abbreviate when there are 10
35267         authors or more.
35268         (version_etc): Make this function variadic. Call version_etc_va.
35269         Suggestion from Gary V. Vaughan.
35270
35271         * lib/long-options.h (parse_long_options): Change prototype: the
35272         authors string is moved to the end and becomes variadic.
35273         * lib/long-options.c: Include stdarg.h.
35274         (parse_long_options): Make this function variadic, too.
35275         Call version_etc_va, not version_etc.
35276
35277 2003-10-06  Bruno Haible  <bruno@clisp.org>
35278
35279         * modules/version-etc-2: Remove file.
35280         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
35281
35282 2003-10-06  Bruno Haible  <bruno@clisp.org>
35283
35284         * modules/fatal-signal: New file.
35285         * MODULES.html.sh (func_all_modules): Add fatal-signal.
35286
35287 2003-10-06  Bruno Haible  <bruno@clisp.org>
35288
35289         * m4/fatal-signal.m4: New file.
35290         * m4/signalblocking.m4: New file, from GNU gettext.
35291
35292 2003-10-06  Bruno Haible  <bruno@clisp.org>
35293
35294         * lib/version-etc-2.h: Remove file.
35295         * lib/version-etc-2.c: Remove file.
35296
35297 2003-10-06  Bruno Haible  <bruno@clisp.org>
35298
35299         * lib/fatal-signal.h: New file, from GNU gettext.
35300         * lib/fatal-signal.c: New file, from GNU gettext.
35301
35302 2003-10-05  Paul Eggert  <eggert@twinsun.com>
35303
35304         * README: Rework advice for preventing empty .o files.
35305         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
35306         not <sys/types.h>.
35307
35308 2003-10-04  Karl Berry  <karl@gnu.org>
35309
35310         * lib/argp*: update from libc.
35311
35312 2003-10-04  Karl Berry  <karl@gnu.org>
35313
35314         * config/config.{guess,sub}: update from config.
35315
35316 2003-10-02  Bruno Haible  <bruno@clisp.org>
35317
35318         * modules/lchown (Include): Add lchown.h.
35319         * modules/time_r (Include): Use "..." syntax.
35320         * modules/xgetdomainname (Include): Add xgetdomainname.h.
35321
35322 2003-10-01  Simon Josefsson  <jas@extundo.com>
35323
35324         * MODULES.html.sh (func_all_modules): Move gethostname from section
35325         'based on' to section 'lacking' POSIX:2001.
35326
35327 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
35328
35329         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
35330         to output mode on the same stream.
35331
35332 2003-09-29  Paul Eggert  <eggert@twinsun.com>
35333
35334         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
35335         Fix arg typo in previous patch.
35336
35337 2003-09-28  Jim Meyering  <jim@meyering.net>
35338
35339         * lib/error.c: Correct cpp indentation.
35340
35341 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35342
35343         * modules/free: New file.
35344
35345 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35346
35347         * m4/free.m4: New file.
35348
35349 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35350
35351         * lib/minmax.h (MIN, MAX)
35352         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
35353         Omit the special code that used __typeof__, since we worry that
35354         it could be more trouble than it's worth.  See:
35355         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
35356         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
35357
35358         * lib/free.c: New file.
35359
35360 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
35361
35362         Trivial fixes to Makefile.am parts of module listings.
35363         * modules/strstr: Append strstr.h to lib_SOURCES.
35364         * modules/strcase: Likewise, for strcase.h.
35365
35366 2003-09-27  Karl Berry  <karl@gnu.org>
35367
35368         * config/mkinstalldirs: update from automake.
35369
35370 2003-09-26  Paul Eggert  <eggert@twinsun.com>
35371
35372         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
35373         (error_tail): Do not loop, reallocating temporary buffer, since
35374         the output cannot contain more wide characters than the input
35375         contains bytes, the size must be big enough already.  This avoids
35376         one potential size overflow calculation.  Check for size overflow
35377         when calculating temporary buffer size.  Free temporary buffer
35378         when done, if it was allocated with malloc; this plugs a memory
35379         leak.  Remove casts from void * to pointers, that are no longer
35380         needed now that we're assuming C89 or better.
35381
35382         Merge error changes from glibc.
35383
35384         * lib/error.c, error.h: Update copyright notice header to match glibc.
35385         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
35386         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
35387         Disable cancellation while printing error.
35388         * lib/error.h: Prepend __ to parameter names.
35389
35390 2003-09-26  Jim Meyering  <jim@meyering.net>
35391
35392         * lib/error.c (error_tail): Move some declarations
35393         into inner scope where the local variables are used.
35394
35395 2003-09-26  Bruno Haible  <bruno@clisp.org>
35396
35397         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
35398         stpncpy().
35399         Don't define stpncpy through config.h; it's now done through stpncpy.h.
35400
35401 2003-09-26  Bruno Haible  <bruno@clisp.org>
35402
35403         * lib/stpncpy.h (gnu_stpncpy): New declaration.
35404         (stpncpy): Define as alias for gnu_stpncpy.
35405         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
35406
35407 2003-09-25  Simon Josefsson  <jas@extundo.com>
35408
35409         * lib/xgetdomainname.h: New file.
35410         * lib/xgetdomainname.c: New file.
35411
35412 2003-09-25  Simon Josefsson  <jas@extundo.com>
35413             Bruno Haible  <bruno@clisp.org>
35414
35415         * modules/getdomainname: New file.
35416         * modules/xgetdomainname: New file.
35417         * MODULES.html.sh (func_all_modules): Add getdomainname,
35418         xgetdomainname.
35419
35420 2003-09-25  Simon Josefsson  <jas@extundo.com>
35421             Bruno Haible  <bruno@clisp.org>
35422
35423         * m4/getdomainname.m4: New file.
35424
35425 2003-09-25  Simon Josefsson  <jas@extundo.com>
35426             Bruno Haible  <bruno@clisp.org>
35427
35428         * lib/getdomainname.h: New file.
35429         * lib/getdomainname.c: New file.
35430
35431 2003-09-25  Karl Berry  <karl@gnu.org>
35432
35433         * lib/argp-fmtstream.c, argp-help.c: update from libc.
35434
35435 2003-09-25  Karl Berry  <karl@gnu.org>
35436
35437         * config/install-sh: update from automake.
35438
35439 2003-09-25  Bruno Haible  <bruno@clisp.org>
35440
35441         * modules/version-etc-2: New file, from modules/version-etc with
35442         modifications.
35443         * MODULES.html.sh (func_all_modules): Add version-etc-2.
35444
35445 2003-09-25  Bruno Haible  <bruno@clisp.org>
35446
35447         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
35448         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
35449
35450 2003-09-24  Simon Josefsson  <jas@extundo.com>
35451
35452         * modules/xgethostname: Add xgethostname.h.
35453
35454 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35455
35456         * lib/linebuffer.c (freebuffer): Don't free the argument, just
35457         the buffer associated with the argument.  Bug reported by
35458         Simon Josefsson.
35459
35460 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35461
35462         * README: Document assumptions that 'int' is at least 32 bits
35463         wide, that integer arithmetic is 2's complement without overflow,
35464         that there are no holes in integer values, that adding sizes of
35465         two nonoverlapping objects can't overflow, and that all-bits-zero
35466         yields scalar zero.  Fix spelling and capitalization typos.
35467
35468 2003-09-19  Karl Berry  <karl@gnu.org>
35469
35470         * lib/argp.h: update from libc.
35471
35472 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35473
35474         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
35475         to avoid spurious warnings like "AC_RUN_IFELSE was called before
35476         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
35477
35478 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35479
35480         * gnulib-tool: Use "test -h", not "test -L", for portability
35481         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
35482         (tags_regexp): Remove, since \| doesn't conform to POSIX.
35483         (sed_extract_prog): Issue s commands one-by-one, rather than
35484         using \| in one s command.
35485
35486 2003-09-16  Paul Eggert  <eggert@twinsun.com>
35487
35488         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
35489         input error, instead of returning NULL the next time we are called
35490         (and therefore losing track of errno).
35491
35492 2003-09-16  Bruno Haible  <bruno@clisp.org>
35493
35494         * gnulib-tool (func_create_testdir): Warn about duplicated
35495         dependencies.
35496
35497 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35498
35499         * modules/argmatch, modules/fatal, modules/obstack,
35500         modules/xalloc, modules/xgethostname: Sort dependencies by
35501         importance, not alphabetically.
35502
35503 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35504
35505         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
35506         fails, so that the caller gets the proper errno.
35507
35508         * lib/readutmp.c (read_utmp): Likewise.
35509         Check for fstat error.  Close stream and free storage
35510         when failing.
35511
35512 2003-09-14  Karl Berry  <karl@gnu.org>
35513
35514         * config/srclist.txt (strdup.c): disable for c89 changes.
35515
35516 2003-09-14  Jim Meyering  <jim@meyering.net>
35517
35518         * lib/getloadavg.c: Correct cpp indentation.
35519         * lib/strdup.c: Likewise.
35520         * lib/vasnprintf.c: Likewise.
35521
35522 2003-09-14  Bruno Haible  <bruno@clisp.org>
35523
35524         * modules/fwriteerror: New file.
35525         * MODULES.html.sh (func_all_modules): Add fwriteerror.
35526
35527 2003-09-14  Bruno Haible  <bruno@clisp.org>
35528
35529         * lib/fwriteerror.h: New file.
35530         * lib/fwriteerror.c: New file.
35531
35532 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35533
35534         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
35535         modules/xgethostname, modules/xalloc: Depend on exit.
35536
35537 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35538
35539         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
35540
35541         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
35542         and AC_MINIX, too, so that their extensions are available.
35543
35544         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
35545         This macro has been superseded by gl_BACKUPFILE.
35546
35547         More patches to assume C89 or better.
35548
35549         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
35550
35551         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
35552         unconditionally.
35553         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
35554         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
35555         Include <string.h>, <stdlib.h> unconditionally.
35556         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
35557         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
35558         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
35559         headers or for string.h.
35560         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
35561         or strtoul.
35562
35563         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
35564         headers.
35565         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
35566         * m4/userspec.m4 (gl_USERSPEC): Likewise.
35567         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
35568         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
35569         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35570         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
35571         memcpy, memset.
35572         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
35573         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
35574         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
35575         strtol.
35576         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
35577         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
35578         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
35579         strtoul.
35580
35581 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35582
35583         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
35584         * lib/obstack.c [!defined _LIBC]: Likewise.
35585         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
35586         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
35587         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
35588
35589         More changes to assume C89 or better.
35590
35591         * lib/error.c (error_tail): Assume vprintf.
35592
35593         * lib/argmatch.c (getenv): Remove decl.
35594         * lib/progreloc.c (get_full_program_name): Define via prototype.
35595         * lib/setenv.c (clearenv): Likewise.
35596         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
35597         needed.
35598         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
35599         (malloc, memcpy): Remove decls.
35600         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
35601         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
35602         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35603         (memcpy): Remove macro.
35604         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
35605         (__P): Remove.  All uses removed.
35606         (PTR): Remove.  All uses changed to void *.
35607         (CHAR_BIT, NULL): Remove.
35608         (spaces, zeros, memset_space, memset_zero)
35609         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
35610         Remove.
35611         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
35612         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
35613         Define with prototype.
35614         Remove now-unnecessary prototype decl.
35615         (extra_args_spec): Assume ANSI C.  All uses changed.
35616         (extra_args_spec_iso): Remove.
35617         (my_strftime, emacs_strftimeu): Define via prototype.
35618         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
35619         unconditionally.
35620         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
35621         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
35622         (strtoul, strtol): Remove decls.
35623         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
35624         LONG_MAX): Remove.
35625         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35626         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
35627         (LOCALE_PARAM_PROTO): New macro.
35628         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
35629         (INTERNAL (strtol), strtol): Define with a prototype.
35630         (PARAMS): Remove.  All uses removed.
35631         * lib/tempname.c: Include <string.h> unconditionally.
35632         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
35633         * lib/xgethostname.c (main): Define with a prototype.
35634         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
35635         Include <stdlib.h> unconditionally.
35636         (calloc, malloc, realloc, free): Remove decls.
35637         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
35638         Include <stdlib.h> unconditionally.  Sort include file names.
35639         (strtod): Remove.
35640         (xstrtod): Define with a prototype.
35641         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
35642         (strtol, strtoul): Remove decls.
35643
35644 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35645
35646         More patches to assume C89 or better.
35647         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
35648         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
35649         string.h, memchr, STDC_HEADERS.
35650
35651 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35652
35653         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
35654         Include <stdlib.h>, <string.h> unconditionally.
35655         Remove now-unnecessary cast to char *.
35656         * lib/strnlen.c: Include <string.h> unconditionally.
35657         * lib/yesno.c (yesno): Define with a prototype.
35658
35659 2003-09-11  Bruno Haible  <bruno@clisp.org>
35660
35661         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
35662
35663 2003-09-10  Jim Meyering  <jim@meyering.net>
35664
35665         * lib/error.c: Correct indentation of cpp directives.
35666
35667 2003-09-10  Bruno Haible  <bruno@clisp.org>
35668
35669         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
35670         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
35671         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
35672         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
35673         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
35674         <stdlib.h> and <string.h> checks.
35675         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
35676         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
35677
35678 2003-09-10  Bruno Haible  <bruno@clisp.org>
35679
35680         * lib/strcspn.c: Include <string.h> unconditionally.
35681         * lib/strpbrk.c: Include <string.h> unconditionally.
35682         * lib/strstr.c: Include <string.h> unconditionally.
35683         * lib/unicodeio.c: Include <string.h> unconditionally.
35684         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
35685         * lib/unsetenv.c: Likewise.
35686         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
35687         * lib/yesno.c: Include <stdlib.h> unconditionally.
35688         (rpmatch): Add prototype.
35689
35690 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35691
35692         More patches to assume C89 or better.
35693         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
35694         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
35695         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
35696         or for string.h.
35697         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
35698         stdlib.h.
35699         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
35700         C headers.
35701         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
35702         string.h.
35703         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
35704         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
35705         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
35706         or for string.h.
35707         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
35708         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
35709         C headers.
35710         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
35711         memcpy.
35712         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
35713         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
35714         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
35715         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
35716         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
35717         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
35718         string.h, free.
35719         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
35720         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
35721         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
35722         C headers, or for string.h.
35723         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
35724         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
35725         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
35726         headers, memory.h, stdlib.h, string.h, strings.h.
35727         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
35728         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
35729         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
35730         strchr.
35731         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
35732         headers, memory.h, string.h.
35733         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
35734         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
35735         free.
35736         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
35737         headers.
35738         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
35739         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
35740         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
35741         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
35742         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
35743
35744 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35745
35746         More K&R removal.
35747
35748         * lib/acosl.c (main): Use a prototype.
35749         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
35750         tanl.c: Likewise.
35751
35752         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
35753
35754         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
35755         (getopt, etopt_long, getopt_long_only, _getopt_internal)
35756         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
35757         with a prototype.
35758         * lib/getopt.c (const): Remove macro.
35759         Include <string.h> unconditionally.
35760         (my_index): Remove; all uses changed to strchr.
35761         (strlen): Remove decl.
35762         (exchange): Remove forward decl; no longer needed.
35763         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
35764         Define with prototype.
35765         * lib/getopt1.c (const): Remove macro.
35766         (getopt_long, getopt_long_only, main): Define with prototype.
35767
35768         * lib/getugroups.c: Include <string.h> unconditionally.
35769
35770         * lib/getusershell.c: Include <stdlib.h> unconditionally.
35771         (getusershell, setusershell, endusershell, readname, main):
35772         Define with prototypes.
35773
35774         * lib/group-member.c: Include group-member.h first.
35775         Include <stdlib.h> unconditionally.
35776
35777         * lib/hard-locale.c: Include hard-locale.h first.
35778         Include <stdlib.h>, <string.h> unconditionally.
35779
35780         * lib/hash.c (free, malloc): Remove decls.
35781         Include <stdlib.h> unconditionally.
35782
35783         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
35784         (getenv): Do not declare.
35785
35786         * lib/idcache.c: Include <string.h> unconditionally.
35787
35788         * lib/long-options.c: Include long-options.h first, to test interface.
35789         Include <stdlib.h> unconditionally.
35790
35791         * lib/makepath.c: Include makepath.h first, to test interface.
35792         Include <stdlib.h> and <string.h> unconditionally.
35793
35794         * lib/linebuffer.c: Include <stdlib.h>.
35795         (free): Remove decl.
35796
35797         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
35798         stddef.h. rpl_malloc returns void *, not char *.
35799         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
35800         prototype.
35801
35802         * lib/md5.h: Include <limits.h> unconditionally.
35803         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
35804         (__P): Remove; all uses removed.
35805         * lib/md5.c: Include "md5.h" first.
35806         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
35807         md5_buffer, md5_process_bytes, md5_process_block):
35808         Define with prototypes.
35809         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
35810         * lib/sha.c: Include "sha.h" first.
35811         Include <stdlib.h>, <string.h> unconditionally.
35812
35813         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
35814         * lib/memcmp.c (__ptr_t): Likewise.
35815         * lib/memrchr.c (__ptr_t): Likewise.
35816         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
35817         Include <string.h> unconditionally.
35818         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
35819         * lib/memchr.c: Include <stdlib.h> unconditionally.
35820         * lib/memchr.c (LONG_MAX): Remove.
35821         * lib/memrchr.c (LONG_MAX): Likewise.
35822         * lib/memchr.c (__memchr): Define via a prototype.
35823         * lib/memrchr.c (__memrchr): Likewise.
35824         * lib/memcmp.c (__P): Remove, and remove all uses.
35825         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
35826         Remove forward decls; no longer needed.
35827         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
35828         Use types required by C89 in prototype.
35829
35830         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
35831         * lib/savedir.c: Likewise.
35832         * lib/mkdir.c (free): Remove decl.
35833         * lib/rmdir.c (rmdir): Define with a prototype.
35834         * lib/savedir.c: Include savedir.h first, to test interface.
35835
35836         * lib/mktime.c (STDC_HEADERS): Remove.
35837         Include <stdlib.h>, <string.h> unconditionally.
35838
35839         * lib/modechange.c: Include <stdlib.h> unconditionally.
35840         (malloc): Remove decl.
35841
35842         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
35843         (free): Remove decl.
35844
35845         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
35846         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
35847         (This type really should be intptr_t, but that's a C99ism.)
35848         (_obstack_memcpy): Remove: all uses changed to memcpy.
35849         Include <string.h> unconditionally.
35850         (struct obstack): Assume __STDC__ for types of members
35851         chunkfun, freefun, extra_arg.
35852         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
35853         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
35854         obstack_begin, obstack_specify_allocation,
35855         obstack_specify_allocation_with_arg, obstack_chunkfun,
35856         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
35857         Remove unprototyped decls and the macros that use them.
35858         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
35859         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
35860         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
35861         (defined __STDC__ && __STDC__)]:
35862         Remove nonprototyped code.
35863         Include <stdlib.h> unconditionally.
35864         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
35865         _obstack_allocated_p, _obstack_free, obstack_free,
35866         _obstack_memory_used, print_and_abort):
35867         Define using prototypes.
35868         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
35869         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
35870         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
35871         obstack_next_free, obstack_object_size, obstack_room) [0]:
35872         Remove unused, unprototyped code.
35873
35874         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
35875
35876         * lib/physmem.c (physmem_total, physmem_available, main): Define
35877         with prototypes.
35878
35879         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
35880         (main): Define with a prototype.
35881
35882         * lib/posixver.c (getenv): Remove decl.
35883
35884         * lib/putenv.c (malloc): Returns void *, not char *.
35885         Include <string.h> unconditionally.
35886         (strchr, memcpy, NULL): Do not define.
35887
35888         * lib/readtokens.c: Include readtokens.h first, to test interface.
35889         Include <stdlib.h>, <string.h> unconditionally.
35890         (init_tokenbuffer): Define with a prototype.
35891
35892         * lib/regex.c (PARAMS): Remove.  All uses removed.
35893         All uses of _RE_ARGS removed, too.
35894         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
35895         unconditionally.
35896         (bzero): Assume memset exists.
35897         (memcmp, memcpy, NULL): Remove.
35898         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
35899         char, or assignments to local vars of type signed char.
35900         (init_syntax_once, PREFIX(extract_number_and_incr),
35901         PREFIX(print_partial_compiled_pattern),
35902         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
35903         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
35904         PREFIX(regex_grow_registers), PREFIX(regex_compile),
35905         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
35906         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
35907         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
35908         wcs_compile_range, byte_compile_range, truncate_wchar,
35909         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
35910         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
35911         count_mbs_length, wcs_re_match_2_internal,
35912         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
35913         PREFIX(alt_match_null_string_p),
35914         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
35915         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
35916         regfree, PREFIX(extract_number)): Define with prototype.  Remove
35917         now-unnecessary declaration, if any.
35918         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
35919         regcomp, regexec):
35920         Remove now-unnecessary casts among pointer types.
35921         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
35922
35923         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
35924         (free): Remove decl.
35925
35926         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
35927
35928         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
35929         (free): Remove decl.
35930
35931         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
35932         * lib/xgetcwd.c: Likewise.
35933
35934         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
35935         (free): Remove decl.
35936
35937         * lib/strchrnul.c (strchrnul): Define with a prototype.
35938         Fix bug: c_in was not converted to char before searching.
35939
35940         The following changes are not K&R related:
35941
35942         * lib/group-member.h: Include <sys/types.h>, so that this file is
35943         self-contained.
35944         * lib/makepath.h: Likewise.
35945
35946         * lib/getusershell.c (readname, default_index, line_size, readname):
35947         Use size_t, not int, for sizes.
35948         (readname): If the size overflows, report an error instead of
35949         looping forever.
35950
35951 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35952
35953         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
35954         libc.
35955
35956 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35957
35958         * README: New section: portability guidelines.
35959
35960 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
35961
35962         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
35963         C89 spec.
35964
35965 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
35966
35967         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
35968
35969 2003-09-08  Paul Eggert  <eggert@twinsun.com>
35970
35971         Assume C89 or better; remove K&R cruft.
35972         A few of these changes were first proposed by Derek Robert Price
35973         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
35974
35975         * lib/addext.c: Include <string.h> unconditionally.
35976         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
35977         Don't declare getenv or malloc.
35978
35979         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
35980         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
35981         (NULL): Remove.
35982         (find_stack_direction, alloca): Use prototypes.
35983
35984         * lib/atexit.c (atexit): Define using a prototype.
35985
35986         * lib/basename.c, dirname.c, stripslash.c:
35987         Include <string.h> unconditionally.
35988
35989         * lib/bcopy.c: Include <stddef.h>.
35990         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
35991
35992         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
35993
35994         * lib/error.h (error, error_at_line, error_print_progname)
35995         [! (defined (__STDC__) && __STDC__)]: Remove decls.
35996         * lib/error.c: Include error.h first, to check interface.
35997         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
35998         (VA_START): Remove; all uses changeed to va_start.
35999         (exit, strerror): Remove decls.
36000         (error_print_progname): Prototype uncondionally.
36001         Don't include <errno.h>; no longer needed.
36002         (private_strerror): Remove.
36003         (error_tail): Always define.
36004         (error, error_at_line): Assume C89 or better; always use prototypes.
36005         * lib/fatal.c: Include "fatal.h" first, to test interface.
36006         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
36007         (VA_START): Remove; all uses changed to va_start.
36008         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
36009         this case.
36010         (exit): Remove decl.
36011         (fatal): Prototype unconditionally.  Assume va_start works.
36012         Abort at end, to pacify gcc.
36013
36014         * lib/euidaccess.c (main): Define with a prototype.
36015
36016         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
36017
36018         * lib/exitfail.c: Include <stdlib.h> unconditionally.
36019
36020         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
36021         prototypes.
36022         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
36023         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
36024         (getenv): Remove decl.
36025         (fnmatch): Define using a prototype.
36026         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
36027         (FCT): Define using a prototype.
36028
36029         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
36030
36031         * lib/gethostname.c: Include <stddef.h>.
36032         (gethostname): Define with prototype.  Length is size_t, not int.
36033
36034 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36035
36036         Assume C89 or better; remove K&R cruft.
36037         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
36038         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
36039         string.h, getenv, malloc.
36040         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
36041         headers.
36042         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
36043         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
36044         do not check for strerror.
36045         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
36046         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
36047         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
36048         do not check for doprnt or vprintf.
36049         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
36050         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
36051
36052 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36053
36054         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
36055         getversion.c should have been removed then, but was accidentally
36056         preserved.
36057
36058         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
36059         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
36060
36061 2003-09-08  Karl Berry  <karl@gnu.org>
36062
36063         * config/config.sub, config.guess, srclistvars.sh: update from savannah
36064                 config, forget about prep.
36065
36066         * config/depcomp, missing: update from automake.
36067
36068 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36069
36070         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
36071         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36072
36073 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36074
36075         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
36076         copy_tm_result.  Bug reported by Simon Josefsson in
36077         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36078
36079 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36080
36081         * m4/time_r.m4: New file.
36082         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
36083         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
36084         is. Check for timegm declaration.
36085         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
36086         Do not check for gmtime_r.
36087         Replace mktime if __mktime_internal does not exist and if mktime
36088         hasn't been replaced already.
36089
36090 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36091
36092         * lib/time_r.c, lib/time_r.h: New files.
36093
36094         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
36095         __localtime_r.
36096         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
36097         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
36098
36099         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
36100         __gmtime_r.
36101         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
36102         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
36103         Include <time_r.h>.
36104
36105         * lib/timegm.c: Switch to glibc implementation, with the following
36106         changes:
36107         [defined HAVE_CONFIG_H]: Include <config.h>.
36108         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
36109         (__mktime_internal) [!defined _LIBC]: New decl.
36110         (__gmtime_r) [!defined _LIBC]: New macro and function.
36111         (timegm): Use a prototype, since gnulib assumes C89.
36112         Do not bother declaring tmp to be const, as it's not really usefu.
36113         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
36114         (timegm): Declare only if HAVE_DECL_TIMEGM.
36115
36116 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36117
36118         * MODULES.html.sh (func_all_modules): Add time_r.
36119         * modules/time_r: New file.
36120         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
36121         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
36122
36123 2003-09-03  Paul Eggert  <eggert@twinsun.com>
36124
36125         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
36126         Bug reported by Lute Kamstra in
36127         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
36128
36129         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
36130         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
36131         course with correspondingly smaller numbers for tomorrow and
36132         yesterday.  From Tadayoshi Funaba.  Originally installed into
36133         sh-utils on 1999-08-07, but the patch got lost (I guess during the
36134         coreutils merge?).
36135
36136 2003-08-31  Simon Josefsson  <jas@extundo.com>
36137
36138         * modules/timegm: New file.
36139         * MODULES.html.sh (func_all_modules): Add timegm.
36140
36141 2003-08-31  Simon Josefsson  <jas@extundo.com>
36142
36143         * m4/timegm.m4: New file.
36144
36145 2003-08-31  Simon Josefsson  <jas@extundo.com>
36146
36147         * lib/timegm.h: New file.
36148         * lib/timegm.c: New file.  Based on
36149         wget-1.8.2/src/http.c:mktime_from_utc.
36150
36151 2003-08-31  Karl Berry  <karl@gnu.org>
36152
36153         * lib/argp.h: update from libc.
36154
36155 2003-08-28  Bruno Haible  <bruno@clisp.org>
36156
36157         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
36158         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
36159         followed by '#define fnmatch fnmatch_posix' gives an error.
36160
36161 2003-08-28  Bruno Haible  <bruno@clisp.org>
36162
36163         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
36164         warning on QNX, which defines O_BINARY to 000000.
36165
36166 2003-08-27  Jim Meyering  <jim@meyering.net>
36167
36168         * m4/mkstemp.m4: Require that the system mkstemp be able to create
36169         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
36170         would fail after 32.  Reported by Danny Levinson.  Details here:
36171         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
36172
36173 2003-08-24  Bruno Haible  <bruno@clisp.org>
36174
36175         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
36176         MSVC7 <stdio.h> is included later.
36177
36178 2003-08-22  Simon Josefsson  <jas@extundo.com>
36179
36180         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
36181
36182 2003-08-20  Karl Berry  <karl@gnu.org>
36183
36184         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
36185
36186 2003-08-20  Bruno Haible  <bruno@clisp.org>
36187
36188         * modules/progname: New file.
36189         * MODULES.html.sh (func_all_modules): Add progname.
36190
36191 2003-08-20  Bruno Haible  <bruno@clisp.org>
36192
36193         * lib/progname.h: New file, from GNU gettext.
36194         * lib/progname.c: New file, from GNU gettext.
36195         * lib/progreloc.c: New file, from GNU gettext.
36196
36197 2003-08-19  Jim Meyering  <jim@meyering.net>
36198
36199         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
36200         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
36201
36202 2003-08-19  Bruno Haible  <bruno@clisp.org>
36203
36204         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
36205         more.
36206
36207 2003-08-19  Bruno Haible  <bruno@clisp.org>
36208
36209         * lib/xstrdup.c: Assume <string.h> exists.
36210
36211 2003-08-18  Paul Eggert  <eggert@twinsun.com>
36212
36213         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
36214         in makefile rules.
36215
36216 2003-08-18  Jim Meyering  <jim@meyering.net>
36217
36218         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
36219         * m4/lib-ld.m4: Likewise.
36220
36221 2003-08-18  Jim Meyering  <jim@meyering.net>
36222
36223         * lib/setenv.h: Indent nested cpp directive.
36224         * lib/vasnprintf.c: Remove trailing blanks.
36225
36226 2003-08-17  Simon Josefsson  <jas@extundo.com>
36227
36228         * modules/xstrndup: New file.
36229         * MODULES.html.sh (func_all_modules): Add xstrndup.
36230
36231 2003-08-17  Simon Josefsson  <jas@extundo.com>
36232
36233         * modules/argp: Fix autoconf macro name. Add more dependencies.
36234
36235 2003-08-17  Simon Josefsson  <jas@extundo.com>
36236
36237         * m4/xstrndup.m4: New file.
36238
36239 2003-08-17  Simon Josefsson  <jas@extundo.com>
36240
36241         * m4/argp.m4: New file.
36242
36243 2003-08-17  Simon Josefsson  <jas@extundo.com>
36244             Bruno Haible  <bruno@clisp.org>
36245
36246         * lib/xstrndup.h: New file.
36247         * lib/xstrndup.c: New file.
36248
36249 2003-08-17  Bruno Haible  <bruno@clisp.org>
36250
36251         * modules/strndup (Files, Include): Add lib/strndup.h.
36252
36253 2003-08-17  Bruno Haible  <bruno@clisp.org>
36254
36255         * modules/euidaccess (Files): Add lib/euidaccess.h.
36256
36257 2003-08-17  Bruno Haible  <bruno@clisp.org>
36258
36259         * lib/strndup.h: New file.
36260
36261 2003-08-17  Bruno Haible  <bruno@clisp.org>
36262
36263         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
36264         like AC_GNU_SOURCE.
36265         * modules/extensions (configure.ac): Comment out the invocation of
36266         gl_USE_SYSTEM_EXTENSIONS.
36267
36268 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36269
36270         Merges from coreutils, etc.
36271         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
36272         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
36273         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
36274         fixing a typo.
36275         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
36276         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
36277
36278 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36279
36280         Document merge from coreutils.
36281         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
36282         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
36283         * modules/utime: Add m4/utimes-null.m4.
36284
36285 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36286
36287         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
36288         space, undoing this 2003-08-12 change:
36289         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36290
36291 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36292
36293         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
36294         strtoul.c from libc, undoing this 2003-08-12 change:
36295         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36296
36297 2003-08-16  Jim Meyering  <jim@meyering.net>
36298
36299         Merges from coreutils.
36300         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
36301         prefix.  Adjust cache variables similarly.  Create 500 rather than
36302         just 300 files, to exercise bug on Darwin6.5, too.
36303         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
36304         $missing_dir.
36305         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
36306         AM_SYS_POSIX_TERMIOS.
36307         Reported by mkc@mathdogs.com.
36308         Also change use of $am_cv_sys_posix_termios
36309         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
36310         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
36311         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
36312         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
36313         in /proc/mounts until it finds one with matching device number.  This
36314         is unnecessary when the FILE argument *is* a mount point.  No stat call
36315         is necessary in that case.  So, disable the statvfs-testing code on
36316         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
36317         as RedHat bug# 84846.
36318         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36319         to 1MB, so as not to render systems with no stack size limit (e.g.,
36320         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36321         Include <unistd.h>.  On some systems,
36322         it is required for the definition of _SC_PAGESIZE.
36323
36324 2003-08-16  Jim Meyering  <jim@meyering.net>
36325
36326         Merge from coreutils.
36327         * lib/xstrtoimax.c: #else #if -> #elif.
36328         * lib/xstrtoumax.c: Likewise.
36329
36330 2003-08-16  Jim Meyering  <jim@meyering.net>
36331
36332         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
36333         * m4/utimes.m4: Removed.
36334         * m4/utimes-null.m4: Renamed from utimes.m4.
36335
36336         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36337         to 1MB, so as not to render systems with no stack size limit (e.g.,
36338         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36339         Include <unistd.h>.  On some systems,
36340         it is required for the definition of _SC_PAGESIZE.
36341
36342 2003-08-16  Jim Meyering  <jim@meyering.net>
36343         and Paul Eggert  <eggert@cs.ucla.edu>
36344
36345         Merges from coreutils, etc.
36346
36347         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
36348         using the latest version from cvs.  This avoids problems with #line
36349         directives using a vendor (Sun) compiler.
36350         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
36351         Don't set GETGROUPS_LIB here; now it's
36352         done via getgroups.m4's wrapper function.
36353         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
36354         rather than just in sh-util/configure.in, so that the
36355         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
36356         same.
36357         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
36358         AC_FUNC_GETLOADAVG where to find getloadavg.c.
36359         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
36360         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
36361         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
36362         Remove code that is now done by the newly-required macros.
36363         Append $(EXEEXT) to DF_PROG.
36364         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
36365         Do not invoke or require the following here,
36366         since prereq.m4 or some gnulib .m4 now does this for us:
36367         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
36368         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
36369         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
36370         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
36371         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
36372         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
36373         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
36374         AC_FUNC_OBSTACK.
36375         Do not replace the following functions, as this is now the job
36376         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
36377         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
36378         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
36379         atexit getpass, strdup, getpagesize.
36380         Replace 'raise'.
36381         Do not check for the following functions, as this is now the job
36382         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
36383         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
36384         setregid.
36385         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
36386         Check for sys/sysctl.h.
36387         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
36388         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
36389         of checking for ssize_t ourselves.
36390
36391         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
36392         Require every macro that gnulib/modules/* suggests for us.
36393         (jm_PREREQ_ADDEXT): New macro.
36394         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
36395         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
36396
36397         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
36398         (gl_PHYSMEM): Use it.
36399         Also check for `table' function.
36400         Check for new headers and functions.
36401         Add check for sys/sysmp.h.
36402         With suggestions from Kaveh Ghazi.
36403         Ignore headers that are present but cannot be compiled.  This
36404         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
36405         C 5.4.
36406
36407 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36408
36409         Document merge from coreutils.
36410         * modules/userspec: Depend on posixver.
36411         * modules/strftime: Depend on tzset.
36412
36413 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36414
36415         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
36416         rather than tab, after '#' in shell-script copyright notices.
36417         Suggested by Bruno Haible.
36418
36419 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36420
36421         * config/srclist-update: Use three spaces, rather than tab, after '#'
36422         in shell-script copyright notices.  Suggested by Bruno Haible.
36423         Remove unnecessary parenthesization in regular expression.
36424
36425 2003-08-15  Jim Meyering  <jim@meyering.net>
36426
36427         Merge from coreutils.
36428         * lib/xgethostname.c: Include <stdlib.h>.
36429         (xghostname): Don't exit for anything other than memory-related
36430         failure; just return NULL.
36431         * lib/userspec.c: Include "posixver.h".
36432         (parse_user_spec): Accept `.' as a separator only
36433         in pre-POSIX-200112 mode.
36434         * lib/strtoimax.c: Use #elif rather than #else #if.
36435         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
36436         Remove function, now that we can rely on a working tzset function.
36437         [!_LIBC]: Ensure that the required autoconf test has been run.
36438         [!defined _NL_CURRENT && HAVE_STRFTIME]:
36439         Use underlying_strftime for %r.
36440         * lib/sha.c: Merge in some clean-up and optimization changes from
36441         glibc.
36442         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
36443         Ensure that it is a multiple of 64.
36444         Rearrange loop exit tests so as to avoid performing an
36445         additional fread after encountering an error or EOF.
36446         * lib/realloc.c: Update copyright date.
36447
36448 2003-08-15  Jim Meyering  <jim@meyering.net>
36449         and Paul Eggert  <eggert@twinsun.com>
36450
36451         Merge from coreutils.
36452         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
36453         member but strut utmpx does not.  Needed for AIX 4.3.3.
36454         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
36455
36456 2003-08-15  Jim Meyering  <jim@meyering.net>
36457         and Paul Eggert  <eggert@cs.ucla.edu>
36458
36459         Merges from coreutils, etc.
36460         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
36461         Require gl_FUNC_TZSET_CLOBBER.
36462         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
36463         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
36464         members.
36465
36466 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36467
36468         Help the merge from coreutils.
36469         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
36470         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
36471         * m4/tzset.m4: Use it too.
36472
36473 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36474
36475         * modules/tzset: New file.
36476
36477 2003-08-14  Jim Meyering  <jim@meyering.net>
36478
36479         Merges from coreutils.
36480         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
36481         variable names, rather than @FNMATCH_H@.
36482         * modules/alloca: Likewise for $(ALLOCA_H).
36483
36484         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
36485         the three copies of the literal target, `fnmatch.h'.
36486         * modules/alloca (alloca.h): Likewise.
36487
36488 2003-08-14  Jim Meyering  <jim@meyering.net>
36489
36490         Merge from coreutils.
36491         * m4/tzset.m4: New file.
36492         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
36493         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
36494         otherwise, AIX 5.1 systems would end up using the latter.
36495         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
36496         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
36497         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
36498         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
36499
36500 2003-08-14  Jim Meyering  <jim@meyering.net>
36501
36502         Merge from coreutils.
36503         * lib/obstack.h: Whitespace changes.
36504         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
36505         and xcalloc return values.
36506         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
36507         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
36508         hang on OSF/1 5.1 for DIR on both local and remote file systems.
36509         Reported by (and fix confirmed by) Nelson H. F. Beebe.
36510         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
36511         error from mntctl.
36512         Use mntctl's return value to drive the entry-processing loop, since
36513         we can't rely on the value of the vmt_length member in the last
36514         entry.  On some systems doing so could result in exhausting
36515         virtual memory.  Based in part on a patch from Mike Jetzer.
36516
36517 2003-08-14  Jim Meyering  <jim@meyering.net>
36518         and Paul Eggert  <eggert@twinsun.com>
36519
36520         Merges from coreutils, plus other fixes.
36521         * lib/physmem.c: Merge in portability changes from gcc/libiberty
36522         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
36523         for credits and details.  Thanks to Kaveh Ghazi for helping
36524         to keep these files in sync.
36525         (ARRAY_SIZE): Define it.
36526         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
36527         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
36528         (memcasecmp): Don't assume size_t fits in unsigned int.
36529         Remove casts and duplicate code.
36530         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
36531         (memcpy): Remove definition.
36532         Merge in some clean-up and optimization changes from glibc.
36533         [BLOCKSIZE]: Move definition to top of file.
36534         Ensure that it is a multiple of 64.
36535         Rearrange loop exit tests so as to avoid performing an
36536         additional fread after encountering an error or EOF.
36537         * lib/md5.h (md5_uintptr): Define.
36538         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
36539         return to the initial working directory.  Preserve errno
36540         for caller.
36541         * lib/idcache.c: Include "xalloc.h".
36542         (xmalloc, xrealloc): Remove decls.
36543         (getuser): Remove casts no longer required in C89.
36544         * lib/human.c: Include stdio.h, for sprintf.
36545         * lib/group-member.c: Include "xalloc.h".
36546         (xmalloc, xrealloc): Remove decls.
36547         (get_group_info): Remove casts no longer required in C89.
36548         * lib/getusershell.c (readname): Remove casts no longer required in
36549         C89.
36550         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
36551         * lib/getline.c: Whitespace fix, from coreutils.
36552
36553 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36554
36555         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
36556         Check for isascii.
36557
36558         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36559         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36560         Undo previous (whitespace-only) change.
36561
36562 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36563
36564         * lib/exclude.c: Include <ctype.h>
36565         (IN_CTYPE_DOMAIN): New macro.
36566         (is_space): New fn.
36567         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
36568         and empty lines.
36569
36570         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36571         Undo previous (whitespace-only) change.
36572
36573 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36574
36575         * config/srclist-update: Change update back to the old behavior,
36576         leaving whitespace alone.  Use one 'sed' command rather than a
36577         pipeline.
36578         (fixlicense): Now a variable, not a function.
36579         (remove_trailing_blanks): Remove.
36580         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
36581         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36582         Undo previous (whitespace-only) change.
36583
36584 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36585
36586         Merge from coreutils.
36587         * modules/euidaccess: Add lib_SOURCES, include for new
36588         file euidaccess.h
36589
36590 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36591
36592         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36593         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36594         Normalize leading white space and remove trailing white space.
36595
36596         Merge from coreutils
36597         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
36598
36599         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
36600         0.12.1.  These files are now being upgraded automatically by
36601         ../config/srclist-update.
36602
36603 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36604
36605         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36606         Normalize leading white space and remove trailing white space.
36607         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
36608         notice, as per ../config/srclist-update.
36609
36610         Merge from coreutils.
36611         * lib/euidaccess.h: New file.
36612         * lib/euidaccess.c: Include it.
36613         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
36614         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
36615         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
36616
36617 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36618
36619         * config/srclist-update: Add copyright notice.
36620         (remove_id_lines, remove_trailing_blanks): New constants.
36621         (fixfile): Use them to normalize spacing a bit in copied files.
36622         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36623         Normalize leading white space and remove trailing white space.
36624
36625         * config/texinfo.tex: Sync with texinfo.
36626
36627         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
36628         strtoul.c from libc, to merge coreutils whitespace changes.
36629
36630         * config/srclist.txt: Get the following m4 files from gettext:
36631         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
36632         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
36633         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
36634         wint_t.m4.
36635
36636 2003-08-12  Karl Berry  <karl@gnu.org>
36637
36638         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
36639         been made.
36640
36641 2003-08-11  Paul Eggert  <eggert@twinsun.com>
36642
36643         * modules/gnu-source, m4/gnu-source.m4:
36644         Remove; we're assuming Autoconf 2.54 or later now.
36645         Suggested by Bruno Haible.
36646         * MODULES.html.sh (func_all_modules): Remove gnu-source.
36647
36648 2003-08-11  Bruno Haible  <bruno@clisp.org>
36649
36650         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
36651
36652 2003-08-11  Bruno Haible  <bruno@clisp.org>
36653
36654         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
36655         (vasnprintf): Use it instead of wcslen.
36656
36657 2003-08-11  Bruno Haible  <bruno@clisp.org>
36658
36659         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
36660         value to ensure that _Bool promotes to int. Use #define for _Bool when
36661         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
36662
36663 2003-08-10  Karl Berry  <karl@gnu.org>
36664
36665         * lib/regex.h: update from libc (whitespace fix).
36666
36667 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36668
36669         Merge some files from coreutils.  These changes were
36670         originally made by Jim Meyering.
36671         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
36672         many older Unixes require this.
36673         * lib/alloca.c (alloca): Remove cast to argument of free;
36674         no longer needed in C89.
36675         * lib/alloca_.h, regex.h: Fix white space to match
36676         what GNU indent does.
36677
36678 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36679
36680         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
36681         apparently Emacs's Unicode mode got confused before my 2003-08-05
36682         checkin.
36683
36684 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36685
36686         * m4/extensions.m4: New file.
36687         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
36688         Require gl_USE_SYSTEM_EXTENSIONS.
36689         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
36690         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
36691
36692 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36693
36694         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
36695         * modules/extensions, modules/gnu-source: New files.
36696         * modules/timespec, modules/unlocked-io: Depend on extensions.
36697
36698 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36699
36700         * modules/restrict: New file.
36701         * MODULES.html.sh (func_all_modules): Add restrict.
36702         * modules/regex: Depend on restrict.
36703
36704 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36705
36706         * m4/restrict.m4: New file.
36707         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
36708
36709 2003-08-07  Bruno Haible  <bruno@clisp.org>
36710
36711         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
36712         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
36713
36714 2003-08-07  Bruno Haible  <bruno@clisp.org>
36715
36716         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
36717         makes the module 'getndelim2' compatible with the module 'getline'.
36718
36719 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36720
36721         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
36722         byte with "\201" to avoid glitches when editing that source file
36723         with multi-gnome-terminal.
36724
36725 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36726
36727         * lib/bumpalloc.h: Remove.
36728
36729 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36730
36731         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
36732         * modules/bumpalloc: Remove.
36733
36734 2003-08-04  Paul Eggert  <eggert@twinsun.com>
36735
36736         * lib/getloadavg.c: Change copyright notice and spacing to conform to
36737         GNU coding style.
36738
36739         Merge from coreutils.
36740         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
36741         1. From glibc.
36742         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
36743         from Karl Berry, implemented by Jim Meyering.
36744         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
36745         from Dmitry V. Levin.
36746         Remove anachronistic cast of xrealloc.
36747         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
36748         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
36749         type. Otherwise, it wouldn't compile with at least /bin/cc on
36750         ymp-cray-unicos9.0.2.X.
36751         Combine two mostly-identical uses of alloca into one.
36752         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
36753
36754 2003-08-04  Dave Love  <d.love@dl.ac.uk>
36755
36756         [From Emacs.]
36757
36758         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
36759         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
36760         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
36761         obsolete NLIST_NAME_UNION.
36762         [__GNU__]: Undef BSD and FSCALE.
36763         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
36764
36765 2003-08-03  Paul Eggert  <eggert@twinsun.com>
36766
36767         * lib/stdbool_.h (_Bool): Make it signed char, instead of
36768         an enum type, so that it's guaranteed to promote to int.  See:
36769         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
36770
36771 2003-08-03  Karl Berry  <karl@gnu.org>
36772
36773         * config/depcomp: update from automake.
36774
36775 2003-07-31  Paul Eggert  <eggert@twinsun.com>
36776
36777         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
36778         (strerror): Don't assume that a printable int fits in 14 bytes.
36779
36780 2003-07-31  Bruno Haible  <bruno@clisp.org>
36781
36782         * modules/getpass-gnu: New file.
36783         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
36784
36785 2003-07-31  Bruno Haible  <bruno@clisp.org>
36786
36787         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
36788
36789 2003-07-24  Karl Berry  <karl@gnu.org>
36790
36791         * config/missing: update from automake.
36792
36793 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
36794             Bruno Haible  <bruno@clisp.org>
36795
36796         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
36797         * lib/getline.c (getline, getdelim): Likewise.
36798         Remove _GNU_SOURCE define; now it's defined in config.h through
36799         m4/getline.m4.
36800
36801 2003-07-23  Karl Berry  <karl@gnu.org>
36802
36803         * config/config.sub: update from prep.
36804
36805 2003-07-22  Paul Eggert  <eggert@twinsun.com>
36806
36807         * modules/xalloc (Depends-on): Add exitfail.
36808         * modules/xmemcoll: Likewise.
36809
36810 2003-07-22  Paul Eggert  <eggert@twinsun.com>
36811
36812         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
36813         over-parenthesization in macros.
36814
36815         Sync with coreutils.
36816
36817         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
36818         required by C99.
36819
36820         Use `exit_failure' for xalloc and xmemcoll instead of their own
36821         private exit-failure variables.
36822         * lib/xalloc.h (xalloc_exit_failure): Remove.
36823         * lib/xmalloc.c: Likewise.  Include exitfail.h.
36824         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
36825         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
36826         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
36827         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
36828
36829 2003-07-20  Jim Meyering  <jim@meyering.net>
36830
36831         * modules/closeout (Depends-on): Add exitfail.
36832         Suggestion from Bruno Haible.
36833
36834 2003-07-19  Karl Berry  <karl@gnu.org>
36835
36836         * config/config.sub: update from prep.
36837
36838 2003-07-18  Paul Eggert  <eggert@twinsun.com>
36839
36840         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
36841         Remove.
36842         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
36843         to test that it can stand by itself.  Include "exitfail.h".
36844         Clients should set exit_failure instead.
36845         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
36846
36847 2003-07-18  Bruno Haible  <bruno@clisp.org>
36848
36849         * modules/getndelim2: New file.
36850         * modules/getline: Share files with module getndelim2.
36851         * modules/getnline: Depend on getndelim2 instead of sharing files with
36852         it. Add getnline.c to lib_SOURCES.
36853         * MODULES.html.sh (func_all_modules): Add getndelim2.
36854
36855 2003-07-18  Bruno Haible  <bruno@clisp.org>
36856
36857         * m4/getndelim2.m4: New file.
36858         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
36859         invoke gl_PREREQ_GETNDELIM2.
36860         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
36861         gl_PREREQ_GETNDELIM2.
36862         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
36863         gl_GETNDELIM2.
36864
36865 2003-07-18  Bruno Haible  <bruno@clisp.org>
36866
36867         * lib/getndelim2.h: New file.
36868         * lib/getndelim2.c: Make into a module of its own. Include config.h,
36869         getndelim2.h.
36870         (getndelim2): Make non-static. Change return type to ssize_t.
36871         * lib/getline.h: Change argument names.
36872         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
36873         * lib/getnline.c: Include getndelim2.h.
36874
36875 2003-07-18  Andreas Schwab  <schwab@suse.de>
36876
36877         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
36878
36879 2003-07-17  Karl Berry  <karl@gnu.org>
36880
36881         * config/config.sub: update from prep.
36882
36883 2003-07-17  Bruno Haible  <bruno@clisp.org>
36884
36885         * modules/getnline: New file.
36886         * modules/getline: Add lib/getndelim2.c to source file list.
36887         * MODULES.html.sh (func_all_modules): Add getnline.
36888
36889 2003-07-17  Bruno Haible  <bruno@clisp.org>
36890
36891         * m4/getnline.m4: New file.
36892
36893 2003-07-17  Bruno Haible  <bruno@clisp.org>
36894
36895         * m4/Makefile.am.in: Remove file.
36896         * m4/Makefile.am: Remove file.
36897         * m4/Makefile.in: Remove file.
36898
36899 2003-07-17  Bruno Haible  <bruno@clisp.org>
36900
36901         * lib/getnline.h: New file.
36902         * lib/getnline.c: New file.
36903         * lib/getndelim2.c: New file, extracted from getline.c.
36904         (getndelim2): Renamed from getdelim2, with added nmax argument.
36905         * lib/getline.c: Include getndelim2.c.
36906         (getdelim2): Moved out to getndelim2.c.
36907         (getline, getdelim): Update.
36908
36909 2003-07-17  Bruno Haible  <bruno@clisp.org>
36910
36911         * lib/Makefile.am: Remove file.
36912         * lib/Makefile.in: Remove file.
36913
36914 2003-07-17  Bruno Haible  <bruno@clisp.org>
36915
36916         * configure.in: Remove file.
36917         * Makefile.in: Remove file.
36918
36919 2003-07-17  Bruno Haible  <bruno@clisp.org>
36920
36921         * MODULES.html.sh: Put the </BODY> right before </HTML>.
36922
36923 2003-07-16  Karl Berry  <karl@gnu.org>
36924
36925         * config/srclist-update: was running fixlicense twice, which caused
36926                 texinfo.tex to be nullified for some reason.  Simplify,
36927                 $gplsrc is no longer needed as far as I can see?
36928
36929 2003-07-16  Jim Meyering  <jim@meyering.net>
36930
36931         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
36932
36933 2003-07-15  Paul Eggert  <eggert@twinsun.com>
36934
36935         * config/srclist.txt: Get the following files from gettext-runtime/intl
36936         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
36937         ref-del.sin.  From Bruno Haible.
36938         * config/srclist-update (fixfile): Change grep pattern again, since the
36939         previous fix didn't work (there was another trailing $).  Use
36940         '[$]' to escape the $s.
36941
36942 2003-07-15  Karl Berry  <karl@gnu.org>
36943
36944         * lib/vasnprintf.c: update from gettext.
36945
36946 2003-07-15  Karl Berry  <karl@gnu.org>
36947
36948         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
36949         gets expanded when surrounded by '$'.
36950
36951 2003-07-15  Jim Meyering  <jim@meyering.net>
36952
36953         * modules/save-cwd: Don't depend on error.  From Derek Price.
36954
36955 2003-07-15  Jim Meyering  <jim@meyering.net>
36956
36957         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
36958
36959 2003-07-14  Simon Josefsson  <jas@extundo.com>
36960
36961         * modules/mempcpy: New file.
36962         * MODULES.html.sh (func_all_modules): Add mempcpy.
36963
36964 2003-07-14  Simon Josefsson  <jas@extundo.com>
36965
36966         * m4/mempcpy.m4: New file.
36967
36968 2003-07-14  Simon Josefsson  <jas@extundo.com>
36969
36970         * lib/mempcpy.h: New file.
36971         * lib/mempcpy.c: New file.
36972
36973 2003-07-14  Paul Eggert  <eggert@twinsun.com>
36974
36975         * modules/getdate, modules/posixtm: Depend on mktime.
36976
36977 2003-07-14  Paul Eggert  <eggert@twinsun.com>
36978
36979         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
36980         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
36981         unicodeio.c, unicodeio.h, unlocked-io.h:
36982         Switch from LGPL to GPL.
36983
36984 2003-07-14  Paul Eggert  <eggert@twinsun.com>
36985
36986         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
36987         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
36988         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
36989         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
36990         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
36991         updated automatically by ../config/srclist-update.  This changes
36992         their license from LPGL to GPL.
36993
36994 2003-07-14  Paul Eggert  <eggert@twinsun.com>
36995
36996         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
36997         assumed to refer to the root of the most recent stable gettext version.
36998         * config/srclistvars.sh: Add defaults for eggert.
36999         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
37000         Match "This program" as well as "The program".  This is needed
37001         for gettext.
37002
37003 2003-07-14  Jim Meyering  <jim@meyering.net>
37004
37005         Don't emit diagnostics.  Let callers do that.
37006         * lib/save-cwd.c: Don't include "error.h".
37007         (save_cwd): Don't call error.  Ensure that errno is valid
37008         when returning nonzero.
37009
37010         * lib/save-cwd.h (restore_cwd): Update prototype.
37011         * lib/save-cwd.c (restore_cwd): Remove two parameters.
37012         Simplify.  Don't call error upon failure.  Let callers do that.
37013         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
37014         when auditing is enabled.  But don't bother updating the #if.
37015
37016 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
37017
37018         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
37019         it breaks C++ compilation.
37020         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
37021
37022 2003-07-10  Simon Josefsson  <jas@extundo.com>
37023
37024         * modules/strchrnul (Makefile.am): Add strchrnul.h.
37025
37026 2003-07-10  Jim Meyering  <jim@meyering.net>
37027
37028         * m4/clock_time.m4: Remove trailing blank.
37029         * m4/intmax_t.m4: Likewise.
37030
37031 2003-07-10  Jim Meyering  <jim@meyering.net>
37032
37033         * lib/vasnprintf.c: Remove trailing blanks.
37034         Make cpp indentation consistent.
37035
37036 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37037
37038         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
37039         posixver.c, strftime.c, strnlen.c, strverscmp.c:
37040         Switch from LGPL to GPL.
37041
37042 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37043
37044         * config/srclist.txt: Sort sublists.  Add
37045         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
37046         that differ from gnulib for one reason or another; we'd like this list
37047         to be smaller but for now let's document what we have.
37048
37049 2003-07-08  Paul Eggert  <eggert@twinsun.com>
37050
37051         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
37052         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
37053         and sweeter "eval x=$x".
37054         * config/srclist.txt: Get lib/argp* from glibc.
37055
37056 2003-07-07  Paul Eggert  <eggert@twinsun.com>
37057
37058         * lib/mktime.c: Fix some boundary cases and remove need for floating
37059         point.
37060
37061         Issue a compile-time diagnostic if time_t is floating point, or if
37062         two's complement arithmetic is not in effect, or if arithmetic
37063         right shift does not propagate the sign.  These assumptions were
37064         all in the original code but they weren't checked.
37065
37066         (TIME_T_MIDPOINT, verify): New macros.
37067         (__isleap): Remove; it has integer overflow problems.
37068         (leapyear): New function, without those problems.
37069         (ydhms_tm_diff): Remove; splitting into two parts.
37070         (ydhms_diff): New function, containing the arithmetic part of
37071         the old ydhms_tm_diff function.  Issue a compile-time
37072         diagnostic if we are not using C99 integer division.
37073         Avoid casts when possible.
37074         (guess_time_tm): New function, containing the checking part of
37075         the old ydhms_tm_diff function.  Return the new value, rather than
37076         the difference between it and the old.  Accept a new argument T
37077         so that *T specifies the old value.  Check for overflow in the result.
37078
37079         (__mktime_internal): Use a time_t offset, not a long int offset.
37080         This undoes the 2003-06-04 change, which is no longer needed now
37081         that we have better overflow checking.
37082         (localtime_offset): Likewise.
37083
37084         (__mktime_internal): Avoid harmful overflow on hosts where time_t
37085         and long are 64-bit but int is only 32-bit.
37086         (ydhms_diff): Use long int to store year1 and yday1.
37087         Issue a compile-time diagnostic if long int is not wide enough.
37088
37089         (__mktime_internal): Use long int to store adjusted year and yday.
37090         Use plain C rather than preprocessor commands, if that doesn't
37091         affect efficiency.
37092         Check for overflow (and try to repair) after each probe
37093         rather than checking only at the very end.  This avoids some bugs
37094         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
37095         does not equal GMT offset at maximum time).
37096         Use integer to check for overflow rather than floating point; this
37097         is more portable to non-IEEE hosts, and is a tad faster.
37098         When we detect that we are oscillating between two values,
37099         don't check whether tm_isdst has the requested value, since
37100         we already know the answer.  When tm_isdst has the wrong value,
37101         use a different heuristic to find the right one, based on the
37102         extreme values actually observed in practice in tz2003a,
37103         rather than the (overly optimistic) "previous 3 calendar quarters".
37104
37105         (not_equal_tm, print_tm, check_result): Use "const T" rather than
37106         "T const" to accommodate glibc style.
37107         (check_result): Use less-confusing report format.  "long" -> "long int.
37108         (main): Likewise.
37109         Don't loop if the iteration overflows time_t.
37110         Allow a negative step in the iteration.
37111
37112 2003-07-06  Karl Berry  <karl@gnu.org>
37113
37114         * config/depcomp: update from automake.
37115         * config/config.sub: update from prep.
37116
37117 2003-07-03  Karl Berry  <karl@gnu.org>
37118
37119         * config/config.guess: update from prep.
37120
37121 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37122
37123         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
37124         xreadlink.c now includes it unconditionally.
37125
37126 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37127
37128         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
37129         having it depend on HAVE_SYS_TYPES_H.
37130
37131 2003-07-01  Bruno Haible  <bruno@clisp.org>
37132
37133         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
37134         <sys/types.h> should be sufficient.
37135         Reported by Paul Eggert.
37136
37137 2003-06-26  Karl Berry  <karl@gnu.org>
37138
37139         * config/depcomp: update from automake.
37140
37141 2003-06-26  Bruno Haible  <bruno@clisp.org>
37142
37143         * modules/human: Depend on module stdbool.
37144
37145 2003-06-25  Bruno Haible  <bruno@clisp.org>
37146
37147         * modules/readlink: New file.
37148         * modules/xreadlink: Depend on it.
37149         * MODULES.html.sh (func_all_modules): Add readlink.
37150
37151 2003-06-25  Bruno Haible  <bruno@clisp.org>
37152
37153         * m4/readlink.m4: New file.
37154
37155 2003-06-25  Bruno Haible  <bruno@clisp.org>
37156
37157         * lib/readlink.c: New file.
37158
37159 2003-06-22  Karl Berry  <karl@gnu.org>
37160
37161         * config/srclist.txt: update mkinstalldirs from automake.
37162         * config/mkinstalldirs: update.
37163
37164 2003-06-22  Bruno Haible  <bruno@clisp.org>
37165
37166         Portability to mingw32.
37167         * m4/ssize_t.m4: New file, from GNU gettext.
37168         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
37169         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
37170
37171 2003-06-22  Bruno Haible  <bruno@clisp.org>
37172
37173         * modules/safe-read: Add m4/ssize_t.m4.
37174         * modules/xreadlink: Add m4/ssize_t.m4.
37175
37176 2003-06-20  Bruno Haible  <bruno@clisp.org>
37177
37178         Assume C89, so PARAMS isn't needed.
37179         * lib/unicodeio.h (PARAMS): Remove.
37180         * lib/unicodeio.c: Don't use PARAMS.
37181
37182 2003-06-18  Karl Berry  <karl@gnu.org>
37183
37184         * config/config.{guess,sub}: update from prep.
37185
37186 2003-06-18  Jim Meyering  <jim@meyering.net>
37187
37188         Merge changes from coreutils.
37189         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
37190         Remove explicit declarations of xmalloc and realloc.
37191         Include xalloc.h.
37192         (read_utmp): Remove anachronistic cast of xmalloc.
37193
37194 2003-06-17  Paul Eggert  <eggert@twinsun.com>
37195
37196         Assume C89, so PARAMS isn't needed.
37197         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
37198         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
37199         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
37200         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
37201         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
37202         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
37203         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
37204         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
37205         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
37206         lib/xstrtod.h, lib/xstrtol.h: Likewise.
37207         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
37208         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
37209         no longer needed. Anyway, config.h should always be included before any
37210         other file.
37211
37212 2003-06-11  Simon Josefsson  <jas@extundo.com>
37213
37214         * modules/sysexits: New file.
37215         * MODULES.html.sh (func_all_modules): Add sysexits.
37216
37217 2003-06-11  Simon Josefsson  <jas@extundo.com>
37218
37219         * lib/sysexit_.h: New file.
37220
37221 2003-06-11  Derek Price  <derek@ximbiot.com>
37222
37223         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
37224         necessary.
37225
37226 2003-06-11  Bruno Haible  <bruno@clisp.org>
37227
37228         * m4/sysexits.m4: New file.
37229
37230 2003-06-10  Simon Josefsson  <jas@extundo.com>
37231
37232         * lib/argp.h: New file, from glibc.
37233         * lib/argp-ba.c: New file, from glibc.
37234         * lib/argp-eexst.c: New file, from glibc.
37235         * lib/argp-fmtstream.c: New file, from glibc.
37236         * lib/argp-fmtstream.h: New file, from glibc.
37237         * lib/argp-fs-xinl.c: New file, from glibc.
37238         * lib/argp-help.c: New file, from glibc.
37239         * lib/argp-namefrob.h: New file, from glibc.
37240         * lib/argp-parse.c: New file, from glibc.
37241         * lib/argp-pv.c: New file, from glibc.
37242         * lib/argp-pvh.c: New file, from glibc.
37243         * lib/argp-xinl.c: New file, from glibc.
37244
37245 2003-06-10  Simon Josefsson  <jas@extundo.com>
37246
37247         * modules/strchrnul: New file.
37248
37249 2003-06-10  Simon Josefsson  <jas@extundo.com>
37250
37251         * modules/argp: New file.
37252
37253 2003-06-10  Simon Josefsson  <jas@extundo.com>
37254
37255         * m4/strchrnul.m4: New file.
37256
37257 2003-06-10  Simon Josefsson  <jas@extundo.com>
37258
37259         * lib/strchrnul.h: New file.
37260         * lib/strchrnul.c: New file.
37261
37262 2003-06-10  Bruno Haible  <bruno@clisp.org>
37263
37264         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
37265
37266 2003-06-07  Karl Berry  <karl@gnu.org>
37267
37268         * config/config.{guess,sub}: update from prep.
37269
37270 2003-06-07  Jim Meyering  <jim@meyering.net>
37271
37272         * modules/strtod: Use $(...) notation, not @...@ for
37273         AC_REPLACE'd variables.
37274         * modules/localcharset: Likewise.
37275
37276 2003-06-07  Jim Meyering  <jim@meyering.net>
37277
37278         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
37279         in place of my name in the copyright comment.
37280         Remove definition and uses of __P.
37281
37282         From coreutils.
37283         * lib/stat.c: Don't declare xmalloc explicitly.
37284         Instead, include "xalloc.h".
37285         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
37286         xrealloc, and xcalloc return values.
37287         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
37288         Improve comment.
37289         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
37290
37291 2003-06-07  Bruno Haible  <bruno@clisp.org>
37292
37293         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
37294         avoid AC_CONFIG_LINKS.
37295         * modules/fnmatch (Makefile.am): Use explicit creation rule for
37296         fnmatch.h, to avoid AC_CONFIG_LINKS.
37297         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
37298
37299 2003-06-07  Bruno Haible  <bruno@clisp.org>
37300
37301         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
37302         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
37303         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37304         directory.
37305         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
37306         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37307         directory.
37308
37309 2003-06-06  Jim Meyering  <jim@meyering.net>
37310
37311         Merge from coreutils.
37312         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
37313         Consolidate declarations and initializations of *_base* locals.
37314
37315         Merge from coreutils.
37316         This avoids a core dump on systems without GNU putenv,
37317         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
37318         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
37319         (unsetenv): New static function, from GNU libc.
37320         (rpl_putenv): Use it.
37321
37322         * lib/modechange.c: Remove trailing blanks.
37323
37324         Merge from coreutils.
37325         * lib/fsusage.c: Remove declaration of statfs.
37326         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
37327
37328         * lib/posixtm.c: Include <stdbool.h> unconditionally.
37329
37330 2003-06-06  Jim Meyering  <jim@meyering.net>
37331
37332         * lib/stdbool_.h: Renamed from stdbool.h.in.
37333
37334 2003-06-06  Jim Meyering  <jim@meyering.net>
37335             Bruno Haible  <bruno@clisp.org>
37336
37337         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
37338         Adjust Makefile.am snippet not to redirect directly to target.
37339         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
37340
37341 2003-06-05  Paul Eggert  <eggert@twinsun.com>
37342
37343         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
37344         mismatch, look in future quarters as well as past.  This fixes a
37345         bug when processing fall-backwards gaps immediately after a long
37346         period of daylight-saving time.
37347
37348         * lib/mktime.c: Assume freestanding C89 or better.
37349         (HAVE_LIMITS_H): Remove.  Assume it's 1.
37350         (__P): Remove; not used.
37351         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
37352         (mktime, not_equal_tm, print_tm, check_result,
37353         main): Use prototypes.  Use const * where appropriate.
37354         (main): Fix typo in testing code that uncovered by above changes.
37355         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
37356
37357 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37358
37359         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
37360         locale.h, localeconv.  This merges changes from coreutils.
37361
37362         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
37363         It can be removed after the next Autoconf is released.
37364         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
37365         needed.
37366
37367 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37368
37369         * lib/mktime.c: Fix Debian bug 177940
37370         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
37371         (localtime_offset): Now long int, not time_t, because we want it
37372         to be guaranteed to be signed.  All uses changed.
37373         (__mktime_internal): If overflow would occur when adding offset,
37374         don't add it.
37375
37376         Merge 'human' changes from coreutils.  Rewrite to support
37377         locale-specific notations like thousands separators.
37378         * lib/human.c: Simplify authorship notice.
37379         Include human.h immediately after config.h.
37380         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
37381         <limits.h>: Do not include, since human.h does.
37382         (SIZE_MAX, UINTMAX_MAX): New macros.
37383         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
37384         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
37385         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
37386         (power_letter): Renamed from suffixes.
37387         (generate_suffix_backwards): Remove.
37388         (adjust_value): Now takes int style (because of human.h changes)
37389         and long double value (for greater precision on some platforms).
37390         (group_number): New function.
37391         (human_readable): Use it.  Use integer options, not enum.
37392         Put the options before the sizes in the arg list.
37393         Support all the new options.
37394         The old human_readable function has been removed;
37395         use inttostr.h instead.
37396         (human_readable, default_block_size, humblock):
37397         Use uintmax_t, not int, for block sizes.
37398         (human_readable_inexact, block_size_types): Remove.
37399         (block_size_opts): New constant.
37400         (human_options): Renamed from human_block_size, with new signature
37401         that allows block sizes up to UINTMAX_MAX.  All callers changed.
37402         * lib/human.h: Add copyright and authorship notice.
37403         Include <limits.h> and <stdbool.h> unconditionally.
37404         (PARAMS): Remove.  All uses removed.
37405         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
37406         (enum human_inexact_style): Remove tag; now a nameless enum.
37407         (human_floor, human_ceiling, human_round_to_even): Now have
37408         values 2, 0, 1 rather than -1, 1, 0.
37409         (human_group_digits, human_suppress_point_zero, human_autoscale,
37410         human_base_1024, human_SI, human_B): New constants.
37411         (human_readable_inexact, human_block_size): Remove.
37412         (human_readable): Size args are now uintmax_t, not int.
37413         (human_options): New decl.
37414
37415         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
37416         unnecessary now that we assume C89 or better.  This change
37417         imported from coreutils.
37418
37419         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37420         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
37421         in the 2003-05-30 sync from glibc.
37422
37423         .h files should stand alone, but we shouldn't include <sys/types.h>
37424         if we can get away with just <stddef.h>.
37425
37426         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
37427         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
37428         rather than <sys/types.h>, as we merely need size_t.
37429         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
37430         to get size_t.
37431         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
37432         Include <stdio.h>, to get FILE.
37433         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
37434         memcasecmp.h has included <stddef.h> and all we need is size_t.
37435         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
37436         our interface, instead of including <sys/types.h>
37437
37438 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37439
37440         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
37441         now, as glibc mktime is buggy on non-glibc systems.
37442
37443 2003-06-03  Karl Berry  <karl@gnu.org>
37444
37445         * config/config.sub: update from prep.
37446
37447 2003-06-02  Paul Eggert  <eggert@twinsun.com>
37448
37449         [from coreutils]
37450         Fix some minor time-related bugs with POSIX time arguments.
37451         Some valid time stamps were being rejected (notably -1, and
37452         time stamps before 1900 on 64-bit hosts).  And some invalid
37453         time stamps were being accepted, e.g. September 31.
37454
37455         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
37456         that we can return (time_t) -1 successfully.
37457         * lib/posixtm.c: Likewise.
37458         [HAVE_STDBOOL_H]: Include <stdbool.h>.
37459         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
37460         (t): Remove static var.
37461         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
37462         of static var.  All uses changed.
37463         (year): Do not reject years before 1900; they can occur with
37464         64-bit time_t.
37465         (posix_time_parse): Do not check for out-of-range components;
37466         that is now the caller's responsibility, since our checks were
37467         only approximations.
37468         (posixtime): Use mktime to check for out-of-range components,
37469         since it knows them exactly.
37470         If mktime returns (time_t) -1, check whether an error actually occurred
37471         by invoking localtime on -1.
37472         (main) [TEST_POSIXTIME]: Check for input data errors, and report
37473         posixtime failures better.
37474         Improve the test data (in comments only).
37475
37476 2003-06-02  Karl Berry  <karl@gnu.org>
37477
37478         * config/mkinstalldirs (version): new variable.
37479         (--version): new option.
37480         (usage): improve message.
37481
37482 2003-05-30  Karl Berry  <karl@gnu.org>
37483
37484         * lib/mktime.c: update from libc.
37485
37486 2003-05-30  Bruno Haible  <bruno@clisp.org>
37487
37488         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
37489         * config/config.rpath: Upgrade to gettext-0.12.1.
37490
37491 2003-05-30  Bruno Haible  <bruno@clisp.org>
37492
37493         * m4/gettext.m4: Upgrade to gettext-0.12.1.
37494         * m4/nls.m4: New file, from gettext-0.12.1.
37495         * m4/po.m4: New file, from gettext-0.12.1.
37496         * m4/progtest.m4: Upgrade to gettext-0.12.1.
37497
37498 2003-05-30  Bruno Haible  <bruno@clisp.org>
37499
37500         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
37501         * lib/localcharset.h: Likewise.
37502         * lib/localcharset.c: Likewise.
37503
37504 2003-05-29  Karl Berry  <karl@gnu.org>
37505
37506         * config/config.rpath: update from gettext.
37507
37508 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37509
37510         Assume the headers required for C89 freestanding compilers.
37511         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
37512         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
37513         * m4/human.m4 (gl_HUMAN): Likewise.
37514         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
37515         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
37516         * m4/userspec.m4 (gl_USERSPEC): Likewise.
37517         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
37518         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
37519         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
37520
37521 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37522
37523         Assume the headers required for C89 freestanding compilers.
37524         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
37525         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
37526         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
37527         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
37528         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
37529         define, since <limits.h> is guaranteed to do that.
37530         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
37531         * lib/exclude.c: Include <stdbool.h> unconditionally.
37532         * lib/tempname.c: Include <stddef.h> unconditionally.
37533         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
37534         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
37535         <stddef.h> does that.
37536         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
37537         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
37538         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
37539         needed.
37540         * lib/xstrtol.c: Likewise.
37541         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
37542         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
37543
37544         * lib/addext.c (addext): Use assignment rather than cast, to avoid
37545         warnings on some platforms.
37546
37547         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37548         arbitrarily.
37549
37550 2003-05-26  Jim Meyering  <jim@meyering.net>
37551
37552         Merge in a change from coreutils:
37553         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
37554         that is guaranteed to be `no'.  Use `no_such_member' to indicate
37555         that condition, rather than `-1' which is slightly misleading.
37556         Change the name of the cache variable to have the gl_ prefix.
37557         Prompted by a patch from Richard Dawe for DJGPP.
37558
37559 2003-05-24  Karl Berry  <karl@gnu.org>
37560
37561         * config/config.guess: update from prep.
37562
37563 2003-05-22  Karl Berry  <karl@gnu.org>
37564
37565         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
37566
37567 2003-05-20  Karl Berry  <karl@gnu.org>
37568
37569         * config/config.guess: update from prep.
37570
37571 2003-05-18  Karl Berry  <karl@gnu.org>
37572
37573         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
37574         might actually be set by the user.
37575
37576         * config/depcomp, install-sh, mdate-sh: update from automake.
37577
37578 2003-05-17  Bruno Haible  <bruno@clisp.org>
37579
37580         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
37581         invalid expansion for AC_EGREP_CPP.
37582         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
37583         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
37584         Suggested by Akim Demaille <akim@epita.fr> in
37585         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
37586
37587 2003-05-12  Jim Meyering  <jim@meyering.net>
37588
37589         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
37590         the space-padded-by-default conversion specifiers, %e, %k, %l.
37591
37592 2003-05-12  Bruno Haible  <bruno@clisp.org>
37593
37594         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
37595         the string is longer than 4 KB.
37596
37597 2003-05-11  Karl Berry  <karl@gnu.org>
37598
37599         * config/config.{guess,sub}: update from prep.
37600
37601 2003-05-09  Bruno Haible  <bruno@clisp.org>
37602
37603         * modules/error: Add m4/strerror_r.m4 to file list.
37604
37605 2003-05-03  Bruno Haible  <bruno@clisp.org>
37606
37607         Upgrade to Unicode-4.0.
37608         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
37609         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
37610         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
37611         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
37612         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
37613         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
37614         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
37615         Change width of U+E0100..U+E01EF from 1 to 0.
37616
37617 2003-04-25  Jim Meyering  <jim@meyering.net>
37618
37619         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
37620         of type size_t, not int.
37621
37622 2003-04-25  Bruno Haible  <bruno@clisp.org>
37623
37624         * lib/copy-file.c: Include <stddef.h>, for size_t.
37625
37626 2003-04-21  Paul Eggert  <eggert@twinsun.com>
37627
37628         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
37629         code which expansion is under static control.  Patch imported from
37630         Akim Demaille's patch to Bison; see
37631         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
37632
37633 2003-04-14  Bruno Haible  <bruno@clisp.org>
37634
37635         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
37636
37637 2003-04-11  Jim Meyering  <jim@meyering.net>
37638
37639         Merge changes from Coreutils.
37640
37641         2003-03-22  Jim Meyering  <jim@meyering.net>
37642
37643         * lib/strftime.c (widen): Cast alloca return value to proper type.
37644
37645         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
37646
37647         From GNU libc.
37648         * lib/strftime.c (my_strftime): Handle very large width
37649         specifications for numeric values correctly.  Improve checks for
37650         overflow.
37651
37652         2003-01-19  Jim Meyering  <jim@meyering.net>
37653
37654         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
37655         definitions.
37656         (nl_get_alt_digit) [! defined my_strftime]: Define.
37657         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
37658         _nl_get_alt_digit and _nl_get_walt_digit.
37659
37660         * lib/strftime.c (my_strftime): Merge in locale-related changes from
37661         libc. These changes have no effect outside of _LIBC.
37662
37663 2003-04-10  Bruno Haible  <bruno@clisp.org>
37664
37665         * modules/findprog: New file.
37666         * MODULES.html.sh (func_all_modules): Add it.
37667
37668 2003-04-10  Bruno Haible  <bruno@clisp.org>
37669
37670         * m4/findprog.m4: New file.
37671         * m4/eaccess.m4: New file.
37672
37673 2003-04-10  Bruno Haible  <bruno@clisp.org>
37674
37675         * lib/findprog.h: New file, from GNU gettext.
37676         * lib/findprog.c: New file, from GNU gettext.
37677
37678 2003-04-05  Jim Meyering  <jim@meyering.net>
37679
37680         Merge changes from Coreutils.
37681
37682         * lib/exclude.h (PARAMS): Remove definition and uses.
37683         * lib/exclude.c: Remove uses of `PARAMS'.
37684
37685         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
37686         Add test-cases for DOS filenames. Declare program_name.
37687         (main): Set up program_name.  Patch by Rich Dawe.
37688
37689         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
37690         error from mntctl.
37691         Use mntctl's return value to drive the entry-processing loop, since
37692         we can't rely on the value of the vmt_length member in the last
37693         entry.  On some systems doing so could result in exhausting
37694         virtual memory.  Based in part on a patch from Mike Jetzer.
37695
37696 2003-04-04  Bruno Haible  <bruno@clisp.org>
37697
37698         * modules/linebreak: New file.
37699         * MODULES.html.sh (func_all_modules): Add it.
37700
37701 2003-04-04  Bruno Haible  <bruno@clisp.org>
37702
37703         * m4/linebreak.m4: New file.
37704
37705 2003-04-04  Bruno Haible  <bruno@clisp.org>
37706
37707         * lib/linebreak.h: New file, from GNU gettext.
37708         * lib/linebreak.c: New file, from GNU gettext with slight
37709         modifications.
37710         * lib/lbrkprop.h: New file, from GNU gettext.
37711
37712 2003-04-03  Bruno Haible  <bruno@clisp.org>
37713
37714         * modules/utf8-ucs4: New file.
37715         * modules/utf16-ucs4: New file.
37716         * modules/ucs4-utf8: New file.
37717         * modules/ucs4-utf16: New file.
37718         * MODULES.html.sh (func_all_modules): Add them.
37719
37720 2003-04-03  Bruno Haible  <bruno@clisp.org>
37721
37722         * m4/utf-ucs4.m4: New file.
37723         * m4/ucs4-utf.m4: New file.
37724
37725 2003-04-03  Bruno Haible  <bruno@clisp.org>
37726
37727         * lib/utf8-ucs4.h: New file, from GNU gettext.
37728         * lib/utf16-ucs4.h: New file, from GNU gettext.
37729         * lib/ucs4-utf8.h: New file, from GNU gettext.
37730         * lib/ucs4-utf16.h: New file, from GNU gettext.
37731
37732 2003-04-02  Bruno Haible  <bruno@clisp.org>
37733
37734         * modules/binary-io: New file.
37735         * MODULES.html.sh (func_all_modules): Add it.
37736
37737 2003-04-02  Bruno Haible  <bruno@clisp.org>
37738
37739         * lib/binary-io.h: New file, from GNU gettext.
37740
37741 2003-04-01  Bruno Haible  <bruno@clisp.org>
37742
37743         * modules/pathname: New file.
37744         * MODULES.html.sh (func_all_modules): Add it.
37745
37746 2003-04-01  Bruno Haible  <bruno@clisp.org>
37747
37748         * lib/pathname.h: New file, from GNU gettext.
37749         * lib/concatpath.c: New file, from GNU gettext.
37750
37751 2003-03-30  Bruno Haible  <bruno@clisp.org>
37752
37753         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
37754
37755 2003-03-30  Bruno Haible  <bruno@clisp.org>
37756
37757         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
37758         function chown() doesn't exist.
37759
37760 2003-03-28  Bruno Haible  <bruno@clisp.org>
37761
37762         * modules/copy-file: New file.
37763         * MODULES.html.sh (func_all_modules): Add it.
37764
37765 2003-03-28  Bruno Haible  <bruno@clisp.org>
37766
37767         * m4/copy-file.m4: New file.
37768
37769 2003-03-28  Bruno Haible  <bruno@clisp.org>
37770
37771         * lib/copy-file.h: New file, from GNU gettext.
37772         * lib/copy-file.c: New file, from GNU gettext.
37773
37774 2003-03-18  Jim Meyering  <jim@meyering.net>
37775
37776         * lib/quote.c (quote_n): Fix typo in comment.
37777
37778 2003-03-18  Bruno Haible  <bruno@clisp.org>
37779
37780         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
37781         checking.
37782         * m4/onceonly_2_57.m4: Likewise.
37783
37784 2003-03-17  Bruno Haible  <bruno@clisp.org>
37785
37786         * m4/onceonly.m4: Require autoconf 2.54 or newer.
37787         (m4_quote): Remove macro.
37788         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
37789
37790 2003-03-14  Jim Meyering  <jim@meyering.net>
37791
37792         Merge changes from Coreutils.
37793         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
37794         to be const, in order to avoid warnings.
37795         (obstack_room): Likewise.
37796         (obstack_empty_p): Likewise.
37797
37798 2003-03-14  Bruno Haible  <bruno@clisp.org>
37799
37800         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
37801         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
37802
37803 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37804
37805         Merge changes from Bison.
37806         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
37807         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
37808         when compiling Bison 1.875's `bitset bset = obstack_alloc
37809         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
37810         * lib/hash.c: Include <stdbool.h> unconditionally.
37811
37812 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37813
37814         * m4/onceonly.m4 (m4_quote): New macro.
37815         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
37816         Quote AC_FOREACH variable-expansions properly.
37817
37818 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37819
37820         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
37821
37822 2003-03-09  Paul Eggert  <eggert@twinsun.com>
37823
37824         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
37825         Reported by Bruce Becker; see:
37826         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
37827
37828 2003-03-03  Paul Eggert  <eggert@twinsun.com>
37829             Bruno Haible  <bruno@clisp.org>
37830
37831         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
37832         Reported by John Hughes, see
37833         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
37834
37835 2003-02-20  Bruno Haible  <bruno@clisp.org>
37836
37837         * MODULES.html.sh (func_all_modules): Add poll.
37838
37839 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37840
37841         * modules/poll: New file.
37842
37843 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37844
37845         * lib/poll_.h: New file.
37846         * lib/poll.c: New file.
37847
37848 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37849
37850         * m4/poll.m4: New file.
37851
37852 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37853
37854         * modules/mathl: New file.
37855
37856 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37857
37858         * lib/mathl.h: New file.
37859         * lib/acosl.c: New file.
37860         * lib/asinl.c: New file.
37861         * lib/atanl.c: New file.
37862         * lib/ceill.c: New file.
37863         * lib/cosl.c: New file.
37864         * lib/expl.c: New file.
37865         * lib/floorl.c: New file.
37866         * lib/frexpl.c: New file.
37867         * lib/ldexpl.c: New file.
37868         * lib/logl.c: New file.
37869         * lib/sincosl.c: New file.
37870         * lib/sinl.c: New file.
37871         * lib/sqrtl.c: New file.
37872         * lib/tanl.c: New file.
37873         * lib/trigl.c: New file.
37874         * lib/trigl.h: New file.
37875
37876 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37877
37878         * m4/mathl.m4: New file.
37879
37880 2003-02-18  Bruno Haible  <bruno@clisp.org>
37881
37882         * MODULES.html.sh (func_all_modules): Add mathl.
37883
37884 2003-02-17  Bruno Haible  <bruno@clisp.org>
37885
37886         * modules/mkdtemp: New module.
37887         * MODULES.html.sh (func_all_modules): Add it.
37888
37889 2003-02-17  Bruno Haible  <bruno@clisp.org>
37890
37891         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
37892
37893 2003-02-17  Bruno Haible  <bruno@clisp.org>
37894
37895         * lib/mkdtemp.h: New file, from GNU gettext.
37896         * lib/mkdtemp.c: New file, from GNU gettext.
37897
37898 2003-02-02  Jim Meyering  <jim@meyering.net>
37899
37900         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
37901         e.g. glibc-2.2.93.
37902
37903 2003-01-31  Bruno Haible  <bruno@clisp.org>
37904
37905         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
37906         'rpl_rename'.
37907         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
37908         'rpl_strnlen'.
37909         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
37910         'rpl_strtod'.
37911         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
37912         'rpl_utime'.
37913
37914 2003-01-31  Bruno Haible  <bruno@clisp.org>
37915
37916         * lib/rename.c: #undef rename before defining rpl_rename.
37917         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
37918
37919 2003-01-30  Bruno Haible  <bruno@clisp.org>
37920
37921         * modules/vasnprintf, modules/vasprintf: New modules.
37922         * MODULES.html.sh (func_all_modules): Add them.
37923
37924 2003-01-30  Bruno Haible  <bruno@clisp.org>
37925
37926         * m4/signed.m4: New file, from GNU gettext.
37927         * m4/longdouble.m4: New file, from GNU gettext.
37928         * m4/wchar_t.m4: New file, from GNU gettext.
37929         * m4/wint_t.m4: New file, from GNU gettext.
37930         * m4/vasnprintf.m4: New file.
37931         * m4/vasprintf.m4: New file.
37932
37933 2003-01-30  Bruno Haible  <bruno@clisp.org>
37934
37935         * lib/printf-args.h: New file, from GNU gettext.
37936         * lib/printf-args.c: New file, from GNU gettext.
37937         * lib/printf-parse.h: New file, from GNU gettext.
37938         * lib/printf-parse.c: New file, from GNU gettext.
37939         * lib/vasnprintf.h: New file, from GNU gettext.
37940         * lib/vasnprintf.c: New file, from GNU gettext.
37941         * lib/asnprintf.c: New file, from GNU gettext.
37942         * lib/vasprintf.h: New file, from GNU gettext with modifications.
37943         * lib/vasprintf.c: New file, from GNU gettext.
37944         * lib/asprintf.c: New file, from GNU gettext.
37945
37946 2003-01-29  Bruno Haible  <bruno@clisp.org>
37947
37948         * modules/stpncpy: New module.
37949         * MODULES.html.sh (func_all_modules): Add it.
37950
37951 2003-01-29  Bruno Haible  <bruno@clisp.org>
37952
37953         * m4/stpncpy.m4: New file.
37954
37955 2003-01-29  Bruno Haible  <bruno@clisp.org>
37956
37957         * lib/stpncpy.h: New file, from GNU gettext with modifications.
37958         * lib/stpncpy.c: New file, from GNU gettext with modifications.
37959
37960 2003-01-28  Bruno Haible  <bruno@clisp.org>
37961
37962         * modules/c-ctype: New module.
37963         * MODULES.html.sh (func_all_modules): Add it.
37964
37965 2003-01-28  Bruno Haible  <bruno@clisp.org>
37966
37967         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
37968         Paul Eggert.
37969         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
37970         Paul Eggert.
37971
37972 2003-01-27  Bruno Haible  <bruno@clisp.org>
37973
37974         * modules/xsetenv: New module.
37975         * MODULES.html.sh (func_all_modules): Add it.
37976
37977 2003-01-27  Bruno Haible  <bruno@clisp.org>
37978
37979         * lib/xsetenv.h: New file, from GNU gettext.
37980         * lib/xsetenv.c: New file, from GNU gettext.
37981
37982 2003-01-23  Jim Meyering  <jim@meyering.net>
37983
37984         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
37985         from working on systems without dirfd (at least Irix and OSF1/Tru64).
37986
37987 2003-01-23  Bruno Haible  <bruno@clisp.org>
37988
37989         * modules/minmax: New module.
37990         * MODULES.html.sh (func_all_modules): Add it.
37991
37992 2003-01-23  Bruno Haible  <bruno@clisp.org>
37993
37994         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
37995         Eggert.
37996
37997 2003-01-22  Bruno Haible  <bruno@clisp.org>
37998
37999         * modules/exit: New module.
38000         * MODULES.html.sh (func_all_modules): Add it.
38001
38002 2003-01-22  Bruno Haible  <bruno@clisp.org>
38003
38004         * lib/exit.h: New file, from GNU gettext.
38005
38006 2003-01-19  Bruno Haible  <bruno@clisp.org>
38007
38008         * gnulib-tool: Recognize option --extract-maintainer.
38009         (func_get_maintainer): New function.
38010         * modules/*: Add Maintainer entry.
38011
38012 2003-01-16  Jim Meyering  <jim@meyering.net>
38013
38014         * m4/regex.m4: The `regex' struct is both input and output.
38015         Initialize it before each use.  Patch by Tim Waugh.
38016
38017 2003-01-16  Bruno Haible  <bruno@clisp.org>
38018
38019         * MODULES.html.sh: Add a table of contents. Add the module name as
38020         leftmost column. Add hyperlinks.
38021
38022 2003-01-15  Bruno Haible  <bruno@clisp.org>
38023
38024         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
38025
38026 2003-01-15  Bruno Haible  <bruno@clisp.org>
38027
38028         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
38029         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
38030         suffix.
38031
38032 2003-01-15  Bruno Haible  <bruno@clisp.org>
38033
38034         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
38035
38036 2003-01-15  Bruno Haible  <bruno@clisp.org>
38037
38038         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
38039         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
38040
38041 2003-01-14  Jim Meyering  <jim@meyering.net>
38042
38043         * lib/same.c (same_name): Tweak a comment.
38044
38045 2003-01-14  Bruno Haible  <bruno@clisp.org>
38046
38047         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
38048         when a string comparison is sufficient.
38049
38050 2003-01-14  Bruno Haible  <bruno@clisp.org>
38051
38052         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
38053         'unsigned int'.
38054
38055 2003-01-14  Bruno Haible  <bruno@clisp.org>
38056
38057         * lib/hash-pjw.c: Add comment about low quality of this function.
38058
38059 2003-01-13  Bruno Haible  <bruno@clisp.org>
38060
38061         * modules/stpcpy: Distribute lib/stpcpy.h.
38062         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
38063
38064 2003-01-13  Bruno Haible  <bruno@clisp.org>
38065
38066         * modules/*: Add a description.
38067         * modules/strpbrk: Fix Makefile.am snippet.
38068         * modules/strtoimax: Fix dependencies.
38069         * modules/strtoumax: Likewise.
38070
38071 2003-01-13  Bruno Haible  <bruno@clisp.org>
38072
38073         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
38074         * modules/alloca (Makefile.am): All object files depend on alloca.h.
38075         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
38076
38077 2003-01-13  Bruno Haible  <bruno@clisp.org>
38078
38079         * gnulib-tool (func_create_testdir): Store config/* files in the main
38080         directory.
38081         * config.rpath: Move to ...
38082         * config/config.rpath: ... here.
38083         * modules/gettext: Contains config/config.rpath, not config.rpath.
38084         * modules/iconv: Likewise.
38085
38086 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38087
38088         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38089         to avoid collisions with libcurses and libreadline.
38090
38091         * m4/getstr.m4: Remove.
38092         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
38093
38094 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38095
38096         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38097         to avoid collisions with libcurses and libreadline.
38098
38099         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
38100         * lib/getstr.h, getstr.c: Remove.
38101         * lib/getline.c: Include "getline.h", to check interface.
38102         Move body of old getstr.c here: this defines MIN_CHUNK and
38103         declares getdelim2, which is renamed from getstr.
38104         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
38105
38106         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
38107         All uses changed.
38108         * lib/linebuffer.h: Likewise.
38109         (readline): Remove backward-compatibility macro.
38110
38111 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38112
38113         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38114         to avoid collisions with libcurses and libreadline.
38115         * getstr: Remove.
38116         * MODULES.html.sh: Remove getstr.
38117         * modules/getline: Depend on unlocked-io, not getstr.
38118
38119 2003-01-12  Jim Meyering  <jim@meyering.net>
38120
38121         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
38122
38123 2003-01-10  Bruno Haible  <bruno@clisp.org>
38124
38125         * modules/alloca: Change Makefile.am requirements. Simplify Include
38126         requirements. Add lib/alloca_.h to file list.
38127
38128 2003-01-10  Bruno Haible  <bruno@clisp.org>
38129
38130         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
38131
38132 2003-01-10  Bruno Haible  <bruno@clisp.org>
38133
38134         * lib/alloca_.h: New file.
38135         * lib/getdate.y: Unconditionally include alloca.h.
38136         * lib/makepath.c: Likewise.
38137         * lib/setenv.c: Likewise.
38138         * lib/userspec.c: Likewise.
38139
38140 2003-01-09  Karl Berry  <karl@gnu.org>
38141
38142         * MODULES.html.sh: include `dirname $0` in PATH, to find
38143         gnulib-tool.
38144
38145 2003-01-09  Bruno Haible  <bruno@clisp.org>
38146
38147         * modules/stdbool: Change configure.ac, Makefile.am requirements.
38148         Simplify Include requirements. Add lib/stdbool.h.in to file list.
38149
38150 2003-01-09  Bruno Haible  <bruno@clisp.org>
38151
38152         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
38153
38154 2003-01-09  Bruno Haible  <bruno@clisp.org>
38155
38156         * lib/stdbool.h.in: New file.
38157
38158 2003-01-09  Bruno Haible  <bruno@clisp.org>
38159
38160         * gnulib-tool (func_all_modules): Ignore files ending in ~.
38161         * MODULES.html.sh: Likewise.
38162
38163 2003-01-08  Jim Meyering  <jim@meyering.net>
38164
38165         * lib/full-write.c: Undefine and define-away `const' after inclusion
38166         of errno.h, not before.  Suggestion from Bruno Haible.
38167
38168 2003-01-08  Bruno Haible  <bruno@clisp.org>
38169
38170         * modules/full-read: Depend on full-write.
38171
38172 2003-01-08  Bruno Haible  <bruno@clisp.org>
38173
38174         * lib/safe-read.c: Include specification header first, to ensure its
38175         selfcontainedness.
38176         * lib/full-write.c: Likewise.
38177
38178 2003-01-07  Jim Meyering  <jim@meyering.net>
38179
38180         * lib/full-write.c: Rework so that it may serve to define full_read,
38181         too.
38182         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
38183
38184 2003-01-07  Bruno Haible  <bruno@clisp.org>
38185
38186         * lib/strtoimax.c: Include <stdint.h> as an alternative to
38187         <inttypes.h>.
38188         * lib/xstrtol.h: Likewise.
38189         * lib/xstrtoimax.c: Likewise.
38190         * lib/xstrtoumax.c: Likewise.
38191         * lib/human.h: Likewise.
38192
38193         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
38194         on systems that have <inttypes.h> but not <stdint.h>.
38195
38196 2003-01-07  Bruno Haible  <bruno@clisp.org>
38197
38198         * MODULES.html.sh: Add copyright notice.
38199         (missed_files): Omit CVS directory entries.
38200         (func_module): Make it work with sed-3.02.
38201         * MODULES.txt: Remove file.
38202
38203 2003-01-06  Jim Meyering  <jim@meyering.net>
38204
38205         * lib/version-etc.c: Update year in translatable copyright string.
38206
38207 2003-01-03  Karl Berry  <karl@gnu.org>
38208
38209         * config/config.{guess,sub}: update from prep.
38210
38211 2003-01-02  Karl Berry  <karl@gnu.org>
38212
38213         * doc/COPYING.DOC: belatedly updated to 1.2.
38214
38215 2003-01-01  Karl Berry  <karl@gnu.org>
38216
38217         * gnulib-tool (func_verify_module): report module name $module in
38218         error message, not $1.
38219         * gnulib-tool (create-testdir): don't complain if destdir couldn't
38220         be created, only if it doesn't exist.
38221         * gnulib-tool (last_checkin_date): don't expand the $Date here.
38222
38223 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38224
38225         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
38226
38227 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38228
38229         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
38230         memcmp if strcoll doesn't work.
38231
38232 2002-12-31  Bruno Haible  <bruno@clisp.org>
38233
38234         * lib/utime.c (utime_null): No need to call ftruncate if the file was
38235         nonempty.
38236
38237 2002-12-31  Bruno Haible  <bruno@clisp.org>
38238
38239         * lib/memcoll.c (STRCOLL): New macro.
38240         (memcoll): Use it.
38241
38242 2002-12-31  Bruno Haible  <bruno@clisp.org>
38243
38244         * lib/localcharset.h: New file.
38245         * lib/localcharset.c: Include it.
38246         * lib/unicodeio.c: Likewise.
38247
38248 2002-12-31  Bruno Haible  <bruno@clisp.org>
38249
38250         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
38251         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
38252
38253 2002-12-31  Bruno Haible  <bruno@clisp.org>
38254
38255         * lib/getline.h: Include <stddef.h>, for size_t.
38256
38257         * lib/unicodeio.h: Include <stddef.h>, for size_t.
38258         * lib/unicodeio.c: Don't include <stddef.h>.
38259
38260 2002-12-31  Bruno Haible  <bruno@clisp.org>
38261
38262         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
38263         HAVE_TM_ZONE.
38264
38265 2002-12-24  Karl Berry  <karl@gnu.org>
38266
38267         * config/config.guess: update from prep.
38268
38269 2002-12-24  Bruno Haible  <bruno@clisp.org>
38270
38271         General infrasructure.
38272         * m4/README: Rewritten.
38273         * m4/onceonly.m4: New file.
38274         * m4/onceonly_2_57.m4: New file.
38275
38276         Module atexit.
38277         * m4/atexit.m4: New file.
38278
38279         Module strtod.
38280         * m4/strtod.m4: New file.
38281
38282         Module strtol.
38283         * m4/strtol.m4: New file.
38284
38285         Module strtoul.
38286         * m4/strtoul.m4: New file.
38287
38288         Module memchr.
38289         * m4/memchr.m4: New file.
38290
38291         Module memcmp.
38292         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
38293         (jm_FUNC_MEMCMP): Invoke it.
38294
38295         Module memcpy.
38296         * m4/memcpy.m4: New file.
38297
38298         Module memmove.
38299         * m4/memmove.m4: New file.
38300
38301         Module memset.
38302         * m4/memset.m4: New file.
38303
38304         Module strcspn.
38305         * m4/strcspn.m4: New file.
38306
38307         Module strpbrk.
38308         * m4/strpbrk.m4: New file.
38309
38310         Module strstr.
38311         * m4/strstr.m4: New file.
38312
38313         Module strerror.
38314         * m4/strerror.m4: New file.
38315
38316         Module mktime.
38317         * m4/mktime.m4: Renamed from jm-mktime.m4.
38318         (gl_PREREQ_MKTIME): New macro.
38319         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
38320
38321         Module malloc.
38322         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
38323         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
38324         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
38325
38326         Module realloc.
38327         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
38328         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
38329         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
38330
38331         Module strftime.
38332         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
38333         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
38334         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
38335         gl_TM_GMTOFF.
38336         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
38337
38338         Module xalloc.
38339         * m4/xalloc.m4: New file.
38340
38341         Module alloca.
38342         * m4/alloca.m4: New file.
38343
38344         Module putenv.
38345         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
38346         (jm_FUNC_PUTENV): Invoke it.
38347
38348         Module setenv.
38349         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
38350         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
38351         when invoked twice.
38352         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
38353         gt_FUNC_SETENV.
38354
38355         Module memrchr.
38356         * m4/memrchr.m4: New file.
38357
38358         Module stpcpy.
38359         * m4/stpcpy.m4: New file.
38360
38361         Module strcase.
38362         * m4/strcase.m4: New file.
38363
38364         Module strdup.
38365         * m4/strdup.m4: New file.
38366
38367         Module strnlen.
38368         * m4/strnlen.m4: New file.
38369
38370         Module strndup.
38371         * m4/strndup.m4: New file.
38372
38373         Module xstrtod.
38374         * m4/xstrtod.m4: New file.
38375
38376         Module xstrtol.
38377         * m4/xstrtol.m4: New file.
38378
38379         Module getdate.
38380         * m4/getdate.m4: New file.
38381
38382         Module unlocked-io.
38383         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
38384         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
38385         * m4/jm-glibc-io.m4n: Remove file.
38386
38387         Module long-options.
38388         * m4/long-options.m4: New file.
38389
38390         Module md5.
38391         * m4/md5.m4: New file.
38392
38393         Module sha.
38394         * m4/sha.m4: New file.
38395
38396         Module getstr.
38397         * m4/getstr.m4: New file.
38398
38399         Module getline.
38400         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
38401         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
38402         <sys/types.h>, for size_t. Use the function name gnu_getline, not
38403         simply getline. Infoke gl_PREREQ_GETLINE.
38404
38405         Module obstack.
38406         * m4/obstack.m4: New file.
38407
38408         Module hash.
38409         * m4/hash.m4: New file.
38410
38411         Module readtokens.
38412         * m4/readtokens.m4: New file.
38413
38414         Module strverscmp.
38415         * m4/strverscmp.m4: New file.
38416
38417         Module stdbool.
38418         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
38419         OSF/1.
38420
38421         Module strtoll.
38422         * m4/strtoll.m4: New file.
38423
38424         Module strtoull.
38425         * m4/strtoull.m4: New file.
38426
38427         Module strtoimax.
38428         * m4/strtoimax.m4: New file.
38429
38430         Module strtoumax.
38431         * m4/strtoumax.m4: New file.
38432
38433         Module xstrtoimax.
38434         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
38435         jm_AC_PREREQ_XSTRTOIMAX.
38436         Moved the strtol prerequisites to strtol.m4.
38437         Moved the strtoll prerequisites to strtoll.m4.
38438         Moved the strtoimax prerequisites to strtoimax.m4.
38439
38440         Module xstrtoumax.
38441         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
38442         jm_AC_PREREQ_XSTRTOUMAX.
38443         Moved the strtoul prerequisites to strtoul.m4.
38444         Moved the strtoull prerequisites to strtoull.m4.
38445         Moved the strtoumax prerequisites to strtoumax.m4.
38446
38447         Module chown.
38448         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
38449         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
38450
38451         Module dup2.
38452         * m4/dup2.m4: New file.
38453
38454         Module ftruncate.
38455         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
38456         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
38457
38458         Module getgroups.
38459         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
38460         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
38461
38462         Module gettimeofday.
38463         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
38464         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
38465         gl_PREREQ_GETTIMEOFDAY.
38466
38467         Module mkdir.
38468         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
38469         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
38470
38471         Module mkstemp.
38472         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
38473         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
38474         jm_AC_TYPE_UINTMAX_T.
38475         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
38476
38477         Module stat.
38478         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
38479         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
38480
38481         Module lstat.
38482         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
38483         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
38484
38485         Module timespec.
38486         * m4/timespec.m4 (gl_TIMESPEC): New macro.
38487         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
38488         * m4/st_mtim.m4: Indentation.
38489
38490         Module nanosleep.
38491         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
38492         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
38493         gl_PREREQ_NANOSLEEP.
38494
38495         Module regex.
38496         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
38497         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
38498         (gl_REGEX): New macro.
38499
38500         Module rename.
38501         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
38502         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
38503
38504         Module rmdir.
38505         * m4/rmdir.m4: New file.
38506
38507         Module utime.
38508         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
38509         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
38510         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
38511
38512         Module dirname.
38513         * m4/dirname.m4: New file.
38514
38515         Module getopt.
38516         * m4/getopt.m4: New file.
38517
38518         Module unistd-safer.
38519         * m4/unistd-safer.m4: New file.
38520
38521         Module fnmatch.
38522         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
38523         declaration.
38524         (gl_PREREQ_FNMATCH_EXTRA): New macro.
38525         (gl_FUNC_FNMATCH_POSIX): New macro.
38526         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
38527         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
38528         simply fnmatch.
38529
38530         Module exclude.
38531         * m4/exclude.m4: New file.
38532
38533         Module human.
38534         * m4/human.m4: New file.
38535
38536         Module acl.
38537         * m4/acl.m4: Nop.
38538
38539         Module backupfile.
38540         * m4/backupfile.m4: New file.
38541         * m4/d-ino.m4: Indentation.
38542
38543         Module fsusage.
38544         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
38545         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
38546         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
38547
38548         Module dirfd.
38549         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
38550         requirements.
38551
38552         Module euidaccess.
38553         * m4/euidaccess.m4: New file.
38554
38555         Module file-type.
38556         * m4/file-type.m4: New file.
38557
38558         Module fileblocks.
38559         * m4/fileblocks.m4: New file.
38560
38561         Module filemode.
38562         * m4/filemode.m4: New file.
38563
38564         Module isdir.
38565         * m4/isdir.m4: New file.
38566
38567         Module lchown.
38568         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
38569         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
38570
38571         Module makepath.
38572         * m4/makepath.m4: New file.
38573
38574         Module modechange.
38575         * m4/modechange.m4: New file.
38576
38577         Module mountlist.
38578         * m4/mountlist.m4: New file.
38579         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
38580         Indentation.
38581
38582         Module path-concat.
38583         * m4/path-concat.m4: New file.
38584
38585         Module pathmax.
38586         * m4/pathmax.m4: New file.
38587
38588         Module same.
38589         * m4/same.m4: New file.
38590
38591         Module save-cwd.
38592         * m4/save-cwd.m4: New file.
38593
38594         Module savedir.
38595         * m4/savedir.m4: New file.
38596
38597         Module xgetcwd.
38598         * m4/xgetcwd.m4: New file.
38599         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
38600
38601         Module xreadlink.
38602         * m4/xreadlink.m4: New file.
38603
38604         Module safe-read.
38605         * m4/safe-read.m4: New file.
38606
38607         Module safe-write.
38608         * m4/safe-write.m4: New file.
38609
38610         Module closeout.
38611         * m4/closeout.m4: New file.
38612
38613         Module stdio-safer.
38614         * m4/stdio-safer.m4: New file.
38615
38616         Module getpass.
38617         * m4/getpass.m4: New file.
38618
38619         Module getugroups.
38620         * m4/getugroups.m4: New file.
38621
38622         Module group-member.
38623         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
38624         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
38625
38626         Module idcache.
38627         * m4/idcache.m4: New file.
38628
38629         Module userspec.
38630         * m4/userspec.m4: New file.
38631
38632         Module gettime.
38633         * m4/clock_time.m4: New file.
38634         * m4/gettime.m4: New file.
38635
38636         Module settime.
38637         * m4/settime.m4: New file.
38638
38639         Module posixtm.
38640         * m4/posixtm.m4: New file.
38641
38642         Module gethostname.
38643         * m4/gethostname.m4: New file.
38644
38645         Module canon-host.
38646         * m4/canon-host.m4: New file.
38647
38648         Module gettext.
38649         * m4/codeset.m4: New file, from gettext-0.11.5.
38650         * m4/gettext.m4: New file, from gettext-0.11.5.
38651         * m4/glibc21.m4: New file, from gettext-0.11.5.
38652         * m4/iconv.m4: New file, from gettext-0.11.5.
38653         * m4/intdiv0.m4: New file, from gettext-0.11.5.
38654         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
38655         * m4/inttypes.m4: New file, from gettext-0.11.5.
38656         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
38657         * m4/isc-posix.m4: New file, from gettext-0.11.5.
38658         * m4/lcmessage.m4: New file, from gettext-0.11.5.
38659         * m4/lib-ld.m4: New file, from gettext-0.11.5.
38660         * m4/lib-link.m4: New file, from gettext-0.11.5.
38661         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
38662         * m4/progtest.m4: New file, from gettext-0.11.5.
38663         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
38664         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
38665         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
38666
38667         Module localcharset.
38668         * m4/localcharset.m4: New file.
38669
38670         Module hard-locale.
38671         * m4/hard-locale.m4: New file.
38672
38673         Module mbswidth.
38674         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
38675         onceonly macros.
38676         * m4/mbrtowc.m4: Add comment.
38677
38678         Module memcasecmp.
38679         * m4/memcasecmp.m4: New file.
38680
38681         Module memcoll.
38682         * m4/memcoll.m4: New file.
38683
38684         Module unicodeio.
38685         * m4/unicodeio.m4: New file.
38686
38687         Module rpmatch.
38688         * m4/rpmatch.m4: New file.
38689
38690         Module yesno.
38691         * m4/yesno.m4: New file.
38692
38693         Module exitfail.
38694         * m4/exitfail.m4: New file.
38695
38696         Module c-stack.
38697         * m4/c-stack.m4 (gl_C_STACK): New macro.
38698         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
38699
38700         Module error.
38701         * m4/error.m4 (gl_ERROR): New macro.
38702         (jm_PREREQ_ERROR): Use onceonly macros.
38703
38704         Module fatal.
38705         * m4/fatal.m4: New file.
38706
38707         Module getloadavg.
38708         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
38709         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
38710
38711         Module getpagesize.
38712         * m4/getpagesize.m4: New file.
38713
38714         Module getusershell.
38715         * m4/getusershell.m4: New file.
38716
38717         Module physmem.
38718         * m4/physmem.m4: New file.
38719
38720         Module posixver.
38721         * m4/posixver.m4: New file.
38722
38723         Module quotearg.
38724         * m4/quotearg.m4: New file.
38725
38726         Module quote.
38727         * m4/quote.m4: New file.
38728
38729         Module readutmp.
38730         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
38731
38732         Module sig2str.
38733         * m4/sig2str.m4: New file.
38734
38735         Other.
38736         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
38737         ulonglong.m4.
38738         * m4/intmax_t.m4: New file.
38739         * m4/d-type.m4: Indentation.
38740         * m4/jm-macros.m4: Update.
38741         * m4/prereq.m4 (jm_PREREQ): Update.
38742         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
38743         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
38744         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
38745         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
38746         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
38747         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
38748         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
38749         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
38750         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
38751         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
38752         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
38753         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
38754         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
38755         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
38756         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
38757         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
38758         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
38759         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
38760         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
38761
38762 2002-12-24  Bruno Haible  <bruno@clisp.org>
38763
38764         * MODULES.txt: Update according to m4/ changes.
38765
38766         Module gettext.
38767         * config.rpath: New file, from gettext-0.11.5.
38768
38769         * modules/*: New module descriptions.
38770         * gnulib-tool: New file.
38771         * MODULES.html.sh: New file.
38772
38773 2002-12-21  Karl Berry  <karl@gnu.org>
38774
38775         * doc/fdl.texi: update to version 1.2.
38776
38777 2002-12-19  Karl Berry  <karl@gnu.org>
38778
38779         * config/config.guess: update from prep.
38780
38781 2002-12-18  Bruno Haible  <bruno@clisp.org>
38782
38783         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
38784         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
38785
38786 2002-12-17  Bruno Haible  <bruno@clisp.org>
38787
38788         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
38789         stdlib.h, string.h.
38790
38791 2002-12-17  Bruno Haible  <bruno@clisp.org>
38792
38793         * lib/canon-host.c (strdup): Remove unused declaration.
38794
38795         * lib/fsusage.c: Include full_read.h.
38796         (get_fs_usage): Use full_read instead of safe_read.
38797
38798         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
38799
38800 2002-12-12  Karl Berry  <karl@gnu.org>
38801
38802         * config/config.guess: update from prep.
38803
38804 2002-12-11  Bruno Haible  <bruno@clisp.org>
38805
38806         * m4/setenv.m4: New file, from gettext-0.11.5.
38807
38808 2002-12-11  Bruno Haible  <bruno@clisp.org>
38809
38810         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
38811         not unsetenv().
38812         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
38813         modifications:
38814
38815         2002-12-11  Bruno Haible  <bruno@clisp.org>
38816
38817                 * setenv.c (alloca): Fall back to malloc.
38818                 (freea): New macro.
38819                 (setenv): Use freea() to free memory allocated with alloca().
38820
38821         2002-11-13  Bruno Haible  <bruno@clisp.org>
38822
38823                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
38824                 function declarations.
38825                 * unsetenv.c (unsetenv): Likewise.
38826
38827         2002-03-04  Bruno Haible  <bruno@clisp.org>
38828
38829                 Portability to AIX 4.3.3.
38830                 * unsetenv.c: New file, extracted from setenv.c.
38831                 * setenv.c: Move the unsetenv() function to unsetenv.c.
38832
38833         2001-12-20  Bruno Haible  <bruno@clisp.org>
38834
38835                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
38836                 use malloc instead. For SunOS 4.
38837
38838         2001-12-11  Bruno Haible  <bruno@clisp.org>
38839
38840                 * setenv.c: Declare alloca.
38841                 (compar_fn_t): New typedef.
38842                 (KNOWN_VALUE, STORE_VALUE): Use it.
38843
38844         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
38845         setenv.h.
38846
38847 2002-12-10  Paul Eggert  <eggert@twinsun.com>
38848
38849         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
38850         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
38851         Choose values that are less likely to collide with system fnmatch
38852         options.
38853         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
38854         defined (e.g., a pure POSIX system).
38855         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
38856         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
38857
38858 2002-12-06  Paul Eggert  <eggert@twinsun.com>
38859
38860         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
38861         a pain in practice to deal with generated m4 files.  This change
38862         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
38863
38864         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
38865         and jm-glibc-io.m4, as they are no longer a special case.
38866         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
38867         kludge and the auto-generation stuff.  Check only whether the
38868         functions are declared, not whether they exist, since older hosts
38869         that don't declare the functions can't use the optimization anyway.
38870
38871 2002-12-06  Jim Meyering  <jim@meyering.net>
38872
38873         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
38874
38875         Merge in changes from libc's misc/error.c, in preparation
38876         for the merge of gnulib's changes back into libc.
38877
38878         * lib/error.c (_): Define only if not already defined.
38879         Move definition to follow all #include directives.
38880         Include unlocked-io.h only if !_LIBC.
38881         [_LIBC]: Include <libio/libioP.h>.
38882         [USE_IN_LIBIO]: Include <libio/iolibio.h>
38883         (fflush): Tweak definition to use INTUSE.
38884         (putc): Define.
38885
38886 2002-12-05  Paul Eggert  <eggert@twinsun.com>
38887
38888         * lib/alloca.c [defined emacs]: Include "lisp.h".
38889         (xalloc_die) [defined emacs]: New macro.
38890         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
38891         [! defined emacs]: Include <xalloc.h>.
38892         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
38893         (pointer): Typedef to POINTER_TYPE *.
38894         (malloc): Remove decl; we now always use xmalloc.
38895         (alloca): Use old-style definition, since Emacs needs this.
38896         Check for arithmetic overflow when computing combined size.
38897
38898 2002-12-04  Paul Eggert  <eggert@twinsun.com>
38899
38900         Do not generate unlocked-io.h automatically, since it's easier to
38901         maintain it by hand.
38902
38903         * lib/unlocked-io.h: New file, from GNU diffutils,
38904         but with proper copyright notice and attribution.
38905         * lib/gen-uio: Remove.
38906         * lib/Makefile.am: Add copyright notice.
38907         (libfetish_a_SOURCES): Add unlocked-io.h.
38908         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
38909         (DISTCLEANFILES, io_functions): Remove macros.
38910         (EXTRA_DIST): Remove gen_uio.
38911         (unlocked-io.h): Remove rule.
38912
38913 2002-12-04  Jim Meyering  <jim@meyering.net>
38914
38915         Reflect the fact that stat.c and lstat.c are no longer generated.
38916         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
38917         (DISTCLEANFILES): Likewise.
38918         (EXTRA_DIST): Likewise.
38919         (all_local): Don't depend on stat.c or lstat.c.
38920         (stat.c, lstat.c): Remove rules.
38921         (EXTRA_DIST): Remove xstat.in.
38922
38923         * lib/xstat.in: Remove file.  Contents moved into stat.c.
38924         * lib/stat.c: New file.  Contents mostly from xstat.in.
38925         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
38926         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
38927
38928         * lib/safe-read.c: Rework so that it may serve to define safe_write,
38929         too.
38930         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
38931
38932 2002-12-03  Jim Meyering  <jim@meyering.net>
38933
38934         * lib/safe-read.c, safe-write.c: Change variable names and comments,
38935         but not semantics, to minimize the differences between these two files.
38936         (safe_read): Change comment to mention SAFE_READ_ERROR.
38937
38938         * lib/safe-read.c (IS_EINTR): Define.
38939         (safe_read): Use IS_EINTR in place of in-function cpp directives.
38940
38941 2002-12-02  Jim Meyering  <jim@meyering.net>
38942
38943         * lib/safe-read.c (EINTR): Define.
38944         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
38945         (INT_MAX): Provide fallback.
38946         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
38947
38948         * lib/safe-read.h (SAFE_READ_ERROR): Define.
38949
38950 2002-12-02  Bruno Haible  <bruno@clisp.org>
38951
38952         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
38953         Define, taken from safe-read.c.
38954         (INT_MAX): Provide fallback.
38955         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
38956         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
38957
38958         * lib/safe-read.c (EINTR): Remove definition.
38959         (safe_read): Don't use EINTR if it is absent.
38960
38961 2002-12-01  Jim Meyering  <jim@meyering.net>
38962
38963         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
38964         zero.
38965         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
38966
38967 2002-11-27  Paul Eggert  <eggert@twinsun.com>
38968
38969         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
38970         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
38971         with `if (! (value < limit)) abort ();', for readability.
38972
38973 2002-11-26  Karl Berry  <karl@gnu.org>
38974
38975         * lib/strdup.c: copy from libc again, with jim's ok.
38976         * lib/.cppi-disable: re-add strdup.c
38977
38978 2002-11-25  Karl Berry  <karl@gnu.org>
38979
38980         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
38981         instead of "strtol.c".
38982
38983 2002-11-25  Karl Berry  <karl@gnu.org>
38984
38985         * config/install-sh: update from automake for variable quoting, $0 in
38986         error msgs, etc.
38987
38988         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
38989         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
38990         entry.
38991
38992 2002-11-25  Jim Meyering  <jim@meyering.net>
38993
38994         * lib/mktime.c: Sync from libc, now that it has the latest fix.
38995
38996 2002-11-24  Karl Berry  <karl@gnu.org>
38997
38998         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
38999         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
39000
39001 2002-11-24  Jim Meyering  <jim@meyering.net>
39002
39003         Update from coreutils:
39004
39005         * lib/mktime.c: Merge in changes from libc.
39006
39007         Avoid a link-time failure on some Linux systems.
39008         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
39009         (otherwise).
39010         (__mon_yday): Declare with the STATIC attribute.
39011         (__mktime_internal): Likewise.
39012         Based on a report from Greg Schafer.
39013
39014 2002-11-23  Jim Meyering  <jim@meyering.net>
39015
39016         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
39017         Use `unsigned', not `int', as type of index.
39018
39019         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
39020
39021         * lib/fsusage.c: Remove unneeded parentheses around operands of
39022         `defined'.
39023
39024 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39025
39026         * lib/quotearg.h: Allow multiple inclusion by surrounding with
39027         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
39028         so that we can be included first.
39029         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
39030         * lib/quotearg.c: Include quotearg.h immediately after config.h.
39031         No need to include stddef.h or sys/types.h any more.
39032         Surround local include files with "", not "<>".
39033         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
39034         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
39035         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
39036         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
39037         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
39038         (ISPRINT): Remove; no longer needed now that we assume C89.
39039
39040         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
39041         Preserve errno.
39042
39043         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
39044         quotearg_char): Use SIZE_MAX rather than
39045         (size_t) -1 when we are talking about "infinity".
39046
39047         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
39048
39049 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39050
39051         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
39052         hint that one should use `if (! x) abort ();' rather than `assert
39053         (x);', and anyway it's one less thing to worry about configuring.
39054         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
39055         hash_rehash, hash_insert): Use abort rather than assert.
39056
39057 2002-11-22  Bruno Haible  <bruno@clisp.org>
39058
39059         * lib/safe-read.h: Assume C89. Add comments.
39060         (safe_read): Change return type to size_t.
39061         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
39062         byte counts > SSIZE_MAX correctly.
39063         * lib/safe-write.h: New file.
39064         * lib/safe-write.c: New file.
39065         * lib/full-read.h: New file.
39066         * lib/full-read.c: New file.
39067         * lib/full-write.h: Assume C89. Add comments.
39068         * lib/full-write.c: Include safe-write.h.
39069         (full_write): Rewritten to use safe_write.
39070         Suggested by Jim Meyering and Paul Eggert.
39071
39072 2002-11-21  Jim Meyering  <jim@meyering.net>
39073
39074         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
39075
39076         Merge in changes from the coreutils.
39077
39078         2002-09-25  Paul Eggert  <eggert@twinsun.com>
39079         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
39080         <stdint.h>.
39081         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
39082         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
39083         int.  Work more efficiently if X is the same width as uintmax_t.
39084         Do not compare X to -1, to avoid bogus compiler warning.
39085         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
39086         Don't assume that f_frsize and f_bsize are the same type.
39087
39088         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
39089         warning on FreeBSD.
39090
39091         * lib/makepath.c (make_path): Restore umask *before* creating the final
39092         component.
39093         (make_path): Minor reformatting.
39094
39095         * lib/xmalloc.c: Adjust to work with new autoconf macros,
39096         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
39097         HAVE_MALLOC/HAVE_REALLOC.
39098
39099         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
39100         dummy ones.  At least on GNU/Linux systems, `auto' means something
39101         else.
39102         From Michael Stone.
39103
39104 2002-11-21  Bruno Haible  <bruno@clisp.org>
39105
39106         Remove case insensitive option matching.
39107         * lib/argmatch.h (argcasematch): Remove declaration.
39108         (ARGCASEMATCH): Remove macro.
39109         (__xargmatch_internal): Remove case_sensitive argument.
39110         (XARGMATCH): Update.
39111         (XARGCASEMATCH): Remove macro.
39112         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
39113         case_sensitive argument.
39114         (argcasematch): Remove function.
39115         (__xargmatch_internal): Remove case_sensitive argument.
39116         (main): Use XARGMATCH instead of XARGCASEMATCH.
39117
39118         * lib/xmalloc.c: Change compile-time error message. Add comment about
39119         required autoconf version.
39120
39121 2002-11-20  Paul Eggert  <eggert@twinsun.com>
39122
39123         Merge argmatch cleanups from Bison.  Assume C89.
39124
39125         * lib/argmatch.c: Include config.h here, not in argmatch.h.
39126         Include stdlib.h, for EXIT_FAILURE.
39127         Always include <string.h>, since we assume C89.
39128         (EXIT_FAILURE): Remove pre-C89 bug workaround.
39129         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
39130         Include <stddef.h> instead, since it's all we need for size_t.
39131         (PARAMS): Remove.  All uses removed.
39132         (ARRAY_CARDINALITY): Do not bother to #undef.
39133         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
39134         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39135         Remove unnecessary parentheses.
39136         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39137         Insert necessary parentheses.
39138         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
39139         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
39140
39141 2002-11-19  Bruno Haible  <bruno@clisp.org>
39142
39143         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
39144         * lib/mbswidth.h: Include <stddef.h>, for size_t.
39145
39146         * lib/mbswidth.h (PARAMS): Remove macro.
39147         (mbswidth, mbsnwidth): Use ANSI C function declarations.
39148         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
39149
39150         * lib/gcd.h (PARAMS): Remove macro.
39151         (gcd): Use ANSI C function declarations.
39152         * lib/gcd.c (gcd): Likewise.
39153
39154 2002-11-15  Bruno Haible  <bruno@clisp.org>
39155
39156         * lib/strcspn.c: Include <stddef.h>.
39157         (strcspn): Use ANSI C function declaration. Change return type to
39158         size_t. Use NULL.
39159         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
39160         (strpbrk): Use NULL.
39161         * lib/strpbrk.h (PARAMS): Remove macro.
39162         (strpbrk): Use ANSI C function declaration.
39163         * lib/strstr.c: Don't include <sys/types.h>.
39164         * lib/strstr.h (PARAMS): Remove macro.
39165         (strstr): Use ANSI C function declarations.
39166
39167 2002-11-14  Karl Berry  <karl@gnu.org>
39168
39169         * config/mkinstalldirs: `do' on separate line, instead of
39170         `for var; do'.
39171
39172 2002-11-06  Bruno Haible  <bruno@clisp.org>
39173
39174         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
39175         * lib/gcd.c (gcd): Likewise.
39176
39177 2002-11-05  Bruno Haible  <bruno@clisp.org>
39178
39179         * lib/gcd.h: New file, from gettext-0.11.5.
39180         * lib/gcd.c: New file, from gettext-0.11.5.
39181
39182 2002-11-05  Bruno Haible  <bruno@clisp.org>
39183
39184         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39185         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39186         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39187         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39188
39189         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
39190         <libintl.h>.
39191         * lib/makepath.c: Include gettext.h instead of <locale.h> and
39192         <libintl.h>.
39193
39194         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
39195         * lib/human.c: Include gettext.h instead of <libintl.h>.
39196         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
39197         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
39198         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
39199         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
39200         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
39201         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
39202         (textdomain): Remove definition.
39203         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
39204
39205         * lib/long-options.c: Remove include of <libintl.h> and definition of
39206         _.
39207         * lib/same.c: Remove include of <libintl.h> and definition of _.
39208
39209 2002-11-04  Owen Taylor  <otaylor@redhat.com>
39210
39211         * lib/config.charset: A few additions for Solaris.
39212
39213 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39214
39215         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
39216         * lib/localcharset.c (locale_charset): Declare as extern "C".
39217
39218 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39219
39220         * lib/config.charset: msdos in uk_UA uses CP1125.
39221
39222 2002-11-04  Bruno Haible  <bruno@clisp.org>
39223
39224         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
39225         * lib/strcase.h: New file, from GNU gettext-0.11.5.
39226         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
39227         * lib/strstr.h: New file, from GNU gettext-0.11.5.
39228         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
39229
39230 2002-11-04  Bruno Haible  <bruno@clisp.org>
39231
39232         * lib/localcharset.c (locale_charset): Don't return an empty string.
39233
39234 2002-11-04  Bruno Haible  <bruno@clisp.org>
39235
39236         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
39237         aliases.
39238
39239 2002-11-04  Bruno Haible  <bruno@clisp.org>
39240
39241         * lib/config.charset: Update for newest glibc. Add canonical names
39242         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
39243
39244 2002-11-04  Bruno Haible  <bruno@clisp.org>
39245
39246         * lib/config.charset: Add support for NetBSD.
39247
39248 2002-11-04  Bruno Haible  <bruno@clisp.org>
39249
39250         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
39251
39252 2002-11-01  Bruno Haible  <bruno@clisp.org>
39253
39254         * configure.in: Add AC_CONFIG_AUX_DIR call.
39255         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
39256         test/Makefile.
39257         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
39258
39259 2002-09-28  Karl Berry  <karl@gnu.org>
39260
39261         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
39262         installed automake until the next release, since changes have been
39263         made.
39264
39265 2002-09-25  Karl Berry  <karl@gnu.org>
39266
39267         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
39268         * lib/getopt*: copy from libc/posix.
39269         * lib/gettext.h: copy from gettext.
39270         * lib/.cppi-disable: add strdup.c, gettext.h.
39271
39272 2002-09-25  Karl Berry  <karl@gnu.org>
39273
39274         * config/srclist.txt: enable gettext.h check.
39275         * config/config.{guess,sub}: update from prep.
39276         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
39277                 from automake 1.6.3.
39278         See srclist*.
39279
39280 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
39281
39282         * regex.c (PATFETCH): Remove the translating fetch.
39283         (PATFETCH_RAW): Rename to PATFETCH.
39284         (set_image_of_range): New fun.
39285         (SET_RANGE_TABLE_WORK_AREA): Use it.
39286         (regex_compile): Don't translate the pattern chars so eagerly.
39287         Only do it when inserting an `exactn' bytecode or when handling
39288         a char-range.
39289         (mutually_exclusive_p): Avoid empty statement.
39290
39291 2002-07-06  Jim Meyering  <meyering@lucent.com>
39292
39293         * m4/README: Don't mention Makefile.am.in.
39294         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
39295
39296 2002-07-01  Jim Meyering  <meyering@lucent.com>
39297
39298         * lib/c-stack.c: Include sys/time.h.
39299         From Volker Borchert.
39300
39301 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39302
39303         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
39304
39305 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39306
39307         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
39308         New macro.  Use it uniformly instead of
39309         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
39310         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
39311         reported by Vin Shelton.
39312
39313 2002-06-22  Paul Eggert  <eggert@twinsun.com>
39314
39315         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
39316         Do not assume SA_SIGINFO behavior.
39317         Bug reported by Jim Meyering on NetBSD 1.5.2.
39318
39319 2002-06-22  Jim Meyering  <meyering@lucent.com>
39320
39321         * m4/c-stack.m4: New file, from diffutils-2.8.2.
39322         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
39323
39324         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
39325         now that configure.ac uses AC_GNU_SOURCE.
39326         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
39327         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
39328
39329         Update to latest tools.  Suggestions from Paul Eggert.
39330         * m4/stdbool.m4: New file, from diffutils-2.8.2.
39331         * m4/gnu-source.m4: Update from diffutils-2.8.2.
39332         * m4/fnmatch.m4: Likewise.
39333         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
39334         to AC_HEADER_STDBOOL
39335
39336 2002-06-22  Jim Meyering  <meyering@lucent.com>
39337
39338         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
39339         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
39340
39341 2002-06-22  Jim Meyering  <meyering@lucent.com>
39342
39343         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
39344
39345         * lib/exitfail.c, exitfail.h: Likewise.
39346         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
39347
39348         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
39349         of fnmatch.h.
39350         (EXTRA_DIST): Add fnmatch_loop.c.
39351         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
39352
39353         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
39354         * lib/fnmatch.c: Update from diffutils-2.8.2.
39355         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
39356         * lib/fnmatch.h: Remove file.
39357
39358 2002-06-21  Jim Meyering  <meyering@lucent.com>
39359
39360         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
39361         * m4/mbrtowc.m4: Likewise.
39362
39363         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
39364         * m4/mbswidth.m4: Reflect name change:
39365         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
39366         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
39367
39368         * m4/lib-link.m4: Update from gettext-0.11.2.
39369         * m4/gettext.m4: Likewise.
39370
39371         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
39372         From Alfred M. Szmidt.
39373
39374 2002-06-18  Paul Eggert  <eggert@twinsun.com>
39375
39376         * lib/file-type.h: Report an error if neither S_ISREG nor
39377         S_IFREG is defined, instead of using a test specific to glibc
39378         2.2.  This should be safe, since POSIX requires S_ISREG and
39379         Unix Version 7 had S_IFREG.  We don't need to check for
39380         <sys/types.h> since we don't use any symbols that it defines.
39381
39382 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
39383
39384         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
39385         $@-t, so that each temporary file name is unique and valid in the first
39386         8 characters, for operation under DOS.
39387
39388 2002-06-15  Paul Eggert  <eggert@twinsun.com>
39389
39390         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
39391
39392 2002-06-15  Jim Meyering  <meyering@lucent.com>
39393
39394         Work even with DJGPP 2.03, which lacks support for symlinks.
39395         From Richard Dawe.
39396         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
39397         is defined.
39398         * lib/lchown.c (S_ISLNK): Likewise.
39399
39400 2002-06-15  Jim Meyering  <meyering@lucent.com>
39401
39402         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
39403         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
39404         have been included before this file.
39405
39406 2002-06-14  Jim Meyering  <meyering@lucent.com>
39407
39408         * lib/file-type.h: Use the version from diffutils-2.8.2.
39409         * lib/file-type.c: Likewise.
39410
39411 2002-06-07  Jim Meyering  <meyering@lucent.com>
39412
39413         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
39414         They're needed at least for NetBSD 1.5.2.
39415         ($statxfs_includes): Include those same headers.
39416         ($statxfs_includes): Include sys/vfs.h if available.
39417         ($statxfs_includes): Likewise for sys/statvfs.h.
39418         Check for the following members in both structs statfs and statvfs:
39419         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
39420
39421 2002-06-01  Jim Meyering  <meyering@lucent.com>
39422
39423         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
39424         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
39425
39426 2002-05-28  Jim Meyering  <meyering@lucent.com>
39427
39428         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
39429         Reported by Volker Borchert.
39430
39431 2002-05-27  Jim Meyering  <meyering@lucent.com>
39432
39433         Fix a problem seen only on nonconforming systems whereby ls.c's
39434         use of localtime, and then of gettimeofday would cause trouble:
39435         the localtime call used to initialize rpl_gettimeofday's save
39436         mechanism would clobber ls's current local time information so
39437         that in any long listing the first file would always be listed
39438         with date 1970-01-01.  Analysis by Volker Borchert.
39439
39440         * lib/gettimeofday.c (localtime): Undefine.
39441         (rpl_localtime): New function.
39442
39443 2002-05-27  Jim Meyering  <meyering@lucent.com>
39444
39445         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
39446         localtime.
39447
39448         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
39449         use the replacement function; it wouldn't resolve at link time.
39450         Reported by Volker Borchert.
39451
39452 2002-05-22  Jim Meyering  <meyering@lucent.com>
39453
39454         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
39455         file-type.h.
39456         * lib/file-type.h: New file.
39457         * lib/file-type.c (file_type): New file/function.  Extracted from
39458         diffutils.
39459
39460 2002-04-30  Jim Meyering  <meyering@lucent.com>
39461
39462         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
39463
39464 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39465
39466         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
39467
39468 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39469
39470         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
39471         Do not check for alloca.h (no longer used) or stdbool.h (was never
39472         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
39473
39474 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39475
39476         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
39477
39478 2002-04-29  Jim Meyering  <meyering@lucent.com>
39479
39480         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
39481         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
39482         Use AC_FUNC_STRNLEN here instead.
39483
39484         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
39485         With autoconf-2.53a, it's part of AC_PROG_CC.
39486
39487 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39488
39489         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
39490         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
39491
39492 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39493
39494         * lib/sig2str.h, lib/sig2str.c: New files.
39495         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
39496
39497 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39498
39499         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
39500         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
39501         of 127, since 64 is the largest conceivable number for ancient
39502         nonstandard hosts.
39503         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
39504
39505 2002-04-28  Jim Meyering  <meyering@lucent.com>
39506
39507         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
39508
39509 2002-04-24  Jim Meyering  <meyering@lucent.com>
39510
39511         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
39512         (jm_PREREQ): Use it.
39513
39514         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
39515         mach/mach.h fcntl.h.
39516         Check for this function: setlocale.
39517
39518 2002-04-24  Jim Meyering  <meyering@lucent.com>
39519
39520         * lib/gettext.h: New file, from Gettext.
39521         * lib/Makefile.am (INCLUDES): Remove -I../intl.
39522         (libfetish_a_SOURCES): Add gettext.h.
39523
39524 2002-04-16  Jim Meyering  <meyering@lucent.com>
39525
39526         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
39527         ut_pid, ut_id, ut_exit.
39528
39529 2002-04-16  Jim Meyering  <meyering@lucent.com>
39530
39531         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
39532         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
39533         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
39534
39535 2002-04-12  Jim Meyering  <meyering@lucent.com>
39536
39537         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
39538         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
39539         existence of the getmntinfo function.  Needed for Darwin 5.3.
39540
39541         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
39542         This is necessary at least on Darwin 5.3.
39543
39544         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
39545         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
39546         strnlen.o in the library, and that makes some versions of ranlib
39547         object.
39548
39549 2002-04-12  Jim Meyering  <meyering@lucent.com>
39550
39551         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
39552
39553 2002-04-09  Jim Meyering  <meyering@lucent.com>
39554
39555         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
39556         to be more precise.  Rather than saying we're checking whether the
39557         function `works', say what we're testing.
39558         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
39559         Reported by Bruno Haible.
39560
39561 2002-03-10  Jim Meyering  <meyering@lucent.com>
39562
39563         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
39564         Suggestion from Santiago Vila.
39565
39566 2002-03-08  Jim Meyering  <meyering@lucent.com>
39567
39568         * lib/rename.c: Mention that this wrapper is needed also on
39569         mips-dec-ultrix4.4 systems.
39570
39571 2002-03-02  Jim Meyering  <meyering@lucent.com>
39572
39573         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
39574         not HAVE_CLOCK_SETTIME.
39575
39576 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39577
39578         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
39579         Check for clock_settime.
39580
39581 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39582
39583         * lib/nanosleep.h: Rename to....
39584         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
39585
39586         * lib/gettime.c: New file.
39587         * lib/settime.c: New file.
39588         * lib/stime.c: Remove.
39589
39590         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
39591         timespec.h.  Remove nanosleep.h.
39592
39593 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39594
39595         * m4/acl.m4: New file.
39596         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
39597         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
39598
39599 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39600
39601         * lib/acl.c, lib/acl.h: New files.
39602         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
39603
39604 2002-02-24  Jim Meyering  <meyering@lucent.com>
39605
39606         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
39607         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
39608         cause trouble.  Reported by Nelson Beebe.
39609
39610 2002-02-23  Paul Eggert  <eggert@twinsun.com>
39611
39612         * lib/path-concat.c (xpath_concat): Reorder code to pacify
39613         compilers that don't know that xalloc_die never returns.
39614
39615 2002-02-20  Jim Meyering  <meyering@lucent.com>
39616
39617         * lib/getdate.c: Regenerate using bison-1.33.
39618
39619 2002-02-17  Jim Meyering  <meyering@lucent.com>
39620
39621         * config/config.guess (main): Don't use `head -1'; it's no longer
39622         portable. Use `sed 1q' instead.
39623
39624 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
39625
39626         * m4/codeset.m4: Upgrade to gettext-0.11.
39627         * m4/gettext.m4: Upgrade to gettext-0.11.
39628         * m4/glibc21.m4: Upgrade to gettext-0.11.
39629         * m4/iconv.m4: Upgrade to gettext-0.11.
39630         * m4/isc-posix.m4: Upgrade to gettext-0.11.
39631         * m4/lcmessage.m4: Upgrade to gettext-0.11.
39632         * m4/lib-ld.m4: New file, from gettext-0.11.
39633         * m4/lib-link.m4: New file, from gettext-0.11.
39634         * m4/lib-prefix.m4: New file, from gettext-0.11.
39635         * m4/progtest.m4: Upgrade to gettext-0.11.
39636
39637 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39638
39639         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
39640         (jm_PREREQ): Use it.
39641
39642 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39643
39644         * lib/posixver.c, lib/posixver.h: New files.
39645         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39646
39647 2002-02-02  Paul Eggert  <eggert@twinsun.com>
39648             Bruno Haible  <bruno@clisp.org>
39649
39650         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
39651         (fwrite_success_callback): New declaration.
39652         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
39653         print_unicode_char. Call failure callback instead of error.
39654         (fwrite_success_callback): New function.
39655         (exit_failure_callback): New function.
39656         (fallback_failure_callback): New function.
39657         (print_unicode_char): Call unicode_to_mb.
39658
39659 2002-01-26  Jim Meyering  <meyering@lucent.com>
39660
39661         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
39662         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
39663
39664 2002-01-26  Jim Meyering  <meyering@lucent.com>
39665
39666         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
39667
39668 2002-01-22  Paul Eggert  <eggert@twinsun.com>
39669
39670         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
39671
39672 2002-01-22  Jim Meyering  <meyering@lucent.com>
39673
39674         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
39675         Otherwise, some versions of automake would omit the rule that makes
39676         Makefile from Makefile.in.
39677
39678 2002-01-21  Paul Eggert  <eggert@twinsun.com>
39679
39680         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
39681         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39682         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
39683         (memcoll): Set errno to zero if there is no error.
39684
39685         * lib/quotearg.c (quotearg_buffer_restyled):
39686         Fix bug with quoting buffers containing NUL when backslashing escapes.
39687         This bug was exposed by the other changes in this patch.
39688         (quotearg_n_options): New arg ARGSIZE.
39689         All callers changed.
39690         (quoting_options_from_style): New function.
39691         (quotearg_n_style): Use it.
39692         (quotearg_n_style_mem): New function.
39693
39694         * lib/quotearg.h (quotearg_n_style_mem): New function.
39695
39696 2002-01-19  Jim Meyering  <meyering@lucent.com>
39697
39698         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
39699         Remove useless quotes: DF_PROG="df".
39700         * m4/strnlen.m4: New file.
39701
39702 2002-01-16  Paul Eggert  <eggert@twinsun.com>
39703
39704         * lib/backupfile.c (ISDIGIT): Comment fix.
39705         * lib/getdate.y (ISDIGIT): Likewise.
39706         * lib/posixtm.c (ISDIGIT, year): Likewise.
39707         * lib/strverscmp.c (ISDIGIT): Likewise.
39708         * lib/userspec.c (ISDIGIT): Likewise.
39709
39710 2002-01-16  Jim Meyering  <meyering@lucent.com>
39711
39712         * lib/getdate.y: Add three semicolons, each just before a closing
39713         brace. Bison (as of version 1.31) no longer papers over that mistake.
39714
39715 2002-01-05  Jim Meyering  <meyering@lucent.com>
39716
39717         * lib/version-etc.c (version_etc_copyright): Update copyright year.
39718
39719 2001-12-19  Paul Eggert  <eggert@twinsun.com>
39720
39721         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
39722         not silently exit merely because the output buffer happens to
39723         have nothing pending.
39724
39725 2001-12-18  Paul Eggert  <eggert@twinsun.com>
39726
39727         See the big note in ../ChangeLog.
39728         * lib/human.c (suffixes): Prefer K to k for 1024.
39729         (generate_suffix_backwards): New function.
39730         (human_readable_inexact): Use it.
39731         * lib/xstrtol.c (__xstrtol): If there is no number but there
39732         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
39733         Accept 'K' as well as 'k'.
39734
39735 2001-12-15  Jim Meyering  <meyering@lucent.com>
39736
39737         * lib/regex.h (__restrict_arr): Update from libc.
39738
39739         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
39740         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
39741         (STREQ): Define.
39742
39743 2001-12-14  Jim Meyering  <meyering@lucent.com>
39744
39745         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
39746         Suggestion from Bruno Haible.
39747
39748 2001-12-10  Jim Meyering  <meyering@lucent.com>
39749
39750         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
39751         xrealloc, Instead, include "xalloc.h".
39752         (initbuffer): Don't cast xmalloc return value to char*.
39753         (readline): Reword comment.
39754         Don't cast xrealloc return value to char*
39755         Return NULL, not 0.
39756
39757 2001-12-09  Jim Meyering  <meyering@lucent.com>
39758
39759         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
39760         about `signed and unsigned type in conditional expression'.
39761         * lib/posixtm.c (posix_time_parse): Likewise.
39762
39763         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
39764
39765         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
39766         to avoid a pedantic warning.
39767
39768         * lib/getstr.c: Don't include assert.h.
39769         (getstr): Remove warning-evoking assertions.
39770         Return -1 if offset parameter is out of bounds.
39771         Change the type of a local from int to size_t.
39772
39773         * lib/strftime.c (my_strftime_localtime_r): Include this function
39774         definition in the `#if ! HAVE_TM_GMTOFF' block.
39775
39776         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
39777         Include xalloc.h instead.
39778
39779 2001-12-02  Jim Meyering  <meyering@lucent.com>
39780
39781         * lib/tempname.c: Don't declare getenv, thus reverting the change of
39782         2001-11-18.  It's no longer necessary, now that stdlib.h is always
39783         included.
39784
39785         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
39786         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
39787
39788 2001-11-30  Akim Demaille  <akim@epita.fr>
39789
39790         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
39791         before being defined.
39792
39793 2001-11-27  Paul Eggert  <eggert@twinsun.com>
39794
39795         * lib/quotearg.h (quotearg_n, quotearg_n_style):
39796         First arg is int, not unsigned.
39797         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
39798         (SIZE_MAX, UINT_MAX): New macros.
39799         (quotearg_n_options): Abort if N is negative.
39800         Avoid overflow check on hosts where size_t is 64 bits and int
39801         is 32 bits, as overflow is impossible there.
39802         Fix off-by-one typo that caused unnecessary reallocation.
39803
39804 2001-11-27  Jim Meyering  <meyering@lucent.com>
39805
39806         * lib/tempname.c: Merge with version from libc.
39807         * lib/regex.c: Likewise.
39808
39809         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
39810         systems for which STDC_HEADERS is 0, it was not included, resulting in
39811         a warning about an integer-to-pointer conversion problem with getenv.
39812         Reported by Volker Borchert.
39813
39814 2001-11-26  Jim Meyering  <meyering@lucent.com>
39815
39816         * lib/gtod.h: Remove file.
39817         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
39818         * lib/gettimeofday.c: Don't include gtod.h.
39819         (GTOD_init): Remove function.
39820         (rpl_gettimeofday): Do its job here instead, rather than aborting.
39821         Suggestion from Volker Borchert.
39822
39823 2001-11-23  Jim Meyering  <meyering@lucent.com>
39824
39825         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
39826         it.
39827         * lib/hash.c (struct hash_table): Define it here instead.
39828
39829 2001-11-22  Jim Meyering  <meyering@lucent.com>
39830
39831         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
39832
39833 2001-11-20  Jim Meyering  <meyering@lucent.com>
39834
39835         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
39836         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
39837
39838 2001-11-19  Jim Meyering  <meyering@lucent.com>
39839
39840         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
39841         directory.  Use "conftestXXXXXX" as the template.
39842         Suggestion from Paul Eggert.
39843
39844         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
39845         immediately, so the test doesn't mistakenly hit the max-open-files
39846         limit.
39847
39848 2001-11-18  Paul Eggert  <eggert@twinsun.com>
39849
39850         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
39851         (TEMPORARIES): New macro.
39852         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
39853         removes an artificial limitation (e.g. HP-UX 10.20, where
39854         TMP_MAX is 17576).
39855
39856 2001-11-18  Jim Meyering  <meyering@lucent.com>
39857
39858         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
39859
39860 2001-11-18  Jim Meyering  <meyering@lucent.com>
39861
39862         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
39863         on SunOS 4.
39864
39865         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
39866         files will be created before anything else.
39867
39868 2001-11-17  Paul Eggert  <eggert@twinsun.com>
39869
39870         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
39871         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
39872
39873 2001-11-17  Jim Meyering  <meyering@lucent.com>
39874
39875         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
39876         Prompted by a report from Bob Proulx.
39877
39878         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
39879         Instead, require UTILS_FUNC_MKSTEMP.
39880
39881 2001-11-17  Jim Meyering  <meyering@lucent.com>
39882
39883         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
39884         Now, that's done as part of AC_FUNC_STRTOD.
39885
39886 2001-11-17  Jim Meyering  <meyering@lucent.com>
39887
39888         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
39889         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
39890         rather than group writable.  Patch by Juan F. Codagnone.
39891
39892         * lib/readtokens.c: Remove explicit declarations of xmalloc and
39893         xrealloc, Instead, include "xalloc.h".
39894
39895         * lib/mountlist.c: Include unlocked-io.h after all system headers.
39896         Remove explicit declarations of xmalloc, xrealloc,
39897         and xstrdup.  Instead, include "xalloc.h".
39898
39899         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
39900         unlocked-io.h.
39901         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
39902         Likewise.
39903         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
39904
39905         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
39906         Reported by Padraig Brady.
39907
39908         * lib/mkstemp.c: #undef mkstemp.
39909         Include config.h.
39910         (rpl_mkstemp): Rename from mkstemp.
39911         Protoize.
39912
39913 2001-11-16  Jim Meyering  <meyering@lucent.com>
39914
39915         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
39916         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
39917         determine the amount of total physical memory, use pstat_getstatic.
39918         HPUX-11 doesn't define _SC_PHYS_PAGES.
39919         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
39920         If sysconf couldn't be used to determine the amount of available
39921         physical memory, use both pstat_getstatic and pstat_getdynamic.
39922         Based on a patch from Bob Proulx.
39923
39924 2001-11-10  Jim Meyering  <meyering@lucent.com>
39925
39926         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
39927         (jm_PREREQ): Use it.
39928
39929 2001-11-09  Jim Meyering  <meyering@lucent.com>
39930
39931         * m4/jm-macros.m4: Require autoconf-2.52f.
39932         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
39933         Use these AC_-prefixed names, not the AM_-prefixed ones.
39934
39935         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
39936
39937 2001-11-05  Jim Meyering  <meyering@lucent.com>
39938
39939         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
39940
39941 2001-11-04  Jim Meyering  <meyering@lucent.com>
39942
39943         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
39944         $DEFS.
39945
39946 2001-11-03  Jim Meyering  <meyering@lucent.com>
39947
39948         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
39949         of AC_DEFUN.
39950
39951         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
39952         know the name of the variable in the macro definition.
39953
39954 2001-11-03  Jim Meyering  <meyering@lucent.com>
39955
39956         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
39957         in argmatch_to_argument call.
39958
39959         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
39960         argument.
39961
39962         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
39963         e.g., a fault due to an attempt to free a NULL pointer.
39964
39965 2001-11-01  Jim Meyering  <meyering@lucent.com>
39966
39967         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
39968         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
39969
39970 2001-11-01  Jim Meyering  <meyering@lucent.com>
39971
39972         * lib/dirfd.c, lib/dirfd.h: New files.
39973         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
39974
39975         * lib/hash.c (hash_print) [TESTING]: Clean up.
39976
39977 2001-10-22  Paul Eggert  <eggert@twinsun.com>
39978
39979         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
39980         to avoid a warning if -Wall.
39981
39982 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
39983
39984         * README: New file
39985         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
39986         (per RMS's instructions, this is now the canonical source)
39987         * lgpl/, gpl/: New directories.
39988
39989 2001-10-21  Paul Eggert  <eggert@twinsun.com>
39990
39991         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
39992
39993 2001-10-21  Jim Meyering  <meyering@lucent.com>
39994
39995         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
39996         this code would end up calling gettext even in packages built
39997         with --disable-nls.
39998         * lib/getopt.c (_): Likewise.
39999         * lib/regex.c (_): Likewise.
40000
40001 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40002
40003         * m4/error.m4 (jm_PREREQ_ERROR):
40004         Do not invoke AC_CHECK_FUNCS with strerror_r, as
40005         AC_FUNC_STRERROR_R does that.
40006         Check for strerror declaration.
40007
40008         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
40009         are supposed to have them these days.
40010         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
40011         Merge changes from latest Autoconf CVS.
40012         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
40013         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
40014         POSIX decided to standardize on the int flavor of strerror_r.
40015
40016 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40017
40018         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
40019         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
40020         Use strerror_r that is only a macro, even if it is not a function.
40021         (strerror): Check for HAVE_DECL_STRERROR before declaring.
40022         (private_strerror): Use prototypes, not old-style function definition.
40023         (print_errno_message): New function.
40024         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
40025         char*-flavored one.
40026         (error_tail, error, error_at_line): Use it.
40027
40028 2001-10-11  Jim Meyering  <meyering@lucent.com>
40029
40030         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
40031         and quote_n (1, ... to avoid clobbering a buffer.
40032
40033 2001-10-05  Jim Meyering  <meyering@lucent.com>
40034
40035         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
40036         hash-pjw.h.
40037         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
40038         * lib/hash-pjw.h: New file.
40039
40040 2001-09-30  Jim Meyering  <meyering@lucent.com>
40041
40042         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
40043         `struct fsstat' has the `f_fstypename' member.
40044         Use that to define FS_TYPE, which is now used to make
40045         the getfsstat link test tighter.
40046
40047 2001-09-30  Jim Meyering  <meyering@lucent.com>
40048
40049         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
40050         Include <sys/ucred.h>, for Apple Darwin.
40051         Include sys/mount.h and sys/fs_types.h only if available.
40052         (FS_TYPE): Define.
40053         (read_filesystem_list): Use FS_TYPE.
40054
40055 2001-09-29  Paul Eggert  <eggert@twinsun.com>
40056
40057         * lib/exclude.c (excluded_filename): 0 -> false, since it's
40058         a boolean context.
40059
40060 2001-09-29  Jim Meyering  <meyering@lucent.com>
40061
40062         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40063         [one-argument getmntent function]): Include stdio.h before mntent.h.
40064         SunOS 4.1.x needs it for the declaration of `FILE'.
40065         Patch by Volker Borchert.
40066
40067         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40068         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
40069         sys/fs_types.h, and make the link-test for getfsstat guard #include
40070         directives with appropriate #if HAVE_*_H tests so that we can
40071         detect getfsstat on Apple Darwin1.3.7 systems.
40072         Reported by Nelson Beebe.
40073         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
40074
40075 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40076
40077         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40078         #defines strtoimax.  Also treat the other strto* functions
40079         like strtoimax.
40080
40081         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40082         Check for strtoul and strtoumax,
40083         as those declarations are made even in the signed case.
40084         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
40085         Likewise, for strtol and strtoimax.
40086
40087 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40088
40089         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40090         #defines strtoimax.  Also treat the other strto* functions
40091         like strtoimax.
40092
40093         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
40094         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
40095         (strtoimax, strtoumax): Do not declare if already defined as a macro.
40096
40097 2001-09-26  Jim Meyering  <meyering@lucent.com>
40098
40099         Most macros in unlocked-io.h had the wrong number of arguments.
40100         * lib/gen-uio: New script.
40101         (USE_UNLOCKED_IO): Define to 1 if not already defined.
40102         * lib/unlocked-io.hin: Remove file.
40103         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
40104         rather than trying to embed it here.
40105         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
40106         Reported by Padraig Brady.
40107
40108 2001-09-25  Volker Borchert  <bt@teknon.de>
40109
40110         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
40111         `result'.
40112
40113 2001-09-24  Jim Meyering  <meyering@lucent.com>
40114
40115         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
40116
40117 2001-09-23  Jim Meyering  <meyering@lucent.com>
40118
40119         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
40120         instead of the mere test for existence of mntent.h.  The latter
40121         would get a false-positive on AIX 3.4 systems.
40122         In the outer getmntent if-block, don't die if neither of the getmntent
40123         tests succeeds.  Instead, just fall through and continue with the
40124         remaining tests.
40125
40126 2001-09-23  Jim Meyering  <meyering@lucent.com>
40127
40128         * lib/mountlist.c: Remove useless parentheses in #if directives.
40129         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
40130         the deprecated MOUNTED symbol is no longer defined in mntent.h.
40131
40132 2001-09-22  Jim Meyering  <meyering@lucent.com>
40133
40134         * m4/gettext.m4: New file.  From gettext.
40135         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
40136         * m4/progtest.m4: Likewise
40137         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
40138         * m4/glibc21.m4: Likewise.
40139
40140         * m4/libintl.m4: Remove.  No longer used.
40141
40142 2001-09-22  Jim Meyering  <meyering@lucent.com>
40143
40144         * lib/localcharset.c: Update from latest gettext.
40145         * lib/config.charset: Likewise.
40146
40147 2001-09-20  Jim Meyering  <meyering@lucent.com>
40148
40149         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
40150         strtoimax.
40151         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
40152         strtoumax.
40153
40154 2001-09-20  Jim Meyering  <meyering@lucent.com>
40155
40156         * lib/xstrtol.c (strtoimax): Guard declaration with
40157         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
40158         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
40159         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
40160         (strtoumax): Likewise, for completeness (it wasn't necessary).
40161
40162 2001-09-17  Paul Eggert  <eggert@twinsun.com>
40163
40164         * lib/strtoimax.c (HAVE_LONG_LONG):
40165         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
40166         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
40167         to work around bug in IBM C compiler.
40168
40169 2001-09-17  Jim Meyering  <meyering@lucent.com>
40170
40171         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
40172         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
40173         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
40174         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
40175         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
40176         whenever the right hand side need not be expanded by the shell.
40177
40178 2001-09-16  Paul Eggert  <eggert@twinsun.com>
40179
40180         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
40181         library.  It's not correct, as some older glibcs are buggy.
40182         fnmatch wasn't fixed until glibc 2.2.
40183
40184         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
40185         special shell magic here.
40186
40187 2001-09-16  Jim Meyering  <meyering@lucent.com>
40188
40189         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
40190         * m4/jm-macros.m4: Require it.
40191
40192 2001-09-16  Jim Meyering  <meyering@lucent.com>
40193
40194         * lib/mkdir.c: New file.
40195
40196 2001-09-15  Jim Meyering  <meyering@lucent.com>
40197
40198         * m4/jm-macros.m4: Check for help2man.
40199
40200 2001-09-11  Jim Meyering  <meyering@lucent.com>
40201
40202         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
40203         The body, by Paul Eggert, was moved here from configure.in.
40204         * m4/jm-macros.m4: Require UTILS_HOST_OS.
40205
40206 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40207
40208         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
40209         (jm_PREREQ): Use it.
40210
40211 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40212
40213         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
40214         Use ssize_t, not int, to store result of readlink.
40215         Check for ssize_t overflow as well as size_t overflow,
40216         as POSIX says the result of readlink is implementation-defined
40217         when ssize_t overflows.
40218         Remove unnecessary cast to char*.
40219         Use free+malloc instead of realloc, as the storage doesn't need
40220         to be preserved and it's clearer and can be more efficient that way.
40221         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
40222         * lib/xreadlink.h (xreadlink): Update prototype.
40223
40224 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40225
40226         * lib/xgetcwd.c: Revert some of the previous change; intead,
40227         fix the HAVE_GETCWD_NULL code to behave more like the
40228         !HAVE_GETCWD_NULL code used to.
40229
40230         Include "xalloc.h".
40231         (xgetcwd): Do not return NULL when memory is exhausted; instead,
40232         invoke xalloc_die.
40233
40234 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40235
40236         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
40237         sys/param.h, as pathmax.h includes them.
40238
40239 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40240
40241         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
40242         (jm_PREREQ_XGETCWD): New macro.
40243
40244         * m4/getcwd.m4: New file.
40245
40246 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40247
40248         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
40249         like the HAVE_GETCWD_NULL code.
40250         Include pathmax.h if not HAVE_GETCWD.
40251         Do not include xalloc.h.
40252         (INITIAL_BUFFER_SIZE): New symbol.
40253         Do not use xmalloc / xrealloc, since the caller is responsible for
40254         handling errors.  Preserve errno around `free' during failure.
40255         Do not overrun buffer when using getwd.
40256
40257 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40258
40259         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
40260         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
40261         getcwd (NULL, 0).
40262
40263 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40264
40265         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
40266         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
40267         spotted by Jim Meyering.
40268
40269 2001-09-03  Jim Meyering  <meyering@lucent.com>
40270
40271         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
40272         failure.
40273
40274 2001-09-02  Jim Meyering  <meyering@lucent.com>
40275
40276         * lib/error.c: Update from GNU libc.
40277
40278 2001-09-01  Jim Meyering  <meyering@lucent.com>
40279
40280         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
40281         Used by df.
40282
40283 2001-09-01  Jim Meyering  <meyering@lucent.com>
40284
40285         * lib/xreadlink.c: New file.
40286         * lib/xreadlink.h: New file.
40287         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
40288         xreadlink.h.
40289
40290         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
40291         doesn't conflict with sparc Solaris 7's definition in
40292         /usr/include/sys/int_types.h.
40293
40294         * lib/exclude.c: Use `""', not `<>' to #include non-system header
40295         files.
40296         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
40297         and strncasecmp as r-values.  Unixware didn't have declarations.
40298
40299 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40300
40301         * lib/xstrtol.h: Add copyright notice.
40302         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
40303         LONGINT_INVALID_SUFFIX_CHAR.
40304
40305 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40306
40307         * lib/xstrtol.c (strtoimax): New decl.
40308
40309 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40310
40311         * lib/xgetcwd.c: Don't include pathmax.h.
40312         Include stdlib.h and unistd.h if available.
40313         Include xalloc.h.
40314         (xmalloc, xstrdup, free): Remove decls.
40315         (xgetcwd): Don't assume sizes fit in unsigned.
40316         Check for overflow when computing sizes.
40317         Simplify reallocation code.
40318
40319 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40320
40321         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
40322         a directory's st_size can have an arbitrary value, so the old
40323         usage could waste an arbitrary amount of memory.  All uses
40324         changed.
40325         * lib/savedir.h: Update prototype.
40326
40327 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40328
40329         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
40330
40331         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
40332         old strtoimax.c.
40333
40334         Also, make the following further changes to make this file's
40335         configuration more similar to that of strtol.c:
40336         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
40337         (strtoumax, uintmax_t, strtoull, strtol): Remove.
40338         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
40339         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
40340         changed to signed values.
40341
40342         And make the following changes as well:
40343         Fix copyright notice, as 1999 was missing.
40344         (verify): New macro.
40345         (strtoimax): Check sizes at compile-time, not run-time.
40346         Prefer strtol to strtoll if both work.
40347         (main): Remove; it was not that useful and was a pain to maintain.
40348
40349         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
40350
40351 2001-08-31  Jim Meyering  <meyering@lucent.com>
40352
40353         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
40354         Use an initial, malloc'd, buffer of length 128 rather than
40355         a statically allocated one of length 1024.
40356
40357 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40358
40359         Simplify code, partly by assuming autoconf 2.52 semantics.
40360
40361         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
40362
40363         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
40364         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
40365         All uses removed.
40366         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
40367         Move AC_REQUIRE to next-to-top level, to avoid confusion.
40368         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
40369         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
40370         jm_AC_HEADER_INTTYPES_H.
40371         * m4/jm-macros.m4 (jm_MACROS): Likewise.
40372
40373         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
40374
40375         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40376         Quote first arg of AC_DEFUN.
40377         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
40378         since they are needed to parse the include file even if we need
40379         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
40380         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
40381         but with opposite signedness.
40382
40383 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40384
40385         Merge 'exclude' changes from tar 1.13.22.
40386         This fixes one or two unlikely storage allocation overflow bugs,
40387         but doesn't change user-visible behavior otherwise.
40388
40389 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40390
40391         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
40392         (jm_PREREQ_EXCLUDE): New macro.
40393
40394 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40395
40396         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
40397         tm to be declared.
40398
40399 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40400
40401         * lib/hash.c: Remove '2001' from copyright notice.
40402
40403 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40404
40405         * lib/full-write.h: New file.
40406         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
40407         * lib/full-write.c: Correct credits, as cccp.c no longer
40408         exists and anyway it was so heavily changed from the old cccp
40409         code as to be unrecognizable.  Include full-write.h.
40410         (full_write) Return size_t, with short writes meaning failure.
40411         All callers changed.  This fixes a bug with large buffers
40412         on 64-bit hosts.
40413         * lib/utime.c: Include full-write.h.
40414
40415 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40416
40417         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
40418         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
40419         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
40420         Include if available.
40421         (<xalloc.h>): Include
40422         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
40423         (verify): New macro.  Use it to verify that EXCLUDE macros do not
40424         collide with FNM macros.
40425         (struct patopts): New struct.
40426         (struct exclude): Use it, as exclude patterns now come with options.
40427         (new_exclude): Support above changes.
40428         (new_exclude, add_exclude_file):
40429         Initial size must now be a power of two to simplify overflow checking.
40430         (free_exclude, fnmatch_no_wildcards): New function.
40431         (excluded_filename): No longer requires options arg, as the options
40432         are determined by add_exclude.  Now returns bool, not int.
40433         (excluded_filename, add_exclude):
40434         Add support for the fancy new exclusion options.
40435         (add_exclude, add_exclude_file): Now takes int options arg.
40436         Check for arithmetic overflow when computing sizes.
40437         (add_exclude_file): xrealloc might modify errno, so don't
40438         realloc until after errno might be used.
40439
40440         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
40441         New macros.
40442         (free_exclude): New decl.
40443         (add_exclude, add_exclude_file): Now takes int options arg.
40444         (excluded_filename): No longer requires options arg, as the options
40445         are determined by add_exclude.  Now returns bool, not int.
40446
40447 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40448
40449         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
40450
40451 2001-08-27  Jim Meyering  <meyering@lucent.com>
40452
40453         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
40454
40455         * lib/version-etc.c (N_): Remove definition.
40456         Revert most of last change.
40457         Instead, simply don't mark the `Copyright...' string for translation.
40458         Based on advice from Paul Eggert.
40459
40460         * lib/strtoxmax.c: Tweak comment.
40461
40462 2001-08-26  Jim Meyering  <meyering@lucent.com>
40463
40464         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
40465
40466         * m4/xstrtoimax.m4: New file.
40467         * m4/xstrtoumax.m4: Add comments explaining why we
40468         AC_REPLACE_FUNCS(strtol).
40469
40470 2001-08-26  Jim Meyering  <meyering@lucent.com>
40471
40472         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
40473         of copyright with `%s' so translators don't get an untranslated
40474         message in 2002.
40475         (COPYRIGHT_YEAR): Define.
40476         (version_etc): Use fprintf rather than fputs.
40477         Suggestion from Ulrich Drepper.
40478
40479         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
40480
40481         * lib/strtoll.c: New file, from GNU libc.
40482         * lib/xstrtoimax.c: New file.
40483
40484         * lib/xstrtol.h: Add xstrtoimax.
40485         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
40486         * lib/strtoimax.c: New file.  Likewise, but first define
40487         STRTOUXMAX_SIGNED.
40488
40489         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
40490         ...
40491         * lib/strtoxmax.c: ... then renamed to this.
40492
40493 2001-08-18  Paul Eggert  <eggert@twinsun.com>
40494
40495         * m4/inttypes.m4: Add AC_PREREQ(2.13).
40496         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
40497         (jm_AC_TYPE_INTMAX_T): New macro.
40498         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
40499
40500         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
40501
40502         * m4/longlong.m4: Renamed from ulonglong.m4.
40503         * m4/inttypes.m4: Renamed from inttypes_h.m4.
40504         * m4/uintmax_t.m4: Removed.
40505
40506 2001-08-13  Paul Eggert  <eggert@twinsun.com>
40507
40508         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
40509         Port to Solaris 8, where 'sed' requires a space after the 'r'
40510         command, and where sh dislikes "$/".  Clean up the spacing a bit.
40511         Redirect output to $tmp just once.
40512
40513 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
40514
40515         * lib/addext.c (<errno.h>): Include.
40516         (errno): Declare if not defined.
40517         (addext): Work correctly when pathconf returns -1 and leaves
40518         errno alone because there is no limit.  Also, work even if
40519         pathconf returns a value greater than SIZE_MAX.
40520
40521 2001-08-12  Jim Meyering  <meyering@lucent.com>
40522
40523         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
40524         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
40525         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
40526         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
40527         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
40528         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
40529         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
40530         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
40531         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
40532         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
40533         utime.m4, utimes.m4, xstrtoumax.m4:
40534         Quote the first argument in each use of AC_DEFUN.
40535
40536 2001-08-12  Jim Meyering  <meyering@lucent.com>
40537
40538         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
40539         Simply `return getcwd (NULL, 0);'.
40540         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
40541         Use 1300 as initial value for length, not PATH_MAX.
40542
40543         * lib/pathmax.h: Clean up cpp syntax.
40544
40545 2001-08-12  Jim Meyering  <meyering@lucent.com>
40546
40547         * lib/gettimeofday.c: New file.
40548         * lib/gtod.h: New file.
40549         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
40550
40551 2001-08-05  Jim Meyering  <meyering@lucent.com>
40552
40553         * m4/jm-macros.m4: Require autoconf-2.52.
40554
40555 2001-08-04  Jim Meyering  <meyering@lucent.com>
40556
40557         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
40558         stmt, to get in sync with glibc.
40559
40560 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40561
40562         The following changes are from gettext 0.10.39 as maintained by
40563         Bruno Haible.
40564
40565         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
40566         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
40567         with inverted sense.  All uses changed.
40568
40569         * lib/mbswidth.c: Don't include <limits.h>.
40570         Include <stdlib.h> and <string.h> unconditionally.
40571         (iswcntrl, mbsinit, ISCNTRL): New macros.
40572         (mbsnwidth): Use K&R style function declarations.
40573         Don't bother checking for MB_LEN_MAX == 1, since the compiler
40574         can optimize it when MB_CUR_MAX == 1.
40575         The width of control characters is zero, not 1.
40576
40577 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40578
40579         The following changes are from gettext 0.10.39 as maintained by
40580         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
40581
40582         * m4/codeset.m4: Upgrade to serial AM1.
40583         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
40584         all uses changed.  Quote first arg of AC_DEFUN.
40585         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
40586
40587         * m4/iconv.m4: Upgrade to serial AM2.
40588         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
40589         Add --with-libconv-prefix.
40590         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
40591         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
40592         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
40593         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
40594         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
40595
40596         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
40597         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
40598         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
40599         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
40600         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
40601         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
40602         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
40603         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
40604         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
40605
40606         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
40607         string.h any more.
40608
40609         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
40610         not the default value.
40611
40612         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
40613         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
40614         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
40615         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
40616         Also check for iswcntrl, used for wcwidth fallback.
40617         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
40618         to Autoconf 2.13.
40619
40620 2001-08-03  Jim Meyering  <meyering@lucent.com>
40621
40622         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
40623         as it was in the original.  Reported by Paul Eggert.
40624
40625 2001-07-16  Jim Meyering  <meyering@lucent.com>
40626
40627         * m4/gettimeofday.m4: New file.
40628         Prompted by a report from Bernhard Baehr.
40629
40630 2001-07-15  Jim Meyering  <meyering@lucent.com>
40631
40632         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
40633         stuff. Now it's in ../Makefile.cfg.
40634
40635 2001-07-15  Jim Meyering  <meyering@lucent.com>
40636
40637         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
40638         (BUILT_SOURCES): Add unlocked-io.h.
40639         (io_functions): Define.
40640         (unlocked-io.h): New rule.
40641         (DISTCLEANFILES): Add unlocked-io.h.
40642         (all-local): Depend on unlocked-io.h, to ensure it is created.
40643
40644         * lib/unlocked-io.hin: New file
40645
40646         * lib/regex.c: Update from glibc.
40647
40648 2001-07-05  Jim Meyering  <meyering@lucent.com>
40649
40650         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
40651         recommendation.
40652         (libfetish_a_SOURCES): Put all .h files here instead.
40653         Remove a thus-exposed (better checks in automake) duplicate and
40654         two unnecessary .h files.
40655
40656 2001-07-04  Jim Meyering  <meyering@lucent.com>
40657
40658         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
40659         that generates jm-glibc-io.m4 so that it doesn't trigger any make
40660         distcheck failure.
40661
40662 2001-07-02  Jim Meyering  <meyering@lucent.com>
40663
40664         The following changes were prompted by suggestions from Bruno Haible.
40665
40666         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
40667         is now generated.
40668         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
40669         definition of EXTRA_DIST.
40670         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
40671         ensure that the generated file is created/updated whenever the list
40672         of $(unlocked_functions) is changed.
40673         (jm-glibc-io.m4): New rule.
40674         (unlocked-io.h): New rule -- currently unused.
40675
40676 2001-06-24  Jim Meyering  <meyering@lucent.com>
40677
40678         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
40679         unmatched right bracket, rather than kludging it with an extra,
40680         falsely-matching quote in a comment.  Patch by Akim Demaille.
40681
40682 2001-06-11  Jim Meyering  <meyering@lucent.com>
40683
40684         * lib/regex.c: Update from GNU libc.
40685
40686 2001-05-27  Jim Meyering  <meyering@lucent.com>
40687
40688         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
40689         Check for ut_type in struct utmp.
40690
40691 2001-05-27  Jim Meyering  <meyering@lucent.com>
40692
40693         * lib/readutmp.h (UT_TYPE): Define.
40694
40695 2001-05-24  Jim Meyering  <meyering@lucent.com>
40696
40697         * lib/argmatch.c: Include "quote.h".
40698         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
40699         quote function.  Reported by Göran Uddeborg.
40700
40701 2001-05-22  Jim Meyering  <meyering@lucent.com>
40702
40703         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
40704         now that we use the package-supplied version unconditionally.
40705         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
40706
40707 2001-05-21  Jim Meyering  <meyering@lucent.com>
40708
40709         * m4/regex.m4: Change a couple backticks to single quotes to avoid
40710         shell syntax errors.
40711
40712 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
40713
40714         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
40715
40716 2001-05-20  Paul Eggert  <eggert@twinsun.com>
40717
40718         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
40719         Don't bother to check library strftime, since
40720         we'll be using our own my_strftime function anyway.
40721         Define my_strftime instead of strftime.
40722
40723 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
40724
40725         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
40726         which is not yet declared.
40727
40728 2001-05-15  Jim Meyering  <meyering@lucent.com>
40729
40730         * m4/regex.m4: Use proper quoting so brackets appear in the test
40731         program.
40732         Reported by, and with help from, Bruno Haible.
40733
40734 2001-05-13  Jim Meyering  <meyering@lucent.com>
40735
40736         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
40737         undefined.
40738
40739 2001-05-11  Paul Eggert  <eggert@twinsun.com>
40740
40741         dirname code cleanup.  base_name now behaves more compatibly
40742         with POSIX basename when given file names that have trailing
40743         slashes, and similarly for dir_name.  Add new primitives
40744         base_len and dir_len.  Put the directory-name-related decls
40745         into dirname.h.
40746
40747         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
40748         * lib/backupfile.c (base_name): Likewise.
40749         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
40750         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
40751         * lib/makepath.c (strip_trailing_slashes): Likewise.
40752         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
40753         ISSLASH): Likewise.
40754         * lib/rename.c (strip_trailing_slashes): Likewise.
40755         * lib/same.c (base_name): Likewise.
40756         * lib/stripslash.c (ISSLASH): Likewise.
40757
40758         * lib/addext.c: Include <dirname.h> after size_t is defined.
40759         * lib/backupfile.c: Likewise.
40760
40761         * lib/addext.c (addext): Use base_len to trim redundant
40762         trailing slashes instead of doing it ourselves.
40763         But do not trim the last slash if it is not redundant.
40764
40765         * lib/backupfile.c (find_backup_file_name,
40766         max_backup_version): Use base_len instead of rolling it ourselves.
40767         Handle the case of "" and (on DOS) "C:" correctly.
40768
40769         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
40770         needed. Include <string.h>, <dirname.h>.
40771         (base_name): Allow file names ending in slashes, other than names
40772         that are all slashes.  In this case, return the basename followed
40773         by the slashes.  This is more general, and can be used in places
40774         where the original base_name purposely had an assertion failure.
40775         (base_len): New function.
40776
40777         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
40778         Do not include <assert.h>; no longer needed.
40779         Include xalloc.h.
40780         (memrchr): Remove decl.
40781         (dir_name_r): Remove.
40782         (dir_len): Renamed from dirlen.  All callers changed.
40783         Rewrite in terms of base_name, for simplicity and consistency.
40784         (dir_name): Never return NULL.  All callers changed.
40785         Do not include <stdlib.h> in test program; no longer needed.
40786         return 0; is fine for test program.
40787
40788         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
40789         New macros.
40790         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
40791
40792         * lib/path-concat.c (path_concat): Use base_len to compute
40793         base length, not strlen; this means we cannot rely on memcpy
40794         to null-terminate.
40795
40796         * lib/same.c (STREQ): Remove.
40797         (same_name): Handle the case where the basename ends in trailing '/'.
40798
40799         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
40800         a slash was stripped.  Do not strip the last slash after a
40801         file system prefix.
40802
40803 2001-05-11  Paul Eggert  <eggert@twinsun.com>
40804
40805         * lib/Makefile.am (libfetish_a_SOURCES):
40806         Add strftime.c, since we now compile it on all hosts.
40807
40808         * lib/strftime.c (my_strftime):
40809         Define to nstrftime if emacs, but only if my_strftime is not defined.
40810         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
40811         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
40812         Add one more extra argument: a nanoseconds value.
40813         All uses changed.
40814         (ns): New macro.
40815         (my_strftime function): Add %N format.
40816         (emacs_strftimeu): Renamed from emacs_strftime,
40817         with extra ut argument.
40818
40819 2001-05-09  Paul Eggert  <eggert@twinsun.com>
40820
40821         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
40822
40823 2001-04-21  Jim Meyering  <meyering@lucent.com>
40824
40825         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
40826         doesn't interfere.
40827
40828 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
40829
40830         * m4/ftruncate.m4: Check for chsize.
40831         Link with ftruncate.o unconditionally if ftruncate is missing.
40832         This was required when cross-compiling to i586-mingw32msvc.
40833
40834 2001-04-08  Jim Meyering  <meyering@lucent.com>
40835
40836         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
40837         recomputed; that's necessary when the offset spans a DST transition.
40838         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
40839
40840 2001-04-02  Jim Meyering  <meyering@lucent.com>
40841
40842         * lib/regex.h, regex.c: Update from GNU libc.
40843
40844 2001-03-24  Jim Meyering  <meyering@lucent.com>
40845
40846         * m4/jm-macros.m4: Require autoconf-2.49d.
40847
40848 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
40849
40850         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
40851
40852 2001-03-19  Paul Eggert  <eggert@twinsun.com>
40853
40854         * lib/version-etc.c (version_etc_copyright): Update to 2001.
40855
40856 2001-03-17  Jim Meyering  <meyering@lucent.com>
40857
40858         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
40859         now that the version in autoconf is equivalent.
40860         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
40861
40862         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
40863         Suggestion from Akim Demaille.
40864
40865         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
40866         (jm_PREREQ_TEMPNAME): New function.
40867
40868 2001-03-16  Paul Eggert  <eggert@twinsun.com>
40869
40870         * lib/tempname.c (uint64_t): Define to uintmax_t if
40871         not defined, and if UINT64_MAX is not defined.
40872         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
40873         Reported by John David Anglin.
40874
40875 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
40876
40877         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
40878         resolve alias if codeset is empty.
40879         * lib/config.charset (BeOS): Use wildcard syntax.
40880
40881 2001-03-13  Jim Meyering  <meyering@lucent.com>
40882
40883         * lib/path-concat.c (path_concat)
40884         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
40885         concatenating e.g., `C:' and `foo'.
40886         From Bruno Haible.
40887
40888 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
40889
40890         * lib/localcharset.c (locale_charset): Don't use
40891         setlocale(LC_CTYPE,NULL). Don't return NULL.
40892         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
40893
40894 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
40895
40896         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
40897         support for DOS/DJGPP.
40898
40899 2001-03-01  Paul Eggert  <eggert@twinsun.com>
40900
40901         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
40902         lacks mkstemp.  Compile our own tempname.c if we compile our own
40903         mkstemp.c, as mkstemp relies on tempname.
40904
40905 2001-03-01  Jim Meyering  <meyering@lucent.com>
40906
40907         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
40908         AH_VERBATIM really does output its argument verbatim.
40909
40910 2001-02-28  Paul Eggert  <eggert@twinsun.com>
40911
40912         * lib/Makefile.am (libfetish_a_SOURCES):
40913         Add dup-safer.c, fopen-safer.c.
40914         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
40915
40916         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
40917         * lib/unistd-safer.h: New files.
40918
40919 2001-02-25  Paul Eggert  <eggert@twinsun.com>
40920
40921         The mkstemp replacement is taken from glibc 2.2.2, with some
40922         portability fixes for use outside glibc, as follows:
40923
40924         * lib/tempname.c (struct_stat64): New macro.
40925         (direxists, __gen_tempname): Use it.
40926         This avoids a portability problem with Solaris 8.
40927
40928         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
40929         (<stddef.h>, <stdint.h>, <string.h>):
40930         Include only if STDC_HEADERS || _LIBC.
40931         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
40932         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
40933         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
40934         (__set_errno): Define this macro if <errno.h> doesn't.
40935         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
40936         Define these macros if <stdio.h> doesn't.
40937         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
40938         Define these macros if <sys/stat.h>
40939         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
40940         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
40941         __xstat64): Define if not _LIBC.
40942         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
40943         (__gen_tempname): Invoke gettimeofday only if
40944         HAVE_GETTIMEOFDAY || _LIBC;
40945         otherwise, fall back on plain "time".
40946         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
40947
40948         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
40949
40950         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
40951
40952 2001-02-18  Paul Eggert  <eggert@twinsun.com>
40953
40954         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
40955
40956 2001-02-17  Paul Eggert  <eggert@twinsun.com>
40957
40958         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
40959         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
40960         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
40961         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
40962
40963 2001-02-17  Paul Eggert  <eggert@twinsun.com>
40964
40965         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
40966         Remove workaround macros for hosts that have mbrtowc but not
40967         mbstate_t, as we now insist on proper declarations for both
40968         before using mbrtowc.
40969
40970 2001-02-17  Jim Meyering  <meyering@lucent.com>
40971
40972         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
40973         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
40974         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
40975         UnixWare 7.1.1.
40976
40977         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
40978         rather than AC_CACHE_VAL.
40979
40980 2001-02-17  Jim Meyering  <meyering@lucent.com>
40981
40982         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
40983         around included file name.
40984
40985         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
40986
40987         * lib/strftime.c: Update from GNU libc (the only changes were to
40988         comments).
40989
40990 2001-02-17  Jim Meyering  <meyering@lucent.com>
40991
40992         * lib/regex.c: Update from libc.
40993
40994 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
40995
40996         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
40997         clash.
40998
40999 2001-02-16  Paul Eggert  <eggert@twinsun.com>
41000
41001         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
41002         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
41003         Reported by Mark Hounschell via Paul Eggert.
41004
41005 2001-02-07  Jim Meyering  <meyering@lucent.com>
41006
41007         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
41008
41009 2001-02-05  Jim Meyering  <meyering@lucent.com>
41010
41011         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
41012         it includes the patch required for `large file' support with at least
41013         HP-UX's 10.20 /bin/cc.
41014
41015 2001-02-03  Jim Meyering  <meyering@lucent.com>
41016
41017         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
41018         AS_IF, now that it works once again (mysteriously).
41019         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41020
41021 2001-01-30  Jim Meyering  <meyering@lucent.com>
41022
41023         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
41024         * m4/chown.m4: Rename conftestchown to conftest.chown.
41025         * m4/rename.m4: s/conftestdir/conftest.d1/ and
41026         s/conftestdir2/conftest.d2/.
41027         * m4/utimes.m4: s/conftestdata/conftest.data/
41028         Inspired by Pavel Roskin's change in autoconf.
41029
41030 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
41031
41032         * lib/config.charset: Update for FreeBSD 4.2.
41033
41034 2001-01-27  Jim Meyering  <meyering@lucent.com>
41035
41036         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
41037         a use of AS_IF.
41038         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41039
41040 2001-01-26  Jim Meyering  <meyering@lucent.com>
41041
41042         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
41043         quotearg.c includes it.
41044
41045 2001-01-26  Jim Meyering  <meyering@lucent.com>
41046
41047         * lib/quotearg.c: Include stddef.h.
41048         * lib/quote.c: Include stddef.h.
41049         Reported by Axel Kittenberger.
41050
41051         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
41052         line in double quotes so that it evokes a better diagnostic.
41053         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
41054         Reported by Axel Kittenberger.
41055
41056 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
41057
41058         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
41059         as if it was a `charset'.
41060
41061 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41062
41063         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
41064         has const.
41065
41066 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41067
41068         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
41069         to avoid a warning.  Add back 'const' to inptr.
41070
41071 2001-01-20  Jim Meyering  <meyering@lucent.com>
41072
41073         Be sure that headers are checked before used in code compiled
41074         for the type checks.
41075         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
41076         In place of that, invoke jm_CHECK_ALL_TYPES.
41077         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
41078         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
41079         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
41080         The check for ssize_t was mistakenly run before the test for unistd.h.
41081
41082         The configure-time check for stdbool.h was missing.
41083         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
41084         (jm_PREREQ_HASH): New function.
41085
41086 2001-01-17  Jim Meyering  <meyering@lucent.com>
41087
41088         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
41089         for autoconf-2.49c.
41090         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
41091
41092 2001-01-16  Jim Meyering  <meyering@lucent.com>
41093
41094         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
41095         From Bruno Haible.
41096
41097 2001-01-14  Jim Meyering  <meyering@lucent.com>
41098
41099         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
41100         foo and bar.  Create conftestdir/ in the script, not in the C code.
41101         Remove directories in the script, not in the C code.
41102         Remove conftestdir{,2} before trying to create the directory.
41103         Make the entire configure script fail if the mkdir fails.
41104
41105 2001-01-14  Jim Meyering  <meyering@lucent.com>
41106
41107         * lib/rename.c: New file.  From Volker Borchert.
41108         Include stdlib.h, string.h or strings.h, and xalloc.h.
41109         Use strip_trailing_slashes rather than open-coding it.
41110
41111 2001-01-03  Paul Eggert  <eggert@twinsun.com>
41112
41113         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
41114
41115 2001-01-03  Jim Meyering  <meyering@lucent.com>
41116
41117         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
41118         of local `inptr' to avoid warning with some system declarations of
41119         iconv.
41120
41121 2001-01-02  Volker Borchert  <bt@teknon.de>
41122
41123         * m4/rename.m4: New file.
41124         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
41125
41126 2001-01-01  Jim Meyering  <meyering@lucent.com>
41127
41128         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
41129         even on systems with utmpx.h.  It's necessary for the declaration of
41130         utmp's ut_user member.  Reported by Andreas Jaeger.
41131
41132         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
41133         available. They are required for the declarations of getgrgid and
41134         getpwuid resp.
41135         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
41136         Reported by Andreas Jaeger.
41137
41138 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
41139
41140         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
41141         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
41142         so `make install' also works in VPATH builds.
41143
41144 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
41145
41146         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
41147         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
41148         can be used in subdirectories.
41149
41150 2000-12-29  Paul Eggert  <eggert@twinsun.com>
41151
41152         * lib/modechange.c: Do not assume that mode_t uses the
41153         traditional octal encoding.  E.g. "chmod 1 FOO" should set
41154         the other-execute bit of FOO even if S_IXOTH != 1.
41155
41156         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
41157         WOTH, XOTH, ALLM): New macros.
41158         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
41159          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
41160         Use them.
41161         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
41162         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
41163         (mode_compile):
41164         No need to use uintmax_t; unsigned long is long enough.
41165         Don't bother to get suffix since we don't use it.
41166
41167 2000-12-26  Jim Meyering  <meyering@lucent.com>
41168
41169         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
41170         better with autoheader.
41171
41172 2000-12-24  Jim Meyering  <meyering@lucent.com>
41173
41174         * lib/hash.c (is_prime): Return explicit boolean values.
41175         (hash_get_first): Return NULL to appease Irix5.6's 89.
41176         Reported by Nelson Beebe.
41177
41178 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
41179
41180         * lib/localcharset.c (locale_charset): Add support for Win32.
41181
41182 2000-12-18  Paul Eggert  <eggert@twinsun.com>
41183
41184         * lib/physmem.h, lib/physmem.c: New files.
41185
41186         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
41187         (noinst_HEADERS): Add physmem.h.
41188
41189         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
41190         't' for compatibility with Solaris 8 sort.
41191
41192 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
41193
41194         * lib/config.charset: Add support for BeOS.
41195
41196 2000-12-17  Jim Meyering  <meyering@lucent.com>
41197
41198         * m4/dos.m4 (jm_AC_DOS): New file and macro.
41199         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
41200
41201 2000-12-16  Jim Meyering  <meyering@lucent.com>
41202
41203         This bug had a serious impact on chown: `chown N:M FILE' (for integer
41204         N and M) would have treated it like `chown N:N FILE'.
41205
41206         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
41207
41208 2000-12-16  Jim Meyering  <meyering@lucent.com>
41209
41210         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
41211         SHELLS_FILE to a file name that's useful on djgpp systems.
41212         Include stdlib.h.
41213         (ADDITIONAL_DEFAULT_SHELLS): Define.
41214         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
41215         Based mostly on a patch from Prashant TR.
41216
41217 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
41218
41219         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
41220         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
41221         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
41222
41223 2000-12-08  Andreas Schwab  <schwab@suse.de>
41224
41225         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
41226         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
41227
41228 2000-12-07  Jim Meyering  <meyering@lucent.com>
41229
41230         * lib/stripslash.c (ISSLASH): Define.
41231         (strip_trailing_slashes): Use ISSLASH rather than comparing against
41232         `/'.
41233         From Prashant TR.
41234
41235         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
41236         (dir_name_r): Declare this function as static.
41237         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
41238         manifest itself on a name containing a mix of slashes and
41239         backslashes.
41240         Make this function work with names starting with a DOS-style
41241         drive letter and colon prefix.
41242         (dir_name): Append `.' if necessary.
41243         Based mostly on patches from Prashant TR and Eli Zaretskii.
41244
41245         * lib/dirname.h (dir_name_r): Remove prototype.
41246
41247 2000-12-06  Paul Eggert  <eggert@twinsun.com>
41248
41249         * m4/off_t-format.m4: Remove this file.
41250         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
41251
41252 2000-12-06  Jim Meyering  <meyering@lucent.com>
41253
41254         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
41255         replacement strtoull, we may well need the replacement strtoul, too.
41256         Check for declarations of strtoul and strtoull.
41257         Check for strtol.  Mainly as a cue to cause automake to include
41258         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
41259         Check for limits.h -- strtol.c needs it.
41260
41261 2000-12-05  Jim Meyering  <meyering@lucent.com>
41262
41263         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
41264
41265 2000-12-04  Jim Meyering  <meyering@lucent.com>
41266
41267         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
41268         Also include memory.h, stdlib.h, unistd.h if appropriate.
41269         Reported by Andreas Jaeger (conflicting declaration of malloc).
41270
41271 2000-12-02  Jim Meyering  <meyering@lucent.com>
41272
41273         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
41274         * m4/jm-macros.m4 (jm_MACROS): require it.
41275
41276 2000-12-02  Jim Meyering  <meyering@lucent.com>
41277
41278         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
41279
41280 2000-12-01  Paul Eggert  <eggert@twinsun.com>
41281
41282         * lib/memrchr.c: Include <config.h> before any system include file.
41283
41284 2000-11-30  Jim Meyering  <meyering@lucent.com>
41285
41286         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
41287
41288 2000-11-30  Jim Meyering  <meyering@lucent.com>
41289
41290         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
41291
41292 2000-11-29  Paul Eggert  <eggert@twinsun.com>
41293
41294         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
41295
41296 2000-11-26  Jim Meyering  <meyering@lucent.com>
41297
41298         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
41299
41300 2000-11-22  Paul Eggert  <eggert@twinsun.com>
41301
41302         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
41303         size of (size_t) -1; it's not portable.
41304
41305 2000-11-17  Jim Meyering  <meyering@lucent.com>
41306
41307         * lib/strstr.c: Update from GNU libc.
41308
41309 2000-11-17  Akim Demaille  <akim@epita.fr>
41310
41311         * lib/obstack.h: Formatting changes.
41312         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
41313         prevent type checking.
41314         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
41315         cast the value to (void *): assigning a `foo *' to a `void *'
41316         variable is valid.
41317         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
41318
41319 2000-11-16  Jim Meyering  <meyering@lucent.com>
41320
41321         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
41322
41323 2000-11-11  Jim Meyering  <meyering@lucent.com>
41324
41325         * lib/error.c: Add a couple #includes, merging from GNU libc version.
41326
41327 2000-11-10  Jim Meyering  <meyering@lucent.com>
41328
41329         * lib/obstack.h: Update from GNU libc.
41330         * lib/obstack.c: Likewise.
41331
41332 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
41333
41334         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
41335
41336 2000-11-06  Paul Eggert  <eggert@twinsun.com>
41337
41338         * lib/getusershell.c (setusershell): Use rewind rather than
41339         fseek/fseeko, to avoid configuration hassles with fseeko.
41340         Don't bother opening SHELLS_FILE if shellstream is NULL;
41341         it's not necessary.
41342
41343 2000-11-05  Jim Meyering  <meyering@lucent.com>
41344
41345         * lib/makepath.h (make_dir): Declare.
41346         * lib/makepath.c (make_dir): Remove `static' attribute.
41347         Tweak a comment.
41348
41349 2000-11-04  Jim Meyering  <meyering@lucent.com>
41350
41351         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
41352
41353 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
41354
41355         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
41356         last one in a bucket, advance to the next bucket.
41357
41358 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
41359
41360         * lib/fnmatch.c: Do not comment out all the code if we are using
41361         the GNU C library, because in some cases we are replacing buggy
41362         code in the GNU C library itself.
41363
41364 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
41365
41366         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
41367         (regex_compile): Catch bogus \(\1\).
41368
41369 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41370
41371         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
41372         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
41373         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
41374
41375 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41376
41377         * lib/error.h, getline.h, modechange.h:
41378         Remove "2000" from Copyright line, as the file hasn't been
41379         changed this year other than in the copyright notice.
41380
41381         * lib/xalloc.h: Add "2000" to Copyright line, as this file
41382         was changed this year.
41383
41384 2000-10-29  Jim Meyering  <meyering@lucent.com>
41385
41386         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
41387         renaming.
41388         * m4/ls-mntd-fs.m4: Likewise
41389
41390 2000-10-29  Jim Meyering  <meyering@lucent.com>
41391
41392         * lib/xstat.in: Fix grammar in comment.
41393
41394 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
41395
41396         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
41397         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
41398         doesn't define __restrict_arr.
41399
41400 2000-10-28  Jim Meyering  <meyering@lucent.com>
41401
41402         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
41403         (jm_PREREQ_MEMCHR): New function.
41404
41405 2000-10-28  Jim Meyering  <meyering@lucent.com>
41406
41407         * lib/memchr.c: Update from libc.
41408         Adjust for portability:
41409         [HAVE_STDLIB_H]: Include stdlib.h.
41410         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
41411         Undef __memchr, too.
41412         [!weak_alias]: Define __memchr to memchr.
41413
41414         * lib/regex.c: Update from libc.
41415         * lib/regex.h: Likewise.
41416         * lib/getopt1.c: Likewise.
41417         * lib/memcmp.c: Likewise.
41418
41419         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
41420         Avoid using fseek, when possible -- it's broken by design.
41421         Patch by Ulrich Drepper.
41422
41423 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
41424
41425         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
41426         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
41427         Giving in to popular pressure to shut up the compiler with casts.
41428
41429 2000-10-26  Jim Meyering  <meyering@lucent.com>
41430
41431         * lib/strftime.c: Update from libc.
41432
41433 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
41434
41435         * regex.c: More `unsigned char' -> `re_char' changes.
41436         Also change several `int' into `re_wchar_t'.
41437         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
41438         (PUSH_FAILURE_POINTER): Don't cast any more.
41439         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
41440         We want GCC to complain, since this piece of code makes
41441         re_match non-reentrant, which *should* be fixed.
41442         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
41443         (EXTEND_BUFFER): Use RETALLOC.
41444         (SET_LIST_BIT): Don't cast.
41445         (re_wchar_t): New type.
41446         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
41447         that those two functions will always properly return.
41448         (IMMEDIATE_QUIT_CHECK): Cast to void.
41449         (analyse_first): Use recursion rather than an explicit stack.
41450         (re_compile_fastmap): Can't fail anymore.
41451         (re_search_2): Don't check re_compile_fastmap for failure.
41452         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
41453         Now also sets the new value (passed in a new argument).
41454         (re_match_2_internal): Use it.
41455         Also, use a new var `reg' of type size_t when looping through regs
41456         rather than reuse the inappropriate `mcnt'.
41457
41458 2000-10-25  Jim Meyering  <meyering@lucent.com>
41459
41460         * lib/obstack.c: Update from libc.
41461
41462 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
41463
41464         * regex.c (regex_compile): Change the way of handling a range from
41465         a char less than 256 to a char not less than 256.
41466
41467 2000-10-24  Andrew Innes  <andrewi@gnu.org>
41468
41469         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
41470         NT-Emacs only.
41471         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
41472         so that re_search functions only quit when callers expect them to.
41473
41474 2000-10-23  Jim Meyering  <meyering@lucent.com>
41475
41476         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
41477         wrong.  That set_locale call must not have any side effects.
41478         From Paul Eggert.
41479
41480 2000-10-22  Jim Meyering  <meyering@lucent.com>
41481
41482         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
41483         [CYCLIC]: Remove now-unused definition.
41484
41485         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
41486         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
41487         Suggestion from Ulrich Drepper.
41488
41489 2000-10-21  Jim Meyering  <meyering@lucent.com>
41490
41491         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
41492         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
41493         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
41494
41495 2000-10-21  Jim Meyering  <meyering@lucent.com>
41496
41497         * lib/dirname.c (memrchr): Declare if necessary.
41498         (dir_name): Remove the restriction that there be no
41499         trailing slashes.  Now, this code skips past them, effectively
41500         ignoring them.
41501         [TEST_DIRNAME] (main): New unit tests.
41502
41503         * lib/memrchr.c: New file from GNU libc.
41504         Undef __memrchr, too.
41505         [!weak_alias]: Define __memrchr to memrchr.
41506         Guard weak_alias use with `#ifdef weak_alias'.
41507
41508 2000-10-21  Jim Meyering  <meyering@lucent.com>
41509
41510         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
41511         (dir_name): Use dir_name_r.
41512         * lib/dirname.h (dir_name_r): Declare it.
41513
41514 2000-10-17  Jim Meyering  <meyering@lucent.com>
41515
41516         * lib/quote.h (PARAMS): Define and use.
41517         Reported by Akim Demaille.
41518
41519         * lib/getopt.c: Update from libc.
41520
41521 2000-10-16  Jim Meyering  <meyering@lucent.com>
41522
41523         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
41524         setlocale.
41525         From Jan Fedak.
41526
41527 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
41528
41529         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
41530
41531 2000-09-25  Jim Meyering  <meyering@lucent.com>
41532
41533         * lib/md5.h (rol): Define (from GnuPG).
41534
41535         * lib/sha.c: Give credit (GnuPG) where due.
41536         (M): Use rol rather than open-coding it.
41537         Add a FIXME comment.
41538
41539 2000-09-21  Jim Meyering  <meyering@lucent.com>
41540
41541         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
41542         Reported by Michael Stone.
41543
41544 2000-09-20  Jim Meyering  <meyering@lucent.com>
41545
41546         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
41547         (noinst_HEADERS): Add sha.h.
41548         Based on code from Scott G. Miller and from GnuPG.
41549
41550 2000-09-18  Jim Meyering  <meyering@lucent.com>
41551
41552         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
41553         LIBS. Otherwise, everyone ends up linking with -lelf for some
41554         configurations.
41555         Reported by Mike Stone.
41556
41557 2000-09-15  Jim Meyering  <meyering@lucent.com>
41558
41559         * lib/regex.c: Update from libc.
41560
41561 2000-09-10  Jim Meyering  <meyering@lucent.com>
41562
41563         * lib/getopt.c (_getopt_internal): Update from glibc.
41564
41565 2000-09-09  Jim Meyering  <meyering@lucent.com>
41566
41567         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
41568         think it should be used as a general replacement for isascii.
41569         * lib/fnmatch.c: Likewise.
41570         * lib/mbswidth.c: Likewise
41571         * lib/regex.c: Likewise.
41572
41573         Don't use atoi.
41574         * lib/userspec.c: Include sys/param.h and limits.h.
41575         Include xstrtol.h.
41576         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
41577         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
41578         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
41579         UID, GID.  Check range.
41580
41581 2000-09-06  Jim Meyering  <meyering@lucent.com>
41582
41583         * lib/getopt.c (_getopt_internal): Update from glibc.
41584
41585 2000-08-30  Jim Meyering  <meyering@lucent.com>
41586
41587         * lib/strftime.c: Merge in changes from GNU libc.
41588
41589 2000-08-26  Jim Meyering  <meyering@lucent.com>
41590
41591         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
41592         * m4/fpending.m4: New file.
41593
41594 2000-08-26  Jim Meyering  <meyering@lucent.com>
41595
41596         * lib/closeout.c: Include "__fpending.h".
41597         (close_stdout_status): Return right away if there's nothing to flush.
41598
41599         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
41600         * lib/__fpending.c: New file.
41601         * lib/__fpending.h: New file.
41602
41603 2000-08-20  Jim Meyering  <meyering@lucent.com>
41604
41605         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
41606         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
41607         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
41608
41609 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
41610
41611         Improve fileutils installation on systems where running
41612         programs (like install) can't be unlinked.
41613         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
41614         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
41615
41616 2000-08-07  Paul Eggert  <eggert@twinsun.com>
41617
41618         Standardize on "memory exhausted" instead of "Memory exhausted"
41619         or "virtual memory exhausted".
41620         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
41621         "virtual memory exhausted".
41622         * lib/same.c (same_name): Invoke xalloc_die instead of printing
41623         our own message.
41624         * lib/userspec.c (parse_user_spec): Likewise.
41625         * lib/bumpalloc.h: comment fix
41626         * lib/same.c, userspec.c: Include xalloc.h.
41627
41628         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
41629         not char *const and pointing to a constant array.
41630         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
41631         (xrealloc): Comment fix.
41632
41633         * lib/userspec.c (parse_user_spec):
41634         Don't translate a message until just before returning,
41635         to avoid unnecessary translation.
41636
41637 2000-08-07  Jim Meyering  <meyering@lucent.com>
41638
41639         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
41640         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
41641         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
41642         getgroups.c, gethostname.c, getopt.h, group-member.c,
41643         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
41644         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
41645         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
41646         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
41647         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
41648         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
41649         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
41650         yesno.c: Back out Copyright date changes for each file with no change
41651         this year.  This eases coordination with other programs using the same
41652         source code modules.  From Paul Eggert.
41653
41654 2000-08-06  Paul Eggert  <eggert@twinsun.com>
41655
41656         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
41657         not char, for compatibility with glibc 2.1.3 strftime.c.
41658
41659 2000-08-03  Greg McGary  <greg@mcgary.org>
41660
41661         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
41662         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
41663         (EXTEND_BUFFER): Use them.
41664
41665 2000-08-01  Jim Meyering  <meyering@lucent.com>
41666
41667         * lib/dirname.c (ISSLASH): Define.
41668         (BACKSLASH_IS_PATH_SEPARATOR): Define.
41669         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
41670         both `\' and `/' may be use as path separators.
41671         Based on a patch from Prashant TR.
41672
41673 2000-07-31  Paul Eggert  <eggert@twinsun.com>
41674
41675         * lib/quotearg.c (quotearg_n_options): Don't make the initial
41676         slot vector a constant, since it might get modified.
41677
41678 2000-07-31  Jim Meyering  <meyering@lucent.com>
41679
41680         * lib/xmalloc.c: Use `virtual memory exhausted', not
41681         `Memory exhausted'.
41682         * lib/obstack.c (print_and_abort): Likewise.
41683
41684 2000-07-30  Paul Eggert  <eggert@twinsun.com>
41685
41686         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
41687         buffer, so that the caller can always quote one small
41688         component of a "memory exhausted" message in slot 0.
41689         From a suggestion by Jim Meyering.
41690
41691 2000-07-30  Jim Meyering  <meyering@lucent.com>
41692
41693         * lib/makepath.c (make_path): Quote the other instance, too.
41694
41695         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
41696         (STATIC_BUF_SIZE): Define.
41697         (quotearg_n_options): Use only statically allocated storage when
41698         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
41699         than STATIC_BUF_SIZE.
41700
41701 2000-07-29  Jim Meyering  <meyering@lucent.com>
41702
41703         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
41704         * lib/dirname.c (dir_name): Likewise.
41705
41706         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
41707         `/'.
41708
41709         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
41710         (dir_name): Assert that there are no trailing slashes.
41711
41712 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
41713
41714         * lib/mbswidth.h (mbswidth): Add a flags argument.
41715         (mbswidth): New declaration.
41716         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
41717         * lib/mbswidth.c (mbswidth): Add a flags argument.
41718         (mbsnwidth): New function.
41719
41720 2000-07-24  Jim Meyering  <meyering@lucent.com>
41721
41722         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
41723
41724 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41725
41726         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
41727
41728 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41729
41730         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
41731         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
41732         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
41733         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
41734         invoke multibyte primitives.
41735
41736 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41737
41738         * lib/quotearg.c:
41739         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
41740         so that mbstate_t is always defined.
41741
41742         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
41743         be 1 in at least one GCC installation, and this configuration
41744         error is likely to be common.  Ignoring MB_LEN_MAX hurts
41745         performance on hosts that have mbrtowc but have only unibyte
41746         locales, but I assume these hosts are rare.
41747
41748 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41749
41750         * lib/mbswidth.c (_XOPEN_SOURCE):
41751         Don't define; this causes problems on Solaris 7.
41752         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
41753
41754 2000-07-23  Jim Meyering  <meyering@lucent.com>
41755
41756         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
41757         too: getgrgid, getpwuid, getuid.
41758
41759 2000-07-23  Jim Meyering  <meyering@lucent.com>
41760
41761         * lib/basename.c (base_name): Add an assertion.
41762
41763 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
41764
41765         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
41766         shadow its mbsinit function.
41767
41768 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41769
41770         * lib/mbswidth.h: New file.
41771         * lib/mbswidth.c: New file.
41772         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
41773         (noinst_HEADERS): Add mbswidth.h.
41774
41775 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41776
41777         * lib/config.charset: Add support for FreeBSD. Improve support for
41778         HP-UX and IRIX 6.
41779
41780 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
41781
41782         * m4/mbswidth.m4: New file.
41783         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
41784
41785 2000-07-15  Jim Meyering  <meyering@lucent.com>
41786
41787         * lib/makepath.c: Include quote.h.
41788         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
41789         corresponding argument in a `quote (...)' call.
41790         Give better diagnostics.
41791
41792         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
41793         (noinst_HEADERS): Add quote.h.
41794
41795         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
41796         from tar's src/misc.c.
41797         * lib/quote.h: New file.  Prototypes for same.
41798
41799 2000-07-14  Paul Eggert  <eggert@twinsun.com>
41800
41801         From a suggestion by Bruno Haible.
41802         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
41803         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
41804         to decide whether to define the BeOS workaround macro;
41805         this adjusts to the change to AC_MBSTATE_T.
41806
41807 2000-07-14  Jim Meyering  <meyering@lucent.com>
41808
41809         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
41810         jm_AC_TYPE_UINTMAX_T.
41811
41812 2000-07-13  Paul Eggert  <eggert@twinsun.com>
41813
41814         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
41815
41816         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
41817         quotearg_buffer_restyled): Add support for
41818         clocale_quoting_style.  Undo previous change to
41819         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
41820         and "{RIGHT QUOTATION MARK}" msgids.
41821
41822 2000-07-10  Paul Eggert  <eggert@twinsun.com>
41823
41824         From a suggestion by Bruno Haible.
41825         * m4/mbstate_t.m4 (AC_MBSTATE_T):
41826         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
41827         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
41828         and mbstate_t, to a single-part test that simply defines mbstate_t.
41829         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
41830         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
41831
41832 2000-07-10  Jim Meyering  <meyering@lucent.com>
41833
41834         * m4/strerror_r.m4: Mirror the correction made in autoconf.
41835
41836         * m4/gnu-source.m4: Output to confdefs.h directly.
41837         Suggestion from Akim Demaille.
41838
41839 2000-07-09  Paul Eggert  <eggert@twinsun.com>
41840
41841         The old behavior of quoting `like this' doesn't look good with
41842         newer, ISO-style fonts.  See:
41843         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
41844
41845         Instead, quote "like this" by default.  Let the translator
41846         tailor the locale-specific quoting behavior by providing
41847         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
41848
41849         * lib/quotearg.c (N_): New macro.
41850         (gettext_default): New function.
41851         (quotearg_buffer_restyled): Use
41852         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
41853         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
41854
41855 2000-07-09  Jim Meyering  <meyering@lucent.com>
41856
41857         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
41858         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
41859
41860         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
41861         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
41862
41863 2000-07-09  Jim Meyering  <meyering@lucent.com>
41864
41865         * lib/Most files: Update copyright dates to include 2000.
41866
41867 2000-07-08  Jim Meyering  <meyering@lucent.com>
41868
41869         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
41870         if not defined.
41871         (xgethostname): Remove now-unnecessary #ifdef.
41872         Move declaration of `err' into loop where it's used.
41873
41874 2000-07-05  Paul Eggert  <eggert@twinsun.com>
41875         and Bruno Haible  <haible@clisp.cons.org>
41876
41877         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
41878         only if the test for an object-type mbstate_t fails.  This
41879         prevents us from mistakenly reporting that mbstate_t is a
41880         system object type after we "#define mbstate_t int" to work
41881         around its lack.
41882
41883 2000-07-05  Paul Eggert  <eggert@twinsun.com>
41884         and Bruno Haible  <haible@clisp.cons.org>
41885
41886         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
41887
41888 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41889
41890         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
41891         to strerror_r.
41892         Include <ctype.h> for use of isalpha.
41893
41894 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41895
41896         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
41897         by allocating a larger buffer. Test the gethostname return value for
41898         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
41899         returns an error and ENAMETOOLONG isn't defined.
41900
41901 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41902
41903         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
41904         dimension.
41905
41906 2000-07-04  Jim Meyering  <meyering@lucent.com>
41907
41908         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
41909         of the deprecated AC_CHECKING.
41910
41911 2000-07-04  Jim Meyering  <meyering@lucent.com>
41912
41913         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
41914         Reported by Bruno Haible.
41915
41916 2000-07-04  Jim Meyering  <meyering@lucent.com>
41917
41918         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
41919         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
41920         lacks mbrtowc.
41921
41922 2000-07-03  Paul Eggert  <eggert@twinsun.com>
41923
41924         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
41925         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
41926
41927 2000-07-03  Paul Eggert  <eggert@twinsun.com>
41928         and Bruno Haible  <haible@clisp.cons.org>
41929
41930         * lib/quotearg.c (mbrtowc):
41931         Assign to *pwc, and return 1 only if result is nonzero.
41932         (iswprint): Use ISPRINT when substituting our own mbrtowc.
41933
41934 2000-07-03  Jim Meyering  <meyering@lucent.com>
41935
41936         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
41937
41938 2000-07-03  Jim Meyering  <meyering@lucent.com>
41939
41940         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
41941         This is necessary to get a definition of e.g., UTMP_FILE on
41942         HP-UX 10.20.
41943         From Bob Proulx.
41944
41945 2000-07-02  Jim Meyering  <meyering@lucent.com>
41946
41947         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
41948
41949         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
41950         AC_LIBOBJ(function_name).
41951         * m4/chown.m4: Likewise.
41952         * m4/fnmatch.m4: Likewise.
41953         * m4/ftruncate.m4: Likewise.
41954         * m4/getgroups.m4: Likewise.
41955         * m4/getline.m4: Likewise.
41956         * m4/group-member.m4: Likewise.
41957         * m4/jm-macros.m4: Likewise.
41958         * m4/lstat.m4: Likewise.
41959         * m4/malloc.m4: Likewise.
41960         * m4/memcmp.m4: Likewise.
41961         * m4/nanosleep.m4: Likewise.
41962         * m4/putenv.m4: Likewise.
41963         * m4/realloc.m4: Likewise.
41964         * m4/regex.m4: Likewise.
41965         * m4/stat.m4: Likewise.
41966         * m4/strftime.m4: Likewise.
41967
41968 2000-07-02  Jim Meyering  <meyering@lucent.com>
41969
41970         * lib/quotearg.c (mbstate_t): Don't define here.
41971
41972 2000-07-02  Jim Meyering  <meyering@lucent.com>
41973
41974         * lib/nanosleep.c (SIGCONT): Define if not already defined.
41975
41976 2000-07-01  Jim Meyering  <meyering@lucent.com>
41977
41978         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
41979
41980 2000-07-01  Jim Meyering  <meyering@lucent.com>
41981
41982         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
41983         problem.
41984
41985 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
41986
41987         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
41988         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
41989
41990 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
41991
41992         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
41993         per change in ../m4/ls-mntd-fs.m4.
41994         (read_filesystem_list): Ignore symbolic links.
41995
41996 2000-06-29  Jim Meyering  <meyering@lucent.com>
41997
41998         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
41999         for declaration of strcmp.
42000
42001         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
42002
42003         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
42004         Avoid warning by casting result to `char *' to remove `const'.
42005
42006 2000-06-28  Jim Meyering  <meyering@lucent.com>
42007
42008         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
42009         included by quotearg.c, for which we perform this test.  From
42010         Bruno Haible.
42011
42012 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42013
42014         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
42015         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
42016         <utmpx.h> exists, put readutmp.o into LIBOBJS.
42017
42018 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42019
42020         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
42021
42022 2000-06-26  Paul Eggert  <eggert@twinsun.com>
42023
42024         savedir now sets errno on failure and invokes xmalloc to get memory.
42025         Fix a couple of other minor bugs while we're at it.
42026
42027         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
42028         (NAMLEN): Remove macro.
42029         (malloc, realloc): Remove decls.
42030         (stpcpy): Likewise.
42031         ("xalloc.h"): Include.
42032         (NAME_SIZE_DEFAULT): New macro.
42033         (savedir): Use xmalloc / xrealloc to allocate memory.
42034         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
42035         Skip "" directory entries.
42036         Use strlen to calculate directory entry length, since the old method
42037         is rarely used these days and isn't worth supporting.
42038         Don't use a pointer after freeing it.
42039         Check for integer overflow when calculating allocation size.
42040         Use memcpy to copy entries, instead of stpcpy.
42041         Set errno properly when returning NULL.
42042         Check for readdir error.
42043
42044 2000-06-26  Jim Meyering  <meyering@lucent.com>
42045
42046         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
42047
42048 2000-06-25  Jim Meyering  <meyering@lucent.com>
42049
42050         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
42051         Linux header bug when _XOPEN_SOURCE is defined to 500.
42052
42053 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42054
42055         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
42056         deficiency.
42057
42058 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42059
42060         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
42061         Include xalloc.h.
42062         Don't include <stdlib.h>.  Don't declare malloc, realloc.
42063
42064 2000-06-24  Jim Meyering  <meyering@lucent.com>
42065
42066         * m4/strerror_r.m4: Revive this file -- to try out an experimental
42067         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
42068         for which strerror does return char*, but which lacks a conveniently
42069         accessible declaration of the function.  If the compile-test says
42070         strerror_r doesn't work, then resort to a `run'-test that works on
42071         BeOS and segfaults on DEC Unix.
42072
42073 2000-06-24  Jim Meyering  <meyering@lucent.com>
42074
42075         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
42076
42077 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42078
42079         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
42080         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
42081
42082 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42083
42084         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
42085         (mbrtowc, mbstate_t): Define substitutes if
42086         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
42087         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
42088         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
42089
42090 2000-06-23  Jim Meyering  <meyering@lucent.com>
42091
42092         * m4/afs.m4: Add missing AC_MSG_RESULT.
42093         Reported by Bruno Haible.
42094
42095         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
42096         Suggestion from Bruno Haible.
42097
42098 2000-06-23  Jim Meyering  <meyering@lucent.com>
42099
42100         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
42101
42102 2000-06-21  Jim Meyering  <meyering@lucent.com>
42103
42104         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
42105
42106 2000-06-21  Jim Meyering  <meyering@lucent.com>
42107
42108         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
42109         (noinst_HEADERS): Add getstr.h.
42110
42111         * lib/getline.c (getstr): Move into a separate file.
42112         * lib/getstr.c (getstr): New file, extracted from getline.c, with
42113         the following changes: new parameter, delim2; both delim[12]
42114         parameters have type `int', not `char'.  The latter would lose
42115         with 8-bit delimiters.
42116         * lib/getstr.h: New file.
42117
42118 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42119
42120         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
42121         than 1024, return a memory chunk of least possible size, instead
42122         of size PATH_MAX + 2. In the loop, increment the size proportionally.
42123         Use free/xmalloc instead of xrealloc to avoid copying for very long
42124         paths.
42125
42126 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42127
42128         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
42129         the empty string.
42130
42131 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42132
42133         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
42134         address, not strdup.  Include <stdlib.h> and don't declare free().
42135
42136 2000-06-19  Jim Meyering  <meyering@lucent.com>
42137
42138         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
42139
42140 2000-06-18  Jim Meyering  <meyering@lucent.com>
42141
42142         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
42143
42144         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
42145         `checking whether...' message to be consistent with that of the
42146         lstat test.
42147
42148 2000-06-18  Jim Meyering  <meyering@lucent.com>
42149
42150         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
42151         Besides, these days every porting target provides a mkdir function.
42152
42153         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
42154         needed. (this snippet comes from src/system.h).
42155
42156 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
42157
42158         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
42159
42160 2000-06-15  Paul Eggert  <eggert@twinsun.com>
42161
42162         * lib/human.c (adjust_value): New function.
42163         (human_readable_inexact): Apply rounding style even when
42164         printing approximate values.
42165
42166 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42167
42168         * lib/human.c (human_readable_inexact): Allow an input block
42169         size that is not a multiple of the output block size, and vice versa.
42170         Reported by Piergiorgio Sartor.
42171
42172 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42173
42174         * lib/getdate.y (get_date): Apply relative times after time
42175         zone indicator, not before.  Reported by Todd A. Jacobs.
42176
42177 2000-06-13  Jim Meyering  <meyering@lucent.com>
42178
42179         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
42180
42181         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
42182
42183 2000-06-12  Paul Eggert  <eggert@twinsun.com>
42184
42185         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
42186
42187 2000-06-12  Jim Meyering  <meyering@lucent.com>
42188
42189         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
42190         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
42191         optional argument.
42192         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
42193         the optional argument, `lib'.
42194
42195 2000-06-08  Jim Meyering  <meyering@lucent.com>
42196
42197         * m4/largefile.m4: Remove file (now that it's part of autoconf).
42198
42199 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42200
42201         Rewrite largefile configuration so that we don't need to run
42202         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
42203         AC_CANONICAL_HOST in configure.in -- jmm]
42204
42205         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
42206         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
42207         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
42208         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
42209         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
42210         All uses changed.
42211         Instead of inspecting the output of getconf, try to compile the
42212         test program without and with the macro definition.
42213         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
42214         for getconf.  Instead, check for the needed flags by compiling
42215         test programs.
42216
42217 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42218
42219         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
42220
42221 2000-06-04  Jim Meyering  <meyering@lucent.com>
42222
42223         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
42224         SunOS 4.1.4 for which gid_t is an unsigned type.
42225
42226 2000-06-03  Jim Meyering  <meyering@lucent.com>
42227
42228         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
42229         now that autoconf requires that.
42230
42231         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
42232         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
42233         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
42234
42235 2000-06-03  Jim Meyering  <meyering@lucent.com>
42236
42237         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
42238
42239 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42240
42241         * m4/glibc21.m4: New file.
42242         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
42243
42244 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42245
42246         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
42247         newer, don't install charset.alias.
42248         * lib/config.charset: Change the Linux/glibc rules so they become empty
42249         on glibc-2.1 or newer.
42250
42251 2000-06-02  Jim Meyering  <meyering@lucent.com>
42252
42253         * lib/mountlist.c: Back out last change.  Instead, do this...
42254         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
42255         me_dummy member using the same `ignore'-testing code.
42256         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
42257         fs_type strings.
42258         From Mark D. Roth.
42259
42260 2000-05-29  Jim Meyering  <meyering@lucent.com>
42261
42262         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
42263         mounts with the `ignore' attribute.  Based on a patch from
42264         Mark D. Roth.
42265
42266 2000-05-28  Jim Meyering  <meyering@lucent.com>
42267
42268         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
42269         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42270         * m4/stat.m4: Likewise.
42271         * m4/lstat.m4: Likewise.
42272         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
42273
42274         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
42275         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
42276
42277 2000-05-26  Jim Meyering  <meyering@lucent.com>
42278
42279         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
42280
42281 2000-05-24  Jim Meyering  <meyering@lucent.com>
42282
42283         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
42284         autoconf requires that.
42285         * m4/lib-check.m4: Likewise.
42286         * m4/jm-macros.m4: Likewise.
42287         * m4/strftime.m4: Likewise.
42288
42289         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
42290         AC_CHECK_DECLS, now that autoconf requires that.
42291
42292 2000-05-22  Jim Meyering  <meyering@lucent.com>
42293
42294         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42295         * m4/lstat.m4: Likewise.
42296
42297 2000-05-22  Jim Meyering  <meyering@lucent.com>
42298
42299         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
42300
42301 2000-05-20  Jim Meyering  <meyering@lucent.com>
42302
42303         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
42304         (jm_PREREQ): Use it.
42305
42306 2000-05-18  Jim Meyering  <meyering@lucent.com>
42307
42308         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
42309         back, too, since it may have been modified by allocate_entry.
42310         (hash_delete): Rewrite to use neither the assignment operator
42311         nor the comma operator in an if-expression.
42312
42313 2000-05-15  Paul Eggert  <eggert@twinsun.com>
42314
42315         * lib/closeout.c:
42316         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
42317         Remove; no longer needed.
42318         "quotearg.h": Add include.
42319         (file_name): Do not bother to explicitly initialize to NULL; it's less
42320         efficient on some hosts.
42321         (close_stdout_status): Remove test as to whether stdout was already
42322         closed; it breaks for the case "echo x | sort >&-".
42323         Quote file name colons.
42324         Do not assume that _("write error") lacks format strings.
42325
42326 2000-05-15  Jim Meyering  <meyering@lucent.com>
42327
42328         * lib/version-etc.c (version_etc_copyright): Update the copyright
42329         string used in all --version output.
42330
42331 2000-05-14  Jim Meyering  <meyering@lucent.com>
42332
42333         * lib/closeout.c (close_stdout_set_file_name): New function.
42334         (close_stdout_status): Use new file-scoped global.
42335         Return right away if fstat says the stdout file descriptor is invalid.
42336         * lib/closeout.h (close_stdout_set_file_name): Declare.
42337
42338 2000-05-10  Jim Meyering  <meyering@lucent.com>
42339
42340         * lib/closeout.c [default_exit_status]: New file-scoped variable.
42341         (close_stdout_set_status): New function.
42342         * lib/closeout.h (close_stdout_set_status): Declare.
42343
42344 2000-05-09  Jim Meyering  <meyering@lucent.com>
42345
42346         * m4/gettext.m4: Rename this...
42347         * m4/libintl.m4: ...to this.
42348
42349 2000-05-08  Jim Meyering  <meyering@lucent.com>
42350
42351         * lib/long-options.c: Don't include closeout.h.
42352         (parse_long_options): Don't call close_stdout for --version.
42353
42354 2000-05-06  Paul Eggert  <eggert@twinsun.com>
42355
42356         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
42357         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
42358         2.1.3 bug.  This avoids a clash when files like regex.c define
42359         _GNU_SOURCE.
42360
42361 2000-05-06  Jim Meyering  <meyering@lucent.com>
42362
42363         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
42364         (AC_REPLACE_FUNCS): Add strnlen.
42365
42366         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
42367         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
42368
42369         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
42370         AC_SEARCH_LIBS call for nanosleep.
42371         (LIB_NANOSLEEP): Set and AC_SUBST.
42372
42373 2000-05-06  Jim Meyering  <meyering@lucent.com>
42374
42375         * lib/strnlen.c: Undefine __strnlen and strnlen.
42376         [!weak_alias]: Define __strnlen to strnlen.
42377
42378         * lib/atexit.c: New file, from libiberty.
42379
42380 2000-05-06  Jim Meyering  <meyering@lucent.com>
42381
42382         * lib/closeout.c (close_stdout_status): Also check for errors on the
42383         stderr stream.
42384
42385 2000-05-05  Jim Meyering  <meyering@lucent.com>
42386
42387         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
42388         AC_SEARCH_LIBS call for clock_gettime.
42389         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
42390
42391         * m4/search-libs.m4: Update from autoconf.
42392
42393         su doesn't work on Solaris 2.6.
42394         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
42395         <shadow.h>.  Reported by Dragos Harabor.
42396
42397 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
42398
42399         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
42400         memcpy instead of xmalloc, xrealloc, path_concat.
42401         (locale_charset): Treat empty environment variables as absent.
42402         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
42403
42404 2000-05-04  Jim Meyering  <meyering@lucent.com>
42405
42406         * lib/getopt.c: Update from glibc.
42407         * lib/obstack.c: Likewise.
42408         * lib/obstack.h: Likewise.
42409         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
42410         file
42411
42412         * lib/regex.h: Likewise.
42413         * lib/strndup.c: Likewise.
42414         * lib/strnlen.c: New file, from glibc.
42415
42416 2000-05-03  Jim Meyering  <meyering@lucent.com>
42417
42418         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
42419
42420 2000-05-02  Paul Eggert  <eggert@twinsun.com>
42421
42422         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
42423         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
42424         compile-time test, rather than inspecting host and OS, to
42425         decide whether to define _LARGEFILE_SOURCE.
42426
42427 2000-05-01  Jim Meyering  <meyering@lucent.com>
42428
42429         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
42430
42431         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
42432         Based on a patch from Bruno Haible.
42433
42434 2000-05-01  Jim Meyering  <meyering@lucent.com>
42435
42436         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
42437
42438 2000-04-29  Jim Meyering  <meyering@lucent.com>
42439
42440         * lib/path-concat.c: Declare strdup only if it's not defined.
42441         * lib/canon-host.c: Likewise.
42442
42443 2000-04-28  Jim Meyering  <meyering@lucent.com>
42444
42445         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
42446         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
42447         is included first, then limits.h is included by locale.h by libintl.h.
42448         From John David Anglin.
42449
42450 2000-04-25  Jim Meyering  <meyering@lucent.com>
42451
42452         * lib/makepath.c (S_IRWXUGO): Define.
42453         (make_path): Always perform explicit chmod if MODE specifies any
42454         of the `special' permission bits.  Prompted by a bug report against
42455         install from Mate Wierdl and Joost van Baal.
42456
42457 2000-04-18  Jim Meyering  <meyering@lucent.com>
42458
42459         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
42460         (jm_PREREQ): Use it.
42461
42462 2000-04-18  Jim Meyering  <meyering@lucent.com>
42463
42464         * lib/README: New file.
42465
42466         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
42467         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
42468
42469 2000-04-17  Jim Meyering  <meyering@lucent.com>
42470
42471         Get it right :-)
42472         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
42473         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
42474         Suggestion from Akim Demaille.
42475
42476 2000-04-17  Jim Meyering  <meyering@lucent.com>
42477
42478         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
42479         the definition of it to rpl_strftime also defined-away the system's
42480         declaration.
42481
42482 2000-04-15  Jim Meyering  <meyering@lucent.com>
42483
42484         Use `C' to denote so-called `contiguous' files, the same way
42485         that tar does.
42486         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
42487         (ftypelet): Use S_ISCTG.
42488         From Michael Deutschmann.
42489
42490 2000-04-14  Jim Meyering  <meyering@lucent.com>
42491
42492         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
42493         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
42494         clobbered.
42495
42496 2000-04-14  Jim Meyering  <meyering@lucent.com>
42497
42498         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
42499
42500 2000-04-13  Jim Meyering  <meyering@lucent.com>
42501
42502         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
42503         AH_VERBATIM to insert required #ifndef into config.h.in.
42504         Suggestion from Akim Demaille.
42505
42506 2000-04-12  Jim Meyering  <meyering@lucent.com>
42507
42508         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
42509         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
42510         Christian Krackowizer.
42511
42512         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
42513         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
42514         (AC_SYS_LARGEFILE): Require.
42515         (AM_C_PROTOTYPES): Require.
42516
42517 2000-04-08  Jim Meyering  <meyering@lucent.com>
42518
42519         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
42520         names don't conflict.  Reported by Eli Zaretskii.
42521
42522 2000-04-07  Jim Meyering  <meyering@lucent.com>
42523
42524         * lib/putenv.c: Move inclusion of errno.h so it follows that of
42525         sys/types.h, to work around system header problems on AIX 3.2.5.
42526         From Bruno Haible.
42527
42528 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
42529
42530         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
42531         bug.  Deal with the different error behavior of Irix iconv.
42532
42533 2000-04-05  Paul Eggert  <eggert@twinsun.com>
42534
42535         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
42536         IRIX if the installer said otherwise.
42537
42538 2000-04-05  Jim Meyering  <meyering@lucent.com>
42539
42540         Portability tweaks required for ultrix4.3.
42541         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
42542         (jm_CHECK_DECLS): Add getutent to the list of functions.
42543         (_jm_DECL_HEADERS): Add utmpx.h.
42544         From John David Anglin.
42545
42546         * m4/strftime.m4: Back out the 2000-04-02 change.
42547         Instead of that change, simply undefine putenv in the test program.
42548
42549 2000-04-05  Jim Meyering  <meyering@lucent.com>
42550
42551         Portability tweaks required for ultrix4.3.
42552         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
42553         getutent.
42554         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
42555         * lib/canon-host.c: Declare strdup.
42556         * lib/path-concat.c: Likewise.
42557         From John David Anglin.
42558
42559 2000-04-04  Jim Meyering  <meyering@lucent.com>
42560
42561         Be more DOS 8.3-friendly.
42562         * lib/ref-add.sin: Renamed from ref-add.sed.in.
42563         * lib/ref-del.sin: Renamed from ref-del.sed.in.
42564         * lib/Makefile.am: Reflect renaming.
42565         Reported by Eli Zaretskii.
42566
42567         Use a temporary file name that won't clash with `charset.alias'
42568         in the DOS 8.3 name space.
42569         * lib/Makefile.am (charset_tmp): Define.
42570         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
42571         (uninstall-local): Likewise.
42572         Reported by Eli Zaretskii.
42573
42574 2000-04-03  Jim Meyering  <meyering@lucent.com>
42575
42576         * m4/gettext.m4: Fix typo in comment.
42577
42578         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
42579         textutils/configure.in).  Suggestion from Paul Eggert.
42580         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
42581
42582 2000-04-02  Paul Eggert  <eggert@twinsun.com>
42583
42584         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
42585         variable in the shell rather than using putenv, which isn't
42586         portable.  This avoids the configure-time inter-test dependency
42587         on the potentially-renamed putenv function.
42588
42589 2000-03-30  Paul Eggert  <eggert@twinsun.com>
42590
42591         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
42592         before checking struct stat.st_blksize, so that
42593         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
42594
42595 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42596
42597         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
42598         since strftime.c uses HAVE_STRFTIME to decide whether to use
42599         the underlying strftime.
42600
42601 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42602
42603         * lib/time/strftime.c (my_strftime): Make sure we call the system
42604         strftime, not ourselves, when invoking the underlying strftime.
42605
42606 2000-03-24  Jim Meyering  <meyering@lucent.com>
42607
42608         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
42609         (charset_alias): Define.
42610         (install-exec-local): Factor out common code.
42611         (uninstall-local): Split lines longer than 80.
42612         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
42613         (SUFFIXES): Define.
42614         (.sed.in.sed): New rule.  Don't redirect directly to $@.
42615         (CLEANFILES): Add ref-add.sed and ref-del.sed.
42616
42617 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
42618
42619         * lib/config.charset: Output a line containing "Packages using this
42620         file".
42621         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
42622         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
42623         ref-del.sed): New rules.
42624
42625 2000-03-17  Jim Meyering  <meyering@lucent.com>
42626
42627         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
42628         Otherwise, include <strings.h>
42629
42630 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
42631
42632         * lib/unicodeio.c (utf8_wctomb): New function.
42633         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
42634         format instead of in UCS-4 with platform dependent endianness.
42635
42636 2000-03-10  Jim Meyering  <meyering@lucent.com>
42637
42638         * m4/lib-check.m4: Look for getspnam in -lgen, too.
42639         From Marco Franzen.
42640
42641 2000-03-07  Paul Eggert  <eggert@twinsun.com>
42642
42643         * lib/savedir.c (savedir): Work even if directory size is
42644         negative; this can happen with some screwy NFS configurations.
42645
42646 2000-03-06  Jim Meyering  <meyering@lucent.com>
42647
42648         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
42649         if it's NULL (because we ran out of memory).  From Bruno Haible.
42650
42651 2000-03-05  Jim Meyering  <meyering@lucent.com>
42652
42653         * lib/localcharset.c ("path-concat.h"): Include.
42654         (get_charset_aliases): Use path_concat instead of ANSI string
42655         concatenation.
42656
42657         * lib/unicodeio.h (PARAMS): Define.
42658         Use it to guard prototype.
42659
42660 2000-03-04  Jim Meyering  <meyering@lucent.com>
42661
42662         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
42663         for lib/localcharset.c.
42664
42665 2000-03-04  Jim Meyering  <meyering@lucent.com>
42666
42667         * lib/Makefile.am (install-exec-local): Create $(libdir) before
42668         installing into it.
42669         (uninstall-local): Uncomment this rule so `make distcheck' works
42670         once again.
42671
42672         * lib/unicodeio.c (<errno.h>): Include it.
42673         (errno): Declare if not defined.
42674
42675         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
42676
42677         * lib/config.charset: New version, incorporating remarks from a linux
42678         i18n mailing list.  From Bruno Haible.
42679
42680 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
42681
42682         * m4/codeset.m4: New file.
42683         * m4/iconv.m4: New file.
42684         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
42685
42686 2000-03-03  Jim Meyering  <meyering@lucent.com>
42687
42688         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
42689
42690 2000-03-02  Jim Meyering  <meyering@lucent.com>
42691
42692         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
42693         the messages come out on separate lines.
42694
42695         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
42696         rather than jm_CHECK_DECLARATIONS.
42697         * m4/decl.m4: Remove now-unused file.
42698
42699         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
42700         geteuid.
42701
42702 2000-03-02  Jim Meyering  <meyering@lucent.com>
42703
42704         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
42705
42706 2000-03-01  Jim Meyering  <meyering@lucent.com>
42707
42708         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
42709         * lib/unicodeio.c: Likewise.
42710
42711 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
42712
42713         * lib/config.charset: New file.
42714         * lib/localcharset.c: New file.
42715         * lib/unicodeio.h, lib/unicodeio.c: New files.
42716         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
42717         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
42718         (noinst_HEADERS): Add unicodeio.h.
42719         (all-local, install-exec-local, charset.alias): New targets.
42720
42721 2000-02-28  Paul Eggert  <eggert@twinsun.com>
42722
42723         * lib/quotearg.c (ALERT_CHAR): New macro.
42724         (quotearg_buffer_restyled): Use it.
42725
42726 2000-02-27  Jim Meyering  <meyering@lucent.com>
42727
42728         * m4/check-decl.m4: Add getenv to the list.
42729
42730 2000-02-27  Jim Meyering  <meyering@lucent.com>
42731
42732         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
42733         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
42734
42735         * lib/backupfile.c: Guard inclusion of stdlib.h with
42736         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
42737         Declare malloc if needed.
42738
42739         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
42740         `#ifndef HAVE_DECL..'
42741         now that autoconf always defines the HAVE_DECL_ symbols.
42742         * lib/human.c: Likewise.
42743         * lib/same.c: Likewise.
42744         * lib/strtoumax.c: Likewise.
42745
42746         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
42747         declaration check was not run.
42748         * lib/hash.c: Likewise.
42749         * lib/human.c: Likewise.
42750         * lib/same.c: Likewise.
42751         * lib/strtoumax.c: Likewise.
42752
42753         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
42754         `.', then first look up the entire `.'-containing string as a login
42755         name.
42756
42757 2000-02-23  Jim Meyering  <meyering@lucent.com>
42758
42759         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
42760         in place of my hack.
42761
42762 2000-02-18  Paul Eggert  <eggert@twinsun.com>
42763
42764         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
42765         (textint): New typedef.
42766         (parser_control): Member year changed from int to textint.
42767         All uses changed.
42768         (YYSTYPE): Removed; replaced by %union with int and textint members.
42769         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
42770         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
42771         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
42772         (tSNUMBER, tUNUMBER): Now of type <textintval>.
42773         (date, number, to_year): Use width of number in digits, not its value,
42774         to determine whether it's a 2-digit year, or a 2-digit time.
42775         (yylex): Store number of digits of numeric tokens.
42776         Reported by John Kendall.
42777
42778         (parser_control): Changed from struct parser_control to typedef (for
42779         consistency).  All uses changed.
42780
42781         (tID): Removed; not used.
42782         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
42783
42784 2000-02-14  Paul Eggert  <eggert@twinsun.com>
42785
42786         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
42787         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
42788
42789 2000-02-12  Jim Meyering  <meyering@lucent.com>
42790
42791         * lib/userspec.c (ISDIGIT): Define it.
42792         (isdigit): Remove definition.
42793         (is_number): Use ISDIGIT, not isdigit.
42794         <libintl.h>: Include.
42795         (_ and N_): Define.
42796         (parse_user_spec): Mark translatable strings.
42797
42798 2000-02-10  Jim Meyering  <meyering@lucent.com>
42799
42800         With these changes, nanosleep.[ch] are finally enough like the other
42801         lib/* replacement files to compile on a few more losing systems.
42802
42803         * lib/nanosleep.h: Don't include config.h.
42804         Remove prototype from declaration of nanosleep.
42805         (PARAMS): Remove now-unneeded definition.
42806         * lib/nanosleep.c: #undef nanosleep.
42807         (rpl_nanosleep): Rename from nanosleep.
42808
42809 2000-02-10  Jim Meyering  <meyering@lucent.com>
42810
42811         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
42812         gnu_nanosleep to rpl_nanosleep.
42813
42814 2000-02-09  Jim Meyering  <meyering@lucent.com>
42815
42816         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
42817         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
42818
42819 2000-02-08  Akim Demaille  <akim@epita.fr>
42820
42821         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
42822         `[' and `]' and remove uses of `changequote'.
42823         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
42824         (AC_SYS_LARGEFILE): Likewise.
42825         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
42826         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
42827         of changequote.
42828         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
42829         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
42830         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
42831         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
42832
42833 2000-02-05  Jim Meyering  <meyering@lucent.com>
42834
42835         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
42836         Remove explicit use of AC_HEADER_TIME.  It is required by
42837         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
42838         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
42839         in autoconf whereby the expansion of the latter ended up preceding
42840         the expansion of its prerequisite, AC_HEADER_TIME.
42841         Reported by Volker Borchert.
42842
42843 2000-02-03  Jim Meyering  <meyering@lucent.com>
42844
42845         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
42846
42847 2000-02-03  Jim Meyering  <meyering@lucent.com>
42848
42849         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
42850         rather than with `#if HAVE_UTMPNAME'.
42851
42852 2000-02-02  Jim Meyering  <meyering@lucent.com>
42853
42854         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
42855         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
42856         Reported by Eli Zaretskii.
42857
42858 2000-02-01  Jim Meyering  <meyering@lucent.com>
42859
42860         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
42861
42862 2000-01-31  Jim Meyering  <meyering@lucent.com>
42863
42864         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
42865         functions.  Add the time.h and sys/time.h headers along with the
42866         AC_REQUIRE'ment of AC_HEADER_TIME.
42867
42868 2000-01-31  Jim Meyering  <meyering@lucent.com>
42869
42870         * lib/nanosleep.h (nanosleep): Guard declaration with
42871         `#if ! HAVE_DECL_NANOSLEEP'.
42872         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
42873         the declaration in that vendor's sys/timers.h.
42874         Reported by Christian Krackowizer.
42875
42876         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
42877         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
42878         (ISPRINT): Likewise.
42879         Reported by Tom Tromey.
42880
42881 2000-01-30  Jim Meyering  <meyering@lucent.com>
42882
42883         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
42884
42885         * m4/prereq.m4 (utmp_includes): Define.
42886         Check for ut_user and ut_name members in both struct utmpx
42887         and struct utmp.
42888
42889 2000-01-30  Jim Meyering  <meyering@lucent.com>
42890
42891         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
42892         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
42893         header files where only utmpx.ut_user is declared.
42894
42895         * lib/readutmp.h (UT_USER): Define.
42896
42897 2000-01-29  Jim Meyering  <meyering@lucent.com>
42898
42899         * m4/lib-check.m4: New file containing library-related checks from
42900         fileutils and sh-utils (textutils had none).
42901
42902 2000-01-28  Jim Meyering  <meyering@lucent.com>
42903
42904         * m4/perl.m4: Change format of warning message to look more like that
42905         from the missing script.  Suggestion from François Pinard.
42906
42907 2000-01-25  Jim Meyering  <meyering@lucent.com>
42908
42909         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
42910         well as time.h in the compile check.
42911         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
42912         Fix typo in cross-compiling case: s/yes/no/.
42913
42914 2000-01-23  Jim Meyering  <meyering@lucent.com>
42915
42916         * m4/jm-macros.m4: Move df-related tests here from
42917         fileutils/configure.in
42918
42919         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
42920         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
42921
42922         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
42923         s/space/ac_fsusage_space/.
42924         (jm_FILE_SYSTEM_USAGE): Take two parameters.
42925
42926         * m4/ftruncate.m4: New file (derived from part of
42927         fileutils/configure.in).
42928         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
42929         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
42930
42931         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
42932         AC_SUBST these here, rather than just in sh-util/configure.in, so
42933         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
42934         all the same.
42935         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
42936         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
42937         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
42938         (AC_SUBST(POW_LIBM)): Likewise.
42939         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
42940
42941 2000-01-23  Jim Meyering  <meyering@lucent.com>
42942
42943         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
42944         obstack.c.
42945
42946 2000-01-22  Jim Meyering  <meyering@lucent.com>
42947
42948         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
42949
42950         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
42951
42952         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
42953         configure.in
42954         (AC_CHECK_HEADERS): Likewise for sh-utils.
42955         (AC_CHECK_HEADERS): Likewise for textutils.
42956         Merge the three lists of headers.
42957
42958         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
42959         from fileutils' configure.in.
42960
42961         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
42962         code. Moved tests into their own function (_jm_DECL_HEADERS) in
42963         check-decl.m4.
42964
42965         * m4/check-decl.m4: Use #if rather than #ifdef.
42966         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
42967         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
42968         (_jm_DECL_HEADERS): Define new function.
42969         (jm_CHECK_DECLARATIONS): Require it.
42970
42971 2000-01-22  Jim Meyering  <meyering@lucent.com>
42972
42973         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
42974         [! HAVE_DECL_STRTOULL]: Declare strtoull.
42975         Required for some AIX systems.  Reported by Christian Krackowizer.
42976         [TESTING] (main): New function.
42977
42978         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
42979         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
42980         letters.
42981
42982         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
42983         iswprint.
42984
42985         * lib/strverscmp.c (ISDIGIT): Define.
42986         (strverscmp): Use ISDIGIT, not isdigit.
42987
42988 2000-01-19  Jim Meyering  <meyering@lucent.com>
42989
42990         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
42991         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
42992         defines `struct timespec' in <sys/time.h>
42993
42994         * m4/c-bs-a.m4: Remove uses of changequote altogether.
42995         Thanks to Akim for explaining.
42996
42997 2000-01-17  Paul Eggert  <eggert@twinsun.com>
42998
42999         * lib/nanosleep.c (nanosleep):
43000         Don't use SA_INTERRUPT to decide whether to call sigaction, as
43001         POSIX.1 doesn't require SA_INTERRUPT and some systems
43002         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
43003         it's been part of POSIX.1 since day 1 (in 1988).
43004
43005 2000-01-17  Jim Meyering  <meyering@lucent.com>
43006
43007         * lib/interlock: Remove unused file.  Reported by François Pinard.
43008
43009 2000-01-16  Paul Eggert  <eggert@twinsun.com>
43010
43011         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
43012         alert, backslash, formfeed, and vertical tab unnecessarily in
43013         shell quoting style.
43014
43015 2000-01-16  Jim Meyering  <meyering@lucent.com>
43016
43017         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
43018         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
43019         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
43020         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
43021
43022 2000-01-16  Jim Meyering  <meyering@lucent.com>
43023
43024         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
43025         because the latter didn't work.
43026
43027 2000-01-15  Jim Meyering  <meyering@lucent.com>
43028
43029         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
43030         (AC_REPLACE_FUNCS): Add memcpy and memset.
43031         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
43032         Add strpbrk.
43033         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
43034
43035 2000-01-12  Jim Meyering  <meyering@lucent.com>
43036
43037         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
43038         (jm_PREREQ): Use it.
43039         (jm_PREREQ_READUTMP): New macro.
43040         (jm_PREREQ): Use it.
43041
43042 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43043
43044         Quote multibyte characters correctly.
43045         * m4/c-bs-a.m4: New file.
43046         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
43047         (jm_PREREQ): Use it.
43048
43049 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43050
43051         * m4/uintmax_t.m4: Port to autoconf 2.13.
43052
43053 2000-01-08  Jim Meyering  <meyering@ascend.com>
43054
43055         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
43056         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
43057
43058 2000-01-04  Jim Meyering  <meyering@ascend.com>
43059
43060         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
43061         jm_STRUCT_DIRENT_D_TYPE.
43062         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
43063         jm_STRUCT_DIRENT_D_INO.
43064         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
43065         jm_STRUCT_UTIMBUF.
43066         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
43067         renamings.
43068         * m4/utime.m4: Likewise.
43069
43070         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
43071         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
43072
43073 2000-01-03  Paul Eggert  <eggert@twinsun.com>
43074
43075         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
43076         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
43077
43078 2000-01-02  Jim Meyering  <meyering@ascend.com>
43079
43080         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
43081         remember if this is necessary.
43082
43083 1999-12-26  Jim Meyering  <meyering@ascend.com>
43084
43085         * m4/jm-macros.m4: Use it here.
43086         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
43087
43088 1999-12-23  Jim Meyering  <meyering@ascend.com>
43089
43090         * m4/jm-macros.m4: Check for clock_gettime (moved from
43091         fileutils/configure.in)
43092         Check for gettimeofday.
43093
43094 1999-12-20  Jim Meyering  <meyering@ascend.com>
43095
43096         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
43097         autoconf-2.14a-1999-12-20.
43098
43099 1999-12-19  Jim Meyering  <meyering@ascend.com>
43100
43101         * m4/lstat-slash.m4: New file.
43102         * m4/jm-macros.m4: Use the new macro:
43103         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
43104
43105 1999-12-07  Jim Meyering  <meyering@ascend.com>
43106
43107         * m4/perl.m4: Require that File::Compare be available, too.
43108         Too many systems seem to lack it.
43109
43110         * m4/strftime.m4: Add checks for most of the cpp macros tested in
43111         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
43112
43113 1999-11-18  Paul Eggert  <eggert@twinsun.com>
43114
43115         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
43116         problem with the QNX 4.25 shell, which doesn't propagate exit
43117         status of failed commands inside shell assignments.
43118
43119 1999-11-17  Jim Meyering  <meyering@ascend.com>
43120
43121         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
43122
43123 1999-11-07  Jim Meyering  <meyering@ascend.com>
43124
43125         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
43126
43127 1999-11-06  Jim Meyering  <meyering@ascend.com>
43128
43129         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
43130         * m4/jm-macros.m4 (jm_MACROS): Use it here.
43131
43132 1999-11-05  Jim Meyering  <meyering@ascend.com>
43133
43134         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
43135         configure.in of textutils, fileutils, and sh-utils into this one
43136         (shared between those packages) file.
43137         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
43138         AC_STRUCT_ST_BLKSIZE.
43139
43140 1999-11-03  Jim Meyering  <meyering@ascend.com>
43141
43142         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
43143         of AC_CHECK_TYPE checks includes unistd.h.
43144         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
43145         Suggestion from Akim Demaille.
43146
43147 1999-10-30  Jim Meyering  <meyering@ascend.com>
43148
43149         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
43150         m4-quoted string.
43151         * m4/ls-mntd-fs.m4: Likewise.
43152         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
43153         * m4/jm-winsz1.m4: Likewise.
43154
43155         * m4/const.m4: Remove file, since the fix made it into the experimental
43156         version of autoconf.
43157         * m4/mktime.m4: Likewise.
43158
43159         * m4/check-type.m4: Remove file, now that the latest version of
43160         AC_CHECK_TYPE takes a third arg to specify additional #includes.
43161
43162         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
43163         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
43164         AC_CHECK_TYPE.
43165
43166 1999-10-04  Jim Meyering  <meyering@ascend.com>
43167
43168         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
43169
43170 1999-09-22  Paul Eggert  <eggert@twinsun.com>
43171
43172         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
43173         2.95.1 bug with HP-UX 10.20.
43174
43175 1999-09-17  Jim Meyering  <meyering@ascend.com>
43176
43177         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
43178         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
43179         due to missing strdup (against sh-utils-2.0).
43180
43181 1999-08-29  Jim Meyering  <meyering@ascend.com>
43182
43183         * m4/jm-macros.m4: Require jm_BISON.
43184         * m4/bison.m4: New file.
43185
43186 1999-08-17  Paul Eggert  <eggert@twinsun.com>
43187
43188         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
43189         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
43190
43191 1999-08-05  Jim Meyering  <meyering@ascend.com>
43192
43193         * m4/getline.m4: Rename test file from conftestdata to conftest.data
43194         to avoid conflicts with `conftest' on 8+3 filesystems.
43195         Suggestion from Eli Zaretskii.
43196
43197 1999-08-04  Jim Meyering  <meyering@ascend.com>
43198
43199         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
43200         fileutils and sh-utils (textutils's getline test was inadequate).
43201         (AM_FUNC_GETLINE): Run this test.
43202         (AC_CHECK_FUNCS): Check for getdelim.
43203         Reported by Bob Proulx.
43204
43205 1999-08-02  Jim Meyering  <meyering@ascend.com>
43206
43207         * m4/jm-macros.m4: Add a comment.
43208
43209 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43210
43211         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
43212         <inttypes.h> defines strtoumax as a macro (and not as a
43213         function).
43214
43215 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43216
43217         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
43218         that we can shift, multiply and divide unsigned long long
43219         values; Ultrix cc can't do it.
43220
43221 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43222
43223         * m4/mktime.m4: New file, which is a preview of what should appear
43224         in the next public autoconf release.
43225
43226 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43227
43228         * m4/lfs.m4: Remove this file.
43229         * m4/largefile.m4: New file.  It contains the old contents of
43230         lfs.m4, except that all names with prefix AC_LFS have been
43231         changed to use the prefix AC_SYS_LARGEFILE instead, to be
43232         compatible with future autoconf versions.  Also, some minor m4
43233         quoting problems have been fixed.
43234
43235 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43236
43237         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
43238         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
43239         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
43240         and simplify the shell code.
43241
43242 1999-08-01  Jim Meyering  <meyering@ascend.com>
43243
43244         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
43245         m4.
43246
43247 1999-07-20  Jim Meyering  <meyering@ascend.com>
43248
43249         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
43250
43251 1999-07-15  Jim Meyering  <meyering@ascend.com>
43252
43253         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
43254
43255 1999-05-22  Jim Meyering  <meyering@ascend.com>
43256
43257         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
43258
43259 1999-05-20  Jim Meyering  <meyering@ascend.com>
43260
43261         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
43262         Add a colon after each `then' in case $4 is empty.
43263
43264 1999-05-16  Jim Meyering  <meyering@ascend.com>
43265
43266         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
43267
43268 1999-05-10  Jim Meyering  <meyering@ascend.com>
43269
43270         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
43271
43272         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
43273         AC_FUNC_MKTIME.
43274
43275 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
43276
43277         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
43278
43279 1999-05-04  Paul Eggert  <eggert@twinsun.com>
43280
43281         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
43282         not CPPFLAGS, so that linking works correctly in IRIX.
43283
43284 1999-04-30  Paul Eggert  <eggert@twinsun.com>
43285
43286         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
43287
43288 1999-04-20  Paul Eggert  <eggert@twinsun.com>
43289
43290         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
43291         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
43292         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
43293         jm_AC_TYPE_UNSIGNED_LONG_LONG.
43294         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
43295
43296         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
43297
43298 1999-04-20  Jim Meyering  <meyering@ascend.com>
43299
43300         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
43301         AC_REPLACE xstroull if necessary.  From Paul Eggert.
43302         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
43303
43304 1999-04-18  Jim Meyering  <meyering@ascend.com>
43305
43306         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
43307         * m4/jm-macros.m4: Use it.
43308
43309 1999-04-06  Jim Meyering  <meyering@ascend.com>
43310
43311         * m4/strftime.m4: Remove test for %f.
43312
43313 1999-03-29  Jim Meyering  <meyering@ascend.com>
43314
43315         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
43316         superset of the AC_TYPE_* checks in the textutils, fileutils,
43317         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
43318         AC_TYPE_PID_T.
43319
43320 1999-03-28  Jim Meyering  <meyering@ascend.com>
43321
43322         * m4/jm-macros.m4: Define GNU_PACKAGE here.
43323         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
43324         replaced e.g., in the *.sh files of the sh-utils.
43325
43326 1999-03-20  Jim Meyering  <meyering@ascend.com>
43327
43328         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
43329         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
43330         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
43331
43332 1999-03-19  Jim Meyering  <meyering@ascend.com>
43333
43334         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
43335
43336 1999-03-12  Jim Meyering  <meyering@ascend.com>
43337
43338         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
43339
43340 1999-03-07  Jim Meyering  <meyering@ascend.com>
43341
43342         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
43343         declared.
43344
43345 1999-02-17  Jim Meyering  <meyering@ascend.com>
43346
43347         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
43348         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
43349
43350 1999-02-07  Jim Meyering  <meyering@ascend.com>
43351
43352         * m4/group-member.m4: New file -- extracted from sh-utils'
43353         configure.in.
43354
43355         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
43356         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
43357
43358 1999-02-06  Jim Meyering  <meyering@ascend.com>
43359
43360         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
43361         * m4/fnmatch.m4: Likewise.
43362         * m4/getgroups.m4: Likewise.
43363         * m4/lstat.m4: Likewise.
43364         * m4/malloc.m4: Likewise.
43365         * m4/putenv.m4: Likewise.
43366         * m4/realloc.m4: Likewise.
43367         * m4/regex.m4: Likewise.
43368         * m4/stat.m4: Likewise.
43369         * m4/strftime.m4: Likewise.
43370         Suggestion from Alain Magloire.
43371
43372         * m4/chown.m4: Use `.$ac_objext', not `.o'.
43373         * m4/fnmatch.m4: Likewise.
43374         * m4/getgroups.m4: Likewise.
43375         * m4/getline.m4: Likewise.
43376         * m4/lstat.m4: Likewise.
43377         * m4/malloc.m4: Likewise.
43378         * m4/memcmp.m4: Likewise.
43379         * m4/putenv.m4: Likewise.
43380         * m4/realloc.m4: Likewise.
43381         * m4/regex.m4: Likewise.
43382         * m4/stat.m4: Likewise.
43383         * m4/strftime.m4: Likewise.
43384         Suggestion from Alain Magloire.
43385
43386         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
43387         an argument.
43388
43389         * m4/regex.m4: Add a run-time Test for proper operation of
43390         re_compile_pattern.
43391
43392 1999-01-31  Jim Meyering  <meyering@ascend.com>
43393
43394         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
43395
43396 1999-01-30  Jim Meyering  <meyering@ascend.com>
43397
43398         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
43399
43400         * m4/jm-mktime.m4: Make this a wrapper around the official
43401         AM_FUNC_MKTIME rather than my private copy, now that the official one
43402         is up to date.
43403         * m4/mktime.m4: Remove file.
43404
43405         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
43406         * m4/uptime.m4: Likewise.
43407         * m4/uintmax_t.m4: Likewise.
43408
43409 1999-01-28  Jim Meyering  <meyering@ascend.com>
43410
43411         * m4/jm-macros.m4: Use jm_AFS.
43412         * m4/afs.m4: New file (from fileutils' configure.in).
43413
43414         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
43415         * m4/chown.m4: Likewise.
43416         * m4/d-ino.m4: Likewise.
43417         * m4/d-type.m4: Likewise.
43418         * m4/fnmatch.m4: Likewise.
43419         * m4/getgroups.m4: Likewise.
43420         * m4/gettext.m4: Likewise.
43421         * m4/jm-mktime.m4: Likewise.
43422         * m4/jm-winsz2.m4: Likewise.
43423         * m4/lcmessage.m4: Likewise.
43424         * m4/ls-mntd-fs.m4: Likewise.
43425         * m4/malloc.m4: Likewise.
43426         * m4/memcmp.m4: Likewise.
43427         * m4/putenv.m4: Likewise.
43428         * m4/realloc.m4: Likewise.
43429         * m4/st_mtim.m4: Likewise.
43430         * m4/strftime.m4: Likewise.
43431
43432 1999-01-16  Jim Meyering  <meyering@ascend.com>
43433
43434         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
43435         (ARGMATCH_DIE_DECL): Define.
43436
43437 1999-01-12  Jim Meyering  <meyering@ascend.com>
43438
43439         * m4/Makefile.am.in: Rewrite to avoid using fmt.
43440         Reported by Lars Hecking.
43441
43442 1999-01-10  Jim Meyering  <meyering@ascend.com>
43443
43444         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
43445         gross kludge.
43446         * m4/inttypes_h.m4: Likewise.
43447         * m4/lstat.m4: Likewise.
43448         * m4/malloc.m4: Likewise.
43449         * m4/readdir.m4: Likewise.
43450         * m4/realloc.m4: Likewise.
43451         * m4/st_dm_mode.m4: Likewise.
43452         * m4/stat.m4: Likewise.
43453         * m4/utimbuf.m4: Likewise.
43454         * m4/utimes.m4: Likewise.
43455
43456         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
43457         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
43458         comments in config.h.in are meaningful.
43459
43460         * m4/jm-macros.m4: Require autoconf-2.13 here.
43461
43462         * m4/regex.m4: By default, don't use the included regex.c on systems
43463         with glibc 2.  Suggestion from Uli Drepper.
43464
43465 1999-01-02  Jim Meyering  <meyering@ascend.com>
43466
43467         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
43468
43469 1998-12-18  Jim Meyering  <meyering@ascend.com>
43470
43471         * m4/Makefile.am.in (Makefile.am): Simplify rule.
43472         Based on a suggestion from Lars Hecking.
43473
43474 1998-11-16  Paul Eggert  <eggert@twinsun.com>
43475
43476         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
43477
43478 1998-11-16  Jim Meyering  <meyering@ascend.com>
43479
43480         * m4/lfs.m4: Double-quote the `uname...` expression.
43481
43482 1998-11-14  Jim Meyering  <meyering@ascend.com>
43483
43484         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
43485         * m4/stat.m4: Likewise.
43486
43487 1998-11-03  Jim Meyering  <meyering@ascend.com>
43488
43489         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
43490         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
43491
43492 1998-10-18  Jim Meyering  <meyering@ascend.com>
43493
43494         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
43495
43496 1998-10-17  Jim Meyering  <meyering@ascend.com>
43497
43498         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
43499         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
43500         calls for those previously hard-coded headers.  Instead, take a new
43501         parameter.
43502         (jm_CHECK_DECLARATIONS): Reflect interface change.
43503         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
43504         (jm_CHECK_DECL_LOCALTIME_R): New macro.
43505
43506         * m4/mktime.m4: Test for spring-forward gap before long-running test.
43507
43508 1998-10-14  Jim Meyering  <meyering@ascend.com>
43509
43510         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
43511         instead of "TZ=America/Vancouver".  From Paul Eggert.
43512
43513 1998-10-11  Jim Meyering  <meyering@ascend.com>
43514
43515         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
43516         This adds a test for a recently added compatibility fix for mktime.c.
43517         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
43518
43519 1998-09-27  Jim Meyering  <meyering@ascend.com>
43520
43521         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
43522
43523         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
43524         ../configure.in, including a change from Gordon Matzigkeit to allow
43525         cross-compiling for the Hurd.
43526
43527         * m4/glibc.m4: New file/macro to test for the GNU C Library
43528         versions 1 and 2.  From Gordon Matzigkeit.
43529         Indent.
43530
43531 1998-09-21  Jim Meyering  <meyering@ascend.com>
43532
43533         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
43534
43535 1998-08-18  Paul Eggert  <eggert@twinsun.com>
43536
43537         Port nanosecond-resolution times to UnixWare 2.1.2 and
43538         pedantic Solaris 2.6.
43539
43540         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
43541         AC_STRUCT_ST_MTIM.
43542         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
43543         Generate name of ns member, instead of just 1 or undef.
43544         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
43545
43546 1998-08-15  Jim Meyering  <meyering@ascend.com>
43547
43548         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
43549         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
43550         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
43551         instead of jm_TYPE_SSIZE_T.
43552
43553 1998-08-12  Jim Meyering  <meyering@ascend.com>
43554
43555         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
43556
43557 1998-08-02  Jim Meyering  <meyering@ascend.com>
43558
43559         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
43560         in acconfig.h manually.
43561
43562 1998-07-31  Paul Eggert  <eggert@twinsun.com>
43563
43564         * m4/st_mtim.m4: New file.
43565
43566 1998-07-28  Jim Meyering  <meyering@ascend.com>
43567
43568         * m4/utimes.m4: Undef stat.
43569
43570 1998-07-25  Jim Meyering  <meyering@ascend.com>
43571
43572         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
43573         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
43574
43575 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
43576
43577         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
43578         uid and gid actually remain unchanged.
43579
43580 1998-07-07  Jim Meyering  <meyering@ascend.com>
43581
43582         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
43583
43584 1998-07-04  Jim Meyering  <meyering@ascend.com>
43585
43586         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
43587         to prove that this macro can be used in packages without regex.c.
43588
43589 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
43590
43591         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
43592         is to be used.
43593
43594 1998-07-03  Jim Meyering  <meyering@ascend.com>
43595
43596         * m4/gettext.m4: Add -lintl if it's found to be necessary.
43597
43598         * m4/gettext.m4: New file -- from gettext-0.10.35.
43599         * m4/lcmessage.m4: Likewise.
43600         * m4/progtest.m4: Likewise.
43601
43602         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
43603         * m4/jm-macros.m4: Require the new macro.
43604
43605 1998-06-29  Jim Meyering  <meyering@ascend.com>
43606
43607         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
43608         for the definition of NGROUPS (used in a system header included
43609         by sys/mount.h).
43610
43611 1998-06-28  Jim Meyering  <meyering@ascend.com>
43612
43613         * m4/ls-mntd-fs.m4: New file.
43614         * m4/fstypename.m4: New file.
43615
43616         * m4/jm-macros.m4: Require the new macro.
43617         * m4/jm-glibc-io.m4: New file.
43618
43619 1998-05-19  Jim Meyering  <meyering@ascend.com>
43620
43621         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
43622         * m4/lchown.m4: New file.
43623
43624         * m4/Makefile.am.in: New file.
43625         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
43626
43627 1998-05-14  Jim Meyering  <meyering@ascend.com>
43628
43629         * m4/Makefile.am (EXTRA_DIST): Add them.
43630         * m4/jm-macros.m4: New file.
43631         * m4/utimbuf.m4: New file.
43632
43633 1998-05-12  Jim Meyering  <meyering@ascend.com>
43634
43635         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
43636
43637 1998-05-11  Jim Meyering  <meyering@ascend.com>
43638
43639         * m4/isc-posix.m4: New file.
43640
43641 1998-05-10  Jim Meyering  <meyering@ascend.com>
43642
43643         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
43644
43645 1998-05-09  Jim Meyering  <meyering@ascend.com>
43646
43647         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
43648         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
43649         with automake.
43650
43651         * m4/ssize_t.m4: New file.
43652         * m4/mktime.m4: Remove file -- the new automake has this now.
43653
43654 1998-04-26  Jim Meyering  <meyering@ascend.com>
43655
43656         * m4/assert.m4: New file.
43657         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
43658
43659 1998-04-05  Jim Meyering  <meyering@ascend.com>
43660
43661         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
43662         (jm_PREREQ): Use it here.
43663
43664 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
43665
43666         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
43667         in acconfig.h.
43668
43669 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
43670
43671         * m4/prereq.m4: New file.
43672         * m4/error.m4: New file.
43673         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
43674
43675 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
43676
43677         * m4/getline.m4: Don't set am_cv_func_working_getline before the
43678         cache-check for the same variable -- that defeated the purpose of
43679         the test; the test program was never run.  This was a problem only
43680         on systems with losing getline functions -- HP-UX 10.20 is one.
43681         Reported by Bjorn Helgaas.
43682
43683 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
43684
43685         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
43686
43687 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
43688
43689         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
43690
43691         * m4/const.m4: New file.  Use an initializer in this declaration
43692         typedef int charset[2]; const charset x;
43693         Reported by Bob Glickstein.
43694
43695 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
43696
43697         * m4/chown.m4: Fix reversed types on -1 args to chown.
43698         From Kaveh Ghazi.
43699
43700 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
43701
43702         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
43703         Add lseek and memchr.
43704
43705         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
43706         T.E.Dickey <dickey@clark.net> said that some older preprocessors
43707         have a 20-character limit on names.
43708
43709 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
43710
43711         * m4/inttypes_h.m4: New file.
43712         * m4/uintmax_t.m4: New file.
43713         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
43714
43715
43716         -----
43717
43718         Local Variables:
43719         coding: utf-8
43720         End:
43721
43722         Copyright (C) 1997-2008 Free Software Foundation, Inc.
43723
43724         Copying and distribution of this file, with or without
43725         modification, are permitted provided the copyright notice
43726         and this notice are preserved.