Fix the Win32 implementation of the 'thread' module.
[gnulib.git] / ChangeLog
1 2008-09-30  Bruno Haible  <bruno@clisp.org>
2
3         Fix the Win32 implementation of the 'thread' module.
4         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
5         pointer type.
6         (gl_thread_self): Invoke gl_thread_self_func.
7         (gl_thread_self_func): New declaration.
8         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
9         (do_init_self_key, init_self_key): New functions.
10         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
11         Remove some fields.
12         (running_threads, running_lock): Remove variables.
13         (get_current_thread_handle): New function.
14         (gl_thread_self_func, wrapper_func, glthread_create_func,
15         glthread_join_func, gl_thread_exit_func): Largely rewritten and
16         simplified.
17
18 2008-09-30  Bruno Haible  <bruno@clisp.org>
19
20         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
21         files.
22
23 2008-09-30  Jim Meyering  <meyering@redhat.com>
24
25         fts.m4: correct the test for statfs.f_type
26         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
27         when checking for statfs.f_type.
28
29 2008-09-15  Simon Josefsson  <simon@josefsson.org>
30
31         tests: avoid some compiler warnings
32         * tests/test-memchr.c (main): Pass NULL indirectly.
33         * tests/test-getdate.c (main): Remove unused variable 'ret'.
34
35 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
36
37         getdate.y: disallow countable dayshifts like "4 yesterday ago"
38         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
39         exactly specified dayshifts.
40         (dayshift): New rule.
41         (rel): Add dayshift.
42         (relative_time_table) [tomorrow, yesterday, today, now]:
43         Use tDAY_SHIFT in place of tDAY_UNIT.
44         * tests/test-getdate.c: Add tests for now-disallowed countable
45         dayshifts, e.g., "4 yesterday ago".
46
47 2008-09-29  Bruno Haible  <bruno@clisp.org>
48
49         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
50         * tests/test-posix_spawn1.in.sh: Renamed from
51         tests/test-posix_spawn.in.sh.
52         * tests/test-posix_spawn2.c: New file.
53         * tests/test-posix_spawn2.in.sh: New file.
54         * modules/posix_spawnp-tests (Files): Update.
55         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
56
57 2008-09-29  Bruno Haible  <bruno@clisp.org>
58
59         Propagate effects of putenv/setenv/unsetenv to child processes.
60         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
61         * lib/pipe.c (create_pipe): Likewise.
62
63 2008-09-29  Bruno Haible  <bruno@clisp.org>
64
65         Enable use of shell scripts as executables in mingw.
66         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
67         run the program as a shell script.
68         * lib/pipe.c (create_pipe): Likewise.
69         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
70         resulting array.
71
72 2008-09-29  Eric Blake  <ebb9@byu.net>
73
74         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
75
76 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
77
78         * doc/posix-functions/accept.texi: Update mingw problems.
79         * doc/posix-functions/bind.texi: Update mingw problems.
80         * doc/posix-functions/close.texi: Update mingw problems.
81         * doc/posix-functions/connect.texi: Update mingw problems.
82         * doc/posix-functions/getpeername.texi: Update mingw problems.
83         * doc/posix-functions/getsockname.texi: Update mingw problems.
84         * doc/posix-functions/getsockopt.texi: Update mingw problems.
85         * doc/posix-functions/ioctl.texi: Update mingw problems.
86         * doc/posix-functions/listen.texi: Update mingw problems.
87         * doc/posix-functions/recv.texi: Update mingw problems.
88         * doc/posix-functions/recvfrom.texi: Update mingw problems.
89         * doc/posix-functions/select.texi: Update mingw problems.
90         * doc/posix-functions/send.texi: Update mingw problems.
91         * doc/posix-functions/sendto.texi: Update mingw problems.
92         * doc/posix-functions/setsockopt.texi: Update mingw problems.
93         * doc/posix-functions/socket.texi: Update mingw problems.
94
95 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
96             Bruno Haible  <bruno@clisp.org>
97
98         * lib/sys_select.in.h: Include sys/time.h.
99         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
100         * modules/sys_select: Depend on sys_time.
101         * tests/test-sys_select.c: Test that sys/select.h defines struct
102         timeval fully.
103
104 2008-09-29  Bruno Haible  <bruno@clisp.org>
105
106         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
107         * lib/sys_select.in.h: Likewise.
108
109 2008-09-29  Bruno Haible  <bruno@clisp.org>
110
111         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
112
113 2008-09-29  Bruno Haible  <bruno@clisp.org>
114
115         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
116         Set LIBSOCKET instead of augmenting LIBS.
117         * modules/sockets (Link): New section.
118         * modules/sockets-tests (test_sockets_LDADD): New variable.
119         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
120         * modules/poll-tests (test_poll_LDADD): New variable.
121         * NEWS: Document the change.
122
123 2008-09-29  Bruno Haible  <bruno@clisp.org>
124
125         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
126         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
127         ARPA_INET_H directly.
128         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
129
130 2008-09-28  Bruno Haible  <bruno@clisp.org>
131
132         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
133         from gl_HEADER_SYS_SOCKET.
134         (gl_HEADER_SYS_SOCKET): Invoke it.
135         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
136
137 2008-09-28  Bruno Haible  <bruno@clisp.org>
138
139         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
140         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
141         Needed on OSF/1 4.0.
142
143 2008-09-28  Bruno Haible  <bruno@clisp.org>
144
145         Override open more carefully.
146         * lib/open.c (orig_open): New function.
147         (rpl_open): Use orig_open instead of open.
148         * lib/fcntl.in.h: Add special invocation convention.
149         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
150         (gl_FUNC_OPEN): Invoke it.
151
152         Override freopen more carefully.
153         * lib/freopen.c (orig_freopen): New function.
154         (rpl_freopen): Use orig_freopen instead of freopen.
155         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
156         (gl_FUNC_FREOPEN): Invoke it.
157
158         Override fopen more carefully.
159         * lib/fopen.c (orig_fopen): New function.
160         (rpl_fopen): Use orig_fopen instead of fopen.
161         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
162         (gl_FUNC_FOPEN): Invoke it.
163         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
164
165 2008-09-28  Bruno Haible  <bruno@clisp.org>
166
167         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
168         SIGPIPE.
169
170 2008-09-28  Bruno Haible  <bruno@clisp.org>
171
172         * tests/test-sigaction.c (handler, main): Disable the check whether
173         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
174         glibc systems with LinuxThreads.
175
176 2008-09-28  Bruno Haible  <bruno@clisp.org>
177
178         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
179
180         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
181         with AIX xlc.
182         * lib/fcntl.in.h (open): Likewise.
183         Reported by Rainer Tammer <tammer@tammer.net>.
184
185 2008-09-28  Bruno Haible  <bruno@clisp.org>
186
187         * modules/posix_spawnp-tests: New file.
188         * tests/test-posix_spawn.c: New file.
189         * tests/test-posix_spawn.in.sh: New file.
190
191         New module 'posix_spawnp'.
192         * modules/posix_spawnp: New file.
193         * lib/spawnp.c: New file, from GNU libc with modifications.
194         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
195
196         New module 'posix_spawn'.
197         * modules/posix_spawn: New file.
198         * lib/spawn.c: New file, from GNU libc with modifications.
199         * doc/posix-functions/posix_spawn.texi: Mention the new module.
200
201         New module 'posix_spawnattr_destroy'.
202         * modules/posix_spawnattr_destroy: New file.
203         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
204         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
205         module.
206
207         New module 'posix_spawnattr_setsigmask'.
208         * modules/posix_spawnattr_setsigmask: New file.
209         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
210         modifications.
211         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
212         new module.
213
214         New module 'posix_spawnattr_getsigmask'.
215         * modules/posix_spawnattr_getsigmask: New file.
216         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
217         modifications.
218         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
219         new module.
220
221         New module 'posix_spawnattr_setsigdefault'.
222         * modules/posix_spawnattr_setsigdefault: New file.
223         * lib/spawnattr_setdefault.c: New file, from GNU libc with
224         modifications.
225         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
226         new module.
227
228         New module 'posix_spawnattr_getsigdefault'.
229         * modules/posix_spawnattr_getsigdefault: New file.
230         * lib/spawnattr_getdefault.c: New file, from GNU libc with
231         modifications.
232         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
233         new module.
234
235         New module 'posix_spawnattr_setschedpolicy'.
236         * modules/posix_spawnattr_setschedpolicy: New file.
237         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
238         modifications.
239         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
240         new module.
241
242         New module 'posix_spawnattr_getschedpolicy'.
243         * modules/posix_spawnattr_getschedpolicy: New file.
244         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
245         modifications.
246         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
247         new module.
248
249         New module 'posix_spawnattr_setschedparam'.
250         * modules/posix_spawnattr_setschedparam: New file.
251         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
252         modifications.
253         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
254         new module.
255
256         New module 'posix_spawnattr_getschedparam'.
257         * modules/posix_spawnattr_getschedparam: New file.
258         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
259         modifications.
260         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
261         new module.
262
263         New module 'posix_spawnattr_setpgroup'.
264         * modules/posix_spawnattr_setpgroup: New file.
265         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
266         modifications.
267         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
268         module.
269
270         New module 'posix_spawnattr_getpgroup'.
271         * modules/posix_spawnattr_getpgroup: New file.
272         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
273         modifications.
274         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
275         module.
276
277         New module 'posix_spawnattr_setflags'.
278         * modules/posix_spawnattr_setflags: New file.
279         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
280         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
281         module.
282
283         New module 'posix_spawnattr_getflags'.
284         * modules/posix_spawnattr_getflags: New file.
285         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
286         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
287         module.
288
289         New module 'posix_spawnattr_init'.
290         * modules/posix_spawnattr_init: New file.
291         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
292         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
293         module.
294
295         New module 'posix_spawn_file_actions_destroy'.
296         * modules/posix_spawn_file_actions_destroy: New file.
297         * lib/spawn_faction_destroy.c: New file, from GNU libc with
298         modifications.
299         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
300         the new module.
301
302         New module 'posix_spawn_file_actions_addopen'.
303         * modules/posix_spawn_file_actions_addopen: New file.
304         * lib/spawn_faction_addopen.c: New file, from GNU libc with
305         modifications.
306         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
307         the new module.
308
309         New module 'posix_spawn_file_actions_adddup2'.
310         * modules/posix_spawn_file_actions_adddup2: New file.
311         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
312         modifications.
313         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
314         the new module.
315
316         New module 'posix_spawn_file_actions_addclose'.
317         * modules/posix_spawn_file_actions_addclose: New file.
318         * lib/spawn_faction_addclose.c: New file, from GNU libc with
319         modifications.
320         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
321         the new module.
322
323         New module 'posix_spawn_file_actions_init'.
324         * modules/posix_spawn_file_actions_init: New file.
325         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
326         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
327         new module.
328
329         New module 'posix_spawn-internal'.
330         * modules/posix_spawn-internal: New file.
331         * lib/spawn_int.h: New file, from GNU libc with modifications.
332         * lib/spawni.c: New file, from GNU libc with modifications.
333         * m4/posix_spawn.m4: New file.
334
335         New module 'spawn'.
336         * modules/spawn: New file.
337         * lib/spawn.in.h: New file, from GNU libc with modifications.
338         * m4/spawn_h.m4: New file.
339         * doc/posix-headers/spawn.texi: Mention the new module.
340
341 2008-09-28  Bruno Haible  <bruno@clisp.org>
342
343         * modules/sched-tests: New file.
344         * tests/test-sched.c: New file.
345
346         New module 'sched'.
347         * modules/sched: New file.
348         * lib/sched.in.h: New file.
349         * m4/sched_h.m4: New file.
350         * doc/posix-headers/sched.texi: Mention the new module.
351
352 2008-09-27  Eric Blake  <ebb9@byu.net>
353
354         Fix previous patch, and tweak references to $0.
355         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
356         (func_version, func_gnulib_dir): Don't call this program
357         gnulib-tool.
358         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
359         with using $0 in function.
360         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
361         (func_fatal_error): Reuse the name the user invoked us with.
362
363 2008-09-27  Bruno Haible  <bruno@clisp.org>
364
365         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
366         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
367         (gl_ICONV_H): Not here.
368         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
369         instead of assigning ICONV_H directly.
370
371         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
372         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
373         WCHAR_H directly.
374
375 2008-09-27  Bruno Haible  <bruno@clisp.org>
376
377         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
378         * modules/arpa_inet (Depends-on): Add link-warning.
379         (Makefile.am): Insert the definition of GL_LINK-WARNING.
380         * modules/unistd (Makefile.am): Likewise.
381
382 2008-09-26  Bruno Haible  <bruno@clisp.org>
383
384         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
385         variables.
386         (func_version): Essentially copied from gnulib-tool.
387         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
388         func_readlink): Copied from gnulib-tool.
389
390 2008-09-26  Bruno Haible  <bruno@clisp.org>
391
392         * gnulib-tool (func_version): Change directory to $gnulib_dir before
393         invoking git-version-gen.
394
395 2008-09-26  Bruno Haible  <bruno@clisp.org>
396
397         * posix-modules: Update to directory names changed on 2008-01-19.
398         Remove commas in output before splitting into words. No more need to
399         avoid 'ftruncate' since 2007-02-19.
400
401 2008-09-26  Bruno Haible  <bruno@clisp.org>
402
403         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
404
405 2008-09-26  Bruno Haible  <bruno@clisp.org>
406
407         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
408         * modules/fwriteerror (Depends-on): Add errno.
409
410 2008-09-26  Bruno Haible  <bruno@clisp.org>
411
412         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
413         * tests/test-vc-list-files-cvs.sh: Likewise.
414
415 2008-09-26  Bruno Haible  <bruno@clisp.org>
416
417         * doc/posix-headers/sys_resource.texi: Reorder items.
418
419 2008-09-26  Jim Meyering  <meyering@redhat.com>
420
421         fts: tweak inode comparison function
422         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
423         inode numbers, as documented.
424
425         fts: sort dirent entries on inode number before traversing
426         This avoids a quadratic, seek-related performance penalty when
427         operating on a directory containing many entries (measurable at 10k;
428         3.5 hours at 2 million entries with a cold cache) on certain types
429         of file systems, including ext3 and ext4, but not tmpfs.
430         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
431         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
432         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
433         (fs_handles_readdir_ordered_dirents_efficiently): New function.
434         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
435         (fts_build): Set the stat.st_ino member from D_INO.
436         If it is likely to be useful, sort dirent entries on inode number.
437
438         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
439         and the struct statfs.f_type member.
440         * modules/fts (Depends-on): Add d-ino.
441
442 2008-09-26  Bruno Haible  <bruno@clisp.org>
443
444         * modules/sigpipe-die (Depends-on): Add sigpipe.
445
446         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
447         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
448         and GNULIB_STDIO_H_SIGPIPE are set.
449         * lib/stdio-write.c: New file.
450         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
451         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
452         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
453         REPLACE_STDIO_WRITE_FUNCS.
454         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
455         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
456         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
457         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
458         * modules/stdio (Files): Add lib/stdio-write.c.
459         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
460         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
461         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
462         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
463         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
464         REPLACE_FPRINTF_POSIX.
465         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
466         REPLACE_PRINTF_POSIX.
467         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
468         REPLACE_VFPRINTF_POSIX.
469         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
470         REPLACE_VPRINTF_POSIX.
471         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
472         SIGPIPE issue.
473         * doc/posix-functions/fputc.texi: Likewise.
474         * doc/posix-functions/fputs.texi: Likewise.
475         * doc/posix-functions/fwrite.texi: Likewise.
476         * doc/posix-functions/printf.texi: Likewise.
477         * doc/posix-functions/putc.texi: Likewise.
478         * doc/posix-functions/putchar.texi: Likewise.
479         * doc/posix-functions/puts.texi: Likewise.
480         * doc/posix-functions/vfprintf.texi: Likewise.
481         * doc/posix-functions/vprintf.texi: Likewise.
482
483         * modules/safe-write (Depends-on): Add write.
484
485         * modules/sigpipe-tests: New file.
486         * tests/test-sigpipe.c: New file.
487         * tests/test-sigpipe.sh: New file.
488
489         * modules/write: New file.
490         * lib/unistd.in.h: Include <sys/types.h>.
491         (write): New declaration.
492         * lib/write.c: New file.
493         * m4/write.m4: New file.
494         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
495         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
496         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
497         GNULIB_WRITE, REPLACE_WRITE.
498         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
499         and the SIGPIPE issue.
500
501         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
502         (raise): New declaration.
503         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
504         (ext_signal): New function.
505         (rpl_raise): New function.
506         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
507         GNULIB_SIGNAL_H_SIGPIPE.
508         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
509         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
510
511         * modules/sigpipe: New file.
512         * m4/sigpipe.m4: New file.
513
514 2008-09-25  Derek Price  <derek@ximbiot.com>
515             Bruno Haible  <bruno@clisp.org>
516
517         * gnulib-tool (func_import): Report all license incompatibilities, not
518         just the first one.
519
520 2008-09-25  Bruno Haible  <bruno@clisp.org>
521
522         * gnulib-tool (func_import): When computing the edits, consider not
523         only the Makefile.ams that exist but also those that will be generated.
524
525 2008-09-25  Simon Josefsson  <simon@josefsson.org>
526
527         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
528         fixes gnulib-tool --test warning about duplicate dependency.
529
530 2008-09-25  Bruno Haible  <bruno@clisp.org>
531
532         * gnulib-tool: Don't ask the user to perform edits in the generated
533         Makefile.ams.
534         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
535         apply to the Makefile.am being generated.
536         (func_emit_tests_Makefile_am): Execute edits that apply to the
537         Makefile.am being generated.
538         (func_import): Setup list of Makefile.am edits before emitting the
539         Makefile.ams, not at the end.
540         (func_create_testdir): Update.
541         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
542
543 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
544
545         * gnulib-tool (func_import): Store the --tests-base option in the
546         comment in gnulib-cache.m4.
547
548 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
549
550         * NEWS: Document increased portability that sys_select now provides.
551
552         * lib/sys_select.in.h: Install select wrapper.
553         * lib/sys_socket.in.h: Use more descriptive name when there is no
554         select wrapper.
555         * lib/winsock-select.c: New.
556         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
557         Require gl_HEADER_SYS_SOCKET.
558         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
559         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
560         * tests/test-sys_select.c: Add functional tests.
561
562 2008-09-24  Eric Blake  <ebb9@byu.net>
563
564         open, fopen: close fd leak in last patch
565         * lib/open.c (rpl_open): Close fd before returning error.
566         * lib/fopen.c (rpl_fopen): Close fd before returning error.
567         * doc/posix-functions/open.texi (open): Document that Irix also
568         has the bug.
569         * doc/posix-functions/fopen.texi (fopen): Likewise.
570         Reported by Paolo Bonzini.
571
572 2008-09-24  Bruno Haible  <bruno@clisp.org>
573
574         Ensure that a filename ending in a slash cannot be used to access a
575         non-directory.
576         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
577         to check whether it's really a directory.
578         * lib/fopen.c: Include fcntl.h, unistd.h.
579         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
580         and fdopen().
581         * modules/fopen (Depends-on): Add unistd.
582         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
583         * tests/test-fopen.c (main): Likewise.
584         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
585         * doc/posix-functions/fopen.texi: Likewise.
586         Reported by Eric Blake.
587
588 2008-09-23  Eric Blake  <ebb9@byu.net>
589
590         c-stack: avoid compiler optimizations when provoking overflow
591         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
592         recursion harder to optimize, to ensure a stack overflow occurs.
593         * tests/test-c-stack.c (recurse): Likewise.
594         Borrowed from libsigsegv.
595
596         c-stack: work around Irix sigaltstack bug
597         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
598         whether sigaltstack uses wrong end of stack_t (copied in part from
599         libsigsegv).
600         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
601         Irix bug, without requiring an over-allocation.
602         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
603         bug.
604
605         fopen: document mingw bug on directories
606         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
607         not allowing a stream visiting a directory, even though reading
608         from such a stream is not portable.
609
610 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
611
612         * lib/poll.c: Rewrite.
613         * modules/poll: Depend on alloca.
614
615 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
616
617         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
618         instead define prototypes for a full set of wrappers.  Ensure
619         that Cygwin does not use the compatibility code, which is only
620         for MinGW.
621         * lib/winsock.c: New.
622         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
623         * modules/sys_socket: Add lib/winsock.c.
624
625         * modules/poll-tests: Add errno and perror.
626         * tests/test-poll.c: Use ioctl, not ioctlsocket.
627
628 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
629
630         * tests/test-poll.c: Downgrade minimum needed Winsock version.
631
632 2008-09-23  Bruno Haible  <bruno@clisp.org>
633
634         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
635         * doc/glibc-functions/*: Likewise.
636
637 2008-09-23  Simon Josefsson  <simon@josefsson.org>
638
639         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
640         success.
641
642 2008-09-22  Eric Blake  <ebb9@byu.net>
643             Bruno Haible  <bruno@clisp.org>
644
645         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
646         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
647         supply %A but mishandle pseudo-NaN.
648         Reported by Simon Josefsson.
649
650 2008-09-21  Bruno Haible  <bruno@clisp.org>
651
652         * tests/test-lock.c (main): Tweak skip message.
653         * tests/test-tls.c (main): Likewise.
654
655 2008-09-21  Bruno Haible  <bruno@clisp.org>
656
657         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
658         whether 'struct sigaction' has sa_sigaction here...
659         (gl_PREREQ_SIG_HANDLER_H): ... not here.
660         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
661
662 2008-09-21  Bruno Haible  <bruno@clisp.org>
663
664         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
665         section.
666         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
667         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
668         the new section.
669         (Support for obsolete systems lacking POSIX:2001): New section.
670         (String handling <string.h>): Move strdup to the new section.
671         Suggested by Simon Josefsson and Paolo Bonzini.
672
673 2008-09-21  Bruno Haible  <bruno@clisp.org>
674
675         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
676         exponents in %e and %g results on 'long double'. Needed for mingw's
677         improved *printf functions.
678         * tests/test-vasprintf-posix.c (test_function): Likewise.
679         * tests/test-snprintf-posix.h (test_function): Likewise.
680         * tests/test-sprintf-posix.h (test_function): Likewise.
681         Reported by Eric Blake.
682
683 2008-09-21  Bruno Haible  <bruno@clisp.org>
684
685         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
686         * tests/test-sprintf-posix.h (test_function): Likewise.
687
688 2008-09-21  Bruno Haible  <bruno@clisp.org>
689
690         * modules/getpass (Depends-on): Add strdup-posix.
691
692         New module 'strdup-posix'.
693         * modules/strdup-posix: New file.
694         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
695         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
696         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
697         REPLACE_STRDUP.
698         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
699         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
700         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
701         strdup-posix.
702
703         * modules/strdup (Depends-on): Remove malloc-posix.
704
705 2008-09-20  Bruno Haible  <bruno@clisp.org>
706
707         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
708         Wildenhues.
709
710 2008-09-20  Bruno Haible  <bruno@clisp.org>
711
712         Ensure that wint_t gets defined on IRIX 5.3.
713         * lib/wchar.in.h (wint_t): Define if not defined by the system.
714         * lib/wctype.in.h (wint_t): Likewise.
715         (__wctype_wint_t): Remove type.
716         (isw*): Use wint_t instead of __wctype_wint_t.
717         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
718         * modules/wchar (Files): Add m4/wint_t.m4.
719         (Makefile.am): Substitute HAVE_WINT_T.
720         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
721         * tests/test-wctype.c: Check that wint_t is defined.
722         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
723         * doc/posix-headers/wctype.texi: Likewise.
724         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
725
726 2008-09-18  Bruno Haible  <bruno@clisp.org>
727
728         * gnulib-tool (func_exit): Update comment.
729
730 2008-09-18  Simon Josefsson  <simon@josefsson.org>
731
732         * modules/getaddrinfo (Depends-on): Remove strdup, this module
733         assumes strdup exists and does not depend on strdup to return
734         ENOMEM on out of memory conditions.
735
736 2008-09-18  Bruno Haible  <bruno@clisp.org>
737
738         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
739         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
740         digits for the exponent.
741
742 2008-09-18  Jim Meyering  <meyering@redhat.com>
743             Bruno Haible  <bruno@clisp.org>
744
745         * lib/vasnprintf.c (decimal_point_char): Define also if
746         NEED_PRINTF_INFINITE_LONG_DOUBLE.
747
748 2008-09-16  Bruno Haible  <bruno@clisp.org>
749         and Eric Blake  <ebb9@byu.net>
750
751         vasnprintf: support Irix 5.3
752         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
753         that mishandle long double infinity.
754         Reported by Tom G. Christensen.
755
756 2008-09-16  Bruno Haible  <bruno@clisp.org>
757
758         * doc/glibc-functions/scandir.texi: Mention the function is missing on
759         Solaris 9.
760         * doc/glibc-functions/alphasort.texi: Likewise.
761         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
762
763 2008-09-16  Jim Meyering  <meyering@redhat.com>
764
765         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
766         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
767         a umask modification leak out of a subshell.  Otherwise, the
768         opensolaris /bin/sh would be accepted and thus cause unwarranted
769         failures in the coreutils test suite.
770
771 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
772
773         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
774         to succeed.
775
776 2008-09-16  Jim Meyering  <meyering@redhat.com>
777
778         avoid spurious test failure when library is built without ACL support
779         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
780         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
781         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
782         * tests/test-copy-acl.sh: Likewise.
783
784 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
785
786         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
787         based on character occurrence counts.
788
789 2008-09-15  Eric Blake  <ebb9@byu.net>
790
791         tests: avoid some compiler warnings
792         * tests/test-memchr.c (main): Pass NULL indirectly.
793         * tests/test-closein.c (main): Avoid unused variable.
794
795 2008-09-15  Bruno Haible  <bruno@clisp.org>
796
797         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
798         are missing on OpenBSD 4.0 individually.
799         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
800
801 2008-09-15  Bruno Haible  <bruno@clisp.org>
802
803         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
804         * doc/posix-functions/strerror.texi: Mention also Cygwin.
805         * doc/posix-functions/perror.texi: Likewise.
806         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
807         is missing.
808         Reported by Eric Blake.
809
810         * lib/errno.in.h: Use replacement values >= 2000.
811         Reported by Eric Blake.
812
813 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
814
815         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
816         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
817         limit.
818         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
819         compareseq was aborted.
820
821 2008-09-14  Bruno Haible  <bruno@clisp.org>
822
823         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
824         yvec_edit_count.
825         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
826         (fstrcmp_bounded): Simplify result computation accordingly.
827
828 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
829
830         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
831         (fstrcmp): Define in terms of fstrcmp_bounded.
832         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
833         lower_bound argument.
834         Return quickly if the result is certainly < lower_bound.
835         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
836
837 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
838
839         * lib/diffseq.h (EARLY_ABORT): New macro.
840         (compareseq): Change return type to bool. Return true when EARLY_ABORT
841         evaluates to true.
842
843 2008-09-14  Bruno Haible  <bruno@clisp.org>
844
845         * modules/perror-tests: New file.
846         * tests/test-perror.sh: New file.
847         * tests/test-perror.c: New file.
848
849         New module 'perror'.
850         * lib/stdio.in.h (perror): New declaration.
851         * lib/perror.c: New file.
852         * m4/perror.m4: New file.
853         * modules/perror: New file.
854         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
855         * doc/posix-functions/perror.texi: Mention the perror module.
856         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
857         REPLACE_PERROR.
858         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
859         REPLACE_PERROR.
860
861 2008-09-14  Bruno Haible  <bruno@clisp.org>
862
863         * modules/stdio (Makefile.am): Reorder to match the order in
864         lib/stdio.in.h.
865         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
866
867 2008-09-13  Bruno Haible  <bruno@clisp.org>
868
869         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
870
871 2008-09-13  Bruno Haible  <bruno@clisp.org>
872
873         Extend strerror to cover the added errno values.
874         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
875         (rpl_strerror): Provide error messages for the added errno values and
876         for the WSA* values.
877         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
878         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
879         strerror.
880         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
881         * modules/strerror (Depends-on): Add errno.
882         * doc/posix-functions/strerror.texi: Document the change.
883         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
884         and EOVERFLOW.
885
886 2008-09-13  Bruno Haible  <bruno@clisp.org>
887
888         * modules/EOVERFLOW: Remove file.
889         * m4/eoverflow.m4: Remove file.
890         * modules/EOVERFLOW-tests: Remove file.
891         * tests/test-EOVERFLOW.c: Remove file.
892         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
893         * modules/ftell (Depends-on): Likewise.
894         * modules/getdelim (Depends-on): Likewise.
895         * modules/getugroups (Depends-on): Likewise.
896         * modules/poll (Depends-on): Likewise.
897         * modules/snprintf (Depends-on): Likewise.
898         * modules/sprintf-posix (Depends-on): Likewise.
899         * modules/vasnprintf (Depends-on): Likewise.
900         * modules/vasprintf (Depends-on): Likewise.
901         * modules/vfprintf-posix (Depends-on): Likewise.
902         * modules/vsnprintf (Depends-on): Likewise.
903         * modules/vsprintf-posix (Depends-on): Likewise.
904         * modules/xvasprintf (Depends-on): Likewise.
905         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
906         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
907         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
908         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
909         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
910         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
911         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
912         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
913         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
914         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
915         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
916         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
917         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
918         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
919         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
920         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
921         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
922         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
923         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
924         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
925         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
926         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
927         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
928         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
929         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
930         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
931         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
932         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
933         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
934         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
935         * MODULES.html.sh: Remove EOVERFLOW.
936         * NEWS: Mention the change.
937
938 2008-09-13  Bruno Haible  <bruno@clisp.org>
939
940         * modules/errno-tests: New file.
941         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
942
943         * lib/errno.in.h: New file.
944         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
945         * modules/errno: New file.
946         * doc/posix-headers/errno.texi: Update documentation.
947         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
948
949 2008-09-13  Bruno Haible  <bruno@clisp.org>
950
951         * tests/test-poll.c: Use #if for native Windows, rather than testing
952         __MSVCRT__.
953
954 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
955             Bruno Haible  <bruno@clisp.org>
956
957         * lib/glob.c: Don't include <pwd.h> on native Windows.
958         (WINDOWS32): New macro.
959         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
960
961 2008-09-13  Bruno Haible  <bruno@clisp.org>
962
963         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
964         (ETIMEDOUT): Remove macro.
965         (glthread_cond_timedwait_multithreaded): New declaration.
966         (glthread_cond_timedwait): Use it.
967         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
968         (glthread_cond_timedwait_multithreaded): New function.
969
970 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
971
972         * modules/poll-tests: Do not check for io.h.
973         * tests/test-poll.c: Check for __MSVCRT__ instead.
974
975 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
976
977         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
978         * modules/poll-tests: Add inet_pton, stdbool, sockets.
979         * tests/test-poll.c: Use them.  Use _pipe on Windows.
980
981 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
982
983         * modules/poll-tests: New.
984         * tests/test-poll.c: New.
985
986 2008-09-12  Eric Blake  <ebb9@byu.net>
987
988         frexp: test for NetBSD failure on -0.0
989         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
990         not all, bugs from NetBSD 3.0 have been fixed.
991         * doc/posix-functions/frexp.texi (frexp): Document bug.
992         Reported by Thomas Klausner.
993
994         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
995         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
996         literal -0.0.
997         Reported by Jonathan C. Patschke <jp@centtech.com>.
998
999 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1000
1001         * lib/glthread/cond.h: Use dummy implementation also if
1002         USE_WIN32_THREADS.
1003
1004 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1005
1006         * modules/fnmatch-posix (License): Change to LGPLv2+.
1007         * modules/fnmatch-gnu (License): Likewise.
1008
1009 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1010
1011         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
1012
1013 2008-09-11  Jim Meyering  <meyering@redhat.com>
1014
1015         * users.txt: Add gtk-vnc.
1016
1017 2008-09-08  Simon Josefsson  <simon@josefsson.org>
1018
1019         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
1020         rotate amounts.
1021
1022         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
1023         required for 16-bit and 8-bit rotates.
1024         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
1025         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
1026         UINT8_MAX instead of hard-coded constants.
1027         Suggested by Paul Eggert.
1028
1029 2008-09-07  Bruno Haible  <bruno@clisp.org>
1030
1031         * tests/test-striconveh.c (main): Check behaviour when converting from
1032         UTF-7.
1033
1034         Make striconveh work better with stateful encodings.
1035         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
1036         that iconv does not increment the inptr when returning -1/EINVAL.
1037
1038 2008-09-07  Bruno Haible  <bruno@clisp.org>
1039
1040         * build-aux/config.rpath: Update according to libtool-2.2.6.
1041         * build-aux/config.libpath: Likewise.
1042
1043 2008-09-06  Bruno Haible  <bruno@clisp.org>
1044
1045         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
1046         * lib/freadptr.c (freadptr): Likewise.
1047         * lib/freadseek.c (freadptrinc): Likewise.
1048         Reported by Simon Josefsson.
1049
1050 2008-09-06  Bruno Haible  <bruno@clisp.org>
1051
1052         * modules/freadptr (License): Change to LGPLv2+.
1053         * modules/freadseek (License): Likewise.
1054         Suggested by Eric Blake.
1055
1056         * modules/memchr2 (License): Change to LGPLv2+.
1057         Approved by Eric Blake.
1058
1059 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1060             Bruno Haible  <bruno@clisp.org>
1061
1062         Make gnulib-tool work with native 'sed' on AIX.
1063         * gnulib-tool (sed_noop): New variable.
1064         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
1065         func_add_or_update, func_create_testdir): Use it to initialize sed
1066         script variables.
1067         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
1068
1069 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
1070             Bruno Haible  <bruno@clisp.org>
1071
1072         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
1073         also works after #include directives.
1074
1075 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
1076
1077         getdate.y: reject an out-of-range timezone value
1078         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
1079         the range [-24...+24].  When specified with only one or two digits,
1080         * tests/test-getdate.c: Tests for the fix.
1081         * doc/getdate.texi: Document this change.
1082
1083 2008-09-03  Bruno Haible  <bruno@clisp.org>
1084
1085         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
1086
1087 2008-09-02  Simon Josefsson  <simon@josefsson.org>
1088
1089         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
1090         <bruce.korb@gmail.com> with ideas from Ben Pfaff
1091         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
1092         Blake <ebb9@byu.net>.
1093
1094         * tests/test-bitrotate.c: Add more test vectors.
1095
1096 2008-09-02  Eric Blake  <ebb9@byu.net>
1097
1098         vasnprintf-posix: handle large precision via %.*d
1099         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
1100         when handling it ourselves.
1101         * tests/test-vasnprintf-posix.c (test_function): Add test.
1102         * tests/test-snprintf-posix.h (test_function): Likewise.
1103         * tests/test-sprintf-posix.h (test_function): Likewise.
1104         * tests/test-vasprintf-posix.c (test_function): Likewise.
1105         Reported by Alain Guibert.
1106
1107 2008-09-01  Eric Blake  <ebb9@byu.net>
1108
1109         c-stack: make configure-time check more robust
1110         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
1111         successful sigaction call.
1112         Reported by Tom G. Christensen.
1113
1114 2008-09-01  Bruno Haible  <bruno@clisp.org>
1115
1116         New module 'findprog-lgpl'.
1117         * modules/findprog-lgpl: New file.
1118         * lib/findprog-lgpl.c: New file.
1119         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
1120         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
1121         to decide whether to use strdup or xstrdup, concatenated_filename or
1122         xconcatenated_filename.
1123
1124 2008-09-01  Bruno Haible  <bruno@clisp.org>
1125
1126         Split module 'concat-filename' into 'concat-filename' (LGPL) and
1127         'xconcat-filename' (GPL).
1128         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
1129         (License): Change to LGPLv2+.
1130         * modules/xconcat-filename: New file.
1131         * lib/concat-filename.h (concatenated_filename): Change specification.
1132         (xconcatenated_filename): New declaration.
1133         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
1134         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
1135         memory situations.
1136         * lib/xconcat-filename.c: New file.
1137         * NEWS: Mention the change.
1138         * lib/findprog.c: Include concat-filename.h, not filename.h.
1139         (find_in_path): Use xconcatenated_filename instead of
1140         concatenated_filename.
1141         * lib/javacomp.c: Include concat-filename.h, not filename.h.
1142         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
1143         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
1144         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
1145         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
1146         instead of concatenated_filename.
1147         * lib/javaexec.c: Include concat-filename.h, not filename.h.
1148         (execute_java_class): Use xconcatenated_filename instead of
1149         concatenated_filename.
1150         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
1151         * modules/javacomp (Depends-on): Likewise.
1152         * modules/javaexec (Depends-on): Likewise.
1153
1154 2008-09-01  Bruno Haible  <bruno@clisp.org>
1155
1156         Split module 'filename' into 'filename' and 'concat-filename'.
1157         * modules/filename: Keep only lib/filename.h.
1158         (License): Change to LGPLv2+.
1159         * modules/concat-filename: New file, extracted from modules/filename.
1160         * lib/filename.h (concatenated_filename): Remove declaration.
1161         * lib/concat-filename.h: New file, extracted from lib/filename.h.
1162         * lib/concat-filename.c: Include concat-filename.h.
1163         * NEWS: Mention the change.
1164
1165 2008-09-01  Simon Josefsson  <simon@josefsson.org>
1166
1167         * lib/bitrotate.h (rotl8, rotr8): Add.
1168
1169         * modules/bitrotate (configure.ac): Need
1170         AC_REQUIRE([AC_C_INLINE]).
1171         (Description): Mention stdint.h.  Reported by Bruno Haible
1172         <bruno@clisp.org>.
1173
1174         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
1175         Paolo Bonzini <bonzini@gnu.org>.
1176
1177 2008-08-31  Bruno Haible  <bruno@clisp.org>
1178
1179         Assume Solaris specific bi-arch conventions on Solaris systems.
1180         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
1181         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
1182         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
1183         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
1184         like acl_libdirstem.
1185         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
1186         acl_libdirstem.
1187         * NEWS: Mention the change.
1188         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
1189
1190 2008-08-31  Jim Meyering  <meyering@redhat.com>
1191
1192         * lib/strftime.h: Add comments describing the two added arguments.
1193
1194         remove duplicate #include directives
1195         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
1196         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
1197
1198 2008-08-31  Bruno Haible  <bruno@clisp.org>
1199
1200         New module 'sigpipe-die'.
1201         * modules/sigpipe-die: New file.
1202         * lib/sigpipe-die.h: New file.
1203         * lib/sigpipe-die.c: New file.
1204         * MODULES.html.sh (Signal handling): Add sigpipe-die.
1205
1206 2008-08-31  Bruno Haible  <bruno@clisp.org>
1207
1208         Don't override previously installed signal handlers.
1209         * lib/fatal-signal.c (saved_sigactions): New variable.
1210         (uninstall_handlers): Reset the signal to the saved handler, not
1211         to SIG_DFL (except when ignored).
1212         (install_handlers): Save the previous handlers.
1213
1214 2008-08-30  Bruno Haible  <bruno@clisp.org>
1215
1216         * gnulib-tool (func_reset_sigpipe): New function.
1217         (func_get_automake_snippet, func_modules_transitive_closure,
1218         func_import): Invoke it before a join command that reads from stdin,
1219         to avoid "echo: write error: Broken pipe" error messages on stderr.
1220         Reported by Sam Steingold <sds@gnu.org>.
1221
1222 2008-08-30  Bruno Haible  <bruno@clisp.org>
1223
1224         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
1225         Code copied from m4/open.m4.
1226         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
1227         access and the filename ends in a slash. Code copied from lib/open.c.
1228         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
1229         * tests/test-fopen.c (main): Check against bug with trailing slash.
1230
1231 2008-08-29  Bruno Haible  <bruno@clisp.org>
1232
1233         Avoid some "gcc -pedantic" warnings.
1234         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
1235         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
1236         * lib/dirent.in.h: Likewise.
1237         * lib/fcntl.in.h: Likewise.
1238         * lib/float.in.h: Likewise.
1239         * lib/iconv.in.h: Likewise.
1240         * lib/inttypes.in.h: Likewise.
1241         * lib/locale.in.h: Likewise.
1242         * lib/math.in.h: Likewise.
1243         * lib/netinet_in.in.h: Likewise.
1244         * lib/search.in.h: Likewise.
1245         * lib/signal.in.h: Likewise.
1246         * lib/stdarg.in.h: Likewise.
1247         * lib/stdint.in.h: Likewise.
1248         * lib/stdio.in.h: Likewise.
1249         * lib/stdlib.in.h: Likewise.
1250         * lib/string.in.h: Likewise.
1251         * lib/strings.in.h: Likewise.
1252         * lib/sys_select.in.h: Likewise.
1253         * lib/sys_socket.in.h: Likewise.
1254         * lib/sys_stat.in.h: Likewise.
1255         * lib/sys_time.in.h: Likewise.
1256         * lib/sysexits.in.h: Likewise.
1257         * lib/time.in.h: Likewise.
1258         * lib/unistd.in.h: Likewise.
1259         * lib/wchar.in.h: Likewise.
1260         * lib/wctype.in.h: Likewise.
1261         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
1262         * modules/fchdir (Makefile.am): Likewise.
1263         * modules/fcntl (Makefile.am): Likewise.
1264         * modules/float (Makefile.am): Likewise.
1265         * modules/iconv_open (Makefile.am): Likewise.
1266         * modules/inttypes (Makefile.am): Likewise.
1267         * modules/locale (Makefile.am): Likewise.
1268         * modules/math (Makefile.am): Likewise.
1269         * modules/netinet_in (Makefile.am): Likewise.
1270         * modules/search (Makefile.am): Likewise.
1271         * modules/signal (Makefile.am): Likewise.
1272         * modules/stdarg (Makefile.am): Likewise.
1273         * modules/stdint (Makefile.am): Likewise.
1274         * modules/stdio (Makefile.am): Likewise.
1275         * modules/stdlib (Makefile.am): Likewise.
1276         * modules/string (Makefile.am): Likewise.
1277         * modules/strings (Makefile.am): Likewise.
1278         * modules/sys_select (Makefile.am): Likewise.
1279         * modules/sys_socket (Makefile.am): Likewise.
1280         * modules/sys_stat (Makefile.am): Likewise.
1281         * modules/sys_time (Makefile.am): Likewise.
1282         * modules/sysexits (Makefile.am): Likewise.
1283         * modules/time (Makefile.am): Likewise.
1284         * modules/unistd (Makefile.am): Likewise.
1285         * modules/wchar (Makefile.am): Likewise.
1286         * modules/wctype (Makefile.am): Likewise.
1287         Reported by Reuben Thomas <rrt@sc3d.org>.
1288
1289 2008-08-29  Bruno Haible  <bruno@clisp.org>
1290
1291         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
1292         any more.
1293
1294 2008-08-29  Simon Josefsson  <simon@josefsson.org>
1295
1296         * MODULES.html.sh (Misc): Add bitrotate.
1297
1298         * modules/bitrotate: New file.
1299
1300         * lib/bitrotate.h: New file.
1301
1302         * modules/bitrotate-tests: New file.
1303
1304         * tests/test-bitrotate.c: New file.
1305
1306         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
1307         on the bitrotate module.
1308
1309         * lib/arctwo.c: Use new bitrotate module.
1310
1311 2008-08-29  Jim Meyering  <meyering@redhat.com>
1312
1313         bootstrap: merge changes from coreutils
1314         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
1315         of copied files.  Remove a kludge, now that this is fixed.
1316         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
1317         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
1318         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
1319
1320 2008-08-29  Bruno Haible  <bruno@clisp.org>
1321
1322         * MODULES.html.sh: Remove --cvs-urls option.
1323
1324 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
1325
1326         maint.mk: adjust to file name change
1327         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
1328
1329 2008-08-28  Jim Meyering  <meyering@redhat.com>
1330
1331         * modules/getndelim2 (License): Relicense to LGPLv2+.
1332         Approved by Richard Stallman for the version of 1995, and by
1333         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
1334
1335 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
1336
1337         * lib/getdelim.c (flockfile, funlockfile): Make all of them
1338         dummy if one is not available.  Do not touch them if
1339         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
1340         (getc_maybe_unlocked): New.
1341         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
1342
1343 2008-08-26  Eric Blake  <ebb9@byu.net>
1344
1345         doc/INSTALL: resync from autoconf
1346         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
1347         (INSTALL_PRELUDE): Delete; this is done more efficiently by
1348         moving...
1349         * install.texi [!autoconf]: ...here.  Resync from autoconf.
1350         * INSTALL: Regenerate.
1351         * INSTALL.ISO: New file.
1352         * INSTALL.UTF-8: Likewise.
1353
1354 2008-08-26  Jim Meyering  <meyering@redhat.com>
1355
1356         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
1357         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
1358         these definitions conditional, so that they may be overridden, too.
1359
1360 2008-08-26  Bruno Haible  <bruno@clisp.org>
1361
1362         Generate INSTALL file variants with prettier quotes.
1363         * doc/Makefile (INSTALL_PRELUDE): New macro.
1364         (INSTALL): Use it.
1365         (INSTALL.ISO, INSTALL.UTF-8): New rules.
1366
1367 2008-08-26  Bruno Haible  <bruno@clisp.org>
1368
1369         Run makeinfo in an English locale.
1370         * doc/Makefile (MAKEINFO): New variable.
1371
1372 2008-08-26  Bruno Haible  <bruno@clisp.org>
1373
1374         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
1375         Suggested by Eric Blake.
1376
1377 2008-08-25  Bruno Haible  <bruno@clisp.org>
1378
1379         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
1380
1381 2008-08-25  Eric Blake  <ebb9@byu.net>
1382
1383         c-stack: test that stack overflow can be caught
1384         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
1385         that platform allows handling stack overflow; at least OS/2 EMX
1386         has sigaltstack, but crashes before transferring control to
1387         handler on stack overflow.
1388         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
1389         check for HAVE_STACK_OVERFLOW_HANDLING.
1390         Reported by Elbert Pol.
1391
1392 2008-08-25  Bruno Haible  <bruno@clisp.org>
1393
1394         * doc/posix-functions/strftime.texi: Fix description of strftime
1395         module.
1396
1397 2008-08-24  Bruno Haible  <bruno@clisp.org>
1398
1399         * tests/uniwidth/test-uc_width2.c: New file.
1400         * tests/uniwidth/test-uc_width2.sh: New file.
1401         * modules/uniwidth/width-tests (Files): Add the new files.
1402         (TESTS): Add uniwidth/test-uc_width2.sh.
1403         (TESTS_ENVIRONMENT): New variable.
1404         (check_PROGRAMS): Add test-uc_width2.
1405         (test_uc_width2_SOURCES): New variable.
1406
1407         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
1408         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
1409         not 0x00AB.
1410         Reported by Alexander V. Lukyanov <lav@netis.ru>.
1411
1412 2008-08-22  Eric Blake  <ebb9@byu.net>
1413
1414         test-lock, test-tls: mention why a test is skipped
1415         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
1416         skipped.
1417         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
1418
1419         count-one-bits: relax license
1420         * modules/count-one-bits (License): Relicense to LGPLv2+.
1421         Suggested by Ludovic Courtès, approved by Ben Pfaff.
1422
1423 2008-08-22  Andreas Schwab  <schwab@suse.de>
1424
1425         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1426         Remove spurious space in assignment.
1427
1428 2008-08-21  Simon Josefsson  <simon@josefsson.org>
1429
1430         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
1431         Paul Eggert <eggert@CS.UCLA.EDU>.
1432
1433 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
1434
1435         * modules/gettext: Add m4/threadlib.m4.
1436
1437 2008-08-19  Eric Blake  <ebb9@byu.net>
1438
1439         test-c-stack: fix compilation failure on FreeBSD 5.0
1440         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
1441         headers before <sys/resource.h>.
1442         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
1443         the bug.
1444         Reported by Nelson H. F. Beebe.
1445
1446         strverscmp: migrate from "strverscmp.h" to <string.h>
1447         * modules/string (Makefile.am): Add new hooks.
1448         * modules/strverscmp (Files): Remove strverscmp.h.
1449         (Depends-on): Add string.
1450         (configure.ac): Add indicator.
1451         (Include): Mention new header.
1452         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
1453         defaults.
1454         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
1455         results.
1456         * lib/strverscmp.h: Delete.
1457         * lib/string.in.h (strverscmp): Provide declaration, when needed.
1458         * tests/test-strverscmp.c (includes): Adjust client.
1459         * lib/check-version.c (includes): Likewise.
1460         * NEWS: Document the change.
1461
1462         strverscmp: add unit test
1463         * modules/strverscmp-tests: New file.
1464         * tests/test-strverscmp.c: Likewise.
1465
1466 2008-08-19  Simon Josefsson  <simon@josefsson.org>
1467
1468         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
1469         regarding Windows crypto stuff, from Mono.
1470
1471 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
1472
1473         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
1474         if present, for intel RND.  Return error on failures.
1475
1476 2008-08-18  Ben Pfaff  <blp@gnu.org>
1477
1478         gitlog-to-changelog: give better diagnostic for failed pipe-open
1479         * build-aux/gitlog-to-changelog: Improve error message: suggest
1480         that the version of Git may be too old.
1481
1482 2008-08-18  Simon Josefsson  <simon@josefsson.org>
1483
1484         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
1485         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
1486
1487 2008-08-18  Bruno Haible  <bruno@clisp.org>
1488
1489         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
1490         pthread_in_use().
1491
1492 2008-08-18  Bruno Haible  <bruno@clisp.org>
1493
1494         * lib/glthread/threadlib.c: Include <pthread.h>.
1495
1496 2008-08-18  Bruno Haible  <bruno@clisp.org>
1497
1498         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
1499         glthread_recursive_lock_* macros.
1500         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
1501         Fix syntax error.
1502
1503 2008-08-18  Bruno Haible  <bruno@clisp.org>
1504
1505         * lib/glthread/thread.c: Avoid forcing a context switch right after
1506         thread creation.
1507
1508 2008-08-17  Bruno Haible  <bruno@clisp.org>
1509
1510         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
1511         * lib/glthread/thread.h: Provide Win32 specific implementation.
1512         * modules/thread (Files): Add lib/glthread/thread.c.
1513         (Depends-on): Add lock.
1514         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
1515
1516 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1517
1518         New module 'yield'.
1519         * modules/yield: New file.
1520         * lib/glthread/yield.h: New file.
1521         * m4/yield.m4: New file.
1522         * MODULES.html.sh (Multithreading): Add yield.
1523
1524 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1525
1526         New module 'thread'.
1527         * modules/thread: New file.
1528         * lib/glthread/thread.h: New file.
1529         * m4/thread.m4: New file.
1530         * MODULES.html.sh (Multithreading): Add thread.
1531
1532 2008-08-17  Bruno Haible  <bruno@clisp.org>
1533
1534         * lib/glthread/lock.h: Include <stdlib.h> always.
1535         * lib/glthread/tls.h: Likewise.
1536         * lib/glthread/cond.h: Likewise.
1537
1538 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1539
1540         New module 'cond'.
1541         * modules/cond: New file.
1542         * lib/glthread/cond.h: New file.
1543         * lib/glthread/cond.c: New file.
1544         * m4/cond.m4: New file.
1545         * MODULES.html.sh (Multithreading): Add cond.
1546
1547 2008-08-16  Eric Blake  <ebb9@byu.net>
1548
1549         c-stack: fix regression on Irix 5.3 from 2008-06-21
1550         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
1551         sa_sigaction...
1552         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
1553         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
1554         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
1555         * modules/signal (Makefile.am): Use the value.
1556         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
1557         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
1558         * doc/posix-headers/signal.texi (signal.h): Document this
1559         portability issue.
1560         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
1561         Reported by Tom G. Christensen.
1562
1563 2008-08-17  Bruno Haible  <bruno@clisp.org>
1564
1565         New module 'threadlib'.
1566         * modules/threadlib: New file.
1567         * lib/glthread/threadlib.c: New file, extracted from
1568         lib/glthread/lock.c.
1569         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
1570         functions.
1571         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
1572         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
1573         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
1574         macros.
1575         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
1576         (gl_DISABLE_THREADS): Remove macro.
1577         * modules/lock (Files): Remove build-aux/config.rpath.
1578         (Depends-on): Remove havelib. Add threadlib.
1579         (configure.ac-early): Remove section.
1580         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
1581         * modules/tls (Depends-on): Remove lock. Add threadlib.
1582         (Link): New section, copied from threadlib.
1583         * MODULES.html.sh (Multithreading): Add threadlib.
1584
1585 2008-08-14  Bruno Haible  <bruno@clisp.org>
1586
1587         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
1588         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
1589         glthread_rwlock_unlock, glthread_rwlock_destroy,
1590         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
1591         glthread_recursive_lock_destroy): Define as macros always.
1592         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
1593         glthread_lock_lock.
1594         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
1595         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
1596         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
1597         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
1598         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
1599         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
1600         (glthread_recursive_lock_lock_func): Renamed from
1601         glthread_recursive_lock_lock.
1602         (glthread_recursive_lock_unlock_func): Renamed from
1603         glthread_recursive_lock_unlock.
1604         (glthread_recursive_lock_destroy_func): Renamed from
1605         glthread_recursive_lock_destroy.
1606
1607 2008-08-14  Bruno Haible  <bruno@clisp.org>
1608
1609         * lib/glthread/lock.h: Renamed from lib/lock.h.
1610         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
1611         * lib/glthread/tls.h: Renamed from lib/tls.h.
1612         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
1613         * lib/fstrcmp.c: Update includes.
1614         * lib/strsignal.c: Update includes.
1615         * modules/lock (Files, Makefile.am): Update.
1616         (Include): Change to "glthread/lock.h".
1617         * modules/tls (Files, Makefile.am): Update.
1618         (Include): Change to "glthread/tls.h".
1619         * tests/test-lock.c: Update includes.
1620         * tests/test-tls.c: Update includes.
1621         * NEWS: Mention the renamed header files.
1622
1623 2008-08-11  Jim Meyering  <meyering@redhat.com>
1624
1625         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
1626
1627 2008-08-11  Eric Blake  <ebb9@byu.net>
1628
1629         test-c-stack: avoid C99-ism
1630         * tests/test-c-stack.c (main): Fix whitespace, move declaration
1631         before statement.
1632         Reported by Alain Guibert.
1633
1634 2008-08-10  Jim Meyering  <meyering@redhat.com>
1635
1636         ensure that return value of uinttostr et al are not ignored
1637         * lib/inttostr.h (__GNUC_PREREQ): Define.
1638         (__attribute_warn_unused_result__): Define.
1639         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
1640
1641 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
1642
1643         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
1644         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
1645
1646 2008-08-07  Jim Meyering  <meyering@redhat.com>
1647
1648         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
1649
1650         * modules/mkstemp (License): Relicense under LGPLv2+.
1651         * modules/tempname (License): Likewise.
1652
1653 2008-08-06  Bruno Haible  <bruno@clisp.org>
1654
1655         * lib/poll.c (poll): Further micro-optimization.
1656
1657 2008-08-06  Jim Meyering  <meyering@redhat.com>
1658
1659         inet_pton.c: use locale-independent tolower
1660         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
1661         (inet_pton6): Use c_tolower rather than tolower.
1662         * modules/inet_pton (Depends-on): Add c-ctype.
1663
1664 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
1665
1666         * lib/poll.c (poll): Avoid division when timeout is 0, cache
1667         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
1668
1669 2008-08-06  Jim Meyering  <meyering@redhat.com>
1670
1671         * modules/inet_pton (License): Relicense under LGPLv2+.
1672
1673 2008-08-03  Bruno Haible  <bruno@clisp.org>
1674
1675         Additional non-aborting API for lock and tls.
1676         * lib/lock.h: Include <errno.h>.
1677         (glthread_lock_init): New macro/function.
1678         (gl_lock_init): Define as wrapper around glthread_lock_init.
1679         (glthread_lock_lock): New macro/function.
1680         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
1681         (glthread_lock_unlock): New macro/function.
1682         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
1683         (glthread_lock_destroy): New macro/function.
1684         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
1685         (glthread_rwlock_init): New macro/function.
1686         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
1687         (glthread_rwlock_rdlock): New macro/function.
1688         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
1689         (glthread_rwlock_wrlock): New macro/function.
1690         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
1691         (glthread_rwlock_unlock): New macro/function.
1692         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
1693         (glthread_rwlock_destroy): New macro/function.
1694         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
1695         (glthread_recursive_lock_init): New macro/function.
1696         (gl_recursive_lock_init): Define as wrapper around
1697         glthread_recursive_lock_init.
1698         (glthread_recursive_lock_lock): New macro/function.
1699         (gl_recursive_lock_lock): Define as wrapper around
1700         glthread_recursive_lock_lock.
1701         (glthread_recursive_lock_unlock): New macro/function.
1702         (gl_recursive_lock_unlock): Define as wrapper around
1703         glthread_recursive_lock_unlock.
1704         (glthread_recursive_lock_destroy): New macro/function.
1705         (gl_recursive_lock_destroy): Define as wrapper around
1706         glthread_recursive_lock_destroy.
1707         (glthread_once): New macro/function.
1708         (gl_once): Define as wrapper around glthread_once.
1709         Update function declarations.
1710         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
1711         glthread_rwlock_init. Return error code.
1712         (glthread_rwlock_rdlock_multithreaded): Renamed from
1713         glthread_rwlock_rdlock. Return error code.
1714         (glthread_rwlock_wrlock_multithreaded): Renamed from
1715         glthread_rwlock_wrlock. Return error code.
1716         (glthread_rwlock_unlock_multithreaded): Renamed from
1717         glthread_rwlock_unlock. Return error code.
1718         (glthread_rwlock_destroy_multithreaded): Renamed from
1719         glthread_rwlock_destroy. Return error code.
1720         (glthread_recursive_lock_init_multithreaded): Renamed from
1721         glthread_recursive_lock_init. Return error code.
1722         (glthread_recursive_lock_lock_multithreaded): Renamed from
1723         glthread_recursive_lock_lock. Return error code.
1724         (glthread_recursive_lock_unlock_multithreaded): Renamed from
1725         glthread_recursive_lock_unlock. Return error code.
1726         (glthread_recursive_lock_destroy_multithreaded): Renamed from
1727         glthread_recursive_lock_destroy. Return error code.
1728         (glthread_once_call): Make static.
1729         (glthread_once_multithreaded): Renamed from glthread_once.
1730         * lib/tls.h: Include <errno.h>.
1731         (glthread_tls_key_init): New macro/function.
1732         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
1733         (glthread_tls_set): New macro/function.
1734         (gl_tls_set): Define as wrapper around glthread_tls_set.
1735         (glthread_tls_key_destroy): New macro/function.
1736         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
1737         Update function declarations.
1738         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
1739         glthread_tls_get.
1740         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1741
1742 2008-08-04  Eric Blake  <ebb9@byu.net>
1743
1744         gnumakefile: use space, not TAB, outside of targets
1745         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
1746
1747 2008-08-02  Jim Meyering  <meyering@redhat.com>
1748
1749         getdate.y: avoid locale-dependent date parsing failure
1750         In Turkish locales, getdate would fail to recognize keywords
1751         containing a lowercase "i".  The solution is not to rely on
1752         locale-sensitive case-conversion.
1753         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
1754         (lookup_word): Use c_toupper in place of toupper.
1755         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
1756         Reported by Vefa Bicakci <bicave@superonline.com> in
1757         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
1758         * modules/getdate (Depends-on): Add c-ctype.
1759
1760 2008-08-02  Bruno Haible  <bruno@clisp.org>
1761
1762         * gnulib-tool (func_import): When updating or creating a .gitignore
1763         file, prepend each added line with a slash, and ignore leading slashes
1764         from the existing lines.
1765         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
1766
1767 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1768
1769         Portability fix for GNU make 3.79.1.
1770         * top/GNUmakefile: Avoid 'else COND', which older GNU make
1771         versions do not understand.
1772
1773 2008-08-01  Bruno Haible  <bruno@clisp.org>
1774
1775         Work around bug of HP-UX 10.20 cc with -0.0 literal.
1776         * tests/test-isnanf.h (zero): New variable.
1777         (main): Avoid literal -0.0f.
1778         * tests/test-isnand.h (zero): New variable.
1779         (main): Avoid literal -0.0.
1780         * tests/test-isnanl.h (zero): New variable.
1781         (main): Avoid literal -0.0L.
1782         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
1783         (test_float, test_double, test_long_double): Avoid literals -0.0f,
1784         -0.0, -0.0L.
1785         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
1786         (test_signbitd): Avoid literal -0.0.
1787         (test_signbitl): Avoid literal -0.0L.
1788         * tests/test-ceilf1.c (zero): New variable.
1789         (main): Avoid literal -0.0f.
1790         * tests/test-ceill.c (zero): New variable.
1791         (main): Avoid literal -0.0L.
1792         * tests/test-floorf1.c (zero): New variable.
1793         (main): Avoid literal -0.0f.
1794         * tests/test-floorl.c (zero): New variable.
1795         (main): Avoid literal -0.0L.
1796         * tests/test-roundf1.c (zero): New variable.
1797         (main): Avoid literal -0.0f.
1798         * tests/test-round1.c (zero): New variable.
1799         (main): Avoid literal -0.0.
1800         * tests/test-roundl.c (zero): New variable.
1801         (main): Avoid literal -0.0L.
1802         * tests/test-truncf1.c (zero): New variable.
1803         (main): Avoid literal -0.0f.
1804         * tests/test-trunc1.c (zero): New variable.
1805         (main): Avoid literal -0.0.
1806         * tests/test-truncl.c (zero): New variable.
1807         (main): Avoid literal -0.0L.
1808         * tests/test-frexp.c (zero): New variable.
1809         (main): Avoid literal -0.0.
1810         * tests/test-frexpl.c (zero): New variable.
1811         (main): Avoid literal -0.0L.
1812         * tests/test-ldexpl.c (zero): New variable.
1813         (main): Avoid literal -0.0L.
1814         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1815         (zerod, zerol): New variables.
1816         (test_function): Avoid literals -0.0, -0.0L.
1817         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1818         (zerod, zerol): New variables.
1819         (test_function): Avoid literals -0.0, -0.0L.
1820         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1821         (zerod, zerol): New variables.
1822         (test_function): Avoid literals -0.0, -0.0L.
1823         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1824         (zerod, zerol): New variables.
1825         (test_function): Avoid literals -0.0, -0.0L.
1826         * tests/test-strtod.c (zero): New variable.
1827         (main): Avoid literal -0.0.
1828         Reported by Jonathan C. Patschke <jp@centtech.com>.
1829
1830 2008-07-31  Jim Meyering  <meyering@redhat.com>
1831
1832         sha256.h: correct definition of SHA224_DIGEST_SIZE
1833         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
1834         Reported by Paulie Pena IV <paulie4@gmail.com>.
1835         Define as 224 / 8, rather than as a literal.
1836         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
1837         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
1838         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
1839
1840 2008-07-31  Bruno Haible  <bruno@clisp.org>
1841
1842         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
1843         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
1844         Reported by Jonathan Patschke <jp@centtech.com>.
1845
1846 2008-07-31  Bruno Haible  <bruno@clisp.org>
1847
1848         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
1849         Reported by Paolo Bonzini <bonzini@gnu.org>.
1850
1851 2008-07-30  Eric Blake  <ebb9@byu.net>
1852
1853         test-strtod: allow compilation without -lm
1854         * tests/test-strtod.c (main): Avoid link dependence on fabs.
1855         Reported by Dennis Clarke <blastwave@gmail.com>.
1856
1857 2008-07-28  Jim Meyering  <meyering@redhat.com>
1858
1859         bootstrap: work also when there are no .po files in po/
1860         * build-aux/bootstrap (update_po_files): Complete the change
1861         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
1862
1863 2008-07-27  Jim Meyering  <meyering@redhat.com>
1864
1865         * users.txt: Add zile.
1866
1867 2008-07-26  Ben Pfaff  <blp@gnu.org>
1868
1869         Add missing dependencies on new m4/exponent[fdl].m4 files.
1870         * modules/isnanf-nolibm: Add m4/exponentf.m4.
1871         * modules/isnand-nolibm: Add m4/exponentd.m4.
1872         * modules/isnanl-nolibm: Add m4/exponentl.m4.
1873         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
1874         m4/isnan[fdl].m4, because the macros actually used moved.
1875         Reported by Jim Meyering.
1876
1877 2008-07-14  Ben Pfaff  <blp@gnu.org>
1878
1879         Add isinf module.
1880         * lib/isinf.c: New file.
1881         * lib/math.in.h: Define isinf macro if we have decided to replace
1882         it.
1883         * m4/isinf.m4: New file.
1884         * m4/math_h.m4: Initialize and substitute variables for isinf
1885         module.
1886         * modules/isinf: New file.
1887         * modules/isinf-tests: New file.
1888         * modules/math: Add substitutions for new module.
1889         * tests/test-isinf.c: New file.
1890         * doc/posix-functions/isinf.texi: Mention new module.
1891         * MODULES.html.sh: Mention new module.
1892
1893 2008-07-14  Ben Pfaff  <blp@gnu.org>
1894
1895         Factor out some macros for use by additional modules.
1896         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
1897         exponentf.m4.
1898         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
1899         exponentd.m4.
1900         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
1901         file exponentl.m4.
1902         * m4/exponentf.m4: New file.
1903         * m4/exponentd.m4: New file.
1904         * m4/exponentl.m4: New file.
1905         * modules/isnanf: Use new file m4/exponentf.m4.
1906         * modules/isnand: Use new file m4/exponentd.m4.
1907         * modules/isnanl: Use new file m4/exponentl.m4.
1908
1909 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
1910
1911         mktime.c: normalize tp->tm_isdst value to -1/0/1.
1912         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
1913         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
1914         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
1915
1916         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
1917         readlink on platforms without PATH_MAX.
1918
1919 2008-07-21  Eric Blake  <ebb9@byu.net>
1920
1921         Warn, not fail, on stale version.
1922         * top/GNUmakefile (_curr-ver): Tone down previous patch.
1923
1924         Don't allow installation with stale devel version number.
1925         * top/GNUmakefile (_is-install-target): New macro.
1926         (_curr-ver): Forbid installation with stale version number.
1927
1928 2008-07-20  Bruno Haible  <bruno@clisp.org>
1929
1930         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
1931         TESTS_ENVIRONMENT.
1932         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
1933
1934 2008-07-20  Bruno Haible  <bruno@clisp.org>
1935
1936         * lib/c-stack.h (c_stack_action): Add documentation.
1937         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
1938
1939 2008-07-20  Bruno Haible  <bruno@clisp.org>
1940
1941         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
1942         * modules/readlink (License): Likewise.
1943
1944 2008-07-17  Eric Blake  <ebb9@byu.net>
1945
1946         * modules/c-stack (Link): Fix typo.
1947
1948         Make c-stack use libsigsegv, when available.
1949         * modules/c-stack (Depends-on): Add libsigsegv.
1950         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
1951         needed.
1952         * lib/c-stack.c (SIGSTKSZ): Define fallback.
1953         (segv_handler, overflow_handler, c_stack_action)
1954         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
1955         implementation when libsigsegv is available, but only when using
1956         the library is necessary.
1957         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
1958         comment, explaining why XSI check fails on Linux.
1959         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
1960         * tests/test-c-stack2.sh: Tweak skip message.
1961         * NEWS: Document new link-time requirements.
1962
1963 2008-07-16  Eric Blake  <ebb9@byu.net>
1964
1965         c-stack: Expose false positives when not using libsigsegv.
1966         * modules/c-stack-tests (Files): Expand test.
1967         * tests/test-c-stack.c (main): Add means to conditionally trigger
1968         non-overflow SIGSEGV.
1969         * tests/test-c-stack2.sh: New file.
1970
1971 2008-07-14  Bruno Haible  <bruno@clisp.org>
1972
1973         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
1974         Reported by Eric Blake.
1975
1976 2008-07-14  Sam Steingold  <sds@gnu.org>
1977             Bruno Haible  <bruno@clisp.org>
1978
1979         New module libsigsegv.
1980         * modules/libsigsegv: New file.
1981         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
1982         modifications.
1983         * MODULES.html.sh (Signal handling): New section.
1984
1985 2008-07-14  Bruno Haible  <bruno@clisp.org>
1986
1987         * modules/unictype/ctype-* (Description): Add the word "function".
1988         Improves the resulting doc in MODULES.html.
1989
1990 2008-07-12  Ben Pfaff  <blp@gnu.org>
1991
1992         Add longlong module.
1993         * modules/longlong: New file.
1994
1995 2008-07-12  Bruno Haible  <bruno@clisp.org>
1996
1997         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
1998         to empty.
1999
2000 2008-07-10  Ben Pfaff  <blp@gnu.org>
2001
2002         Add isnan module.
2003         * doc/posix-functions/isnan.texi: Mention new module.
2004         * lib/math.in.h: Define isnan macro if we have decided to replace
2005         it.
2006         * m4/isnan.m4: New file.
2007         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
2008         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
2009         also.
2010         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
2011         redundancy.
2012         * m4/math_h.m4: Initialize and substitute variables for isnan
2013         module.
2014         * modules/isnan: New file.
2015         * modules/isnan-tests: New file.
2016         * modules/math: Add substitutions for new module.
2017         * tests/test-isnan.c: New file.
2018         * MODULES.html.sh: Mention new module.
2019
2020 2008-07-10  Ben Pfaff  <blp@gnu.org>
2021
2022         Add isnanf module.
2023         * lib/isnanf.m4: New file.
2024         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
2025         (gl_HAVE_ISNANF_IN_LIBM): New macro.
2026         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
2027         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
2028         * modules/isnanf: New file.
2029         * modules/isnanf-tests: New file.
2030         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
2031         files.
2032         * tests/test-isnanf-nolibm.c: factored most of its contents into
2033         new file tests/test-isnanf.h.
2034         * tests/test-isnanf.h: New file.
2035         * tests/test-isnanf.c: New file.
2036         * MODULES.html.sh: Mention new module.
2037         * doc/glibc-functions/isnanf.texi: Mention new module.
2038
2039 2008-07-10  Ben Pfaff  <blp@gnu.org>
2040
2041         Add isnand module.
2042         * lib/isnand.h: New file.
2043         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
2044         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
2045         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
2046         functionality also.
2047         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
2048         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
2049         (gl_HAVE_ISNAND_IN_LIBM): New macro.
2050         * modules/isnand: New file.
2051         * modules/isnand-tests: New file.
2052         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
2053         files.
2054         * tests/test-isnand-nolibm.c: factored most of its contents into
2055         new file tests/test-isnand.h.
2056         * tests/test-isnand.h: New file.
2057         * tests/test-isnand.c: New file.
2058         * MODULES.html.sh: Mention new module.
2059
2060 2008-07-10  Ben Pfaff  <blp@gnu.org>
2061
2062         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
2063         * lib/isnand.h: Rename lib/isnand-nolibm.h.
2064         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
2065         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
2066         * modules/isnanf-nolibm: Update references to renamed files.
2067         * modules/isnand-nolibm: Likewise.
2068         * modules/isnanf-nolibm-tests: Likewise.
2069         * modules/isnand-nolibm-tests: Likewise.
2070         * lib/frexp.c: Likewise.
2071         * lib/isfinite.c: Likewise.
2072         * lib/signbitd.c: Likewise.
2073         * lib/signbitf.c: Likewise.
2074         * lib/vasnprintf.c: Likewise.
2075         * tests/test-ceilf1.c: Likewise.
2076         * tests/test-ceilf2.c: Likewise.
2077         * tests/test-floorf1.c: Likewise.
2078         * tests/test-floorf2.c: Likewise.
2079         * tests/test-frexp.c: Likewise.
2080         * tests/test-round1.c: Likewise.
2081         * tests/test-round2.c: Likewise.
2082         * tests/test-roundf1.c: Likewise.
2083         * tests/test-strtod.c: Likewise.
2084         * tests/test-trunc1.c: Likewise.
2085         * tests/test-trunc2.c: Likewise.
2086         * tests/test-truncf1.c: Likewise.
2087         * tests/test-truncf2.c: Likewise.
2088         * NEWS: Mention the renamed header files.
2089
2090 2008-07-11  Jim Meyering  <meyering@redhat.com>
2091
2092         vc-list-files: make the last-resort awk code more portable
2093         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
2094         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
2095         does not support it.
2096
2097 2008-07-10  Eric Blake  <ebb9@byu.net>
2098
2099         Work with tar's bootstrap.
2100         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
2101         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
2102         an m4 comment.
2103
2104 2008-07-09  Jim Meyering  <meyering@redhat.com>
2105
2106         posix-shell.m4: fix typo that made this test malfunction
2107         * m4/posix-shell.m4: Remove capitalization in variable name.
2108
2109 2008-07-08  Bruno Haible  <bruno@clisp.org>
2110
2111         * m4/onceonly.m4: Update comments.
2112         Reported by Ben Pfaff <blp@cs.stanford.edu>.
2113
2114 2008-07-04  Jim Meyering  <meyering@redhat.com>
2115
2116         * users.txt: Add vc-dwim.
2117         (bison, coreutils): Use the gitweb URL.
2118
2119 2008-07-03  Jim Meyering  <meyering@redhat.com>
2120
2121         * users.txt: Add libffcall.  From Sam Steingold.
2122
2123 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
2124
2125         getdate.y: do not ignore TZ with relative day, month or year offset
2126         * lib/getdate.y (get_date): Move the tz-handling block to follow the
2127         relative-date-handling, since otherwise, the latter would clobber the
2128         sole output (an updated Start value) of the tz-handling block.
2129         * tests/test-getdate.c: Tests for the fix
2130
2131 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2132
2133         Recognize 'foo_LIBRARIES += libgnu.a'.
2134         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
2135         makefile snippet has already specified an installation location,
2136         also using '+='.
2137
2138 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
2139
2140         getdate.y: factor out common actions
2141         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
2142         Use them in place of open-coded actions.
2143
2144 2008-07-01  Simon Josefsson  <simon@josefsson.org>
2145
2146         Add self-test for getdate module.
2147         * modules/getdate-tests: New file.
2148         * tests/test-getdate.c: New file.
2149
2150 2008-06-29  Bruno Haible  <bruno@clisp.org>
2151
2152         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
2153         .gitignore.
2154         Reported by Sylvain Beucler <beuc@beuc.net>.
2155
2156 2008-06-29  Bruno Haible  <bruno@clisp.org>
2157
2158         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
2159         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
2160
2161 2008-06-29  Bruno Haible  <bruno@clisp.org>
2162
2163         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
2164         EXTRA_DIST.
2165         Reported by Sylvain Beucler <beuc@beuc.net>.
2166
2167 2008-06-26  Jim Meyering  <meyering@redhat.com>
2168
2169         make several modules depend on the "open" module
2170         This provides slightly increased consistency when opening-for-write
2171         the name of a non-directory spelled with a trailing slash.
2172         * modules/chdir-safer: Likewise.
2173         * modules/chown: Likewise.
2174         * modules/clean-temp: Likewise.
2175         * modules/copy-file: Likewise.
2176         * modules/fchdir: Likewise.
2177         * modules/fcntl-safer: Likewise.
2178         * modules/pipe: Likewise.
2179         * modules/utime: Likewise.
2180         Prompted by Eric Blake and Bruno Haible.
2181
2182 2008-06-24  Andreas Schwab  <schwab@suse.de>
2183
2184         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
2185         literals can be used as initializers for global variables.
2186
2187 2008-06-23  Eric Blake  <ebb9@byu.net>
2188
2189         Make gnulib-cache.m4 easier to diff.
2190         * gnulib-tool (func_import): Allow newlines when reading cached
2191         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
2192
2193 2008-06-23  Bruno Haible  <bruno@clisp.org>
2194
2195         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
2196         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
2197         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
2198         m4/signalblocking.m4.
2199         (gl_PREREQ_SIGACTION): Don't invoke it.
2200         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
2201         gl_PREREQ_SIG_HANDLER_H.
2202         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2203         Don't check for sigaction here.
2204
2205 2008-06-23  Bruno Haible  <bruno@clisp.org>
2206
2207         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
2208         (install_handlers): Don't set the SA_RESETHAND flag.
2209
2210 2008-06-23  Bruno Haible  <bruno@clisp.org>
2211
2212         * m4/sigaction.m4: Comment fixes.
2213         * lib/signal.in.h: Likewise.
2214
2215 2008-06-23  Eric Blake  <ebb9@byu.net>
2216
2217         Fix typo.
2218         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
2219
2220         Avoid SA_ namespace.
2221         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
2222         Reported by Ralf Wildenhues.
2223
2224         Avoid test failure due to SA_RESTORER.
2225         * tests/test-sigaction.c (SA_MASK): New macro.
2226         (main): Avoid failing due to extension flags being set.
2227         Reported by Jim Meyering.
2228
2229         Revert use of sig-handler.h in sigprocmask.c.
2230         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
2231         it requires the existence of struct sigaction.
2232         * lib/sigprocmask.c (handler_t): Restore typedef.
2233         (rpl_signal, old_handlers): Use local type.
2234
2235 2008-06-22  Bruno Haible  <bruno@clisp.org>
2236
2237         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
2238         conditionally.
2239         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
2240
2241 2008-06-22  Bruno Haible  <bruno@clisp.org>
2242
2243         * doc/posix-functions/siginterrupt.texi: Move note.
2244
2245         * lib/signal.in.h (SA_RESTART): New macro.
2246         * lib/sigaction.c: Update comment.
2247
2248         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
2249
2250         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
2251         (gl_PREREQ_SIGPROCMASK): Invoke it.
2252         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
2253
2254         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
2255
2256         * lib/sigprocmask.c: Update a comment.
2257
2258 2008-06-21  Eric Blake  <ebb9@byu.net>
2259
2260         Use sigaction module rather than signal().
2261         * modules/c-stack (Depends-on): Add sigaction.
2262         * modules/fatal-signal (Depends-on): Likewise.
2263         * modules/nanosleep (Depends-on): Likewise.
2264         * modules/sigprocmask (Files): Add sig-handler.h.
2265         * modules/sigaction (Files): Likewise.
2266         * lib/sig-handler.h (get_handler): New file, suggested by Paul
2267         Eggert.
2268         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
2269         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
2270         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
2271         (init_fatal_signals): Likewise.
2272         * lib/nanosleep.c (rpl_nanosleep): Likewise.
2273         (siginterrupt): Delete fallback.
2274         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
2275         instead.
2276         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
2277         siginterrupt.
2278
2279         New module sigaction, for mingw.
2280         * modules/sigaction: New module...
2281         * modules/sigaction-tests: ...and its test.
2282         * m4/sigaction.m4: New file.
2283         * lib/sigaction.c: Likewise.
2284         * tests/test-sigaction.c: Likewise.
2285         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
2286         * modules/signal (Makefile.am): Likewise.
2287         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
2288         needed.
2289         * doc/posix-headers/signal.texi (signal.h): Mention provided
2290         types.
2291         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
2292         that sigaction is preferable.
2293         * doc/posix-functions/sigaction.texi (sigaction): Mention new
2294         module.
2295         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2296         sigaction.
2297
2298         Improve robustness of sigprocmask by overriding signal.
2299         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
2300         is in use.
2301         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
2302         (SIGKILL, SIGSTOP): Provide fallbacks.
2303         (rpl_signal): Implement.
2304         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
2305         signal can be called inside handlers.
2306
2307         Fix nanosleep module on mingw.
2308         * modules/nanosleep (Depends-on): Add sys_select.
2309         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
2310
2311         Fix licensing of sigprocmask.
2312         * modules/raise (License): Relicense as LGPL.
2313
2314 2008-06-21  Bruno Haible  <bruno@clisp.org>
2315
2316         * lib/propername.c (proper_name_utf8): Don't use the transliterated
2317         result if it contains question marks.
2318         Reported by Michael Geng <linux@michaelgeng.de>.
2319
2320 2008-06-19  Bruno Haible  <bruno@clisp.org>
2321
2322         Fix CVS-ism.
2323         * doc/gnulib.texi: Include updated-stamp.texi.
2324         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
2325         (updated-stamp.texi): New rule.
2326         (gnulib.info): Depend on it.
2327         * doc/.gitignore: Add updated-stamp.texi.
2328         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
2329
2330 2008-06-19  Bruno Haible  <bruno@clisp.org>
2331
2332         * doc/Makefile (gnulib.info): Update and simplify dependencies.
2333         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2334
2335 2008-06-19  Eric Blake  <ebb9@byu.net>
2336
2337         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
2338         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
2339         Reported by Stepan Kasal.
2340
2341 2008-06-18  Bruno Haible  <bruno@clisp.org>
2342
2343         * lib/fatal-signal.c (init_fatal_signals): Add comment.
2344         Reported by Eric Blake.
2345
2346 2008-06-18  Eric Blake  <ebb9@byu.net>
2347
2348         Work around cygwin 1.5.25 strsignal bug.
2349         * tests/test-strsignal.c: Allow for const char *.
2350         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
2351
2352 2008-06-18  Simon Josefsson  <simon@josefsson.org>
2353
2354         * users.txt: Update URL to article and add author/date
2355         information.
2356
2357 2008-06-17  Bruno Haible  <bruno@clisp.org>
2358
2359         New macro gl_DISABLE_THREADS.
2360         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
2361         if the user did not pass --enable-threads or --disable-threads option.
2362         (gl_DISABLE_THREADS): New macro.
2363         Reported by Eric Blake <ebb9@byu.net>.
2364
2365 2008-06-17  Bruno Haible  <bruno@clisp.org>
2366
2367         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
2368         when the macro ignores it.
2369         Based on a patch by Eric Blake <ebb9@byu.net>.
2370
2371 2008-06-17  Bruno Haible  <bruno@clisp.org>
2372
2373         * modules/tls (License): Change to LGPLv2+.
2374         Reported by Eric Blake.
2375
2376 2008-06-17  Eric Blake  <ebb9@byu.net>
2377
2378         Simplify c-stack prerequisites.
2379         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
2380         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
2381         no longer requires <ucontext.h> to exist.  Optimize setrlimit
2382         check.
2383         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
2384         <sys/resource.h>.
2385
2386         Move c-stack test into testsuite.
2387         * modules/c-stack-tests: New file.
2388         * lib/c-stack.c [DEBUG]: Move test program...
2389         * tests/test-c-stack.c: ...into this new file.  Skip rather than
2390         fail test if sigaltstack is lacking.
2391         * tests/test-c-stack.sh: New driver file.
2392
2393 2008-06-16  Eric Blake  <ebb9@byu.net>
2394
2395         Use raise module consistently.
2396         * modules/fatal-signal (Depends-on): Add raise.
2397         * modules/sigprocmask (Depends-on): Likewise.
2398         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
2399         * lib/sigprocmask.c (sigprocmask): Likewise.
2400         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2401         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
2402
2403         Fix compliance bug in sigpending.
2404         * lib/sigprocmask.c (sigpending): Return pending array via
2405         parameter, not return value.
2406
2407 2008-06-14  Eric Blake  <ebb9@byu.net>
2408
2409         Improve obstack-printf test code.
2410         * tests/test-obstack-printf.c (test_function): Fix comment, and
2411         simplify usage of obstack_* in macros.  Add a test for coverage.
2412         Reported by Bruno Haible.
2413
2414 2008-06-14  Bruno Haible  <bruno@clisp.org>
2415
2416         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
2417         array size as a constant, not as a const variable.
2418         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
2419         AC_USE_SYSTEM_EXTENSIONS.
2420         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
2421         Test whether the obstack_printf function actually exists.
2422         * modules/obstack-printf (Depends-on): Add extensions.
2423         (Include): Remove obstack.h.
2424         * modules/obstack-printf-posix (Depends-on): Add extensions.
2425         (Include): Remove obstack.h.
2426
2427 2008-06-13  Eric Blake  <ebb9@byu.net>
2428
2429         Add obstack-printf and obstack-printf-posix modules.
2430         * modules/obstack-printf: New file.
2431         * modules/obstack-printf-posix: Likewise.
2432         * MODULES.html.sh (Misc): Mention them.
2433         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
2434         Likewise.
2435         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
2436         Likewise.
2437         * modules/stdio (Makefile.am): Accomodate new modules.
2438         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
2439         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
2440         Declare.
2441         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
2442         functions.
2443         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
2444         (gl_REPLACE_OBSTACK_PRINTF): New macros
2445         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
2446         * tests/test-obstack-printf.c: New file.
2447         * modules/obstack-printf-tests: Likewise.
2448         * modules/obstack-printf-posix-tests: Likewise.
2449
2450 2008-06-11  Bruno Haible  <bruno@clisp.org>
2451
2452         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
2453         * lib/open.c: Include errno.h.
2454         (open): Fail when attempting to write to a file that has a trailing
2455         slash.
2456         * tests/test-open.c (main): Test against trailing slash bug.
2457         * doc/posix-functions/open.texi: Mention the trailing slash bug.
2458
2459 2008-06-10  Bruno Haible  <bruno@clisp.org>
2460
2461         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
2462         for $? to work inside the trap command, with various /bin/sh-s.
2463         * tests/test-vc-list-files-cvs.sh: Likewise.
2464
2465 2008-06-10  Bruno Haible  <bruno@clisp.org>
2466
2467         * lib/acl-internal.h: Don't include gettext.h here.
2468         * lib/set-mode-acl.c: Include gettext.h here.
2469         * lib/copy-acl.c: Likewise.
2470
2471 2008-06-10  Bruno Haible  <bruno@clisp.org>
2472
2473         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
2474         * lib/wait-process.c (wait_subprocess): Likewise.
2475         * lib/execute.h (execute): Add termsigp argument.
2476         * lib/execute.c (execute): Likewise.
2477         * lib/csharpcomp.c (compile_csharp_using_pnet,
2478         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
2479         * lib/csharpexec.c (execute_csharp_using_pnet,
2480         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
2481         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
2482         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
2483         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
2484         is_jikes_present): Update.
2485         * lib/javaexec.c (execute_java_class): Update.
2486         * lib/javaversion.c (execute_and_read_line): Update.
2487         * NEWS: Document the changes.
2488         Reported by Eric Blake.
2489
2490 2008-06-10  Eric Blake  <ebb9@byu.net>
2491
2492         Add missing include.
2493         * tests/test-strstr.c (includes): Add <signal.h>.
2494         * tests/test-strcasestr.c (includes): Likewise.
2495         * tests/test-memmem.c (includes): Likewise.
2496
2497 2008-06-10  Bruno Haible  <bruno@clisp.org>
2498
2499         * lib/wait-process.c (wait_subprocess): Add an assertion.
2500
2501 2008-06-10  Bruno Haible  <bruno@clisp.org>
2502
2503         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
2504
2505 2008-06-10  Bruno Haible  <bruno@clisp.org>
2506
2507         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
2508         using alarm().
2509         * tests/test-strcasestr.c (main): Likewise.
2510         * tests/test-strstr.c (main): Likewise.
2511
2512 2008-06-09  Bruno Haible  <bruno@clisp.org>
2513
2514         Work around the Solaris 10 ACE ACLs ABI change.
2515         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
2516         declare if ACL_NO_TRIVIAL is present.
2517         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
2518         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
2519         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
2520         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
2521         define if ACL_NO_TRIVIAL is present.
2522         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
2523         and use the current ABI.
2524         (file_has_acl): Use same #if condition as elsewhere.
2525         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
2526         in use, and use the current ABI.
2527         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
2528         Reported by Jim Meyering.
2529
2530 2008-06-09  Eric Blake  <ebb9@byu.net>
2531
2532         Work around environments that (stupidly) ignore SIGALRM.
2533         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
2534         before using alarm().
2535         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
2536         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
2537         Reported by Ian Beckwith <ianb@erislabs.net>.
2538
2539         Produce autobuild blurb earlier in log.
2540         * modules/autobuild (configure.ac-early): Move AB_INIT here.
2541
2542 2008-06-09  Jim Meyering  <meyering@redhat.com>
2543         and Ondřej Vašík  <ovasik@redhat.com>
2544
2545         utimens.c: correct kernel bug work-around
2546         Ondřej Vašík found that the invalid return value of 280 indicates
2547         failure, not success, and the kernel bug we're trying to work
2548         around affects not just the utimensat call, but also the fallback
2549         futimens call.
2550         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
2551         not success.
2552         [HAVE_FUTIMENS]: Use the same work-around, here.
2553
2554 2008-06-09  Jim Meyering  <meyering@redhat.com>
2555
2556         add more guards around definition of ACE_-related code
2557         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
2558         ALLOW and ACE_OWNER are also defined.
2559
2560 2008-06-08  Bruno Haible  <bruno@clisp.org>
2561
2562         * lib/acl-internal.h: Add me as co-author.
2563         * lib/file-has-acl.c: Likewise.
2564         * lib/set-mode-acl.c: Likewise.
2565         * lib/copy-acl.c: Likewise.
2566
2567 2008-06-08  Bruno Haible  <bruno@clisp.org>
2568
2569         Add support for AIX ACLs.
2570         * lib/acl-internal.h (acl_nontrivial): New declaration.
2571         * lib/file-has-acl.c (acl_nontrivial): New function.
2572         (file_has_acl): Add implementation using AIX 4 ACL API.
2573         * lib/set-mode-acl.c (qset_acl): Likewise.
2574         * lib/copy-acl.c (qcopy_acl): Likewise.
2575
2576 2008-06-08  Bruno Haible  <bruno@clisp.org>
2577
2578         Add support for HP-UX ACLs.
2579         * lib/acl-internal.h (acl_nontrivial): New declaration.
2580         * lib/file-has-acl.c (acl_nontrivial): New function.
2581         (file_has_acl): Add implementation using HP-UX 11 ACL API.
2582         * lib/set-mode-acl.c (qset_acl): Likewise.
2583         * lib/copy-acl.c (qcopy_acl): Likewise.
2584
2585 2008-06-08  Bruno Haible  <bruno@clisp.org>
2586
2587         Add support for Cygwin ACLs.
2588         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
2589         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
2590         the chmod_or_fchmod call.
2591         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
2592
2593 2008-06-08  Bruno Haible  <bruno@clisp.org>
2594
2595         Fix bug with setuid modes in Solaris 10+ code.
2596         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
2597         succeeded, when the mode contains some special bits.
2598
2599 2008-06-08  Bruno Haible  <bruno@clisp.org>
2600
2601         Add support for Solaris 7..10 ACLs.
2602         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
2603         declarations.
2604         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
2605         functions.
2606         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
2607         * lib/set-mode-acl.c (qset_acl): Likewise.
2608         * lib/copy-acl.c (qcopy_acl): Likewise.
2609
2610 2008-06-08  Bruno Haible  <bruno@clisp.org>
2611
2612         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
2613         declaration.
2614         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
2615         (acl_access_nontrivial): Remove MacOS X case.
2616         (file_has_acl): Use acl_extended_nontrivial.
2617         * lib/copy-acl.c (qcopy_acl): Likewise.
2618
2619 2008-06-08  Bruno Haible  <bruno@clisp.org>
2620
2621         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
2622
2623 2008-06-08  Jim Meyering  <meyering@redhat.com>
2624
2625         * modules/acl (Maintainer): Add Bruno Haible.
2626
2627 2008-06-07  Bruno Haible  <bruno@clisp.org>
2628
2629         Improve support for Tru64 ACLs.
2630         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
2631         ACL on OSF/1.
2632
2633 2008-06-07  Bruno Haible  <bruno@clisp.org>
2634
2635         Add support for MacOS X ACLs.
2636         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
2637         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
2638         * lib/set-mode-acl.c (qset_acl): Likewise.
2639         * lib/copy-acl.c (qcopy_acl): Likewise.
2640
2641 2008-06-07  Bruno Haible  <bruno@clisp.org>
2642
2643         Fix memory leak introduced on 2008-05-22.
2644         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
2645         use.
2646
2647 2008-06-07  Bruno Haible  <bruno@clisp.org>
2648
2649         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
2650         to construct an empty ACL.
2651
2652 2008-06-07  Bruno Haible  <bruno@clisp.org>
2653
2654         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
2655         precisely.
2656         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
2657
2658 2008-06-07  Bruno Haible  <bruno@clisp.org>
2659
2660         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
2661         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
2662
2663 2008-06-07  Bruno Haible  <bruno@clisp.org>
2664
2665         * doc/posix-functions/_setjmp.texi: Explain the use of this function
2666         regardless of POSIX.
2667         * doc/posix-functions/_longjmp.texi: Likewise.
2668         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
2669         SystemV platform in this case.
2670
2671 2008-06-06  Eric Blake  <ebb9@byu.net>
2672
2673         Document abort() bugs.
2674         * doc/posix-functions/abort.texi (abort): Mention anomalies.
2675
2676         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
2677         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
2678         sigsetjmp.
2679         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
2680         siglongjmp, but only as a macro.
2681         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
2682         is obsolete.
2683         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
2684
2685         Tweak documentation to cover cygwin argz bugs.
2686         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
2687         argz bug fix; no code change needed since no cygwin releases
2688         occurred between the last fix and the bug being tested.
2689         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
2690         module and recently fixed cygwin bugs.
2691         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
2692         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
2693         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
2694         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
2695         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
2696         Likewise.
2697         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
2698         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
2699         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
2700         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
2701         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
2702         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
2703         Likewise.
2704
2705         Avoid gcc warning on cygwin.
2706         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
2707         !ACL_NO_TRIVIAL]: Avoid unused variable.
2708
2709 2008-06-05  Eric Blake  <ebb9@byu.net>
2710
2711         Be tolerant of UNKNOWN version in gnulib-tool test dir.
2712         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
2713         git-version-gen fails to come up with a version.
2714         Reported by Simon Josefsson.
2715
2716 2008-06-05  Jim Meyering  <meyering@redhat.com>
2717             Paul Eggert  <eggert@cs.ucla.edu>
2718
2719         utimens.c: work around a probable Linux kernel bug
2720         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
2721         appears to be a kernel bug that causes utimensat to return 280
2722         instead of 0, indicating success.
2723
2724 2008-06-04  Bruno Haible  <bruno@clisp.org>
2725
2726         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
2727         2008-06-01 commit.
2728
2729 2008-06-04  Bruno Haible  <bruno@clisp.org>
2730
2731         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
2732         * lib/file-has-acl.c (acl_access_nontrivial): New function.
2733         (file_has_acl): Use it. Save errno afterwards.
2734         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
2735
2736 2008-06-03  Bruno Haible  <bruno@clisp.org>
2737
2738         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
2739         draft code. Simplify #ifs.
2740         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
2741         Put Solaris code after POSIX-draft code. Fix comments regarding
2742         Solaris 10, HP-UX. Mention Cygwin.
2743         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
2744
2745 2008-06-03  Eric Blake  <ebb9@byu.net>
2746
2747         Provide fallback for older kernels.
2748         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
2749         Provide runtime fallback if kernel lacks support.
2750         Reported by Mike Frysinger.
2751
2752 2008-06-02  Bruno Haible  <bruno@clisp.org>
2753
2754         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
2755         it exists.
2756
2757 2008-06-02  Bruno Haible  <bruno@clisp.org>
2758
2759         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
2760         * lib/copy-acl.c (qcopy_acl): Update comment.
2761
2762 2008-06-02  Bruno Haible  <bruno@clisp.org>
2763
2764         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
2765         like ACL APIs.
2766
2767 2008-06-02  Bruno Haible  <bruno@clisp.org>
2768
2769         * tests/test-file-has-acl.sh: Use different code for Cygwin.
2770         * tests/test-set-mode-acl.sh: Likewise.
2771         * tests/test-copy-acl.sh: Likewise.
2772         * tests/test-copy-file.sh: Likewise.
2773
2774 2008-06-02  Bruno Haible  <bruno@clisp.org>
2775
2776         * tests/test-file-has-acl.sh: Remove unused code.
2777
2778 2008-06-01  Bruno Haible  <bruno@clisp.org>
2779
2780         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
2781         (copy_acl): Just a wrapper around qcopy_acl that emits the error
2782         messages.
2783         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
2784
2785 2008-06-01  Bruno Haible  <bruno@clisp.org>
2786
2787         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
2788         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
2789         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
2790         APIs.
2791         * modules/acl-tests (configure.ac): Remove tests now contained in
2792         m4/acl.m4.
2793
2794 2008-06-02  Jim Meyering  <meyering@redhat.com>
2795
2796         announce-gen: use a better key-server host name
2797         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
2798         it may be more consistently reliable.  Suggested by Werner Koch
2799         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
2800
2801 2008-06-01  Bruno Haible  <bruno@clisp.org>
2802
2803         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
2804         Reported by Voroskoi Andras <voroskoi@gmail.com>.
2805
2806 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
2807
2808         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
2809
2810 2008-06-01  Bruno Haible  <bruno@clisp.org>
2811
2812         New ACL tests.
2813         * tests/test-file-has-acl.sh: New file.
2814         * tests/test-file-has-acl.c: New file.
2815         * tests/test-set-mode-acl.sh: New file.
2816         * tests/test-set-mode-acl.c: New file.
2817         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
2818         * tests/test-copy-acl.c: New file.
2819         * modules/acl-tests: New file, based on modules/copy-file-tests.
2820         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
2821         (Depends-on): Add acl-tests.
2822         (configure.ac): Remove checks.
2823         (Makefile.am): Don't create test-sameacls program here any more.
2824
2825 2008-06-01  Bruno Haible  <bruno@clisp.org>
2826
2827         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
2828         * tests/test-sameacls.c: Include progname.h.
2829         (main): Invoke set_program_name. Portability fixes for MacOS X,
2830         Solaris, HP-UX.
2831
2832 2008-06-01  Bruno Haible  <bruno@clisp.org>
2833
2834         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
2835         function.
2836         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
2837
2838 2008-06-01  Bruno Haible  <bruno@clisp.org>
2839
2840         * modules/rpmatch (Depends-on): Add strdup.
2841
2842 2008-06-01  Bruno Haible  <bruno@clisp.org>
2843
2844         * lib/pipe.c: Include unistd-safer.h.
2845         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
2846         * modules/pipe (Depends-on): Add unistd-safer.
2847
2848 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2849
2850         * modules/autobuild (configure.ac): Call AB_INIT.
2851
2852 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2853
2854         * tests/test-getaddrinfo.c: Don't print debug messages by default.
2855         Suggested by Bruno Haible <bruno@clisp.org>.
2856
2857 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2858
2859         * tests/test-base64.c: Cast size_t to unsigned long when invoking
2860         printf.  Use %lu instead of %d.  Reported by Bruno Haible
2861         <bruno@clisp.org>.
2862
2863 2008-05-29  Eric Blake  <ebb9@byu.net>
2864
2865         Prefer new POSIX 200x interfaces over futimesat.
2866         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
2867         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
2868         when available.
2869         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
2870
2871 2008-05-28  Bruno Haible  <bruno@clisp.org>
2872
2873         * modules/stpcpy (License): Change to LGPLv2+.
2874         Requested by David Lutterkort <dlutter@redhat.com>.
2875
2876 2008-05-27  Bruno Haible  <bruno@clisp.org>
2877
2878         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
2879         current mingw.
2880         Reported by Jose E. Marchesi <jemarch@gnu.org>.
2881
2882 2008-05-27  Bruno Haible  <bruno@clisp.org>
2883
2884         * modules/iconv_open (Link): New section, from module 'iconv'.
2885         * modules/striconv (Link): Likewise.
2886         * modules/striconveh (Link): Likewise.
2887         * modules/xstriconv (Link): Likewise.
2888         * modules/unicodeio (Link): Likewise.
2889         * modules/propername (Link): Likewise.
2890         Reported by Jim Meyering.
2891
2892 2008-05-26  Jim Meyering  <meyering@redhat.com>
2893
2894         sha256: do not artificially restrict buffer length to be < 2^32
2895         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
2896         uint32_t to size_t.
2897         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
2898         to match.
2899
2900         avoid unaligned access errors, e.g., on sparc
2901         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
2902         direct access through a possibly-unaligned uint64* pointer.
2903         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
2904         direct access through a possibly-unaligned uint32* pointer.
2905         Prompted by this patch from Tom "spot" Callaway:
2906         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
2907
2908         sha512.c: fix typo in comment
2909         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
2910
2911 2008-05-25  Bruno Haible  <bruno@clisp.org>
2912
2913         * lib/set-mode-acl.c: Renamed from lib/acl.c.
2914         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
2915         (Makefile.am): Update lib_SOURCES.
2916
2917 2008-05-25  Bruno Haible  <bruno@clisp.org>
2918
2919         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
2920
2921 2008-05-25  Jim Meyering  <meyering@redhat.com>
2922
2923         useless-if-before-free: freed expr may have white-space differences
2924         * build-aux/useless-if-before-free: Recognize cases in which the
2925         freed expression differs from the tested one in embedded white
2926         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
2927         $1 was used, so we can't make any regexp shy.  Improved tests now
2928         detect this.
2929
2930         useless-if-before-free: accept white space in the expression.
2931         * build-aux/useless-if-before-free: For now, any white space
2932         in the expression must be identical in the free argument.
2933
2934         useless-if-before-free: efficiency tweak
2935         * build-aux/useless-if-before-free: Make the expression-matching
2936         regexp "shy".
2937         Make the *outer* regexp shy, not the expr-matching one.
2938
2939         update code-in-comment to accept cast of free arg
2940         * build-aux/useless-if-before-free: Update regexp.
2941
2942 2008-05-25  Bruno Haible  <bruno@clisp.org>
2943
2944         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
2945         * modules/copy-file-tests (Files, Makefile.am): Update.
2946         * tests/test-copy-file.c (func_test_copy): Update.
2947
2948 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
2949
2950         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
2951
2952 2008-05-23  Bruno Haible  <bruno@clisp.org>
2953
2954         Improve support for ACLs on OSF/1.
2955         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
2956         Remove fallback for unknown flavors of ACLs.
2957
2958 2008-05-22  Bruno Haible  <bruno@clisp.org>
2959
2960         Add support for ACLs on OSF/1.
2961         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
2962         replacements.
2963         (acl_free_text): New macro fallback.
2964         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
2965         acl_free.
2966         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
2967         acl_free_text function. Require AC_C_INLINE.
2968
2969 2008-05-22  Bruno Haible  <bruno@clisp.org>
2970
2971         Make copy_acl work on MacOS X 10.5.
2972         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
2973         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
2974         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
2975         If MODE_INSIDE_ACL, don't assume that every system has the same text
2976         representation for ACLs as FreeBSD.
2977         * lib/copy-acl.c (copy_acl): Add support for platforms with
2978         !MODE_INSIDE_ACL.
2979         * lib/file-has-acl.c (file_has_acl): Likewise.
2980         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
2981         FreeBSD, MacOS X, or IRIX, respectively.
2982
2983 2008-05-22  Bruno Haible  <bruno@clisp.org>
2984
2985         * lib/acl.h: Don't include <sys/acl.h>.
2986         (GETACLCNT): Move fallback to lib/acl-internal.h.
2987         * lib/acl-internal.h: Include <sys/acl.h> here.
2988         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
2989
2990 2008-05-22  Bruno Haible  <bruno@clisp.org>
2991
2992         Split off copy_acl function to separate file.
2993         * lib/copy-acl.c: New file, extracted from lib/acl.c.
2994         * lib/acl.c (copy_acl): Moved function to separate file.
2995         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
2996         * modules/acl (Files): Add lib/copy-acl.c.
2997         (Makefiles.am): Augment lib_SOURCES.
2998
2999 2008-05-22  Bruno Haible  <bruno@clisp.org>
3000
3001         * modules/copy-file-tests: New file.
3002         * tests/test-copy-file.sh: New file.
3003         * tests/test-copy-file.c: New file.
3004         * tests/test-copy-file-sameacls.c: New file.
3005
3006 2008-05-22  Eric Blake  <ebb9@byu.net>
3007
3008         Avoid gcc warning.
3009         * tests/test-memcmp.c (main): Pass NULL indirectly.
3010
3011 2008-05-21  Bruno Haible  <bruno@clisp.org>
3012
3013         Add reference doc about ACLs.
3014         * doc/acl-resources.txt: New file.
3015         * doc/acl-cygwin.txt: New file.
3016
3017 2008-05-21  Bruno Haible  <bruno@clisp.org>
3018
3019         Avoid one more warning from gcc.
3020         * lib/vasnprintf.c (IF_LINT): Update comments.
3021         (VASNPRINTF): Use it also for the 'prefix' array initializer.
3022
3023 2008-05-21  Jim Meyering  <meyering@redhat.com>
3024
3025         avoid a warning from gcc
3026         * lib/vasnprintf.c (IF_LINT): Define.
3027         (scale10_round_decimal_long_double):
3028         Use it to avoid a "may be used uninitialized" warning.
3029         (scale10_round_decimal_double): Likewise.
3030
3031 2008-05-21  Simon Josefsson  <simon@josefsson.org>
3032
3033         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
3034         declared.
3035
3036 2008-05-20  Bruno Haible  <bruno@clisp.org>
3037
3038         * tests/test-memcmp.c (main): Test also the sign of the result. Test
3039         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
3040
3041 2008-05-20  Simon Josefsson  <simon@josefsson.org>
3042
3043         * modules/memcmp-tests: New file.
3044         * tests/test-memcmp.c: New file.
3045
3046 2008-05-19  Bruno Haible  <bruno@clisp.org>
3047
3048         * modules/propername (Notice, configure.ac): Put quoted "..." into
3049         --keyword option.
3050         * lib/propername.h: Update comments accordingly.
3051         Reported by Eric Blake.
3052
3053 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
3054
3055         * modules/getpass-gnu (Depends-on): Add fseeko.
3056
3057 2008-05-19  Simon Josefsson  <simon@josefsson.org>
3058
3059         * modules/base64-tests: New file.
3060
3061 2008-05-19  Bo Borgerson <gigabo@gmail.com>
3062
3063         * lib/base64.c (base64_decode_ctx): If a decode context structure
3064         was passed in use it to ignore newlines.  If a context structure
3065         was _not_ passed in, continue to treat newlines as garbage (this
3066         is the historical behavior).  Formerly base64_decode.
3067         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
3068         takes a decode context structure.
3069         * lib/base64.h (base64_decode): Macro for four-argument calls.
3070         (base64_decode_alloc): Likewise.
3071         * lib/base64.c (base64_decode_ctx): If a decode context structure
3072         was passed in use it to ignore newlines.  If a context structure
3073         was _not_ passed in, continue to treat newlines as garbage (this
3074         is the historical behavior).  Formerly base64_decode.
3075         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
3076         takes a decode context structure.
3077         * lib/base64.h (base64_decode): Macro for four-argument calls.
3078         (base64_decode_alloc): Likewise.
3079
3080 2008-05-19  Jim Meyering  <meyering@redhat.com>
3081
3082         avoid a warning from gcc
3083         * lib/trim.c (IF_LINT): Define.
3084         (trim2): Use it to avoid a "may be used uninitialized" warning.
3085
3086         Fix doc typo.
3087         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
3088
3089 2008-05-19  Bruno Haible  <bruno@clisp.org>
3090
3091         * doc/glibc-functions/getpass.texi: Document limits of other
3092         implementations.
3093
3094 2008-05-19  Simon Josefsson  <simon@josefsson.org>
3095             Bruno Haible <bruno@clisp.org>
3096
3097         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
3098
3099 2008-05-18  Bruno Haible  <bruno@clisp.org>
3100
3101         * modules/propername: New file, from GNU gettext.
3102         * lib/propername.h: New file, from GNU gettext.
3103         * lib/propername.c: New file, from GNU gettext.
3104         * MODULES.html.sh (Internationalization functions): Add propername.
3105
3106 2008-05-16  Jim Meyering  <meyering@redhat.com>
3107             Bruno Haible  <bruno@clisp.org>
3108
3109         Avoid some warnings from "gcc -Wshadow".
3110         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
3111
3112 2008-05-15  Eric Blake  <ebb9@byu.net>
3113
3114         Extend previous patch to cygwin 1.7.0.
3115         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
3116         fast implementation in cygwin >= 1.7.0.
3117         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3118         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3119
3120 2008-05-15  Bruno Haible  <bruno@clisp.org>
3121
3122         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
3123         implementation in glibc >= 2.9.
3124         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3125         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3126
3127 2008-05-15  Bruno Haible  <bruno@clisp.org>
3128
3129         * MODULES.html.sh (Internationalization functions): Remove linebreak.
3130         (Unicode string functions): Add unilbrk/*.
3131         Reported by Karl Berry.
3132
3133 2008-05-15  Eric Blake  <ebb9@byu.net>
3134
3135         Fix violation of <stdbool.h> replacement in regex.
3136         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
3137         * lib/regexec.c (re_search_internal): Likewise.
3138         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
3139
3140 2008-05-15  Jim Meyering  <meyering@redhat.com>
3141
3142         avoid distracting test output when git or cvs is not found
3143         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
3144         * tests/test-vc-list-files-git.sh: Likewise.
3145
3146 2008-05-15  Eric Blake  <ebb9@byu.net>
3147
3148         Glibc finally accepted the memmem speedup code, bugzilla #5514.
3149         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
3150         glibc version.
3151         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
3152         * doc/posix-functions/strstr.texi (strstr): Likewise.
3153         * lib/str-two-way.h (MAX): Sychronize with glibc.
3154
3155 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
3156
3157         * lib/regcomp.c (optimize_utf8): Add a note on why we test
3158         opr.ctx_type.
3159         (calc_first): Initialize constraint field.
3160         (duplicate_node_closure): Use it instead of special casing ANCHORS.
3161         Fix grammar.
3162         (duplicate_node): Merge constraint field for all node types.
3163         (calc_eclosure_iter): Look at constraint field for all node types.
3164         * lib/regex_internal.c (create_cd_newstate): Don't look at
3165         opr.ctx_type.
3166
3167 2008-05-14  Bruno Haible  <bruno@clisp.org>
3168
3169         Help GCC to do better code generation.
3170         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
3171         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
3172         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
3173         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
3174         Declare with attribute 'malloc' if supported.
3175
3176 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
3177
3178         use "echo STR|wc -c" rather than unportable "expr length STR"
3179         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
3180         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
3181
3182 2008-05-14  Jim Meyering  <meyering@redhat.com>
3183
3184         use dd ibs=$n count=1 ... rather than less-portable head -c$n
3185         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
3186         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
3187         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
3188         via Collin Lasse.
3189
3190 2008-05-14  Eric Blake  <ebb9@byu.net>
3191
3192         Avoid quadratic growth in gl_LIBSOURCES.
3193         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
3194         Suggested by Bruno Haible.
3195
3196         Test xmemdup0.
3197         * modules/xmemdup0-tests: New file.
3198         * tests/test-xmemdup0.c: Likewise.
3199
3200 2008-05-13  Eric Blake  <ebb9@byu.net>
3201
3202         Split xmemdup0 into its own module.
3203         * modules/xmemdup0: New file.
3204         * lib/xmemdup0.h: Likewise.
3205         * lib/xmemdup0.c: Likewise.
3206         * MODULES.html.sh (Memory management functions): Add xmemdup0.
3207         * lib/xalloc.h (xmemdup0): Remove.
3208         * lib/xmalloc.c (xmemdup0): Likewise.
3209
3210 2008-05-13  Eric Blake  <ebb9@byu.net>
3211             Bruno Haible  <bruno@clisp.org>
3212
3213         Reduce number of forks required during autoconf.
3214         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
3215         and gl_LIBSOURCES_DIR.
3216         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
3217         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
3218         m4_syscmd per file.
3219         <m4_foreach_w>: Move...
3220         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
3221
3222 2008-05-13  Eric Blake  <ebb9@byu.net>
3223
3224         * gnulib-tool: Fix various comment typos.
3225
3226 2008-05-12  Bruno Haible  <bruno@clisp.org>
3227
3228         Tailor the linebreaking algorithm.
3229         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
3230
3231 2008-05-12  Bruno Haible  <bruno@clisp.org>
3232
3233         Update to Unicode 5.0.0.
3234         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3235         LBP_JV, LBP_JT. Redistribute values.
3236         (unilbrk_table): Change size.
3237         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
3238         Unicode TR#14 rev. 22.
3239         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3240         LBP_JV, LBP_JT. Redistribute values.
3241         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
3242         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
3243         Update.
3244         * lib/unilbrk/lbrkprop1.h: Regenerated.
3245         * lib/unilbrk/lbrkprop2.h: Regenerated.
3246         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
3247         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
3248         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
3249         Likewise.
3250         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
3251         Likewise.
3252         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
3253         result.
3254         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
3255         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
3256         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
3257         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
3258         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
3259         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
3260
3261 2008-05-11  Bruno Haible  <bruno@clisp.org>
3262
3263         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
3264
3265 2008-05-11  Bruno Haible  <bruno@clisp.org>
3266
3267         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
3268         * modules/unilbrk/gen-lbrk: New file.
3269
3270 2008-05-11  Bruno Haible  <bruno@clisp.org>
3271
3272         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
3273         * m4/sha512.m4 (gl_SHA512): Likewise.
3274
3275 2008-05-11  Jim Meyering  <meyering@redhat.com>
3276
3277         New modules: crypto/sha256, crypto/sha512 (from coreutils)
3278         * modules/crypto/sha256: New file.
3279         * modules/crypto/sha512: Likewise.
3280         * lib/sha256.c: Likewise.
3281         * lib/sha256.h: Likewise.
3282         * lib/sha512.c: Likewise.
3283         * lib/sha512.h: Likewise.
3284         * lib/u64.h: Likewise.
3285         * m4/sha256.m4: Likewise.
3286         * m4/sha512.m4: Likewise.
3287         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
3288
3289 2008-05-10  Bruno Haible  <bruno@clisp.org>
3290
3291         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
3292         (Input/Output <stdio.h>): Add xprintf.
3293         (Signal handling <signal.h>): Add strsignal.
3294         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
3295         (Core language properties): Add func.
3296         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
3297         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
3298         strings.
3299         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
3300         (Input/output): New section.
3301         (File system functions): Add openat-die, stat-macros.
3302         (Networking functions): Add sockets.
3303         (Unicode string functions): Add unictype/*.
3304         (Support for building libraries and executables): Add gperf.
3305         (Support for building documentation): Add agpl-3.0.
3306         (Misc): Add nocrash.
3307
3308 2008-05-10  Bruno Haible  <bruno@clisp.org>
3309
3310         * modules/unictype/gen-ctype: New file.
3311
3312 2008-05-10  Jim Meyering  <meyering@redhat.com>
3313
3314         Make chdir-safer.c more efficient on a system with no symlinks.
3315         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
3316         also if ELOOP is zero.  Suggested by Bruno Haible.
3317
3318         Make chdir-safer.c slightly safer.
3319         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
3320         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
3321
3322         Avoid compile failure on systems without ELOOP (like mingw).
3323         * lib/chdir-safer.c (ELOOP): Define if not already defined.
3324         Reported by Bruno Haible.
3325
3326 2008-05-10  Bruno Haible  <bruno@clisp.org>
3327
3328         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
3329         (is_utf8_encoding): Use a case-insensitive comparison.
3330         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
3331         streq.
3332
3333 2008-05-10  Bruno Haible  <bruno@clisp.org>
3334
3335         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
3336         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
3337         * lib/unilbrk/ulc-common.h (iconv_string_length,
3338         iconv_string_keeping_offsets): Remove declarations.
3339         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
3340         Don't include <iconv.h>, streq.h, xsize.h.
3341         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
3342         conversion.
3343         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
3344         <iconv.h>, streq.h, xsize.h.
3345         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
3346         conversion.
3347         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
3348         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
3349         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
3350         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
3351
3352 2008-05-10  Bruno Haible  <bruno@clisp.org>
3353
3354         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
3355         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
3356
3357         * modules/unilbrk/u32-width-linebreaks-tests: New file.
3358         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
3359
3360         * modules/unilbrk/u16-width-linebreaks-tests: New file.
3361         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
3362
3363         * modules/unilbrk/u8-width-linebreaks-tests: New file.
3364         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
3365
3366         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
3367         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
3368
3369         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
3370         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
3371
3372         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
3373         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
3374
3375         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
3376         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
3377
3378 2008-05-10  Bruno Haible  <bruno@clisp.org>
3379
3380         Split up 'linebreak' module.
3381         * lib/unilbrk.h: New file, based on lib/linebreak.h.
3382         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
3383         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
3384         modifications.
3385         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
3386         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
3387         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
3388         lib/linebreak.c.
3389         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
3390         lib/linebreak.c.
3391         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
3392         lib/linebreak.c.
3393         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
3394         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
3395         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
3396         lib/linebreak.c.
3397         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
3398         lib/linebreak.c.
3399         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
3400         lib/linebreak.c.
3401         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
3402         lib/linebreak.c.
3403         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
3404         lib/linebreak.c.
3405         * modules/unilbrk/base: New file.
3406         * modules/unilbrk/tables: New file.
3407         * modules/unilbrk/u8-possible-linebreaks: New file.
3408         * modules/unilbrk/u16-possible-linebreaks: New file.
3409         * modules/unilbrk/u32-possible-linebreaks: New file.
3410         * modules/unilbrk/ulc-common: New file.
3411         * modules/unilbrk/ulc-possible-linebreaks: New file.
3412         * modules/unilbrk/u8-width-linebreaks: New file.
3413         * modules/unilbrk/u16-width-linebreaks: New file.
3414         * modules/unilbrk/u32-width-linebreaks: New file.
3415         * modules/unilbrk/ulc-width-linebreaks: New file.
3416         * lib/linebreak.h: Remove file.
3417         * lib/linebreak.c: Remove file.
3418         * m4/linebreak.m4: Remove file.
3419         * modules/linebreak: Remove file.
3420         * NEWS: Mention the changes.
3421
3422 2008-05-09  Eric Blake  <ebb9@byu.net>
3423
3424         Add xmemdup0.
3425         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
3426         implementation.
3427         * lib/xmalloc.c (xmemdup0): New C implementation.
3428
3429 2008-05-08  Bruno Haible  <bruno@clisp.org>
3430
3431         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
3432
3433 2008-05-07  Eric Blake  <ebb9@byu.net>
3434
3435         Support cross-compilation of <wctype.h>.
3436         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
3437         AC_CACHE_CHECK.
3438
3439 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
3440
3441         * build-aux/vc-list-files: Add support for bzr.
3442
3443 2008-05-03  Jim Meyering  <meyering@redhat.com>
3444
3445         avoid failed assertion with tight malloc
3446         * tests/test-getndelim2.c: Correct an off-by-one assertion.
3447
3448 2008-05-03  Simon Josefsson  <simon@josefsson.org>
3449
3450         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
3451         are needed from arpa/inet.h.
3452         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
3453         Reported by Bruno Haible.
3454
3455 2008-05-02  Jim Meyering  <meyering@redhat.com>
3456
3457         avoid compilation error on FreeBSD 6
3458         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
3459
3460 2008-05-01  Jim Meyering  <meyering@redhat.com>
3461
3462         useless-if-before-free: correct --help's exit status description
3463         * build-aux/useless-if-before-free (usage): Like grep, exit 0
3464         for one or more matches, etc.  Reported by Bruno Haible.
3465
3466         vc-list-files: make the stand-alone gnulib test work
3467         * modules/vc-list-files-tests (configure.ac):
3468         Define and AC_SUBST abs_aux_dir.
3469         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
3470         $(abs_top_srcdir) to each script and having each of them
3471         duplicate the work of setting PATH, set PATH here, using
3472         the new variable, abs_aux_dir instead.
3473         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
3474         * tests/test-vc-list-files-git.sh: Likewise.
3475         Reported by Bruno Haible.
3476
3477 2008-05-01  Bruno Haible  <bruno@clisp.org>
3478
3479         * lib/getndelim2.c (getndelim2): Fix newsize computation during
3480         reallocation. Rename 'done' to 'found_delimiter'.
3481
3482 2008-05-01  Jim Meyering  <meyering@redhat.com>
3483
3484         vc-list-files: accommodate /bin/sh like the one from Solaris 10
3485         * build-aux/vc-list-files: Use `...`, not $(...).
3486
3487 2008-04-30  Jim Meyering  <meyering@redhat.com>
3488
3489         add tests for vc-list-files
3490         * modules/vc-list-files-tests: New module.
3491         * tests/test-vc-list-files-cvs.sh: New file.
3492         * tests/test-vc-list-files-git.sh: New file.
3493
3494         avoid a warning from gcc
3495         * lib/getndelim2.c (IF_LINT): Define.
3496         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
3497
3498         vc-list-files: work properly with build-aux/cvsu, too
3499         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
3500         to all cvs-based clauses.
3501
3502         vc-list-files: work properly in the CVS+awk case, too
3503         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
3504
3505         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
3506         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
3507         take more than one file argument, so .  Add quotes, just in case $dir
3508         ever contains a shell meta-character.  Prompted by Soren Hansen in
3509         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
3510
3511 2008-04-29  Eric Blake  <ebb9@byu.net>
3512
3513         Optimize getndelim2 to use block operations when possible.
3514         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
3515         freadseek, and memchr2.
3516         * lib/getndelim2.c (getndelim2): Use them for block reads.
3517
3518 2008-04-29  Bruno Haible  <bruno@clisp.org>
3519
3520         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
3521         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3522         * modules/inet_ntop (Depends-on): Add extensions.
3523         * modules/inet_pton (Depends-on): Likewise.
3524         Reported by Simon Josefsson.
3525
3526 2008-04-29  Jim Meyering  <meyering@redhat.com>
3527
3528         When the is more than one match in a block, match all of them.
3529         * build-aux/useless-if-before-free: Iterate through each block
3530         until there are no more matches.
3531
3532         Fix broken useless-if-before-free script.
3533         * build-aux/useless-if-before-free: Fix typo: missing "?" after
3534         the expression to match cast of argument to free-like function.
3535
3536 2008-04-29  Eric Blake  <ebb9@byu.net>
3537
3538         Use new header.
3539         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
3540
3541 2008-04-29  Jim Meyering  <meyering@redhat.com>
3542
3543         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
3544         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
3545         by gnulib to exist and to declare e.g., inet_ntop.
3546         Don't include "inet_ntop.h", now removed.
3547
3548         * m4/arpa_inet_h.m4: Remove trailing blanks.
3549
3550 2008-04-29  Eric Blake  <ebb9@byu.net>
3551
3552         Silence valgrind on safe reads beyond potential array bounds.
3553         * lib/rawmemchr.valgrind: New file.
3554         * lib/strchrnul.valgrind: Likewise.
3555         * modules/rawmemchr (Files): Distribute new file.
3556         * modules/strchrnul (Files): Likewise.
3557         Suggested by Bruno Haible.
3558
3559 2008-04-29  Bruno Haible  <bruno@clisp.org>
3560
3561         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
3562         (inet_ntop, inet_pton): Change portability warning's wording.
3563         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
3564         Invoke gl_CHECK_NEXT_HEADERS.
3565         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
3566         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
3567         set ARPA_INET_H.
3568         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3569         * modules/arpa_inet (Description): No longer only for systems that
3570         lack it.
3571         (Depends-on): Add include_next.
3572         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
3573         HAVE_ARPA_INET_H.
3574
3575 2008-04-29  Jim Meyering  <meyering@redhat.com>
3576
3577         * modules/mkdir (License): Re-license as LGPLv2+.
3578
3579 2008-04-29  Bruno Haible  <bruno@clisp.org>
3580
3581         * modules/rawmemchr (Maintainer): Set to Eric.
3582         * modules/strchrnul (Maintainer): Likewise.
3583
3584 2008-04-29  Simon Josefsson  <simon@josefsson.org>
3585
3586         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
3587         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
3588
3589         * modules/arpa_inet (arpa/inet.h): Use them.
3590
3591 2008-04-28  Eric Blake  <ebb9@byu.net>
3592
3593         Test getndelim2.
3594         * modules/getndelim2-tests: New file.
3595         * tests/test-getndelim2.c: Likewise.
3596         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
3597         stream.
3598         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
3599
3600         * MODULES.html.sh: Document new module.
3601
3602 2008-04-20  Bruno Haible  <bruno@clisp.org>
3603
3604         * lib/c-stack.c (die): Use raise.
3605         * modules/c-stack (Depends-on): Add raise.
3606
3607 2008-04-28  Bruno Haible  <bruno@clisp.org>
3608
3609         Expect rpmatch to be declared.
3610         * lib/yesno.c (rpmatch): Remove declaration.
3611
3612         Declare rpmatch.
3613         * lib/stdlib.in.h (rpmatch): New declaration.
3614         * lib/rpmatch.c: Include <stdlib.h> first.
3615         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
3616         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
3617         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
3618         HAVE_RPMATCH.
3619         * modules/rpmatch (Depends-on): Add stdlib, extensions.
3620         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3621         (Include): Set to <stdlib.h>.
3622         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
3623         HAVE_RPMATCH.
3624         * NEWS: Document the change.
3625
3626 2008-04-28  Bruno Haible  <bruno@clisp.org>
3627
3628         Change rpmatch to use nl_langinfo when appropriate.
3629         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
3630         (N_): New macro.
3631         (localized_pattern): New function/macro.
3632         (try): Remove match, nomatch arguments. Copy the pattern into safe
3633         memory before caching it.
3634         (rpmatch): Use localized_pattern. Add translator comments.
3635         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
3636         Suggested by Eric Blake.
3637         * modules/rpmatch (Depends-on): Add stdbool.
3638
3639 2008-04-28  Eric Blake  <ebb9@byu.net>
3640
3641         Add rawmemchr module, matching glibc.
3642         * modules/string (Makefile.am): New indicator.
3643         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
3644         * lib/string.in.h (rawmemchr): Declare when appropriate.
3645         * modules/rawmemchr: New file.
3646         * m4/rawmemchr.m4: Likewise.
3647         * lib/rawmemchr.c: Likewise.
3648         * modules/rawmemchr-tests: Likewise.
3649         * tests/test-rawmemchr.c: Likewise.
3650         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
3651         module.
3652         * modules/strchrnul (Depends-on): Add rawmemchr.
3653         * lib/strchrnul.c (strchrnul): Optimize a corner case.
3654
3655         Whitespace cleanup.
3656         * tests/test-strchrnul.c: Reindent.
3657         * lib/strchrnul.c: Likewise.
3658
3659         Optimize and test strchrnul.
3660         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
3661         * modules/strchrnul-tests: New file.
3662         * tests/test-strchrnul.c: Likewise.
3663
3664         Remove intprops dependency.
3665         * modules/memchr (Depends-on): Remove intprops.
3666         * modules/memrchr (Depends-on): Likewise.
3667         * modules/memchr2 (Depends-on): Likewise.
3668         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
3669         * lib/memrchr.c (__memrchr): Likewise.
3670         * lib/memrchr2.c (memchr2): Likewise.
3671         Reported by Simon Josefsson.
3672
3673 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3674
3675         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
3676         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3677
3678 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3679
3680         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
3681
3682         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
3683
3684         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
3685
3686         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
3687         declarations.
3688         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
3689
3690         * m4/inet_pton.m4: Don't check for header files.
3691
3692         * m4/inet_ntop.m4: Don't check for header files.
3693
3694 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3695
3696         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
3697         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
3698         trigger for cygwin).
3699         Reported by Bruno Haible  <bruno@clisp.org>.
3700
3701 2008-04-28  Bruno Haible  <bruno@clisp.org>
3702
3703         * doc/posix-functions/strdup.texi: Mention mingw problem.
3704
3705 2008-04-27  Bruno Haible  <bruno@clisp.org>
3706
3707         * modules/stat-time-tests (Depends-on): Add sleep.
3708         * tests/test-stat-time.c (force_unlink): New function.
3709         (cleanup): Use it.
3710         (test_mtime): Remove the ctime related tests.
3711         (test_ctime): New function, containing the ctime related tests.
3712         (main): Call test_ctime, except on native Windows platforms.
3713
3714 2008-04-27  Bruno Haible  <bruno@clisp.org>
3715
3716         * lib/rpmatch.c (rpmatch): Add some comments.
3717         Reported by James Youngman <jay@gnu.org>.
3718
3719 2008-04-27  Bruno Haible  <bruno@clisp.org>
3720
3721         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
3722         quiet NaNs.
3723
3724 2008-04-27  Bruno Haible  <bruno@clisp.org>
3725
3726         Make test-yesno.sh work on mingw.
3727         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
3728         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
3729         (main): Set stdin to binary mode.
3730         * modules/yesno-tests (Depends-on): Add binary-io.
3731
3732 2008-04-27  Bruno Haible  <bruno@clisp.org>
3733
3734         Fix 'isfinite' on x86, x86_64, ia64 platforms.
3735         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
3736         argument that lie outside the IEEE 854 domain.
3737         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
3738         (gl_ISFINITE): Use it.
3739         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
3740
3741 2008-04-27  Bruno Haible  <bruno@clisp.org>
3742
3743         Allow local renaming in config.h.
3744         * lib/memrchr.c (memrchr): Don't undefine outside libc.
3745
3746 2008-04-27  Bruno Haible  <bruno@clisp.org>
3747
3748         * lib/memchr.c (__memchr): Change type of 'i'.
3749         * lib/memchr2.c (memchr2): Likewise.
3750
3751 2008-04-26  Eric Blake  <ebb9@byu.net>
3752         and Bruno Haible  <bruno@clisp.org>
3753
3754         Optimize and test memrchr.
3755         * modules/memrchr (Depends-on): Add intprops.
3756         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
3757         * modules/memrchr-tests: New file.
3758         * tests/test-memrchr.c: New file.
3759
3760 2008-04-26  Bruno Haible  <bruno@clisp.org>
3761
3762         Add tentative support for DragonFly BSD.
3763         * lib/stdio-impl.h: Add macros for DragonFly BSD.
3764         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
3765         fp.
3766         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3767         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
3768         * lib/fpurge.c (fpurge): Likewise.
3769         * lib/freadable.c (freaadable): Likewise.
3770         * lib/freadahead.c (freadahead): Likewise.
3771         * lib/freading.c (freading): Likewise.
3772         * lib/freadptr.c (freadptr): Likewise.
3773         * lib/freadseek.c (freadptrinc): Likewise.
3774         * lib/fseeko.c (fseeko): Likewise.
3775         * lib/fseterr.c (fseterr): Likewise.
3776         * lib/fwritable.c (fwritable): Likewise.
3777         * lib/fwriting.c (fwriting): Likewise.
3778
3779 2008-04-26  Bruno Haible  <bruno@clisp.org>
3780
3781         * lib/stdio-impl.h: New file.
3782         * lib/fbufmode.c: Include stdio-impl.h.
3783         (fbufmode): Use fp_, remove redundant #defines.
3784         * lib/fflush.c: Include stdio-impl.h.
3785         (clear_ungetc_buffer): Remove redundant #defines.
3786         * lib/fpurge.c: Include stdio-impl.h.
3787         (fpurge): Remove redundant #defines.
3788         * lib/freadable.c: Include stdio-impl.h.
3789         (freadable): Remove redundant #defines.
3790         * lib/freadahead.c: Include stdio-impl.h.
3791         (freadahead): Remove redundant #defines.
3792         * lib/freading.c: Include stdio-impl.h.
3793         (freading): Remove redundant #defines.
3794         * lib/freadptr.c: Include stdio-impl.h.
3795         (freadptr): Remove redundant #defines.
3796         * lib/freadseek.c: Include stdio-impl.h.
3797         (freadptrinc): Remove redundant #defines.
3798         * lib/fseeko.c: Include stdio-impl.h.
3799         (rpl_fseeko): Remove redundant #defines.
3800         * lib/fseterr.c: Include stdio-impl.h.
3801         (fseterr): Remove redundant #defines.
3802         * lib/fwritable.c: Include stdio-impl.h.
3803         (fwritable: Remove redundant #defines.
3804         * lib/fwriting.c: Include stdio-impl.h.
3805         (fwriting): Remove redundant #defines.
3806         * modules/fbufmode (Files): Add lib/stdio-impl.h.
3807         * modules/fflush (Files): Likewise.
3808         * modules/fpurge (Files): Likewise.
3809         * modules/freadable (Files): Likewise.
3810         * modules/freadahead (Files): Likewise.
3811         * modules/freading (Files): Likewise.
3812         * modules/freadptr (Files): Likewise.
3813         * modules/freadseek (Files): Likewise.
3814         * modules/fseeko (Files): Likewise.
3815         * modules/fseterr (Files): Likewise.
3816         * modules/fwritable (Files): Likewise.
3817         * modules/fwriting (Files): Likewise.
3818
3819 2008-04-26  Bruno Haible  <bruno@clisp.org>
3820
3821         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3822         restore_seek_optimization, update_fpos_cache): New functions, extracted
3823         from rpl_fflush.
3824         (rpl_fflush): Use them.
3825         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
3826         (gl_REPLACE_FFLUSH): Use it.
3827
3828 2008-04-26  Bruno Haible  <bruno@clisp.org>
3829
3830         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
3831         on Solaris.
3832         * tests/test-xstrtoimax.sh: Likewise.
3833         * tests/test-xstrtoumax.sh: Likewise.
3834         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3835
3836 2008-04-26  Bruno Haible  <bruno@clisp.org>
3837
3838         * modules/memchr-tests: New file.
3839         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
3840
3841 2008-04-26  Eric Blake  <ebb9@byu.net>
3842             Bruno Haible  <bruno@clisp.org>
3843
3844         * lib/memchr.c: Include intprops.h.
3845         (__memchr): Optimize parallel detection of matching bytes. Rename local
3846         variables. Add explanatory comments.
3847
3848 2008-04-26  Bruno Haible  <bruno@clisp.org>
3849
3850         Fix module 'memchr', broken since 2000-10-28.
3851         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
3852
3853 2008-04-26  Bruno Haible  <bruno@clisp.org>
3854
3855         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
3856         comments.
3857
3858 2008-04-25  Eric Blake  <ebb9@byu.net>
3859
3860         Use native fstatat on cygwin 1.7.0.
3861         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
3862         first.
3863
3864 2008-04-23  Eric Blake  <ebb9@byu.net>
3865
3866         Improve memchr2 performance.
3867         * lib/memchr2.c (memchr2): Further optimize parallel detection of
3868         NUL bytes.
3869         * modules/memchr2 (Depends-on): Use intprops.h.
3870
3871 2008-04-23  Simon Josefsson  <simon@josefsson.org>
3872
3873         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
3874         an inline function instead of a CPP macro.  Patch by Ben Pfaff
3875         <blp@cs.stanford.edu>.
3876
3877 2008-04-23  Simon Josefsson  <simon@josefsson.org>
3878
3879         * lib/arpa_inet.in.h: New file.
3880
3881         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
3882         (Makefile.am): Sed in substitute header file.
3883
3884         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
3885         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
3886
3887         * modules/inet_ntop (configure.ac): Use
3888         gl_ARPA_INET_MODULE_INDICATOR.
3889
3890         * modules/inet_pton (configure.ac): Use
3891         gl_ARPA_INET_MODULE_INDICATOR.
3892
3893 2008-04-22  Jim Meyering  <meyering@redhat.com>
3894
3895         * modules/verify (License): Re-license as LGPLv2+.
3896
3897 2008-04-22  Simon Josefsson  <simon@josefsson.org>
3898
3899         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
3900         parameter to void* as per POSIX standard (MinGW uses char*).
3901
3902 2008-04-21  Bruno Haible  <bruno@clisp.org>
3903
3904         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
3905         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
3906         Define to replacements if REPLACE_ISWCNTRL is 1.
3907         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
3908         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
3909         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
3910         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
3911         what it fixes.
3912         * doc/posix-functions/iswalpha.texi: Likewise.
3913         * doc/posix-functions/iswblank.texi: Likewise.
3914         * doc/posix-functions/iswcntrl.texi: Likewise.
3915         * doc/posix-functions/iswdigit.texi: Likewise.
3916         * doc/posix-functions/iswgraph.texi: Likewise.
3917         * doc/posix-functions/iswlower.texi: Likewise.
3918         * doc/posix-functions/iswprint.texi: Likewise.
3919         * doc/posix-functions/iswpunct.texi: Likewise.
3920         * doc/posix-functions/iswspace.texi: Likewise.
3921         * doc/posix-functions/iswupper.texi: Likewise.
3922         * doc/posix-functions/iswxdigit.texi: Likewise.
3923         Reported by Alain Guibert.
3924
3925 2008-04-21  Bruno Haible  <bruno@clisp.org>
3926
3927         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
3928         Patch by Alain Guibert.
3929
3930 2008-04-21  Bruno Haible  <bruno@clisp.org>
3931
3932         Fix test failures on mingw.
3933         * tests/test-xstrtol.c (print_no_progname): New function.
3934         (main): Install it in error_print_progname hook.
3935         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
3936         * tests/test-xstrtoimax.sh: Likewise.
3937         * tests/test-xstrtoumax.sh: Likewise.
3938
3939 2008-04-21  Bruno Haible  <bruno@clisp.org>
3940
3941         Fix test failure on mingw.
3942         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
3943
3944 2008-04-21  Bruno Haible  <bruno@clisp.org>
3945
3946         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
3947         Actually assign a value.
3948
3949 2008-04-20  Bruno Haible  <bruno@clisp.org>
3950
3951         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
3952         take 2.
3953         * lib/canonicalize.c (canonicalize_file_name): Elide if the
3954         'canonicalize-lgpl' module is also used.
3955         * lib/canonicalize-lgpl.c: Undo last change.
3956         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
3957
3958 2008-04-20  Bruno Haible  <bruno@clisp.org>
3959
3960         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
3961         config.h. Provide _mkdir based fallback for mingw.
3962         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
3963         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
3964         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
3965         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
3966         rather than defining mkdir in config.h.
3967         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
3968         (gl_SYS_STAT_H_DEFAULTS): New macro.
3969         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
3970         HAVE_IO_H any more.
3971         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
3972         HAVE_DECL_MKDIR and HAVE_IO_H.
3973
3974 2008-04-20  Bruno Haible  <bruno@clisp.org>
3975
3976         * lib/isapipe.c: Port to native Windows platforms.
3977
3978 2008-04-20  Bruno Haible  <bruno@clisp.org>
3979
3980         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
3981
3982 2008-04-21  Eric Blake  <ebb9@byu.net>
3983
3984         Work around preprocessors that don't handle UINTMAX_MAX.
3985         * lib/memchr2.c (memchr2): Avoid embedded #if.
3986         Reported by Alain Guibert, fix suggested by Bruno Haible.
3987
3988 2008-04-21  Simon Josefsson  <simon@josefsson.org>
3989
3990         * doc/posix-functions/strftime.texi (strftime): Explain better
3991         Windows incompatibility.  Suggested by Micah Cowan
3992         <micah@cowan.name>.
3993
3994 2008-04-20  Bruno Haible  <bruno@clisp.org>
3995
3996         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
3997         unistr/u8-mblen.
3998
3999 2008-04-20  Bruno Haible  <bruno@clisp.org>
4000
4001         Fix test failure on platforms with non-GNU iconv.
4002         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
4003         (U_TO_U8): Use it, rather than u16_to_u8.
4004         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
4005         units at the end of the input string.
4006         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
4007
4008 2008-04-20  Bruno Haible  <bruno@clisp.org>
4009
4010         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
4011         when the resulting length is 0.
4012         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
4013
4014 2008-04-20  Bruno Haible  <bruno@clisp.org>
4015
4016         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
4017         works.
4018         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
4019
4020 2008-04-20  Bruno Haible  <bruno@clisp.org>
4021
4022         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
4023         * modules/tsearch-tests (configure.ac): Test for initstate function.
4024
4025 2008-04-20  Bruno Haible  <bruno@clisp.org>
4026
4027         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
4028         for nlink_t if missing.
4029         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
4030
4031 2008-04-19  Bruno Haible  <bruno@clisp.org>
4032
4033         Work around snprintf bug on Linux libc5.
4034         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
4035         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
4036         gl_SNPRINTF_SIZE1.
4037         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4038         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
4039         that test failed.
4040         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
4041         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
4042         * modules/snprintf (Files): Add m4/printf.m4.
4043         * modules/vsnprintf (Files): Likewise.
4044         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
4045         * doc/posix-functions/vsnprintf.texi: Likewise.
4046
4047 2008-04-19  Bruno Haible  <bruno@clisp.org>
4048
4049         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
4050         from 0.0058 to less than 10^-7.
4051
4052 2008-04-19  Bruno Haible  <bruno@clisp.org>
4053
4054         Fix rounding when a precision is given.
4055         * lib/vasnprintf.c (is_borderline): New function.
4056         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
4057         9...9x.
4058         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
4059         %e, %g.
4060         * tests/test-vasprintf-posix.c (test_function): Likewise.
4061         * tests/test-snprintf-posix.h (test_function): Likewise.
4062         * tests/test-sprintf-posix.h (test_function): Likewise.
4063         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
4064         * tests/test-printf-posix.h (test_function): Likewise.
4065         * tests/test-printf-posix.output: Update.
4066         Reported by John Darrington <john@darrington.wattle.id.au> via
4067         Ben Pfaff <blp@cs.stanford.edu>.
4068
4069 2008-04-18  Simon Josefsson  <simon@josefsson.org>
4070
4071         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
4072         Suggested by Bruno Haible <bruno@clisp.org>.
4073
4074 2008-04-17  Bruno Haible  <bruno@clisp.org>
4075
4076         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
4077         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
4078         implementation.
4079         Patch by Bruce Merry <bmerry@gmail.com>.
4080
4081 2008-04-17  Simon Josefsson  <simon@josefsson.org>
4082
4083         * doc/posix-functions/strftime.texi (strftime): Mention that %e
4084         doesn't work under Windows.
4085
4086 2008-04-16  Bruno Haible  <bruno@clisp.org>
4087
4088         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
4089         New macros.
4090         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
4091         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
4092         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
4093         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
4094         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
4095         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
4096         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
4097         macros.
4098         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
4099         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
4100         Northern Sotho, Uighur.
4101
4102 2008-04-16  Bruno Haible  <bruno@clisp.org>
4103
4104         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
4105         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
4106         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
4107         Reported by Daniel Bergström <daniel@octocode.com>.
4108
4109 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
4110             Bruno Haible  <bruno@clisp.org>
4111
4112         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
4113         function.
4114         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
4115         New functions, mostly extracted from gl_locale_name_default.
4116         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
4117
4118 2008-04-16  Eric Blake  <ebb9@byu.net>
4119
4120         Adjust strtod detection to catch glibc 2.7 bug.
4121         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
4122         Reported by John Gatewood Ham.
4123
4124 2008-04-16  Bruno Haible  <bruno@clisp.org>
4125
4126         Add tentative support for Linux libc5.
4127         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
4128         * lib/fpurge.c (fpurge): Likewise.
4129         * lib/freadable.c (freadable): Likewise.
4130         * lib/freadahead.c (freadahead): Likewise.
4131         * lib/freading.c (freading): Likewise.
4132         * lib/freadptr.c (freadptr): Likewise.
4133         * lib/freadseek.c (freadptrinc): Likewise.
4134         * lib/fseeko.c (rpl_fseeko): Likewise.
4135         * lib/fseterr.c (fseterr): Likewise.
4136         * lib/fwritable.c (fwritable): Likewise.
4137         * lib/fwriting.c (fwriting): Likewise.
4138         Reported by Alain Guibert <alguibert+bts@free.fr>.
4139
4140 2008-04-15  Bruno Haible  <bruno@clisp.org>
4141
4142         * modules/mathl (configure.ac): Define module indicator.
4143
4144 2008-04-15  Bruno Haible  <bruno@clisp.org>
4145
4146         * lib/logl.c (logl): Remove unused variables.
4147
4148 2008-04-15  Bruno Haible  <bruno@clisp.org>
4149
4150         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
4151         fails.
4152
4153 2008-04-15  Bruno Haible  <bruno@clisp.org>
4154
4155         * lib/trim.c (trim2): Fix argument of isspace() macro.
4156
4157 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
4158
4159         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
4160         to 0.
4161         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
4162
4163 2008-04-14  Bruno Haible  <bruno@clisp.org>
4164
4165         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
4166         AC_LANG_PROGRAM argument.
4167         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
4168         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
4169         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4170         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4171         * m4/math_h.m4 (gl_MATH_H): Likewise.
4172         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
4173         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
4174         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
4175         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
4176         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
4177         * m4/regex.m4 (gl_REGEX): Likewise.
4178         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
4179         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
4180         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
4181         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
4182         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4183         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
4184         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4185         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
4186
4187 2008-04-14  Jim Meyering  <meyering@redhat.com>
4188
4189         test-strtod: fix typos: s/abs/fabs/
4190         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
4191
4192 2008-04-13  Bruno Haible  <bruno@clisp.org>
4193
4194         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
4195         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
4196         module is also used and while not building the reloc-wrapper.
4197
4198 2008-04-13  Bruno Haible  <bruno@clisp.org>
4199
4200         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
4201
4202 2008-04-13  Bruno Haible  <bruno@clisp.org>
4203
4204         Fix AIX compilation failure introduced on 2008-04-02.
4205         * tests/test-frexp.c (exp): Undefine before redefining.
4206         * tests/test-frexpl.c (exp): Likewise.
4207
4208 2008-04-13  Bruno Haible  <bruno@clisp.org>
4209
4210         Work around a HP-UX stdio bug.
4211         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
4212         * tests/test-ftello.c (main): Likewise.
4213         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
4214         * doc/posix-functions/ftello.texi: Likewise.
4215
4216 2008-04-13  Bruno Haible  <bruno@clisp.org>
4217
4218         Make test-signbit pass on HP-UX/hppa.
4219         * tests/test-signbit.c (minus_zerol): New variable.
4220         (test_signbitl): Use it.
4221
4222 2008-04-13  Bruno Haible  <bruno@clisp.org>
4223
4224         Make truncl work on OSF/1 4.0.
4225         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
4226         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4227         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4228         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
4229         HAVE_DECL_TRUNCL.
4230         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
4231         HAVE_DECL_TRUNCL.
4232         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
4233
4234 2008-04-13  Bruno Haible  <bruno@clisp.org>
4235
4236         * lib/unictype.h: Remove trailing comma from enumeration definitions.
4237
4238 2008-04-13  Bruno Haible  <bruno@clisp.org>
4239
4240         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
4241         expression, so as to avoid HP-UX 11 cc compiler bug.
4242
4243 2008-04-13  Bruno Haible  <bruno@clisp.org>
4244
4245         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
4246
4247 2008-04-13  Bruno Haible  <bruno@clisp.org>
4248
4249         * lib/git-merge-changelog.c: Remove empty declaration outside of
4250         functions.
4251
4252 2008-04-13  Bruno Haible  <bruno@clisp.org>
4253
4254         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
4255
4256 2008-04-13  Bruno Haible  <bruno@clisp.org>
4257
4258         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
4259         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
4260         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
4261         also if it exists but lacks definitions of the SHUT_* macros.
4262         * modules/sys_socket (Description): Update.
4263         Reported by Elbert Pol <e.pol@chello.nl>.
4264
4265 2008-04-13  Bruno Haible  <bruno@clisp.org>
4266
4267         * lib/localcharset.c (OS2): Don't redefine if already defined.
4268         Reported by Elbert Pol <e.pol@chello.nl>.
4269
4270 2008-04-13  Bruno Haible  <bruno@clisp.org>
4271
4272         * lib/binary-io.h [__EMX__]: Include <io.h>.
4273         Reported by Elbert Pol <e.pol@chello.nl>.
4274
4275 2008-04-12  Bruno Haible  <bruno@clisp.org>
4276
4277         * lib/fpucw.h: Enable the definitions also for x86_64.
4278         Needed for NetBSD/x86_64.
4279         Reported by Thomas Klausner <tk@giga.or.at>.
4280
4281 2008-04-12  Bruno Haible  <bruno@clisp.org>
4282
4283         * tests/test-strtod.c: Include isnand.h.
4284         (main): Use isnand instead of isnan.
4285         Reported by Jim Meyering.
4286
4287 2008-04-12  Bruno Haible  <bruno@clisp.org>
4288
4289         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
4290         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4291
4292 2008-04-12  Jim Meyering  <meyering@redhat.com>
4293
4294         * m4/math_h.m4 (gl_MATH_H): Fix typos.
4295
4296 2008-04-12  Bruno Haible  <bruno@clisp.org>
4297
4298         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
4299         Reported by Elbert Pol <e.pol@chello.nl>.
4300
4301 2008-04-12  Eric Blake  <ebb9@byu.net>
4302
4303         Work around Solaris 10 math.h bug.
4304         * m4/math_h.m4 (gl_MATH_H): Check for bug.
4305         (gl_MATH_H_DEFAULTS): Set up default.
4306         * modules/math (Makefile.am): Replace new indicators.
4307         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
4308         * tests/test-math.c (main): Test this.
4309         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
4310         * doc/posix-headers/math.texi (math.h): Mention bug.
4311         Reported by Nelson H. F. Beebe and Jim Meyering.
4312
4313 2008-04-11  Bruno Haible  <bruno@clisp.org>
4314
4315         Adapt to future versions of Apple GCC.
4316         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
4317         Reported by Peter O'Gorman <peter@pogma.com>.
4318
4319 2008-04-11  Bruno Haible  <bruno@clisp.org>
4320
4321         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
4322
4323 2008-04-11  Bruno Haible  <bruno@clisp.org>
4324
4325         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
4326
4327         * modules/getaddrinfo-tests (Makefile.am): Define
4328         test_getaddrinfo_LDADD.
4329
4330 2008-04-11  Bruno Haible  <bruno@clisp.org>
4331
4332         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
4333         (init): Fix syntax error.
4334         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
4335         is declared.
4336
4337 2008-04-11  Bruno Haible  <bruno@clisp.org>
4338
4339         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
4340         * modules/glob (Depends-on): Add stdbool.
4341
4342 2008-04-11  Bruno Haible  <bruno@clisp.org>
4343
4344         * lib/trim.c: Include <string.h>.
4345
4346 2008-04-11  Eric Blake  <ebb9@byu.net>
4347
4348         Avoid compile failure on OS/2.
4349         * lib/regex_internal.h (internal_function): Disable optimization
4350         on OS/2 (__EMX__), where it caused compiler error.
4351         Reported by Elbert Pol.
4352
4353 2008-04-11  Bruno Haible  <bruno@clisp.org>
4354
4355         Flush the standard error stream before aborting. Needed on mingw.
4356         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
4357         * tests/test-array_list.c (ASSERT): Likewise.
4358         * tests/test-array_oset.c (ASSERT): Likewise.
4359         * tests/test-avltree_list.c (ASSERT): Likewise.
4360         * tests/test-avltree_oset.c (ASSERT): Likewise.
4361         * tests/test-avltreehash_list.c (ASSERT): Likewise.
4362         * tests/test-binary-io.c (ASSERT): Likewise.
4363         * tests/test-byteswap.c (ASSERT): Likewise.
4364         * tests/test-c-ctype.c (ASSERT): Likewise.
4365         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
4366         * tests/test-c-strcasestr.c (ASSERT): Likewise.
4367         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
4368         * tests/test-c-strstr.c (ASSERT): Likewise.
4369         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
4370         * tests/test-canonicalize.c (ASSERT): Likewise.
4371         * tests/test-carray_list.c (ASSERT): Likewise.
4372         * tests/test-ceilf1.c (ASSERT): Likewise.
4373         * tests/test-ceilf2.c (ASSERT): Likewise.
4374         * tests/test-ceill.c (ASSERT): Likewise.
4375         * tests/test-count-one-bits.c (ASSERT): Likewise.
4376         * tests/test-fbufmode.c (ASSERT): Likewise.
4377         * tests/test-fflush2.c (ASSERT): Likewise.
4378         * tests/test-floorf1.c (ASSERT): Likewise.
4379         * tests/test-floorf2.c (ASSERT): Likewise.
4380         * tests/test-floorl.c (ASSERT): Likewise.
4381         * tests/test-fopen.c (ASSERT): Likewise.
4382         * tests/test-fpending.c (ASSERT): Likewise.
4383         * tests/test-fprintf-posix.c (ASSERT): Likewise.
4384         * tests/test-fpurge.c (ASSERT): Likewise.
4385         * tests/test-freadable.c (ASSERT): Likewise.
4386         * tests/test-freadahead.c (ASSERT): Likewise.
4387         * tests/test-freading.c (ASSERT): Likewise.
4388         * tests/test-freadptr.c (ASSERT): Likewise.
4389         * tests/test-freadptr2.c (ASSERT): Likewise.
4390         * tests/test-freadseek.c (ASSERT): Likewise.
4391         * tests/test-freopen.c (ASSERT): Likewise.
4392         * tests/test-frexp.c (ASSERT): Likewise.
4393         * tests/test-frexpl.c (ASSERT): Likewise.
4394         * tests/test-fseek.c (ASSERT): Likewise.
4395         * tests/test-fseeko.c (ASSERT): Likewise.
4396         * tests/test-fstrcmp.c (ASSERT): Likewise.
4397         * tests/test-ftell.c (ASSERT): Likewise.
4398         * tests/test-ftello.c (ASSERT): Likewise.
4399         * tests/test-func.c (ASSERT): Likewise.
4400         * tests/test-fwritable.c (ASSERT): Likewise.
4401         * tests/test-fwriting.c (ASSERT): Likewise.
4402         * tests/test-getdelim.c (ASSERT): Likewise.
4403         * tests/test-getline.c (ASSERT): Likewise.
4404         * tests/test-i-ring.c (ASSERT): Likewise.
4405         * tests/test-iconv-utf.c (ASSERT): Likewise.
4406         * tests/test-iconv.c (ASSERT): Likewise.
4407         * tests/test-isfinite.c (ASSERT): Likewise.
4408         * tests/test-isnand.c (ASSERT): Likewise.
4409         * tests/test-isnanf.c (ASSERT): Likewise.
4410         * tests/test-isnanl.h (ASSERT): Likewise.
4411         * tests/test-ldexpl.c (ASSERT): Likewise.
4412         * tests/test-linked_list.c (ASSERT): Likewise.
4413         * tests/test-linkedhash_list.c (ASSERT): Likewise.
4414         * tests/test-localename.c (ASSERT): Likewise.
4415         * tests/test-lseek.c (ASSERT): Likewise.
4416         * tests/test-mbscasecmp.c (ASSERT): Likewise.
4417         * tests/test-mbscasestr1.c (ASSERT): Likewise.
4418         * tests/test-mbscasestr2.c (ASSERT): Likewise.
4419         * tests/test-mbscasestr3.c (ASSERT): Likewise.
4420         * tests/test-mbscasestr4.c (ASSERT): Likewise.
4421         * tests/test-mbschr.c (ASSERT): Likewise.
4422         * tests/test-mbscspn.c (ASSERT): Likewise.
4423         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
4424         * tests/test-mbspbrk.c (ASSERT): Likewise.
4425         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
4426         * tests/test-mbsrchr.c (ASSERT): Likewise.
4427         * tests/test-mbsspn.c (ASSERT): Likewise.
4428         * tests/test-mbsstr1.c (ASSERT): Likewise.
4429         * tests/test-mbsstr2.c (ASSERT): Likewise.
4430         * tests/test-mbsstr3.c (ASSERT): Likewise.
4431         * tests/test-memchr2.c (ASSERT): Likewise.
4432         * tests/test-memmem.c (ASSERT): Likewise.
4433         * tests/test-open.c (ASSERT): Likewise.
4434         * tests/test-printf-frexp.c (ASSERT): Likewise.
4435         * tests/test-printf-frexpl.c (ASSERT): Likewise.
4436         * tests/test-printf-posix.c (ASSERT): Likewise.
4437         * tests/test-quotearg.c (ASSERT): Likewise.
4438         * tests/test-rbtree_list.c (ASSERT): Likewise.
4439         * tests/test-rbtree_oset.c (ASSERT): Likewise.
4440         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
4441         * tests/test-round1.c (ASSERT): Likewise.
4442         * tests/test-roundf1.c (ASSERT): Likewise.
4443         * tests/test-roundl.c (ASSERT): Likewise.
4444         * tests/test-signbit.c (ASSERT): Likewise.
4445         * tests/test-sleep.c (ASSERT): Likewise.
4446         * tests/test-snprintf-posix.c (ASSERT): Likewise.
4447         * tests/test-snprintf.c (ASSERT): Likewise.
4448         * tests/test-sprintf-posix.c (ASSERT): Likewise.
4449         * tests/test-stat-time.c (ASSERT): Likewise.
4450         * tests/test-strcasestr.c (ASSERT): Likewise.
4451         * tests/test-strerror.c (ASSERT): Likewise.
4452         * tests/test-striconv.c (ASSERT): Likewise.
4453         * tests/test-striconveh.c (ASSERT): Likewise.
4454         * tests/test-striconveha.c (ASSERT): Likewise.
4455         * tests/test-strsignal.c (ASSERT): Likewise.
4456         * tests/test-strstr.c (ASSERT): Likewise.
4457         * tests/test-strtod.c (ASSERT): Likewise.
4458         * tests/test-trunc1.c (ASSERT): Likewise.
4459         * tests/test-trunc2.c (ASSERT): Likewise.
4460         * tests/test-truncf1.c (ASSERT): Likewise.
4461         * tests/test-truncf2.c (ASSERT): Likewise.
4462         * tests/test-truncl.c (ASSERT): Likewise.
4463         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
4464         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
4465         * tests/test-vasnprintf.c (ASSERT): Likewise.
4466         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
4467         * tests/test-vasprintf.c (ASSERT): Likewise.
4468         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
4469         * tests/test-vprintf-posix.c (ASSERT): Likewise.
4470         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
4471         * tests/test-vsnprintf.c (ASSERT): Likewise.
4472         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
4473         * tests/test-wcwidth.c (ASSERT): Likewise.
4474         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
4475         * tests/test-xprintf-posix.c (ASSERT): Likewise.
4476         * tests/test-xvasprintf.c (ASSERT): Likewise.
4477         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
4478         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
4479         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
4480         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
4481         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
4482         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
4483         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
4484         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
4485         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
4486         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
4487         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
4488         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
4489         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
4490         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
4491         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
4492         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
4493         * tests/unictype/test-block_list.c (ASSERT): Likewise.
4494         * tests/unictype/test-block_of.c (ASSERT): Likewise.
4495         * tests/unictype/test-block_test.c (ASSERT): Likewise.
4496         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
4497         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
4498         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
4499         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
4500         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
4501         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
4502         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
4503         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
4504         * tests/unictype/test-combining.c (ASSERT): Likewise.
4505         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
4506         * tests/unictype/test-digit.c (ASSERT): Likewise.
4507         * tests/unictype/test-mirror.c (ASSERT): Likewise.
4508         * tests/unictype/test-numeric.c (ASSERT): Likewise.
4509         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
4510         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
4511         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
4512         * tests/unictype/test-scripts.c (ASSERT): Likewise.
4513         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
4514         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
4515         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
4516         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
4517         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
4518         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
4519         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
4520         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
4521         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
4522         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
4523         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
4524         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
4525         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
4526         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
4527         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
4528         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
4529         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
4530         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
4531         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
4532         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
4533         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
4534         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
4535         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
4536         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
4537         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
4538         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
4539         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
4540         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
4541         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
4542         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
4543         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
4544         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
4545         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
4546         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
4547         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
4548         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
4549         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
4550         Reported by Eric Blake.
4551
4552 2008-04-11  Bruno Haible  <bruno@clisp.org>
4553
4554         * lib/wchar.in.h: Tweak comment.
4555
4556 2008-04-11  Bruno Haible  <bruno@clisp.org>
4557
4558         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
4559         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
4560         gl_COMMON.
4561         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
4562
4563 2008-04-11  Bruno Haible  <bruno@clisp.org>
4564
4565         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
4566
4567 2008-04-11  Simon Josefsson  <simon@josefsson.org>
4568
4569         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
4570         of attempting to use non-existing /dev/*random.  Based on patch
4571         from Adam Strzelecki <ono@java.pl> in
4572         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
4573
4574 2008-04-08  Bruno Haible  <bruno@clisp.org>
4575
4576         Add tentative support for emx+gcc.
4577         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
4578         * lib/fpurge.c (fpurge): Likewise.
4579         * lib/freadable.c (freadable): Likewise.
4580         * lib/freadahead.c (freadahead): Likewise.
4581         * lib/freading.c (freading): Likewise.
4582         * lib/freadptr.c (freadptr): Likewise.
4583         * lib/freadseek.c (freadptrinc): Likewise.
4584         * lib/fseeko.c (rpl_fseeko): Likewise.
4585         * lib/fseterr.c (fseterr): Likewise.
4586         * lib/fwritable.c (fwritable): Likewise.
4587         * lib/fwriting.c (fwriting): Likewise.
4588         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
4589
4590 2008-04-09  Eric Blake  <ebb9@byu.net>
4591
4592         Avoid some autoconf warnings.
4593         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
4594         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
4595         * m4/afs.m4 (gl_AFS): Likewise.
4596         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
4597         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
4598         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
4599         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
4600         (gl_INTEGER_TYPE_SUFFIX): Likewise.
4601         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
4602         (AC_CHECK_DECLS_ONCE): Likewise.
4603         Rename file...
4604         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
4605         gnulib-tool requires autoconf 2.59 or better.
4606         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
4607
4608 2008-04-08  Eric Blake  <ebb9@byu.net>
4609
4610         Use 'git describe --match' if present (added in git 1.5.5).
4611         * build-aux/git-version-gen: Limit result to tags that match 'v*'
4612         if possible.
4613
4614 2008-04-08  Bruno Haible  <bruno@clisp.org>
4615
4616         Add tentative support for OpenServer.
4617         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
4618         _ptr, _cnt.
4619         * lib/fpurge.c (fpurge): Likewise.
4620         * lib/freadable.c (freadable): Likewise.
4621         * lib/freadahead.c (freadahead): Likewise.
4622         * lib/freading.c (freading): Likewise.
4623         * lib/freadptr.c (freadptr): Likewise.
4624         * lib/freadseek.c (freadptrinc): Likewise.
4625         * lib/fseeko.c (rpl_fseeko): Likewise.
4626         * lib/fseterr.c (fseterr): Likewise.
4627         * lib/fwritable.c (fwritable): Likewise.
4628         * lib/fwriting.c (fwriting): Likewise.
4629         Reported by Roger Cornelius <rac@tenzing.org> and
4630         Brian K. White <brian@aljex.com>.
4631
4632 2008-04-06  Jim Meyering  <meyering@redhat.com>
4633
4634         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
4635
4636 2008-04-06  Bruno Haible  <bruno@clisp.org>
4637
4638         Avoid possible error with non-ASCII bytes in UTF-8 locales.
4639         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
4640         * tests/test-printf-posix.sh: Likewise.
4641         * tests/test-vfprintf-posix.sh: Likewise.
4642         * tests/test-vprintf-posix.sh: Likewise.
4643         * tests/test-xprintf-posix.sh: Likewise.
4644
4645 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4646
4647         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
4648         hide error from 'ls', needed on OS/2.
4649         Report by Elbert Pol <elbert.pol@gmail.com>.
4650
4651 2008-04-04  Eric Blake  <ebb9@byu.net>
4652
4653         Make test-fseeko.c failures meaningful.
4654         * tests/test-fseeko.c: Print line number on failure.
4655         * tests/test-fseek.c: Likewise.
4656         Reported by Nelson H. F. Beebe.
4657
4658         Improve strtod bug detection check.
4659         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
4660         required for Solaris 10.
4661         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
4662
4663 2008-04-04  Bruno Haible  <bruno@clisp.org>
4664
4665         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
4666         by m4/setenv.m4.
4667
4668 2008-04-03  Eric Blake  <ebb9@byu.net>
4669
4670         Ensure sane .version contents.
4671         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
4672         version string.
4673         * build-aux/git-version-gen: Improve documentation.
4674
4675         Make GNU make output nicer.
4676         * top/GNUmakefile [!_have-Makefile]: Add dependency on
4677         MAKECMDGOALS to enforce message for all command line targets.  Set
4678         srcdir for use in maint.mk.
4679
4680         Another maintainer tweak.
4681         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
4682         a target that regenerates version.
4683
4684 2008-04-03  Jim Meyering  <meyering@redhat.com>
4685
4686         vc-list-files: don't cause coreutils "make po-check" failure
4687         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
4688
4689 2008-04-03  Eric Blake  <ebb9@byu.net>
4690
4691         Allow VPATH usage of vc-list-files.
4692         * build-aux/vc-list-files (scriptversion): Add timestamp.
4693         (options): Add --help, --version, -C.
4694         (CVS): Support installed cvsu.
4695
4696 2008-04-02  Bruno Haible  <bruno@clisp.org>
4697
4698         Avoid some "statement with no effect" warnings from gcc.
4699         * tests/test-wctype.c (main): Explicitly ignore unused values.
4700         Reported by Jim Meyering.
4701
4702 2008-04-02  Jim Meyering  <meyering@redhat.com>
4703
4704         Avoid some warnings from "gcc -Wshadow".
4705         * tests/test-frexp.c (exp): Define to a different identifier.
4706         * tests/test-frexpl.c (exp): Likewise.
4707
4708 2008-04-03  Jim Meyering  <meyering@redhat.com>
4709
4710         bootstrap: remove dangling *.[ch] symlinks from lib
4711         * build-aux/bootstrap [dangling symlink removal]: Move find's
4712         -depth option to precede all others, to avoid a warning.
4713         Remove *.[ch] files too, and from "$source_base" (usually lib/).
4714
4715 2008-04-02  Bruno Haible  <bruno@clisp.org>
4716
4717         Avoid some warnings from "gcc -Wshadow".
4718         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
4719         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
4720         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
4721         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
4722         Reported by Jim Meyering.
4723
4724 2008-04-01  Bruno Haible  <bruno@clisp.org>
4725
4726         Fix test to work on IRIX 6.5 with cc.
4727         * tests/test-math.c (numeric_equal): New function.
4728         (main): Use it.
4729
4730 2008-04-01  Bruno Haible  <bruno@clisp.org>
4731
4732         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
4733
4734 2008-04-01  Bruno Haible  <bruno@clisp.org>
4735
4736         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
4737         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4738         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
4739         (Depends-on): Remove math.
4740
4741         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
4742         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4743         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
4744         (Depends-on): Remove math.
4745
4746         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
4747         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4748         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
4749         (Depends-on): Remove math.
4750         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
4751         (Depends-on): Remove math.
4752
4753         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
4754         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4755         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
4756         (Depends-on): Remove math.
4757         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
4758         (Depends-on): Remove math.
4759
4760         * tests/test-round1.c: Include nan.h.
4761         (main): Use NaNd instead of NAN.
4762         * modules/round-tests (Files): Add tests/nan.h.
4763
4764         * tests/test-trunc1.c: Include nan.h.
4765         (main): Use NaNd instead of NAN.
4766         * modules/trunc-tests (Files): Add tests/nan.h.
4767
4768         * tests/test-roundf1.c: Include nan.h.
4769         (main): Use NaNf instead of NAN.
4770         * modules/roundf-tests (Files): Add tests/nan.h.
4771
4772         * tests/test-truncf1.c: Include nan.h.
4773         (main): Use NaNf instead of NAN.
4774         * modules/truncf-tests (Files): Add tests/nan.h.
4775
4776         * tests/test-ceilf1.c: Include nan.h.
4777         (main): Use NaNf instead of NAN.
4778         * modules/ceilf-tests (Files): Add tests/nan.h.
4779
4780         * tests/test-floorf1.c: Include nan.h.
4781         (main): Use NaNf instead of NAN.
4782         * modules/floorf-tests (Files): Add tests/nan.h.
4783
4784         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
4785         (main): Use NaNf instead of NAN.
4786         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
4787
4788         * tests/test-isnand.c: Include nan.h instead of <math.h>.
4789         (main): Use NaNd instead of NAN.
4790         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
4791
4792         * tests/test-frexp.c: Include nan.h.
4793         (main): Use NaNd instead of NAN.
4794         * modules/frexp-tests (Files): Add tests/nan.h.
4795
4796         * lib/isnan.c: Don't include <math.h>.
4797         (FUNC): Don't use NAN macro.
4798         * modules/isnand-nolibm (Depends-on): Remove math.
4799         * modules/isnanf-nolibm (Depends-on): Remove math.
4800         * modules/isnanl (Depends-on): Remove math.
4801         * modules/isnanl-nolibm (Depends-on): Remove math.
4802
4803         * tests/nan.h: New file.
4804
4805 2008-04-01  Eric Blake  <ebb9@byu.net>
4806
4807         Fix typos.
4808         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
4809         values to be the right type.
4810
4811         For now, cater to gnulib strtod inaccuracies.
4812         * tests/test-strtod.c (main): Allow 1-ulp error on expected
4813         fractional results.  While not as nice from a QoI perspective, it
4814         is a quicker patch than correctly implementing decimal to binary
4815         rounding.
4816
4817 2008-03-31  Eric Blake  <ebb9@byu.net>
4818
4819         Guarantee a definition of NAN.
4820         * lib/math.in.h (NAN): Define if missing.
4821         * tests/test-math.c (main): Test it.
4822         * doc/posix-headers/math.texi (math.h): Document this.
4823         * lib/isnan.c (rpl_isnand): Use it.
4824         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
4825         * tests/test-floorf1.c (NaN): Likewise.
4826         * tests/test-frexp.c (NaN): Likewise.
4827         * tests/test-isnand.c (NaN): Likewise.
4828         * tests/test-isnanf.c (NaN): Likewise.
4829         * tests/test-round1.c (NaN): Likewise.
4830         * tests/test-roundf1.c (NaN): Likewise.
4831         * tests/test-snprintf-posix.h (NaN): Likewise.
4832         * tests/test-sprintf-posix.h (NaN): Likewise.
4833         * tests/test-trunc1.c (NaN): Likewise.
4834         * tests/test-truncf1.c (NaN): Likewise.
4835         * tests/test-vasnprintf-posix.c (NaN): Likewise.
4836         * tests/test-vasprintf-posix.c (NaN): Likewise.
4837         * modules/isnand-nolibm (Depends-on): Add math.
4838         * modules/isnanf-nolibm (Depends-on): Likewise.
4839         * modules/isnanl (Depends-on): Likewise.
4840         * modules/isnanl-nolibm (Depends-on): Likewise.
4841         * modules/snprintf-posix-tests (Depends-on): Likewise.
4842         * modules/sprintf-posix-tests (Depends-on): Likewise.
4843         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
4844         * modules/vsprintf-posix-tests (Depends-on): Likewise.
4845         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
4846         * modules/vasprintf-posix-tests (Depends-on): Likewise.
4847
4848 2008-03-31  Bruno Haible  <bruno@clisp.org>
4849
4850         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
4851         * doc/posix-functions/strtod.texi: Likewise.
4852
4853 2008-03-31  Bruno Haible  <bruno@clisp.org>
4854
4855         * tests/test-strtod.c (main): Don't use C99 syntax.
4856
4857 2008-03-31  Bruno Haible  <bruno@clisp.org>
4858
4859         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
4860         Reported by Eric Blake.
4861
4862 2008-03-31  Jim Meyering  <meyering@redhat.com>
4863
4864         Don't compare actual signbit return values.
4865         * tests/test-strtod.c (main): Rather, compare only their
4866         zero/non-zero nature.
4867
4868 2008-03-31  Eric Blake  <ebb9@byu.net>
4869
4870         More strtod documentation.
4871         * doc/posix-functions/strtod.texi (strtod): Interpret more test
4872         failures as distinct bugs.
4873
4874 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
4875
4876         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
4877         Problem reported by Erik Benada in
4878         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
4879
4880 2008-03-30  Bruno Haible  <bruno@clisp.org>
4881
4882         * tests/test-strtod.c: Add comments about which assertion fails on which
4883         platform.
4884         * doc/posix-functions/strtod.texi: Add info about many more platforms.
4885
4886 2008-03-30  Eric Blake  <ebb9@byu.net>
4887
4888         Test signbit behavior on zeros.
4889         * tests/test-signbit.c (test_signbitf): Add tests for zero.
4890         (test_signbitd, test_signbitl): Likewise.
4891
4892         More strtod touchups.
4893         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
4894         sign of negative underflow, for now.  Use .5, not .1.
4895         * doc/posix-functions/strtod.texi (strtod): Mention these
4896         limitations.
4897         Reported by Jim Meyering.
4898
4899 2008-03-30  Bruno Haible  <bruno@clisp.org>
4900
4901         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
4902         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
4903
4904 2008-03-30  Bruno Haible  <bruno@clisp.org>
4905
4906         Avoid failure when attempting to return empty iconv results on some
4907         platforms.
4908         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
4909         allocation, don't report ENOMEM when the resulting string is empty.
4910
4911 2008-03-30  Bruno Haible  <bruno@clisp.org>
4912
4913         Fix buffer overrun.
4914         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
4915         Don't consider the width for tmp_length. Check count against tmp_length
4916         before doing the padding. Ensure enough allocation during padding.
4917
4918 2008-03-30  Eric Blake  <ebb9@byu.net>
4919
4920         strtod touchups.
4921         * lib/strtod.c (strtod): Avoid compiler warnings.
4922         Reported by Jim Meyering.
4923
4924 2008-03-30  Bruno Haible  <bruno@clisp.org>
4925
4926         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
4927         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
4928         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
4929         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
4930         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
4931         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
4932         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
4933         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
4934
4935         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
4936         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
4937         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
4938         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
4939         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
4940         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
4941         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
4942         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
4943
4944         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
4945         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
4946         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
4947         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
4948         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
4949         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
4950         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
4951         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
4952
4953         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
4954         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
4955
4956         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
4957         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
4958
4959         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
4960         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
4961
4962         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
4963         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
4964         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
4965
4966         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
4967         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
4968         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
4969
4970         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
4971         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
4972         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
4973
4974         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
4975         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
4976         * modules/vasprintf (Depends-on): Add EOVERFLOW.
4977
4978         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
4979         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
4980         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
4981         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
4982         (Depends-on): Add EOVERFLOW.
4983         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
4984         (Depends-on): Add EOVERFLOW.
4985         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
4986         (Depends-on): Add EOVERFLOW.
4987         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
4988         (Depends-on): Add EOVERFLOW.
4989         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
4990         (Depends-on): Add EOVERFLOW.
4991         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
4992         (Depends-on): Add EOVERFLOW.
4993         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
4994         (Depends-on): Add EOVERFLOW.
4995         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
4996         (Depends-on): Add EOVERFLOW.
4997
4998         * lib/sprintf.c (EOVERFLOW): Remove fallback.
4999         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
5000         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
5001
5002         * lib/snprintf.c (EOVERFLOW): Remove fallback.
5003         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
5004         * modules/snprintf (Depends-on): Add EOVERFLOW.
5005
5006         * lib/poll.c (EOVERFLOW): Remove fallback.
5007         * modules/poll (Depends-on): Add EOVERFLOW.
5008
5009         * lib/getugroups.c (EOVERFLOW): Remove fallback.
5010         * modules/getugroups (Depends-on): Add EOVERFLOW.
5011
5012         * lib/getdelim.c (EOVERFLOW): Remove fallback.
5013         * modules/getdelim (Depends-on): Add EOVERFLOW.
5014
5015         * lib/ftell.c (EOVERFLOW): Remove fallback.
5016         * modules/ftell (Depends-on): Add EOVERFLOW.
5017
5018         * lib/fprintf.c (EOVERFLOW): Remove fallback.
5019         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
5020         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
5021
5022         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
5023
5024         * modules/EOVERFLOW-tests: New file.
5025         * tests/test-EOVERFLOW.c: New file.
5026
5027         * modules/EOVERFLOW: New file.
5028         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
5029
5030 2008-03-30  Bruno Haible  <bruno@clisp.org>
5031
5032         Fix bug introduced on 2007-06-10.
5033         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
5034         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
5035
5036 2008-03-30  Bruno Haible  <bruno@clisp.org>
5037
5038         Improve freadseek's efficiency after ungetc.
5039         * lib/freadseek.c: Include freadahead.h.
5040         (freadptrinc): New function, extracted from freadseek.
5041         (freadseek): Use it in a loop. Use freadahead to determine the number
5042         of loop iterations.
5043         * modules/freadseek (Depends-on): Add freadahead.
5044         (configure.ac): Require AC_C_INLINE.
5045
5046 2008-03-30  Bruno Haible  <bruno@clisp.org>
5047
5048         * lib/freadseek.c (freadseek): Don't ignore the return value of
5049         freadptr.
5050
5051 2008-03-29  Eric Blake  <ebb9@byu.net>
5052
5053         Add hex float support.
5054         * modules/strtod (Depends-on): Add c-ctype.
5055         (Link): Mention POW_LIB.
5056         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
5057         whitespace between 'e' and exponent.
5058         * tests/test-strtod.c (main): Enable hex float tests.
5059         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
5060         now provides.
5061
5062         Document various strtod bugs, with some fixes.
5063         * doc/posix-functions/strtod.texi (strtod): Document bugs with
5064         "-0x", "inf", "nan", and hex constants.
5065         * doc/posix-functions/atof.texi (atof): Likewise.
5066         * modules/stdlib (Makefile.am): Support strtod.
5067         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
5068         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
5069         detect additional strtod bugs.
5070         * lib/stdlib.in.h (rpl_strtod): Add declarations.
5071         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
5072         bool where appropriate.  Parse 'inf' and 'nan'.
5073         * tests/test-strtod.c: New file.
5074         * modules/strtod (Depends-on): Add stdbool, stdlib.
5075         (configure.ac): Turn on module indicator.
5076         * modules/strtod-tests: New module.
5077
5078 2008-03-29  Eric Blake  <ebb9@byu.net>
5079
5080         Fix ftell on mingw.
5081         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
5082         * modules/ftell-tests (Depends-on): Add binary-io.
5083         * modules/ftello-tests (Depends-on): Likewise.
5084         * tests/test-ftell.c (main): Enhance test to cover behavior after
5085         ungetc.  Enforce binary mode.
5086         * tests/test-ftello.c (main): Likewise.
5087
5088         Pass test-freadseek on cygwin.
5089         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
5090         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
5091         ungetc buffer.
5092
5093         * tests/test-fflush2.c (main): Fix typo.
5094
5095 2008-03-29  Bruno Haible  <bruno@clisp.org>
5096
5097         * tests/test-fflush2.c (main): Temporarily disable the contents of
5098         this test.
5099         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
5100         Reported by Eric Blake.
5101
5102 2008-03-28  Simon Josefsson  <simon@josefsson.org>
5103
5104         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
5105         (GC_SHA224_DIGEST_SIZE): Add.
5106
5107         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
5108         (gc_hash_digest_length): Likewise.
5109         (gc_hash_buffer): Likewise.
5110
5111 2008-03-25  Bruno Haible  <bruno@clisp.org>
5112
5113         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
5114         detail which gettext release to use.
5115         Reported by Simon Josefsson.
5116
5117 2008-03-26  Jim Meyering  <meyering@redhat.com>
5118
5119         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
5120         * modules/gnumakefile (clean-GNUmakefile): Also, use
5121         test ... && ... || : syntax rather than if-then ... fi.
5122
5123         gnumakefile: Don't double-quote-expand $(VPATH) value.
5124         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
5125
5126 2008-03-24  Eric Blake  <ebb9@byu.net>
5127
5128         Alter GNUmakefile to install into top directory.
5129         * modules/maintainer-makefile: Split, and add dependency...
5130         * modules/gnumakefile: to this new module.
5131         * build-aux/GNUmakefile: Move...
5132         * top/GNUmakefile: ...here.
5133         * build-aux/maint.mk: Move...
5134         * top/maint.mk: ...here.
5135         * MODULES.html.sh (Support for maintaining...): Document new
5136         module.
5137
5138 2008-03-23  Bruno Haible  <bruno@clisp.org>
5139
5140         * gnulib-tool: New options --vc-files, --no-vc-files.
5141         (func_usage): Document them.
5142         (vc_files): New variable.
5143         (func_import): Consider vc_files.
5144         (func_create_testdir): Set vc_files to empty.
5145         Suggested by Jim Meyering and Karl Berry.
5146
5147 2008-03-23  Bruno Haible  <bruno@clisp.org>
5148
5149         Fix regex compilation error on HP-UX 11.
5150         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
5151         * modules/regex (Files): Add m4/mbstate_t.m4.
5152         Reported by Ton Voon <ton.voon@altinity.com>.
5153
5154 2008-03-23  Bruno Haible  <bruno@clisp.org>
5155
5156         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
5157
5158 2008-03-23  Eric Blake  <ebb9@byu.net>
5159             Bruno Haible  <bruno@clisp.org>
5160
5161         Install files from top/ in the destination directory.
5162         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
5163         augmentation also for the files from top/.
5164         (func_import, func_create_testdir): Rewrite file names:
5165         top/filename -> filename.
5166
5167 2008-03-23  Bruno Haible  <bruno@clisp.org>
5168
5169         Tweak "gnulib --version" output.
5170         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
5171
5172 2008-03-23  Bruno Haible  <bruno@clisp.org>
5173
5174         Tweak "gnulib --version" output.
5175         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
5176         rather than contents of ChangeLog, when possible.
5177
5178 2008-03-21  Eric Blake  <ebb9@byu.net>
5179
5180         More --version tweaks.
5181         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
5182         date of last ChangeLog entry.
5183
5184 2008-03-21  Jim Meyering  <meyering@redhat.com>
5185
5186         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
5187
5188 2008-03-20  Eric Blake  <ebb9@byu.net>
5189
5190         VPATH fix.
5191         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
5192
5193 2008-03-20  Simon Josefsson  <simon@josefsson.org>
5194
5195         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
5196         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
5197
5198 2008-03-20  Eric Blake  <ebb9@byu.net>
5199
5200         Sync GNUmakefile with coreutils.
5201         * build-aux/GNUmakefile (have-Makefile): Rename...
5202         (_have-Makefile): ...to this, for namespace consideration.
5203         (GNUmakefile.cfg): Include, if present.
5204         (_autoreconf): Define a default.
5205         (_is-dist-target): New rule for rebuilds to pick up intra-release
5206         version.
5207         (maint-cfg.mk): Rename...
5208         (cfg.mk): ...to this.
5209
5210 2008-03-18  Jim Meyering  <meyering@redhat.com>
5211
5212         New script and module: mktempd
5213         * MODULES.html.sh (maint+release support): Add mktempd.
5214         * build-aux/mktempd: New file.
5215         * modules/mktempd: New file.
5216
5217 2008-03-15  Jim Meyering  <meyering@redhat.com>
5218
5219         Undo last change.
5220         * lib/sha1.c, lib/md5.c: 63 != ~63.
5221         Reported by Andreas Schwab.
5222
5223         sha1.c, md5.c: Hoist a redundant expression.
5224         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
5225         "ctx->buflen" only once, before calling *_process_block.
5226         * lib/md5.c (md5_process_bytes): Likewise.
5227
5228 2008-03-14  Eric Blake  <ebb9@byu.net>
5229
5230         Bump copyright year in files generated by gnulib-tool.
5231         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
5232         gnulib-tool, rather than hard-coding it.
5233
5234         Fix 'gnulib-tool --version' output to work with git.
5235         * gnulib-tool (func_gnulib_dir): New function, extracted from...
5236         (startup): ...here.
5237         (func_version): Use it to invoke git-version-gen, rather than
5238         relying on CVS keyword expansion.  Modernize wording.
5239         (cvsdatestamp, last_checkin_date, version): Kill unused
5240         variables.
5241
5242 2008-03-12  Jim Meyering  <meyering@redhat.com>
5243
5244         Recognize optional cast of the argument to free.
5245         * build-aux/useless-if-before-free: Update regexps.
5246
5247         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
5248
5249 2008-03-11  Bruno Haible  <bruno@clisp.org>
5250
5251         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
5252         by a single package.
5253         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
5254         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
5255         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
5256         Reported by Sam Steingold <sds@gnu.org>.
5257
5258 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5259
5260         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
5261         repositories.
5262
5263 2008-03-11  Bruno Haible  <bruno@clisp.org>
5264
5265         Avoid conflicts between local macro definitions.
5266         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
5267         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
5268
5269 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
5270             Bruno Haible  <bruno@clisp.org>
5271
5272         Make va_copy work with some version of xlc on AIX 5.1.
5273         * lib/stdarg.in.h: New file.
5274         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
5275         On AIX, use a <stdarg.h> file substitute.
5276         * modules/stdarg (Files): Add lib/stdarg.in.h.
5277         (Depends-on): Add include_next.
5278         (Makefile.am): Build a stdarg.h substitute if requested.
5279         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
5280
5281 2008-03-10  Bruno Haible  <bruno@clisp.org>
5282
5283         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
5284         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
5285         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5286
5287 2008-03-10  Bruno Haible  <bruno@clisp.org>
5288
5289         * modules/stdlib (Depends-on): Add include_next, remove
5290         absolute-header.
5291
5292 2008-03-09  Bruno Haible  <bruno@clisp.org>
5293
5294         * lib/freadahead.h (freadahead): Document more precisely.
5295         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
5296         the sum of both buffer sizes.
5297         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
5298         * NEWS: Document the change.
5299
5300 2008-03-09  Bruno Haible  <bruno@clisp.org>
5301
5302         Extend freadptr to return also the buffer size.
5303         * lib/freadptr.h (freadptr): Add sizep argument.
5304         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
5305         (freadptr): Add sizep argument. Determine buffer size like freadahead
5306         does.
5307         * tests/test-freadptr.c: Don't include freadahead.h.
5308         (main): Adapt for new calling convention of freadptr.
5309         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
5310         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
5311         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
5312         tests/test-freadptr2.sh.
5313         (Depends): Remove freadahead.
5314         (TESTS): Add test-freadptr2.sh.
5315         (check_PROGRAMS): Add test-freadptr2.
5316
5317 2008-03-09  Bruno Haible  <bruno@clisp.org>
5318
5319         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
5320         Report and solution by Simon Josefsson.
5321
5322 2008-03-06  Bruno Haible  <bruno@clisp.org>
5323
5324         Make fflush after ungetc work on BSD platforms.
5325         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
5326         * tests/test-fflush2.c: New file.
5327         * tests/test-fflush2.sh: New file.
5328         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
5329         tests/test-fflush2.c.
5330         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
5331         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
5332
5333 2008-03-06  Eric Blake  <ebb9@byu.net>
5334
5335         Likewise for ftello.
5336         * modules/ftello (Dependencies): Add extensions.
5337         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
5338
5339 2008-03-06  Bruno Haible  <bruno@clisp.org>
5340
5341         * modules/fseeko (Dependencies): Add extensions.
5342         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
5343         Needed on glibc systems.
5344
5345 2008-03-06  Bruno Haible  <bruno@clisp.org>
5346
5347         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
5348         email address.
5349         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5350
5351 2008-03-06  Bruno Haible  <bruno@clisp.org>
5352
5353         * users.txt: Add libgnupdf.
5354
5355 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
5356
5357         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
5358         (Header File Substitutes, Function Substitutes,
5359         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
5360         (Build robot for gnulib): Fix typo.
5361
5362 2008-03-06  Bruno Haible  <bruno@clisp.org>
5363
5364         * doc/gnulib-tool.texi (VCS Issues): Small updates.
5365         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5366
5367 2008-03-06  Bruno Haible  <bruno@clisp.org>
5368
5369         * doc/func.texi: New file, extracted from doc/gnulib.texi.
5370         * doc/gnulib.texi: Include it.
5371
5372 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5373
5374         * modules/func (License): Change license to unlimited; there was
5375         no LGPL parts in the module anyway.
5376
5377 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5378
5379         * modules/__func__: Renamed to modules/func.
5380         * modules/__func__-tests: Renamed to modules/func-tests.
5381         * tests/test-__func__.c: Renamed to tests/test-func.c.
5382         * m4/__func__.m4: Renamed to m4/func.m4.
5383         * doc/gnulib.texi (__func__): Section renamed to func.
5384         Suggested by Eric Blake <ebb9@byu.net>.
5385
5386 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5387
5388         * doc/gnulib.texi (__func__): Use C99 terminology when talking
5389         about __func__.  Make example self-contained.  Suggested by Eric
5390         Blake <ebb9@byu.net>.
5391
5392         * tests/test-__func__.c (main): Avoid extraneous () around __func.
5393         Suggested by Eric Blake <ebb9@byu.net>.
5394
5395 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5396
5397         * modules/__func__: New file.
5398         * modules/__func__-tests: New file.
5399         * tests/test-__func__.c: New file.
5400         * m4/__func__.m4: New file.
5401         * doc/gnulib.texi (__func__): Document __func__ module.
5402
5403 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5404
5405         * modules/byteswap (License): Re-license as LGPLv2+.
5406
5407 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5408
5409         * doc/Makefile: Add pdf target.
5410
5411 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5412
5413         * modules/inline (License): Use 'unlimited', since there are only
5414         *.m4 files in this module.
5415
5416 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5417             Bruno Haible  <bruno@clisp.org>
5418
5419         Add support for HP C 7.1 on OpenVMS 8.3.
5420         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
5421
5422 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5423
5424         Update VMS specifics.
5425         * lib/getopt.c [VMS]: Remove include of unixlib.h.
5426
5427 2008-03-02  Jim Meyering  <meyering@redhat.com>
5428
5429         Remove the last dependency on the "free" module.
5430         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
5431         Reported by Bob Proulx.
5432
5433         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
5434
5435         Remove useless "if" tests before free.  Deprecate "free" module.
5436         * doc/posix-functions/free.texi: Mention that this
5437         module is no longer useful.
5438         * modules/free (Notice): Say this module is obsolete.
5439         * modules/readutmp (Depends-on): Remove free.
5440         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
5441         * lib/putenv.c (putenv): Likewise.
5442         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
5443         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
5444         * tests/test-c-strcasestr.c (main): Likewise.
5445         * tests/test-c-strstr.c (main): Likewise.
5446         * tests/test-mbscasestr1.c (main): Likewise.
5447         * tests/test-mbscasestr2.c (main): Likewise.
5448         * tests/test-mbsstr1.c (main): Likewise.
5449         * tests/test-mbsstr2.c (main): Likewise.
5450         * tests/test-memmem.c (main): Likewise.
5451         * tests/test-strcasestr.c (main): Likewise.
5452         * tests/test-striconv.c (main): Likewise.
5453         * tests/test-striconveh.c (main): Likewise.
5454         * tests/test-striconveha.c (main): Likewise.
5455         * tests/test-strstr.c (main): Likewise.
5456
5457         * build-aux/git-version-gen: Adjust a comment and the Usage string.
5458
5459         bootstrap: sync from coreutils again
5460         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
5461
5462 2008-03-01  Jim Meyering  <meyering@redhat.com>
5463
5464         bootstrap: sync from coreutils
5465         * build-aux/bootstrap (update_po_files): Copy a .po file into place
5466         also when the target doesn't exist.
5467
5468 2008-03-01  Eric Blake  <ebb9@byu.net>
5469
5470         Fix bugs in last patch.
5471         * lib/memchr2.c (memchr2): Fix typo.
5472         * tests/test-memchr2.c: Test previous bug, and don't use GNU
5473         extension.
5474         Reported by Bruce Korb.
5475
5476         New module 'memchr2'.
5477         * modules/memchr2: New file.
5478         * modules/memchr2-tests: Likewise.
5479         * lib/memchr2.h: Likewise.
5480         * lib/memchr2.c: Likewise, based on memchr.c.
5481         * tests/test-memchr2.c: New test.
5482         * MODULES.html.sh (String handling): Add memchr2.
5483
5484 2008-02-29  Bruno Haible  <bruno@clisp.org>
5485
5486         * modules/freadseek-tests: New file.
5487         * tests/test-freadseek.sh: New file.
5488         * tests/test-freadseek.c: New file.
5489
5490         New module 'freadseek'.
5491         * modules/freadseek: New file.
5492         * lib/freadseek.h: New file.
5493         * lib/freadseek.c: New file.
5494         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
5495
5496 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
5497
5498         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
5499         wydawca.
5500
5501         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
5502         program_invocation_name and program_invocation_short_name are
5503         present.
5504
5505 2008-02-28  Bruno Haible  <bruno@clisp.org>
5506
5507         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
5508         * tests/test-freadptr.sh: Also test non-seekable stdin.
5509
5510 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
5511
5512         * build-aux/bootstrap (source_base, m4_base)
5513         (doc_base, tests_base): New variables.
5514         (gnulib_tool_options): Do not hardcode base directories, use
5515         the above variables instead.
5516
5517 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
5518
5519         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
5520
5521 2008-02-28  Bruno Haible  <bruno@clisp.org>
5522
5523         * modules/freadptr-tests: New file.
5524         * tests/test-freadptr.sh: New file.
5525         * tests/test-freadptr.c: New file.
5526
5527         New module 'freadptr'.
5528         * modules/freadptr: New file.
5529         * lib/freadptr.h: New file.
5530         * lib/freadptr.c: New file.
5531         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
5532
5533 2008-02-26  Karl Berry  <karl@freefriends.org>
5534
5535         Sync from Libtool:
5536         * libltdl/argz.c (argz_add, argz_count): New functions.
5537         * libltdl/argz.in.h: Declare them.
5538         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
5539
5540 2008-02-22  Bruno Haible  <bruno@clisp.org>
5541
5542         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
5543         is a pointer type.  Needed for HP-UX 10.
5544         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
5545         * doc/posix-functions/gmtime_r.texi: Likewise.
5546         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5547
5548 2008-02-24  Bruno Haible  <bruno@clisp.org>
5549
5550         * modules/environ-tests: New file.
5551         * tests/test-environ.c: New file.
5552
5553         New module 'environ'.
5554         * modules/environ: New file.
5555         * lib/unistd.in.h (environ): New declaration.
5556         * m4/environ.m4: New file.
5557         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
5558         after use.
5559         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
5560         HAVE_DECL_ENVIRON.
5561         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
5562         HAVE_DECL_ENVIRON.
5563         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
5564         wrong claim that 'environ' is missing on some systems.
5565         * modules/execute (Depends-on): Add environ.
5566         * lib/execute.c (environ): Remove fallback declaration.
5567         * modules/pipe (Depends-on): Add environ.
5568         * lib/pipe.c (environ): Remove fallback declaration.
5569         * modules/setenv (Depends-on): Add environ.
5570         * lib/setenv.c (environ): Remove fallback declaration.
5571         * modules/unsetenv (Depends-on): Add environ.
5572         * lib/unsetenv.c (environ): Remove fallback declaration.
5573         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
5574         m4/environ.m4.
5575         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
5576         (gl_PREREQ_UNSETENV): Likewise.
5577
5578 2008-02-24  Bruno Haible  <bruno@clisp.org>
5579
5580         * doc/posix-functions/environ.texi: Document the MacOS X problem.
5581
5582 2008-02-20  Bob Proulx  <bob@proulx.com>
5583
5584         Enable use of older two part flavor 'git describe'.
5585         * build-aux/git-version-gen: If using the older two part flavor of
5586         git version then recreate the third part now present in the
5587         newer three part flavor of git describe.
5588
5589 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
5590
5591         * lib/fts.c (fts_build): Typo correction to comment.
5592
5593 2008-02-17  Bruno Haible  <bruno@clisp.org>
5594
5595         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
5596         generating no-op conflicts.
5597
5598 2008-02-17  Bruno Haible  <bruno@clisp.org>
5599
5600         Speed up by 10%.
5601         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
5602         result_entries, rather than an index-based loop.
5603
5604 2008-02-17  Bruno Haible  <bruno@clisp.org>
5605
5606         Speed up by 25%.
5607         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
5608         'hashcode_cached'.
5609         (entry_create): New function.
5610         (entry_hashcode): Use the cached hashcode if possible.
5611         (read_changelog_file, try_split_merged_entry): Use entry_create.
5612
5613 2008-02-17  Bruno Haible  <bruno@clisp.org>
5614
5615         Speed up from O(n^2) to O(n) for long ChangeLog files.
5616         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
5617         (read_changelog_file): Change implementation of entries_reversed list
5618         to rbtreehash.
5619         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
5620
5621 2008-02-17  Bruno Haible  <bruno@clisp.org>
5622
5623         New option --split-merged-entry.
5624         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
5625         (find_paragraph_end, try_split_merged_entry): New functions.
5626         (long_options): Add option --split-merged-entry.
5627         (usage): Document option --split-merged-entry.
5628         (main): Implement option --split-merged-entry.
5629         Reported by Eric Blake.
5630
5631 2008-02-17  Bruno Haible  <bruno@clisp.org>
5632
5633         * lib/git-merge-changelog.c: Include c-strstr.h.
5634         (main): Support the "git pull --rebase" situation.
5635         * modules/git-merge-changelog (Depends-on): Add c-strstr.
5636         Reported by Eric Blake.
5637
5638 2008-02-16  Eric Blake  <ebb9@byu.net>
5639
5640         Avoid doubling \ in common case of "c-maybe" quoting style.
5641         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
5642         eliding outer quotes.
5643         * lib/quotearg.h: Document this.
5644         * tests/test-quotearg.c (result_strings, inputs, results_g)
5645         (flag_results, locale_results): Test it by adding a new string to
5646         each test group.
5647         (compare_strings): Test new string.
5648
5649 2008-02-13  Eric Blake  <ebb9@byu.net>
5650
5651         Avoid trigraph quoting in default output.
5652         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
5653         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
5654         unless explicitly requested.
5655         * tests/test-quotearg.c (flag_results, main): Add additional tests.
5656
5657 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
5658
5659         Don't rely on signed integer overflowing to negative value.
5660         * lib/getugroups.c (getugroups): Include <limits.h>.
5661         Instead, compare against INT_MAX, and increment only if the test passes.
5662
5663 2008-02-13  Jim Meyering  <meyering@redhat.com>
5664         and Eric Blake  <ebb9@byu.net>
5665
5666         Avoid shadowing warning and compile errors on Linux.
5667         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
5668         forwarding macros on Linux.
5669         (dcgettext): Define a stub, for Linux.
5670         (results_g, main): Avoid warnings.
5671
5672 2008-02-12  Eric Blake  <ebb9@byu.net>
5673
5674         Silence warning in last patch.
5675         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
5676
5677         Quotearg part 4: add tests, fix c-maybe colon quoting.
5678         * lib/quotearg.h: Improve documentation.
5679         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
5680         escapes when adding outer quotes.  When quoting trigraphs, use
5681         valid C notation.  When quoting NUL, omit extra characters if next
5682         character is not digit.  Alter prototype.
5683         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
5684         callers.
5685         * modules/quotearg-tests: New module.
5686         * tests/test-quotearg.c: New test.
5687
5688 2008-02-07  Eric Blake  <ebb9@byu.net>
5689
5690         Quotearg part 3: add flag to control outer quote elision.
5691         * lib/quotearg.h (c_maybe_quoting_style): New style.
5692         (enum quoting_flags): Better documentation of flags.
5693         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
5694         c-maybe style.
5695         (quotearg_buffer_restyled): Handle new flag to elide outer
5696         quotes.
5697
5698         Quotearg part 2: add flag that can control NUL elision.
5699         * lib/quotearg.h (set_quoting_flags): New prototype.
5700         * lib/quotearg.c (struct quoting_options): Add flag field.
5701         (set_quoting_flags): New function.
5702         (quotearg_buffer_restyled): Add flags parameter.
5703         (quotearg_alloc_mem): Set the flag if length cannot be returned.
5704         (quotearg_n_options): Set the flag, since length cannot be
5705         returned.
5706         (quoting_options_from_style): Default flags correctly.
5707
5708         Quotearg part 1: more wrappers, restore quotearg_char state.
5709         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
5710         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
5711         (quotearg_colon_mem): New wrappers.
5712         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
5713         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
5714         functions.
5715         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
5716         (quotearg_colon_mem): New functions.
5717
5718 2008-02-11  Bruno Haible  <bruno@clisp.org>
5719
5720         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
5721         library in the current directory: it does not work with parallel make.
5722         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5723
5724 2008-02-11  Bruno Haible  <bruno@clisp.org>
5725
5726         * .gitattributes: New file.
5727
5728 2008-02-11  Jim Meyering  <meyering@redhat.com>
5729
5730         useless-if-before-free: Fix reversed exit values.
5731         * build-aux/useless-if-before-free: Use correct values
5732         for EXIT_MATCH and EXIT_NO_MATCH.
5733
5734         * build-aux/useless-if-before-free: Close stdout carefully.
5735
5736 2008-02-10  Bruno Haible  <bruno@clisp.org>
5737
5738         New module 'git-merge-changelog'.
5739         * modules/git-merge-changelog: New file.
5740         * lib/git-merge-changelog.c: New file.
5741
5742 2008-02-10  Jim Meyering  <meyering@redhat.com>
5743
5744         useless-if-before-free: New option: --list (-l).
5745
5746         useless-if-before-free: Don't exit immediately upon open failure.
5747         * build-aux/useless-if-before-free: Exit 2 for errors.
5748         Upon failure to open a file, don't exit immediately.
5749         Rather, just warn and continue with any remaining files.
5750
5751 2008-02-10  Bruno Haible  <bruno@clisp.org>
5752
5753         New abstract list operation 'node_set_value'.
5754         * lib/gl_list.h (gl_list_node_set_value): New function.
5755         (struct gl_list_implementation): New field node_set_value.
5756         * lib/gl_list.c (gl_list_node_set_value): New function.
5757         * lib/gl_array_list.c (gl_array_node_set_value): New function.
5758         (gl_array_list_implementation): Update.
5759         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
5760         (gl_carray_list_implementation): Update.
5761         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
5762         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
5763         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
5764         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
5765         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
5766         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
5767         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
5768         Update.
5769         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
5770         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
5771         (gl_sublist_list_implementation): Update.
5772
5773 2008-02-10  Bruno Haible  <bruno@clisp.org>
5774
5775         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
5776         Needed when ELEMENT is #defined to 'some_type *'.
5777
5778 2008-02-10  Jim Meyering  <meyering@redhat.com>
5779
5780         New script and module: useless-if-before-free
5781         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
5782         * build-aux/useless-if-before-free: New file.
5783         * modules/useless-if-before-free: New file.
5784
5785         * build-aux/gitlog-to-changelog: Use committer date, not author date.
5786
5787         xstrtol_error: Fix typo.
5788         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
5789         s/exit_failure/exit_status/.
5790
5791 2008-02-09  Jim Meyering  <meyering@redhat.com>
5792
5793         New script and module: gitlog-to-changelog
5794         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
5795         * modules/gitlog-to-changelog: New file.
5796         * build-aux/gitlog-to-changelog: New file.
5797
5798 2008-02-08  Jim Meyering  <meyering@redhat.com>
5799
5800         Avoid two "parameter unused" warnings.
5801         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
5802         Mark "st" as used.
5803
5804         Use "git COMMAND", not "git-COMMAND".
5805         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
5806         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
5807         * build-aux/git-version-gen: Use "git status", not "git-status".
5808
5809 2008-02-07  Bruno Haible  <bruno@clisp.org>
5810
5811         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
5812         Avoids a crash on Windows Vista.
5813         Reported by Adam Strzelecki <ono@java.pl> via
5814         Simon Josefsson <simon@josefsson.org>.
5815
5816 2008-02-06  Bruno Haible  <bruno@clisp.org>
5817
5818         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
5819         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
5820         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
5821         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
5822         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5823         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5824         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
5825         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
5826         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5827         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5828         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5829         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5830         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5831         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5832         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5833         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
5834         left-adjust flag.
5835         * tests/test-snprintf-posix.h (test_function): Likewise.
5836         * tests/test-sprintf-posix.h (test_function): Likewise.
5837         * tests/test-vasprintf-posix.c (test_function): Likewise.
5838         * doc/posix-functions/fprintf.texi: Update.
5839         * doc/posix-functions/printf.texi: Update.
5840         * doc/posix-functions/snprintf.texi: Update.
5841         * doc/posix-functions/sprintf.texi: Update.
5842         * doc/posix-functions/vfprintf.texi: Update.
5843         * doc/posix-functions/vprintf.texi: Update.
5844         * doc/posix-functions/vsnprintf.texi: Update.
5845         * doc/posix-functions/vsprintf.texi: Update.
5846         Reported by Peter Fales <psfales@alcatel-lucent.com>.
5847
5848 2008-02-06  Bruno Haible  <bruno@clisp.org>
5849
5850         Fix bug introduced on 2008-01-26.
5851         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
5852
5853 2008-02-06  Bruno Haible  <bruno@clisp.org>
5854
5855         Fix bug introduced on 2007-06-10.
5856         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
5857         !NEED_PRINTF_FLAG_ZERO.
5858
5859 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
5860
5861         getloadavg: use libperfstat on AIX5
5862         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
5863
5864 2008-02-03  Bruno Haible  <bruno@clisp.org>
5865
5866         * lib/diffseq.h: Add comments about required #includes.
5867         Reported by Michael Biggs <gnulib@doubleplum.net>.
5868
5869 2008-02-01  Bruno Haible  <bruno@clisp.org>
5870
5871         * users.txt: Add gnuit.
5872
5873 2008-01-31  Bruno Haible  <bruno@clisp.org>
5874
5875         * lib/md4.c (set_uint32): Mark as inline.
5876         * lib/md5.c (set_uint32): Likewise.
5877         * lib/sha1.c (set_uint32): Likewise.
5878         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
5879         * m4/md5.m4 (gl_MD5): Likewise.
5880         * m4/sha1.m4 (gl_SHA1): Likewise.
5881
5882 2008-01-31  Jim Meyering  <meyering@redhat.com>
5883
5884         Use "sizeof VAR", rather than a literal "4".
5885         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
5886         * lib/md4.c (md4_read_ctx): Likewise.
5887         * lib/sha1.c (sha1_read_ctx): Likewise.
5888
5889 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5890
5891         * tests/test-sha1.c: New file, based on test-md5.c.
5892
5893         * modules/crypto/sha1-tests: New file.
5894
5895 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5896
5897         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
5898
5899 2008-01-31  Jim Meyering  <meyering@redhat.com>
5900
5901         Prefer "sizeof v" over the equivalent "4".
5902         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
5903         * lib/md5.c (set_uint32): Likewise.
5904         * lib/sha1.c (set_uint32): Likewise.
5905
5906 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5907
5908         * lib/sha1.c (set_uint32): Mark function as static.
5909
5910 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5911
5912         md2: clarify comments to say that alignment is not required.
5913         * lib/md2.h: Remove warning about alignment in comment.
5914         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
5915         never been required.
5916
5917 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5918
5919         md4: adapt alignment constraint fix from sha1.
5920         * lib/md4.c (set_uint32): New function, from sha1.c
5921         (md4_read_ctx): Use it.
5922         (md4_finish_ctx): Doc fix.
5923         * lib/md4.h: Doc fix.
5924
5925 2008-01-31  Simon Josefsson  <simon@josefsson.org>
5926
5927         md5: adapt alignment constraint fix from sha1.
5928         * lib/md5.c (set_uint32): New function, from sha1.c
5929         (md5_read_ctx): Use it.
5930         (md5_finish_ctx): Doc fix.
5931         * lib/md5.h: Doc fix.
5932
5933 2008-01-30  Peter Palfrader  <weasel@debian.org>
5934
5935         sha1: remove the result buffer alignment constraint
5936         * lib/sha1.c (set_uint32): New function.
5937         (sha1_read_ctx): Rewrite to remove the result buffer alignment
5938         constraint.
5939         (sha1_finish_ctx): Remove comment warning about alignment constraint.
5940         * lib/sha1.h: Likewise.
5941
5942 2008-01-30  Andreas Schwab  <schwab@suse.de>
5943             Bruno Haible  <bruno@clisp.org>
5944
5945         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
5946         correct definition of LDBL_MIN_EXP.
5947
5948 2008-01-30  Karl Berry  <karl@gnu.org>
5949
5950         * config/srclist-update: try to preserve x bit on updates.
5951         * config/srclistvars.sh: update for karl.
5952
5953 2008-01-29  Jim Meyering  <meyering@redhat.com>
5954
5955         vasnprintf.c: Avoid warning about unused label
5956         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
5957         "overflow" label definition and associated code with the
5958         same cpp condition that guards the sole use of that label.
5959
5960 2008-01-26  Bruno Haible  <bruno@clisp.org>
5961
5962         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
5963         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
5964         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
5965         * lib/isnanl-nolibm.h (isnanl): Likewise.
5966         Reported by Paul Eggert <eggert@cs.ucla.edu>.
5967
5968 2008-01-26  Bruno Haible  <bruno@clisp.org>
5969
5970         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
5971         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
5972
5973 2008-01-26  Bruno Haible  <bruno@clisp.org>
5974
5975         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
5976         GCC >= 4.0 built-in.
5977         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
5978
5979 2008-01-26  Bruno Haible  <bruno@clisp.org>
5980
5981         Rename isnan, applicable to 'double' only, to isnand.
5982         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
5983         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
5984         (configure.ac): Update.
5985         (Include): Replace "isnan.h" with "isnand.h".
5986         * m4/isnand.m4: Renamed from m4/isnan.m4.
5987         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
5988         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
5989         instead of isnan.c.
5990         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
5991         instead of HAVE_ISNAN_IN_LIBC.
5992         (isnand): Renamed from isnan.
5993         * lib/isnand.c: New file.
5994         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
5995         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
5996         (Makefile.am): Update.
5997         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
5998         Include isnand.h instead of isnan.h.
5999         (main): Test isnand instead of isnan.
6000         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
6001         isnan-nolibm.
6002         * modules/frexp (Depends-on): Likewise.
6003         * modules/frexp-tests (Depends-on): Likewise.
6004         * modules/frexp-nolibm (Depends-on): Likewise.
6005         * modules/frexp-nolibm-tests (Depends-on): Likewise.
6006         * modules/isfinite (Depends-on): Likewise.
6007         * modules/round-tests (Depends-on): Likewise.
6008         * modules/signbit (Depends-on): Likewise.
6009         * modules/signbit-tests (Depends-on): Likewise.
6010         * modules/snprintf-posix (Depends-on): Likewise.
6011         * modules/sprintf-posix (Depends-on): Likewise.
6012         * modules/trunc-tests (Depends-on): Likewise.
6013         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
6014         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6015         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6016         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6017         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6018         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6019         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6020         * modules/vasnprintf-posix (Depends-on): Likewise.
6021         * modules/vasprintf-posix (Depends-on): Likewise.
6022         * modules/vfprintf-posix (Depends-on): Likewise.
6023         * modules/vsnprintf-posix (Depends-on): Likewise.
6024         * modules/vsprintf-posix (Depends-on): Likewise.
6025         * lib/frexp.c: Include isnand.h instead of isnan.h.
6026         (ISNAN): Set to isnand instead of isnan.
6027         * lib/isfinite.c: Include isnand.h instead of isnan.h.
6028         (gl_isfinited): Use isnand instead of isnan.
6029         * lib/signbitd.c: Include isnand.h instead of isnan.h.
6030         (gl_signbitd): Use isnand instead of isnan.
6031         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
6032         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
6033         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
6034         (main): Use isnand instead of isnan.
6035         * tests/test-round1.c: Include isnand.h.
6036         (main): Use isnand instead of isnan.
6037         * tests/test-round2.c: Include isnand.h instead of isnan.h.
6038         (ISNAN): Set to isnand instead of isnan.
6039         * tests/test-trunc1.c: Include isnand.h.
6040         (main): Use isnand instead of isnan.
6041         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
6042         (equal): Use isnand instead of isnan.
6043         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
6044         isnand-nolibm.
6045         * NEWS: Mention the change.
6046
6047 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
6048             Bruno Haible  <bruno@clisp.org>
6049
6050         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
6051         the GCC builtins for signbits are present and set
6052         REPLACE_SIGNBIT_USING_GCC if so.
6053         * lib/math.in.h (signbit): Define using GCC builtins if
6054         REPLACE_SIGNBIT_USING_GCC is set.
6055         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
6056         REPLACE_SIGNBIT_USING_GCC.
6057         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
6058
6059 2008-01-25  Jim Meyering  <meyering@redhat.com>
6060
6061         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
6062         * lib/poll.c: Include <config.h>, not "config.h".
6063         * tests/test-getaddrinfo.c: Likewise.
6064
6065 2008-01-25  Simon Josefsson  <simon@josefsson.org>
6066
6067         * modules/sockets-tests: New file.
6068
6069 2008-01-24  Simon Josefsson  <simon@josefsson.org>
6070
6071         * modules/sockets: New module, can be used to call WSA_Startup and
6072         WSA_Cleanup when needed.
6073
6074         * lib/sockets.h, lib/sockets.c: New files.
6075
6076         * m4/sockets.m4: New file.
6077
6078         * tests/test-sockets.c: New file.
6079
6080 2008-01-19  Bruno Haible  <bruno@clisp.org>
6081
6082         * doc/posix-headers: Renamed from doc/headers.
6083         * doc/posix-functions: Renamed from doc/functions.
6084         * doc/gnulib.texi: Update.
6085
6086 2008-01-19  Bruno Haible  <bruno@clisp.org>
6087
6088         * doc/glibc-functions/strcasestr.texi: Include contents of
6089         doc/functions/strcasestr.texi, fixing the list of platforms.
6090         * doc/functions/strcasestr.texi: Remove file.
6091
6092 2008-01-19  Bruno Haible  <bruno@clisp.org>
6093
6094         * doc/glibc-functions/memmem.texi: Include contents of
6095         doc/functions/memmem.texi.
6096         * doc/functions/memmem.texi: Remove file.
6097
6098 2008-01-18  Bruno Haible  <bruno@clisp.org>
6099
6100         * doc/glibc-functions/*.texi: New files.
6101         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
6102         to use the new files.
6103
6104 2008-01-17  Bruno Haible  <bruno@clisp.org>
6105
6106         * tests/test-gethostname.c (main): Fix printf statement.
6107
6108 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6109
6110         * modules/gethostname-tests: New file.
6111
6112         * tests/test-gethostname.c: New file.
6113
6114 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6115
6116         * lib/gethostname.c: Include string.h unconditionally, strncpy is
6117         used by the UNAME case.  Reported by Bruno Haible
6118         <bruno@clisp.org>.
6119
6120 2008-01-17  Eric Blake  <ebb9@byu.net>
6121
6122         Convert c-strcasestr to be more efficient.
6123         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
6124         (Depends-on): Add c-strcase, remove malloca, strnlen.
6125         * tests/test-c-strcasestr.c (main): Enhance test.
6126         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
6127
6128 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
6129
6130         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
6131         Use it in creating po/Makevars.
6132
6133 2008-01-15  Simon Josefsson  <simon@josefsson.org>
6134
6135         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
6136         Applications that requires it should initialize libgcrypt
6137         manually.
6138
6139 2008-01-16  Simon Josefsson  <simon@josefsson.org>
6140
6141         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
6142
6143 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
6144
6145         Fix problem with getdate on mingw32 reported by Simon Josefsson
6146         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
6147         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
6148         tzname", when deciding whether to declare tzname.
6149         * lib/strftime.c (tzname): Likewise.
6150
6151 2008-01-15  Bruno Haible  <bruno@clisp.org>
6152
6153         Work around a MacOS X 10.5 bug in frexpl().
6154         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
6155         * doc/functions/frexpl.texi: Document the bug.
6156         Reported by Elias Pipping <pipping@gentoo.org>.
6157
6158 2008-01-14  Eric Blake  <ebb9@byu.net>
6159
6160         Touch up previous patch.
6161         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
6162         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
6163
6164         Convert strcasestr module to use Two-Way algorithm.
6165         * modules/strcasestr-simple: New module, based on the old
6166         strcasestr, but with Two-Way rather than KMP.
6167         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
6168         * lib/string.in.h (rpl_strcasestr): Declare.
6169         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
6170         performance.
6171         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
6172         * modules/string (Makefile.am): Support strcasestr.
6173         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6174         * modules/strcasestr-tests (Depends-on): Check for alarm.
6175         * tests/test-strcasestr.c: Augment test.
6176         * lib/str-two-way.h: Clean up stray macro.
6177         * NEWS: Document new module.
6178         * MODULES.html.sh (string handling): Likewise.
6179         * doc/functions/strcasestr.texi: New file.
6180         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
6181         here, since it is not a POSIX function.
6182
6183 2008-01-14  Colin Watson  <cjwatson@debian.org>
6184             Bruno Haible  <bruno@clisp.org>
6185
6186         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
6187         works fine; if not, set REPLACE_STRSIGNAL.
6188         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
6189         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6190         REPLACE_STRSIGNAL.
6191         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
6192         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
6193         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
6194
6195 2008-01-14  Bruno Haible  <bruno@clisp.org>
6196
6197         * modules/strsignal (Include): Change to <string.h>.
6198
6199 2008-01-14  Colin Watson  <cjwatson@debian.org>
6200
6201         * modules/argp (Notice): Add a notice recommending to change
6202         XGETTEXT_OPTIONS.
6203         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
6204
6205 2008-01-13  Colin Watson  <cjwatson@debian.org>
6206
6207         * modules/strsignal-tests: New file.
6208         * tests/test-strsignal.c: New file.
6209
6210         * lib/strsignal.c: New file, from glibc with modifications.
6211         * lib/siglist.h: New file, from glibc with modifications.
6212         * lib/string.in.h (strsignal): New declaration.
6213         * m4/strsignal.m4: New file.
6214         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6215         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
6216         * modules/strsignal: New file.
6217         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
6218         HAVE_DECL_STRSIGNAL.
6219
6220 2008-01-13  Bruno Haible  <bruno@clisp.org>
6221
6222         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
6223         locale encoding is not ASCII. Needed for OpenBSD 4.0.
6224         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
6225         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
6226
6227 2008-01-13  Bruno Haible  <bruno@clisp.org>
6228
6229         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
6230         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
6231         * lib/argp.h (__attribute__): Likewise.
6232         * lib/c-stack.c (__attribute__): Likewise.
6233         * lib/error.h (__attribute__): Likewise.
6234         * lib/fts.c (__attribute__): Likewise.
6235         * lib/openat.h (__attribute__): Likewise.
6236         * lib/stdio.in.h (__attribute__): Likewise.
6237         * lib/string.in.h (__attribute__): Likewise.
6238         * lib/utimens.c (__attribute__): Likewise.
6239         * lib/vasnprintf.h (__attribute__): Likewise.
6240         * lib/xalloc.h (__attribute__): Likewise.
6241         * lib/xprintf.h (__attribute__): Likewise.
6242         * lib/xstrtol.h (__attribute__): Likewise.
6243         * lib/xvasprintf.h (__attribute__): Likewise.
6244
6245 2008-01-12  Bruno Haible  <bruno@clisp.org>
6246
6247         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
6248         * doc/glibc-headers/a.out.texi: New file.
6249         * doc/glibc-headers/aliases.texi: New file.
6250         * doc/glibc-headers/alloca.texi: New file.
6251         * doc/glibc-headers/ar.texi: New file.
6252         * doc/glibc-headers/argp.texi: New file.
6253         * doc/glibc-headers/argz.texi: New file.
6254         * doc/glibc-headers/byteswap.texi: New file.
6255         * doc/glibc-headers/crypt.texi: New file.
6256         * doc/glibc-headers/endian.texi: New file.
6257         * doc/glibc-headers/envz.texi: New file.
6258         * doc/glibc-headers/err.texi: New file.
6259         * doc/glibc-headers/error.texi: New file.
6260         * doc/glibc-headers/execinfo.texi: New file.
6261         * doc/glibc-headers/fpu_control.texi: New file.
6262         * doc/glibc-headers/fstab.texi: New file.
6263         * doc/glibc-headers/fts.texi: New file.
6264         * doc/glibc-headers/getopt.texi: New file.
6265         * doc/glibc-headers/ieee754.texi: New file.
6266         * doc/glibc-headers/ifaddrs.texi: New file.
6267         * doc/glibc-headers/libintl.texi: New file.
6268         * doc/glibc-headers/mcheck.texi: New file.
6269         * doc/glibc-headers/mntent.texi: New file.
6270         * doc/glibc-headers/obstack.texi: New file.
6271         * doc/glibc-headers/paths.texi: New file.
6272         * doc/glibc-headers/printf.texi: New file.
6273         * doc/glibc-headers/pty.texi: New file.
6274         * doc/glibc-headers/resolv.texi: New file.
6275         * doc/glibc-headers/shadow.texi: New file.
6276         * doc/glibc-headers/sysexits.texi: New file.
6277         * doc/glibc-headers/ttyent.texi: New file.
6278
6279 2008-01-12  Jim Meyering  <meyering@redhat.com>
6280
6281         announce-gen: emit Gnulib's git-based version string.
6282         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
6283         New option --gnulib-version=V, where V is expected to be
6284         the output of running git describe in the gnulib directory.
6285         (get_tool_versions): Request feedback on xdelta.  I suspect it's
6286         not useful, and plan to stop publishing an xdelta file with each
6287         coreutils release.
6288
6289         * build-aux/announce-gen: Also check for lzma-compressed files.
6290
6291 2008-01-11  Bruno Haible  <bruno@clisp.org>
6292
6293         * tests/test-memmem.c (main): Increase maximum allowed time.
6294         * tests/test-strstr.c (main): Likewise.
6295
6296 2008-01-11  Bruno Haible  <bruno@clisp.org>
6297
6298         * doc/functions/memmem.texi: Add more precisions about platforms.
6299         * doc/functions/strstr.texi: Likewise.
6300
6301 2008-01-10  Eric Blake  <ebb9@byu.net>
6302
6303         * m4/strstr.m4: Delete cruft from copy-n-paste.
6304         Reported by Bruno Haible.
6305
6306 2008-01-10  Bruno Haible  <bruno@clisp.org>
6307
6308         Make c-strstr rely on strstr.
6309         * lib/c-strstr.c: Don't include str-kmp.h.
6310         (c_strstr): Define in terms of strstr.
6311         * modules/c-strstr (Files): Remove lib/str-kmp.h.
6312         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
6313
6314 2008-01-10  Bruno Haible  <bruno@clisp.org>
6315
6316         * doc/gnulib.texi (String Functions in C Locale): New section.
6317         * doc/c-ctype.texi: New file.
6318         * doc/c-strcase.texi: New file.
6319         * doc/c-strcaseeq.texi: New file.
6320         * doc/c-strcasestr.texi: New file.
6321         * doc/c-strstr.texi: New file.
6322         * doc/c-strtod.texi: New file.
6323         * doc/c-strtold.texi: New file.
6324
6325 2008-01-10  Eric Blake  <ebb9@byu.net>
6326
6327         * lib/relocatable.h: Fix a comment.
6328
6329 2008-01-10  Eric Blake  <ebb9@byu.net>
6330
6331         Share two-way algorithm.
6332         * lib/str-two-way.h: New file, merged from...
6333         * lib/memmem.c: ...here...
6334         * lib/strstr.c: ...and here.
6335         * modules/memmem (Files): Use it.
6336         * modules/strstr (Files): Likewise.
6337
6338         Avoid quadratic strstr implementations.
6339         * lib/strstr.c: New file.
6340         * m4/strstr.m4: Likewise.
6341         * modules/strstr: Likewise.
6342         * modules/strstr-tests: Likewise.
6343         * tests/test-strstr.c: Likewise.
6344         * lib/string.in.h (rpl_strstr): Declare.
6345         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
6346         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
6347         * modules/string (Makefile.am): Likewise.
6348         * MODULES.html.sh (string handling): Mention new module.
6349         * doc/functions/strstr.texi (strstr): Document the bug.
6350
6351 2008-01-10  Bruno Haible  <bruno@clisp.org>
6352
6353         * lib/relocatable.h (relocate): State whether result is freshly
6354         allocated or not.
6355         * lib/relocatable.c (relocate): Return a freshly allocated string
6356         instead of a pointer to a privately held string.
6357         Reported by Sylvain Beucler <beuc@gnu.org>.
6358
6359 2008-01-10  Colin Watson  <cjwatson@debian.org>
6360
6361         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
6362         s/S_ISNLK/S_ISLNK/.
6363
6364 2008-01-09  Bruno Haible  <bruno@clisp.org>
6365
6366         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
6367         and other files.
6368         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
6369         if it's only a guess.
6370         * modules/memmem: Simplify by depending on memmem-simple.
6371
6372 2008-01-09  Bruno Haible  <bruno@clisp.org>
6373
6374         Work around OpenBSD 4.0 tdelete() bug.
6375         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
6376         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
6377         macros and don't redefine the enum values.
6378         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
6379         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
6380         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
6381
6382 2008-01-09  Bruno Haible  <bruno@clisp.org>
6383
6384         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
6385         (main): Don't perform the tests if setlocale did not install a UTF-8
6386         locale. Needed on OpenBSD 4.0.
6387         * modules/wcwidth-tests (Depends-on): Add localcharset.
6388
6389 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6390
6391         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
6392         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
6393         * NEWS: announce this.
6394         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
6395
6396 2008-01-09  Simon Josefsson  <simon@josefsson.org>
6397         and Eric Blake  <ebb9@byu.net>
6398
6399         Add memmem-simple module.
6400         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
6401         (gl_FUNC_MEMMEM): Separate performance from presence checks.
6402         * modules/memmem-simple: New file.
6403         * modules/memmem (Description): Tweak.
6404         * MODULES.html.sh (string handling): Mention new module.
6405         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
6406         addressed by memmem-simple.
6407         * NEWS: Document the difference.
6408
6409 2008-01-09  Eric Blake  <ebb9@byu.net>
6410
6411         Give gcc some memmem optimization hints.
6412         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
6413         (strcasestr): Declare as pure.
6414         * modules/memmem (Maintainer): Claim my implementation.
6415
6416 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6417
6418         Support AIX 6.1 and higher.
6419         * build-aux/config.libpath: Likewise.
6420         * build-aux/config.rpath: Likewise.
6421
6422 2008-01-08  Jim Meyering  <meyering@redhat.com>
6423             Bruno Haible  <bruno@clisp.org>
6424
6425         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
6426         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
6427         Reported by Peter Fales in
6428         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
6429
6430 2008-01-08  Bruno Haible  <bruno@clisp.org>
6431
6432         * modules/unictype/category-of (Depends-on): Add
6433         unictype/category-none.
6434         * modules/unictype/category-and-tests (Depends-on): Add
6435         unictype/category-{L,N,Lu,Nd}.
6436         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
6437         * modules/unictype/category-or-tests (Depends-on): Add
6438         unictype/category-{L,N}.
6439         * modules/unictype/category-name-tests (Depends-on): Add
6440         unictype/category-{Z,Nl}.
6441         Reported by Simon Josefsson.
6442
6443 2008-01-08  Bruno Haible  <bruno@clisp.org>
6444
6445         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
6446         convention better.
6447         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
6448         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
6449         Reported by Peter Miller <millerp@canb.auug.org.au>.
6450
6451 2008-01-08  Eric Blake  <ebb9@byu.net>
6452
6453         Rewrite memmem to guarantee linear complexity without malloc.
6454         * lib/memmem.c (memmem): Use Two-Way rather than
6455         Knuth-Morris-Pratt, to allow O(1) space usage.
6456         (critical_factorization, two_way_short_needle)
6457         (two_way_long_needle): New functions.
6458         (knuth_morris_pratt): Delete.
6459         * modules/memmem (Depends-on): No longer need malloca or stdbool.
6460         Add stdint.
6461         * tests/test-memmem.c (main): Add tests for periodic needle and
6462         sublinear performance.
6463         * doc/functions/memmem.texi (memmem): Document other deficiencies
6464         in cygwin and older glibc.
6465
6466 2008-01-08  Bruno Haible  <bruno@clisp.org>
6467
6468         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
6469         augmentation.
6470
6471 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
6472
6473         Add a configure time option: --disable-acl.
6474         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
6475         AC_ARG_ENABLE(acl).
6476
6477 2008-01-06  Simon Josefsson  <simon@josefsson.org>
6478
6479         * tests/test-localename.c: Don't include obsolete "setenv.h".
6480
6481         * modules/localename-tests (Depends-on): Need unsetenv.
6482
6483 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6484
6485         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
6486
6487 2008-01-06  Colin Watson  <cjwatson@debian.org>
6488
6489         * users.txt: Add man-db.
6490
6491 2008-01-07  Bruno Haible  <bruno@clisp.org>
6492
6493         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
6494         previous section name.
6495
6496 2008-01-07  Bruno Haible  <bruno@clisp.org>
6497
6498         * lib/progname.c (set_program_name): Don't strip off a leading
6499         "lt-" prefix outside a .libs directory.
6500         Suggested by Paul Eggert.
6501
6502 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
6503             Bruno Haible  <bruno@clisp.org>
6504
6505         Improve memory cleanup in 'relocatable' module.
6506         * lib/relocatable.h (compute_curr_prefix): Change return type to
6507         'char *'.
6508         * lib/relocatable.c (compute_curr_prefix): Change return type to
6509         'char *'. Free curr_installdir after use.
6510         (relocate): Free curr_prefix_better after use.
6511         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
6512
6513 2008-01-01  Bruno Haible  <bruno@clisp.org>
6514
6515         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
6516         failure on older glibc systems.
6517         Reported by Peter Fales <psfales@alcatel-lucent.com>.
6518
6519 2008-01-05  Eric Blake  <ebb9@byu.net>
6520
6521         Avoid quadratic system memmem.
6522         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
6523         Reported by Ralf Wildenhues.
6524
6525         Fix memmem test for mingw.
6526         * modules/memmem-tests (configure.ac): Check for alarm.
6527         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
6528         it.
6529         * doc/functions/memmem.texi: New file.
6530         * doc/gnulib.texi (Function Substitutes): Add memmem.
6531         Reported by Bruno Haible.
6532
6533 2008-01-04  Bruno Haible  <bruno@clisp.org>
6534
6535         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
6536         Require gl_HEADER_STRINGS_H_DEFAULTS, not
6537         gl_HEADER_STRING_H_DEFAULTS.
6538
6539 2008-01-04  Eric Blake  <ebb9@byu.net>
6540
6541         Shorten duration of memmem test.
6542         * tests/test-memmem.c (main): Use alarm to declare failure if test
6543         is taking too long.
6544         Reported by Ralf Wildenhues.
6545
6546 2007-12-21  Simon Josefsson  <simon@josefsson.org>
6547
6548         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
6549         string, needed by strerror.
6550
6551 2008-01-03  Colin Watson  <cjwatson@debian.org>
6552             Bruno Haible  <bruno@clisp.org>
6553
6554         * doc/gnulib-tool.texi (Localization): New section.
6555
6556 2008-01-02  Bruno Haible  <bruno@clisp.org>
6557
6558         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
6559         variables to 'unsigned char *' type.
6560         Reported by Paul Eggert.
6561
6562 2008-01-02  Jim Meyering  <jim@meyering.net>
6563
6564         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
6565
6566 2007-12-31  Jim Meyering  <jim@meyering.net>
6567
6568         Avoid use of private FTS type name.
6569         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
6570
6571 2007-12-30  Karl Berry  <karl@gnu.org>
6572
6573         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
6574         work around defect in Texinfo and/or the standalone Info browser.
6575
6576 2007-12-30  Bruno Haible  <bruno@clisp.org>
6577
6578         Unify 5 copies of the KMP code.
6579         * lib/str-kmp.h: New file.
6580         * lib/c-strcasestr.c: Include str-kmp.h.
6581         (knuth_morris_pratt): Remove function.
6582         (c_strcasestr): Update.
6583         * lib/c-strstr.c: Include str-kmp.h.
6584         (knuth_morris_pratt): Remove function.
6585         (c_strcasestr): Update.
6586         * lib/mbscasestr.c: Include str-kmp.h.
6587         (knuth_morris_pratt_unibyte): Remove function.
6588         * lib/mbsstr.c: Include str-kmp.h.
6589         (knuth_morris_pratt_unibyte): Remove function.
6590         * lib/strcasestr.c: Include str-kmp.h.
6591         (knuth_morris_pratt): Remove function.
6592         (strcasestr): Update.
6593         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
6594         * modules/c-strstr (Files): Likewise.
6595         * modules/mbscasestr (Files): Likewise.
6596         * modules/mbsstr (Files): Likewise.
6597         * modules/strcasestr (Files): Likewise.
6598         Suggested by Paul Eggert.
6599
6600 2007-12-30  Bruno Haible  <bruno@clisp.org>
6601
6602         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
6603         defined.
6604
6605 2007-12-30  Bruno Haible  <bruno@clisp.org>
6606
6607         * lib/xmalloca.h: Include xalloc.h.
6608         (xnmalloca): New macro.
6609
6610 2007-12-30  Bruno Haible  <bruno@clisp.org>
6611
6612         * lib/malloca.h (nmalloca): New macro.
6613         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
6614         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
6615         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
6616         knuth_morris_pratt_multibyte): Likewise.
6617         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
6618         knuth_morris_pratt_multibyte): Likewise.
6619         * lib/memmem.c (knuth_morris_pratt): Likewise.
6620         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
6621
6622 2007-12-25  Bruno Haible  <bruno@clisp.org>
6623
6624         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
6625         * lib/glob.c: Don't include openat.h.
6626         (link_exists2_p): Add back the code that deals with the
6627         !GLOB_ALTDIRFUNC case.
6628         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
6629         let it do the filename concatenation.
6630         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
6631         * modules/glob (Depends-on): Remove openat.
6632
6633 2007-12-31  Bruno Haible  <bruno@clisp.org>
6634
6635         * modules/dirfd (License): Change to LGPLv2+.
6636         Approved by Jim Meyering.
6637
6638 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6639
6640         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
6641         when multiplying M by sizeof (size_t).
6642
6643 2007-12-10  Martin Lambers  <marlam@marlam.de>
6644
6645         Override getpagesize on mingw.
6646         * lib/getpagesize.c: New file.
6647         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
6648         * modules/getpagesize (Files): Add lib/getpagesize.c.
6649         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
6650         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6651         REPLACE_GETPAGESIZE.
6652         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
6653
6654 2007-12-25  Bruno Haible  <bruno@clisp.org>
6655
6656         * modules/localcharset (Notice): New field.
6657         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
6658         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
6659
6660 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6661             Bruno Haible  <bruno@clisp.org>
6662
6663         Avoid using the syntax symbol() in formatted documentation.
6664         * MODULES.html.sh (func_module): When replacing symbol() with a
6665         hyperlink, remove the parentheses. Show an error if some remain.
6666         Recognize and render the '...' syntax.
6667         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
6668         Rework. Add paragraph about GCC's inlining.
6669         * doc/alloca.texi: Likewise.
6670         * doc/error.texi: Remove parentheses from symbol reference.
6671         * doc/gnulib-intro.texi: Likewise.
6672         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
6673         * modules/fnmatch (Description): Reword to say "the ... function".
6674         * modules/full-read (Description): Likewise.
6675         * modules/full-write (Description): Likewise.
6676         * modules/safe-read (Description): Likewise.
6677         * modules/safe-write (Description): Likewise.
6678         * modules/strchrnul (Description): Likewise.
6679         * modules/trim (Description): Likewise.
6680         * modules/error (Description): Remove parentheses from symbol
6681         references.
6682         * modules/verror (Description): Likewise.
6683         Reported by Karl Berry.
6684
6685 2007-12-25  Bruno Haible  <bruno@clisp.org>
6686
6687         Fixup after 2007-10-16 commit.
6688         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
6689
6690 2007-12-24  Bruno Haible  <bruno@clisp.org>
6691
6692         Make --enable-relocatable work with DESTDIR.
6693         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
6694         to compute installdir from destprog.
6695         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
6696         also set the RELOC_DESTDIR variable.
6697         Reported by Левашев Иван <octagram@bluebottle.com>.
6698
6699 2007-12-24  Bruno Haible  <bruno@clisp.org>
6700
6701         Fix link error due to xalloc_die().
6702         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
6703         of xreadlink.
6704         * lib/relocwrapper.c: Update comments.
6705         * build-aux/install-reloc: Remove xreadlink.c from file list.
6706         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
6707         xreadlink.c.
6708         Reported by Левашев Иван <octagram@bluebottle.com>.
6709
6710 2007-12-24  Bruno Haible  <bruno@clisp.org>
6711
6712         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
6713         * lib/setenv.h: Remove file.
6714         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
6715         lib/setenv.h.
6716         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
6717         (Depends-on): Add stdlib.
6718         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
6719         gl_FUNC_UNSETENV.
6720         (Include): Replace setenv.h with <stdlib.h>.
6721         * modules/unsetenv: New file.
6722         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
6723         * lib/unsetenv.c: Include <stdlib.h> first.
6724         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
6725         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
6726         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
6727         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
6728         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
6729         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6730         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
6731         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6732         * doc/functions/unsetenv.texi: Update.
6733         * modules/xsetenv (Depends-on): Add unsetenv.
6734         * modules/getdate (Depends-on): Likewise.
6735         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
6736         * lib/xsetenv.c: Don't include setenv.h.
6737         * lib/getdate.y: Likewise.
6738         * lib/relocwrapper.c: Likewise.
6739         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
6740         (Depends-on): Add stdlib.
6741         * NEWS: Mention the changes.
6742         Reported by Левашев Иван <octagram@bluebottle.com>.
6743
6744 2007-12-23  Bruno Haible  <bruno@clisp.org>
6745
6746         * lib/memmem.c (memmem): Use lowercase variable names. Tab
6747         indentation.
6748
6749 2007-12-23  Bruno Haible  <bruno@clisp.org>
6750
6751         * lib/c-strcasestr.c: Add more comments.
6752         * lib/c-strstr.c: Likewise.
6753         * lib/mbscasestr.c: Likewise.
6754         * lib/mbsstr.c: Likewise.
6755         * lib/strcasestr.c: Likewise.
6756         * lib/memmem.c: Likewise.
6757
6758 2007-12-23  Bruno Haible  <bruno@clisp.org>
6759
6760         * tests/test-memmem.c: Include <string.h> first.
6761
6762 2007-12-22  Bruno Haible  <bruno@clisp.org>
6763
6764         * gnulib-tool (func_create_testdir): Change $auxdir while generating
6765         the contents of $testsbase.
6766         Reported by Ralf Wildenhues.
6767
6768 2007-12-22  Bruno Haible  <bruno@clisp.org>
6769
6770         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
6771         two variables local_ldadd_before, local_ldadd_last.
6772
6773 2007-12-20  Eric Blake  <ebb9@byu.net>
6774
6775         Work around circular library issue when cross-compiling.
6776         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
6777         that progname.o does not need to pull in rpl_memcmp.
6778
6779 2007-12-19  Eric Blake  <ebb9@byu.net>
6780
6781         Fix memmem to avoid O(n^2) worst-case complexity.
6782         * lib/memmem.c (knuth_morris_pratt): New function.
6783         (memmem): Use it if first few naive iterations fail.
6784         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
6785         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
6786         * modules/memchr (License): Likewise.
6787         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
6788         malloca.
6789         * tests/test-memmem.c: Rewrite, borrowing ideas from
6790         test-mbsstr1.c; the old version wouldn't even compile!
6791         * modules/memmem-tests: New file.
6792         * lib/string.in.h (rpl_memmem): Add declaration.
6793         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
6794         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
6795         REPLACE_MEMMEM.
6796
6797 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6798
6799         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
6800         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
6801         before any system include files, and undef after them all.  This
6802         should fix a problem on VMS reported by John E. Malmberg in
6803         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
6804
6805 2007-12-17  Eric Blake  <ebb9@byu.net>
6806
6807         Revert addition of verify, for BSD/OS.
6808         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
6809         can't handle large files, for the sake of obsolete platforms.
6810         * modules/fseeko (Depends-on): Remove verify.
6811         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
6812         * doc/functions/ftello.texi (ftello): Likewise.
6813         * doc/functions/fgetpos.texi (fgetpos): Likewise.
6814         Reported by Larry Jones.
6815
6816 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
6817
6818         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
6819         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
6820
6821 2007-12-17  Jim Meyering  <meyering@redhat.com>
6822
6823         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
6824         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
6825         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
6826         * modules/getcwd (Depends-on): Add openat.
6827         Reported by Petr Salinger.
6828
6829 2007-12-17  Bruno Haible  <bruno@clisp.org>
6830
6831         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
6832         avoid a segmentation fault of the configure test on x86_64 systems.
6833
6834 2007-12-15  Jim Meyering  <meyering@redhat.com>
6835
6836         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
6837
6838 2007-12-13  Eric Blake  <ebb9@byu.net>
6839
6840         Another fseek test.
6841         * tests/test-fseek.c (main): Also test ungetc handling.
6842         * tests/test-fseeko.c (main): Likewise.
6843         * modules/fseeko (Depends-on): Add verify.
6844         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
6845         large.
6846         Reported by Larry Jones.
6847
6848         Fix fseeko on mingw.
6849         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
6850         seek.
6851
6852         Beef up fseek tests.
6853         * tests/test-fseek.c (main): Also test eof handling.
6854         * tests/test-fseeko.c (main): Likewise.
6855         Reported by Larry Jones.
6856
6857 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
6858
6859         Fix fseeko on BSD-based platforms.
6860         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
6861         successful seek.
6862
6863 2007-12-12  Eric Blake  <ebb9@byu.net>
6864
6865         Allow circular dependency of separate libtests.a
6866         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
6867         when use_libtests.
6868
6869 2007-12-11  Eric Blake  <ebb9@byu.net>
6870
6871         Fix bug with -0.0L in previous patch.
6872         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
6873         * tests/test-isnan.c (main): Also test on zeroes.
6874         * tests/test-isnanf.c (main): Likewise.
6875         * tests/test-isnanl.h (main): Likewise.
6876
6877         Detect pseudo-denormals on x86 even when cross-compiling.
6878         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
6879         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
6880         invalid bit patterns that happen to satisfy ==.
6881
6882         Avoid link failures with separate libtests.a.
6883         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
6884         last, to satisfy circular dependencies.
6885
6886 2007-12-11  Eric Blake  <ebb9@byu.net>
6887         and Bruno Haible  <bruno@clisp.org>
6888
6889         Fix OpenBSD 4.0 <float.h> handling of long double.
6890         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
6891         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
6892         * doc/headers/float.texi (float.h): Document OpenBSD bug.
6893
6894 2007-12-11  Jim Meyering  <meyering@redhat.com>
6895
6896         * users.txt: Add libvirt.
6897
6898         Support versions of autoconf prior to 2.59c.
6899         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
6900         if it is not already defined.
6901
6902 2007-12-09  Bruno Haible  <bruno@clisp.org>
6903
6904         Let 'gnulib-tool --import' collect sources needed for the tests in
6905         tests/ rather than in lib/.
6906         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
6907         argument. If true, add rules to generate libtests.a, and put libtests.a
6908         into $(LDADD). Consider source files in subdirectories and set
6909         uses_subdirs.
6910         (func_emit_initmacro_start, func_emit_initmacro_end,
6911         func_emit_initmacro_done): Pass all arguments explicitly.
6912         (func_import): Determine two module lists main_modules,
6913         testsrelated_modules. Determine use_libtests. Determine two variables
6914         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
6915         instead of just sed_transform_lib_file. Determine two variables
6916         main_files and testsrelated_files. Compute 'files' as the union of
6917         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
6918         func_add_or_update. In the generated gnulib-comp.m4, collect the
6919         object files for tests/ in different variables than those for lib/.
6920         Substitute LIBTESTS_LIBDEPS.
6921         (func_create_testdir): Combine the uses_subdirs results from
6922         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
6923
6924 2007-12-09  Bruno Haible  <bruno@clisp.org>
6925
6926         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
6927         the build-aux directory.
6928
6929 2007-12-09  Bruno Haible  <bruno@clisp.org>
6930
6931         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
6932         introduced on 2006-09-09.
6933
6934 2007-12-07  Jim Meyering  <meyering@redhat.com>
6935
6936         Let these macros work also with autoconf-2.59.
6937         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
6938         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
6939         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
6940
6941 2007-12-06  Jim Meyering  <meyering@redhat.com>
6942
6943         Avoid a configure-time syntax error in gl_FUNC_ACL.
6944         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
6945         function in each branch, before testing the cache variable.
6946
6947 2007-12-04  Eric Blake  <ebb9@byu.net>
6948
6949         Make scripts executable.
6950         * build-aux/config.guess: Add execute permissions.
6951         * build-aux/config.sub: Likewise.
6952         * build-aux/gendocs.sh: Likewise.
6953
6954         Fix frexp on mingw.
6955         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
6956         cross-compiling.
6957         * doc/functions/frexp.texi (frexp): Document the bug.
6958
6959         Make cygwin fseeko check more reliable.
6960         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
6961         version numbers, rather than unrelated feature check.
6962         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
6963         * doc/functions/ftello.texi (ftello): Likewise.
6964         Reported by Bruno Haible.
6965
6966         * m4/strerror.m4: Bump version number.
6967
6968 2007-12-03  Bruno Haible  <bruno@clisp.org>
6969
6970         * doc/functions/mprotect.texi: Mention the mingw problem.
6971
6972 2007-12-03  Eric Blake  <ebb9@byu.net>
6973
6974         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
6975         REPLACE_STRERROR is initialized before this macro.
6976
6977 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
6978
6979         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
6980         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
6981         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
6982         put -lsec in even for programs other than 'ls'.  This fixes a problem
6983         for gettext reported by Bruno Haible in
6984         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
6985         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
6986         Add support for Solaris 10.  This isn't efficient, but should get the
6987         job done for now.
6988
6989 2007-12-03  James Youngman  <jay@gnu.org>
6990
6991         * doc/regexprops-generic.texi: change "an close-group" to "a
6992         close-group" and "illegal" to "not allowed".
6993
6994 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6995
6996         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
6997         pr_byname.h. Needed for the rare case when the maintainer has done
6998         "make maintainer-clean" in the source directory and then attempts a
6999         build outside the source directory.
7000         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
7001         scripts_byname.h.
7002
7003 2007-12-02  Martin Lambers <marlam@marlam.de>
7004             Bruno Haible  <bruno@clisp.org>
7005
7006         * lib/getpagesize.h: Remove file.
7007         * lib/unistd.in.h: Include declaration of getpagesize here.
7008         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
7009         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
7010         HAVE_SYS_PARAM_H.
7011         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
7012         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
7013         * modules/getpagesize (Files): Remove lib/getpagesize.h.
7014         (Depends-on): Add unistd.
7015         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7016         (Include): Use <unistd.h> instead of getpagesize.h.
7017         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
7018         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
7019         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
7020         gl_GETPAGESIZE invocation, already handled by module dependency.
7021         * lib/pagealign_alloc.c: Don't include getpagesize.h.
7022
7023 2007-12-02  Bruno Haible  <bruno@clisp.org>
7024
7025         * modules/strings-tests: New file.
7026         * tests/test-strings.c: New file.
7027
7028         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
7029         * lib/strings.in.h: New file.
7030         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
7031         * m4/strings_h.m4: New file.
7032         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
7033         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
7034         * modules/strings: New file.
7035         * modules/string (Makefile.am): Update.
7036         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
7037         Reported by Karl Berry.
7038
7039 2007-12-01  Eric Blake  <ebb9@byu.net>
7040
7041         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
7042         accomodate fix in cygwin 1.5.25.
7043
7044 2007-12-01  Jim Meyering  <meyering@redhat.com>
7045
7046         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
7047         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
7048         that would inhibit utf8-optimization of a regexp containing line-
7049         or buffer-anchors, e.g., `^', `$'.
7050
7051 2007-11-30  Bruno Haible  <bruno@clisp.org>
7052
7053         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
7054         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
7055         glthread_recursive_lock_init.
7056         * lib/lock.c (glthread_recursive_lock_init)
7057         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
7058         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
7059
7060 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
7061
7062         New function qset_acl, like set_acl but with syscall semantics.
7063         * lib/acl.h (qset_acl): New decl.
7064         * lib/acl.c (qset_acl): New function.
7065         (set_acl): Use new function.  Use more-consistent diagnostics.
7066
7067 2007-11-28  Jim Meyering  <meyering@redhat.com>
7068
7069         * modules/physmem (License): Change from GPL to LGPLv2+.
7070
7071 2007-11-26  Bruno Haible  <bruno@clisp.org>
7072
7073         * lib/vasnprintf.c (decode_long_double): Don't abort if the
7074         'long double' type has excess precision.
7075         Reported by Jim Meyering in
7076         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
7077
7078 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7079
7080         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
7081         Sync from <http://gnu.org/licenses>.
7082         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
7083         with license text from same location.
7084         * doc/maintain.texi, doc/standards.texi:  Sync from
7085         <http://savannah.gnu.org/projects/gnustandards>.
7086
7087 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
7088         and Jim Meyering  <meyering@redhat.com>
7089
7090         Adjust getdate' grammar to accept a slightly more regular language.
7091         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
7092         Before, the former was rejected.
7093         * lib/getdate.y (digits_to_date_time): New function, factored
7094         out of ...
7095         (number): ...here.  Just call digits_to_date_time.
7096         (hybrid): New non-terminal to handle an <unsigned number,
7097         signed relative offset> sequence consistently.
7098
7099 2007-11-18  Jim Meyering  <meyering@redhat.com>
7100
7101         Pull my changes from coreutils:
7102         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
7103         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
7104         use of $gnulib_tool_option_extras, so that it's separated from the
7105         preceding argument.
7106
7107         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
7108         * build-aux/bootstrap (cp_mark_as_generated): Create any required
7109         parent destination directories before copying a file into place.
7110
7111 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7112
7113         bootstrap: work also with 4-argument variant of AC_INIT
7114         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
7115
7116 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
7117
7118         Port test-getaddrinfo to Solaris.
7119         Problem reported by Bruno Haible in
7120         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
7121         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
7122         explanation of setting 'hints'.
7123         Don't reject an implementation merely because it returns EAI_SERVICE.
7124         (EAI_SERVICE): Define to 0 if not defined.
7125
7126 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
7127
7128         The license of gnu-make and posix-shell is now "GPLed build tool".
7129         * modules/gnu-make (License): Likewise.
7130         * modules/posix-shell (License): Likewise.
7131
7132         New module posix-shell, for determining a POSIX shell
7133         or perhaps something that is close enough to a POSIX shell.
7134         * m4/posix-shell.m4: New file.
7135         * modules/posix-shell: New file.
7136
7137         * MODULES.html.sh: Mention new module.
7138
7139         New module gnu-make, for determining whether we're using GNU Make.
7140         * m4/gnu-make.m4: New file.
7141         * modules/gnu-make: New file.
7142         * MODULES.html.sh: Mention new module.
7143
7144 2007-11-14  Jim Meyering  <meyering@redhat.com>
7145
7146         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
7147         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
7148         use this macro to create a function _definition_.
7149         Remove useless "#undef ARGMATCH_DIE".
7150
7151 2007-11-14  Bruno Haible  <bruno@clisp.org>
7152
7153         * lib/config.charset: Update for OpenBSD 4.1.
7154         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
7155
7156 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
7157
7158         Document 64-bit #if problems in stdint.texi.
7159         * doc/headers/stdint.texi (stdint.h): Mention problems with
7160         64-bit-#if, and how to work around them.
7161
7162         Don't insist on 'long long int' support in the preprocessor.  It
7163         breaks too many things.  For example, PRIdMAX still uses a 'long
7164         long int' format with the latest Sun compiler, even though
7165         HAVE_LONG_LONG_INT isn't defined due to that compiler's
7166         preprocessor problem.  This causes the latest coreutils to dump
7167         core on Solaris 10 sparc with the Sun C compiler.
7168         Instead, fix the 2007-10-16 problem in a different way, by evaluating
7169         the troublesome expressions at configure-time, not at #if-time.
7170         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
7171         preprocessor.
7172         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
7173         compile-time C checks, done at 'configure'-time.
7174         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
7175         * modules/inttypes (Makefile): Substitute the new symbols that
7176         gl_INTTYPES_H now generates.
7177         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
7178
7179 2007-11-12  Bruno Haible  <bruno@clisp.org>
7180
7181         Tests for Unicode character classification functions.
7182
7183         * modules/unictype/bidicategory-byname-tests: New file.
7184         * modules/unictype/bidicategory-name-tests: New file.
7185         * modules/unictype/bidicategory-of-tests: New file.
7186         * modules/unictype/bidicategory-test-tests: New file.
7187         * modules/unictype/block-list-tests: New file.
7188         * modules/unictype/block-of-tests: New file.
7189         * modules/unictype/block-test-tests: New file.
7190         * modules/unictype/category-C-tests: New file.
7191         * modules/unictype/category-Cc-tests: New file.
7192         * modules/unictype/category-Cf-tests: New file.
7193         * modules/unictype/category-Cn-tests: New file.
7194         * modules/unictype/category-Co-tests: New file.
7195         * modules/unictype/category-Cs-tests: New file.
7196         * modules/unictype/category-L-tests: New file.
7197         * modules/unictype/category-Ll-tests: New file.
7198         * modules/unictype/category-Lm-tests: New file.
7199         * modules/unictype/category-Lo-tests: New file.
7200         * modules/unictype/category-Lt-tests: New file.
7201         * modules/unictype/category-Lu-tests: New file.
7202         * modules/unictype/category-M-tests: New file.
7203         * modules/unictype/category-Mc-tests: New file.
7204         * modules/unictype/category-Me-tests: New file.
7205         * modules/unictype/category-Mn-tests: New file.
7206         * modules/unictype/category-N-tests: New file.
7207         * modules/unictype/category-Nd-tests: New file.
7208         * modules/unictype/category-Nl-tests: New file.
7209         * modules/unictype/category-No-tests: New file.
7210         * modules/unictype/category-P-tests: New file.
7211         * modules/unictype/category-Pc-tests: New file.
7212         * modules/unictype/category-Pd-tests: New file.
7213         * modules/unictype/category-Pe-tests: New file.
7214         * modules/unictype/category-Pf-tests: New file.
7215         * modules/unictype/category-Pi-tests: New file.
7216         * modules/unictype/category-Po-tests: New file.
7217         * modules/unictype/category-Ps-tests: New file.
7218         * modules/unictype/category-S-tests: New file.
7219         * modules/unictype/category-Sc-tests: New file.
7220         * modules/unictype/category-Sk-tests: New file.
7221         * modules/unictype/category-Sm-tests: New file.
7222         * modules/unictype/category-So-tests: New file.
7223         * modules/unictype/category-Z-tests: New file.
7224         * modules/unictype/category-Zl-tests: New file.
7225         * modules/unictype/category-Zp-tests: New file.
7226         * modules/unictype/category-Zs-tests: New file.
7227         * modules/unictype/category-and-not-tests: New file.
7228         * modules/unictype/category-and-tests: New file.
7229         * modules/unictype/category-byname-tests: New file.
7230         * modules/unictype/category-name-tests: New file.
7231         * modules/unictype/category-none-tests: New file.
7232         * modules/unictype/category-of-tests: New file.
7233         * modules/unictype/category-or-tests: New file.
7234         * modules/unictype/category-test-withtable-tests: New file.
7235         * modules/unictype/combining-class-tests: New file.
7236         * modules/unictype/ctype-alnum-tests: New file.
7237         * modules/unictype/ctype-alpha-tests: New file.
7238         * modules/unictype/ctype-blank-tests: New file.
7239         * modules/unictype/ctype-cntrl-tests: New file.
7240         * modules/unictype/ctype-digit-tests: New file.
7241         * modules/unictype/ctype-graph-tests: New file.
7242         * modules/unictype/ctype-lower-tests: New file.
7243         * modules/unictype/ctype-print-tests: New file.
7244         * modules/unictype/ctype-punct-tests: New file.
7245         * modules/unictype/ctype-space-tests: New file.
7246         * modules/unictype/ctype-upper-tests: New file.
7247         * modules/unictype/ctype-xdigit-tests: New file.
7248         * modules/unictype/decimal-digit-tests: New file.
7249         * modules/unictype/digit-tests: New file.
7250         * modules/unictype/mirror-tests: New file.
7251         * modules/unictype/numeric-tests: New file.
7252         * modules/unictype/property-alphabetic-tests: New file.
7253         * modules/unictype/property-ascii-hex-digit-tests: New file.
7254         * modules/unictype/property-bidi-arabic-digit-tests: New file.
7255         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
7256         * modules/unictype/property-bidi-block-separator-tests: New file.
7257         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
7258         * modules/unictype/property-bidi-common-separator-tests: New file.
7259         * modules/unictype/property-bidi-control-tests: New file.
7260         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
7261         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
7262         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
7263         * modules/unictype/property-bidi-european-digit-tests: New file.
7264         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
7265         * modules/unictype/property-bidi-left-to-right-tests: New file.
7266         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
7267         * modules/unictype/property-bidi-other-neutral-tests: New file.
7268         * modules/unictype/property-bidi-pdf-tests: New file.
7269         * modules/unictype/property-bidi-segment-separator-tests: New file.
7270         * modules/unictype/property-bidi-whitespace-tests: New file.
7271         * modules/unictype/property-byname-tests: New file.
7272         * modules/unictype/property-combining-tests: New file.
7273         * modules/unictype/property-composite-tests: New file.
7274         * modules/unictype/property-currency-symbol-tests: New file.
7275         * modules/unictype/property-dash-tests: New file.
7276         * modules/unictype/property-decimal-digit-tests: New file.
7277         * modules/unictype/property-default-ignorable-code-point-tests: New file.
7278         * modules/unictype/property-deprecated-tests: New file.
7279         * modules/unictype/property-diacritic-tests: New file.
7280         * modules/unictype/property-extender-tests: New file.
7281         * modules/unictype/property-format-control-tests: New file.
7282         * modules/unictype/property-grapheme-base-tests: New file.
7283         * modules/unictype/property-grapheme-extend-tests: New file.
7284         * modules/unictype/property-grapheme-link-tests: New file.
7285         * modules/unictype/property-hex-digit-tests: New file.
7286         * modules/unictype/property-hyphen-tests: New file.
7287         * modules/unictype/property-id-continue-tests: New file.
7288         * modules/unictype/property-id-start-tests: New file.
7289         * modules/unictype/property-ideographic-tests: New file.
7290         * modules/unictype/property-ids-binary-operator-tests: New file.
7291         * modules/unictype/property-ids-trinary-operator-tests: New file.
7292         * modules/unictype/property-ignorable-control-tests: New file.
7293         * modules/unictype/property-iso-control-tests: New file.
7294         * modules/unictype/property-join-control-tests: New file.
7295         * modules/unictype/property-left-of-pair-tests: New file.
7296         * modules/unictype/property-line-separator-tests: New file.
7297         * modules/unictype/property-logical-order-exception-tests: New file.
7298         * modules/unictype/property-lowercase-tests: New file.
7299         * modules/unictype/property-math-tests: New file.
7300         * modules/unictype/property-non-break-tests: New file.
7301         * modules/unictype/property-not-a-character-tests: New file.
7302         * modules/unictype/property-numeric-tests: New file.
7303         * modules/unictype/property-other-alphabetic-tests: New file.
7304         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
7305         * modules/unictype/property-other-grapheme-extend-tests: New file.
7306         * modules/unictype/property-other-id-continue-tests: New file.
7307         * modules/unictype/property-other-id-start-tests: New file.
7308         * modules/unictype/property-other-lowercase-tests: New file.
7309         * modules/unictype/property-other-math-tests: New file.
7310         * modules/unictype/property-other-uppercase-tests: New file.
7311         * modules/unictype/property-paired-punctuation-tests: New file.
7312         * modules/unictype/property-paragraph-separator-tests: New file.
7313         * modules/unictype/property-pattern-syntax-tests: New file.
7314         * modules/unictype/property-pattern-white-space-tests: New file.
7315         * modules/unictype/property-private-use-tests: New file.
7316         * modules/unictype/property-punctuation-tests: New file.
7317         * modules/unictype/property-quotation-mark-tests: New file.
7318         * modules/unictype/property-radical-tests: New file.
7319         * modules/unictype/property-sentence-terminal-tests: New file.
7320         * modules/unictype/property-soft-dotted-tests: New file.
7321         * modules/unictype/property-space-tests: New file.
7322         * modules/unictype/property-terminal-punctuation-tests: New file.
7323         * modules/unictype/property-test-tests: New file.
7324         * modules/unictype/property-titlecase-tests: New file.
7325         * modules/unictype/property-unassigned-code-value-tests: New file.
7326         * modules/unictype/property-unified-ideograph-tests: New file.
7327         * modules/unictype/property-uppercase-tests: New file.
7328         * modules/unictype/property-variation-selector-tests: New file.
7329         * modules/unictype/property-white-space-tests: New file.
7330         * modules/unictype/property-xid-continue-tests: New file.
7331         * modules/unictype/property-xid-start-tests: New file.
7332         * modules/unictype/property-zero-width-tests: New file.
7333         * modules/unictype/scripts-tests: New file.
7334         * modules/unictype/syntax-c-ident-tests: New file.
7335         * modules/unictype/syntax-c-whitespace-tests: New file.
7336         * modules/unictype/syntax-java-ident-tests: New file.
7337         * modules/unictype/syntax-java-whitespace-tests: New file.
7338         * tests/unictype/test-bidi_byname.c: New file.
7339         * tests/unictype/test-bidi_name.c: New file.
7340         * tests/unictype/test-bidi_of.c: New file.
7341         * tests/unictype/test-bidi_test.c: New file.
7342         * tests/unictype/test-block_list.c: New file.
7343         * tests/unictype/test-block_of.c: New file.
7344         * tests/unictype/test-block_test.c: New file.
7345         * tests/unictype/test-categ_and.c: New file.
7346         * tests/unictype/test-categ_and_not.c: New file.
7347         * tests/unictype/test-categ_byname.c: New file.
7348         * tests/unictype/test-categ_name.c: New file.
7349         * tests/unictype/test-categ_none.c: New file.
7350         * tests/unictype/test-categ_of.c: New file.
7351         * tests/unictype/test-categ_or.c: New file.
7352         * tests/unictype/test-categ_test_withtable.c: New file.
7353         * tests/unictype/test-combining.c: New file.
7354         * tests/unictype/test-decdigit.c: New file.
7355         * tests/unictype/test-digit.c: New file.
7356         * tests/unictype/test-mirror.c: New file.
7357         * tests/unictype/test-numeric.c: New file.
7358         * tests/unictype/test-pr_byname.c: New file.
7359         * tests/unictype/test-pr_test.c: New file.
7360         * tests/unictype/test-predicate-part1.h: New file.
7361         * tests/unictype/test-predicate-part2.h: New file.
7362         * tests/unictype/test-scripts.c: New file.
7363         * tests/unictype/test-sy_c_ident.c: New file.
7364         * tests/unictype/test-sy_java_ident.c: New file.
7365
7366         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
7367         for Unicode 5.0.0.
7368         * tests/unictype/test-categ_Cc.c: Likewise.
7369         * tests/unictype/test-categ_Cf.c: Likewise.
7370         * tests/unictype/test-categ_Cn.c: Likewise.
7371         * tests/unictype/test-categ_Co.c: Likewise.
7372         * tests/unictype/test-categ_Cs.c: Likewise.
7373         * tests/unictype/test-categ_L.c: Likewise.
7374         * tests/unictype/test-categ_Ll.c: Likewise.
7375         * tests/unictype/test-categ_Lm.c: Likewise.
7376         * tests/unictype/test-categ_Lo.c: Likewise.
7377         * tests/unictype/test-categ_Lt.c: Likewise.
7378         * tests/unictype/test-categ_Lu.c: Likewise.
7379         * tests/unictype/test-categ_M.c: Likewise.
7380         * tests/unictype/test-categ_Mc.c: Likewise.
7381         * tests/unictype/test-categ_Me.c: Likewise.
7382         * tests/unictype/test-categ_Mn.c: Likewise.
7383         * tests/unictype/test-categ_N.c: Likewise.
7384         * tests/unictype/test-categ_Nd.c: Likewise.
7385         * tests/unictype/test-categ_Nl.c: Likewise.
7386         * tests/unictype/test-categ_No.c: Likewise.
7387         * tests/unictype/test-categ_P.c: Likewise.
7388         * tests/unictype/test-categ_Pc.c: Likewise.
7389         * tests/unictype/test-categ_Pd.c: Likewise.
7390         * tests/unictype/test-categ_Pe.c: Likewise.
7391         * tests/unictype/test-categ_Pf.c: Likewise.
7392         * tests/unictype/test-categ_Pi.c: Likewise.
7393         * tests/unictype/test-categ_Po.c: Likewise.
7394         * tests/unictype/test-categ_Ps.c: Likewise.
7395         * tests/unictype/test-categ_S.c: Likewise.
7396         * tests/unictype/test-categ_Sc.c: Likewise.
7397         * tests/unictype/test-categ_Sk.c: Likewise.
7398         * tests/unictype/test-categ_Sm.c: Likewise.
7399         * tests/unictype/test-categ_So.c: Likewise.
7400         * tests/unictype/test-categ_Z.c: Likewise.
7401         * tests/unictype/test-categ_Zl.c: Likewise.
7402         * tests/unictype/test-categ_Zp.c: Likewise.
7403         * tests/unictype/test-categ_Zs.c: Likewise.
7404         * tests/unictype/test-ctype_alnum.c: Likewise.
7405         * tests/unictype/test-ctype_alpha.c: Likewise.
7406         * tests/unictype/test-ctype_blank.c: Likewise.
7407         * tests/unictype/test-ctype_cntrl.c: Likewise.
7408         * tests/unictype/test-ctype_digit.c: Likewise.
7409         * tests/unictype/test-ctype_graph.c: Likewise.
7410         * tests/unictype/test-ctype_lower.c: Likewise.
7411         * tests/unictype/test-ctype_print.c: Likewise.
7412         * tests/unictype/test-ctype_punct.c: Likewise.
7413         * tests/unictype/test-ctype_space.c: Likewise.
7414         * tests/unictype/test-ctype_upper.c: Likewise.
7415         * tests/unictype/test-ctype_xdigit.c: Likewise.
7416         * tests/unictype/test-decdigit.h: Likewise.
7417         * tests/unictype/test-digit.h: Likewise.
7418         * tests/unictype/test-numeric.h: Likewise.
7419         * tests/unictype/test-pr_alphabetic.c: Likewise.
7420         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
7421         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
7422         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
7423         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
7424         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
7425         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
7426         * tests/unictype/test-pr_bidi_control.c: Likewise.
7427         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
7428         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
7429         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
7430         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
7431         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
7432         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
7433         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
7434         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
7435         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
7436         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
7437         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
7438         * tests/unictype/test-pr_combining.c: Likewise.
7439         * tests/unictype/test-pr_composite.c: Likewise.
7440         * tests/unictype/test-pr_currency_symbol.c: Likewise.
7441         * tests/unictype/test-pr_dash.c: Likewise.
7442         * tests/unictype/test-pr_decimal_digit.c: Likewise.
7443         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
7444         * tests/unictype/test-pr_deprecated.c: Likewise.
7445         * tests/unictype/test-pr_diacritic.c: Likewise.
7446         * tests/unictype/test-pr_extender.c: Likewise.
7447         * tests/unictype/test-pr_format_control.c: Likewise.
7448         * tests/unictype/test-pr_grapheme_base.c: Likewise.
7449         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
7450         * tests/unictype/test-pr_grapheme_link.c: Likewise.
7451         * tests/unictype/test-pr_hex_digit.c: Likewise.
7452         * tests/unictype/test-pr_hyphen.c: Likewise.
7453         * tests/unictype/test-pr_id_continue.c: Likewise.
7454         * tests/unictype/test-pr_id_start.c: Likewise.
7455         * tests/unictype/test-pr_ideographic.c: Likewise.
7456         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
7457         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
7458         * tests/unictype/test-pr_ignorable_control.c: Likewise.
7459         * tests/unictype/test-pr_iso_control.c: Likewise.
7460         * tests/unictype/test-pr_join_control.c: Likewise.
7461         * tests/unictype/test-pr_left_of_pair.c: Likewise.
7462         * tests/unictype/test-pr_line_separator.c: Likewise.
7463         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
7464         * tests/unictype/test-pr_lowercase.c: Likewise.
7465         * tests/unictype/test-pr_math.c: Likewise.
7466         * tests/unictype/test-pr_non_break.c: Likewise.
7467         * tests/unictype/test-pr_not_a_character.c: Likewise.
7468         * tests/unictype/test-pr_numeric.c: Likewise.
7469         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
7470         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
7471         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
7472         * tests/unictype/test-pr_other_id_continue.c: Likewise.
7473         * tests/unictype/test-pr_other_id_start.c: Likewise.
7474         * tests/unictype/test-pr_other_lowercase.c: Likewise.
7475         * tests/unictype/test-pr_other_math.c: Likewise.
7476         * tests/unictype/test-pr_other_uppercase.c: Likewise.
7477         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
7478         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
7479         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
7480         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
7481         * tests/unictype/test-pr_private_use.c: Likewise.
7482         * tests/unictype/test-pr_punctuation.c: Likewise.
7483         * tests/unictype/test-pr_quotation_mark.c: Likewise.
7484         * tests/unictype/test-pr_radical.c: Likewise.
7485         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
7486         * tests/unictype/test-pr_soft_dotted.c: Likewise.
7487         * tests/unictype/test-pr_space.c: Likewise.
7488         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
7489         * tests/unictype/test-pr_titlecase.c: Likewise.
7490         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
7491         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
7492         * tests/unictype/test-pr_uppercase.c: Likewise.
7493         * tests/unictype/test-pr_variation_selector.c: Likewise.
7494         * tests/unictype/test-pr_white_space.c: Likewise.
7495         * tests/unictype/test-pr_xid_continue.c: Likewise.
7496         * tests/unictype/test-pr_xid_start.c: Likewise.
7497         * tests/unictype/test-pr_zero_width.c: Likewise.
7498         * tests/unictype/test-sy_c_whitespace.c: Likewise.
7499         * tests/unictype/test-sy_java_whitespace.c: Likewise.
7500
7501 2007-11-12  Bruno Haible  <bruno@clisp.org>
7502
7503         Unicode character classification functions.
7504         * lib/unictype.h: New file.
7505         * modules/unictype/base: New file.
7506         * modules/unictype/category-L: New file.
7507         * modules/unictype/category-Lu: New file.
7508         * modules/unictype/category-Ll: New file.
7509         * modules/unictype/category-Lt: New file.
7510         * modules/unictype/category-Lm: New file.
7511         * modules/unictype/category-Lo: New file.
7512         * modules/unictype/category-M: New file.
7513         * modules/unictype/category-Mn: New file.
7514         * modules/unictype/category-Mc: New file.
7515         * modules/unictype/category-Me: New file.
7516         * modules/unictype/category-N: New file.
7517         * modules/unictype/category-Nd: New file.
7518         * modules/unictype/category-Nl: New file.
7519         * modules/unictype/category-No: New file.
7520         * modules/unictype/category-P: New file.
7521         * modules/unictype/category-Pc: New file.
7522         * modules/unictype/category-Pd: New file.
7523         * modules/unictype/category-Ps: New file.
7524         * modules/unictype/category-Pe: New file.
7525         * modules/unictype/category-Pi: New file.
7526         * modules/unictype/category-Pf: New file.
7527         * modules/unictype/category-Po: New file.
7528         * modules/unictype/category-S: New file.
7529         * modules/unictype/category-Sm: New file.
7530         * modules/unictype/category-Sc: New file.
7531         * modules/unictype/category-Sk: New file.
7532         * modules/unictype/category-So: New file.
7533         * modules/unictype/category-Z: New file.
7534         * modules/unictype/category-Zs: New file.
7535         * modules/unictype/category-Zl: New file.
7536         * modules/unictype/category-Zp: New file.
7537         * modules/unictype/category-C: New file.
7538         * modules/unictype/category-Cc: New file.
7539         * modules/unictype/category-Cf: New file.
7540         * modules/unictype/category-Cs: New file.
7541         * modules/unictype/category-Co: New file.
7542         * modules/unictype/category-Cn: New file.
7543         * modules/unictype/category-or: New file.
7544         * modules/unictype/category-of: New file.
7545         * modules/unictype/category-test: New file.
7546         * modules/unictype/category-test-withtable: New file.
7547         * modules/unictype/category-byname: New file.
7548         * modules/unictype/category-none: New file.
7549         * modules/unictype/category-and: New file.
7550         * modules/unictype/category-and-not: New file.
7551         * modules/unictype/category-name: New file.
7552         * modules/unictype/combining-class: New file.
7553         * modules/unictype/category-all: New file.
7554         * modules/unictype/bidicategory-all: New file.
7555         * modules/unictype/bidicategory-byname: New file.
7556         * modules/unictype/bidicategory-name: New file.
7557         * modules/unictype/bidicategory-of: New file.
7558         * modules/unictype/bidicategory-test: New file.
7559         * modules/unictype/decimal-digit: New file.
7560         * modules/unictype/digit: New file.
7561         * modules/unictype/numeric: New file.
7562         * modules/unictype/mirror: New file.
7563         * modules/unictype/property-white-space: New file.
7564         * modules/unictype/property-alphabetic: New file.
7565         * modules/unictype/property-other-alphabetic: New file.
7566         * modules/unictype/property-not-a-character: New file.
7567         * modules/unictype/property-default-ignorable-code-point: New file.
7568         * modules/unictype/property-other-default-ignorable-code-point: New
7569         file.
7570         * modules/unictype/property-deprecated: New file.
7571         * modules/unictype/property-logical-order-exception: New file.
7572         * modules/unictype/property-variation-selector: New file.
7573         * modules/unictype/property-private-use: New file.
7574         * modules/unictype/property-unassigned-code-value: New file.
7575         * modules/unictype/property-uppercase: New file.
7576         * modules/unictype/property-other-uppercase: New file.
7577         * modules/unictype/property-lowercase: New file.
7578         * modules/unictype/property-other-lowercase: New file.
7579         * modules/unictype/property-titlecase: New file.
7580         * modules/unictype/property-soft-dotted: New file.
7581         * modules/unictype/property-id-start: New file.
7582         * modules/unictype/property-other-id-start: New file.
7583         * modules/unictype/property-id-continue: New file.
7584         * modules/unictype/property-other-id-continue: New file.
7585         * modules/unictype/property-xid-start: New file.
7586         * modules/unictype/property-xid-continue: New file.
7587         * modules/unictype/property-pattern-white-space: New file.
7588         * modules/unictype/property-pattern-syntax: New file.
7589         * modules/unictype/property-join-control: New file.
7590         * modules/unictype/property-grapheme-base: New file.
7591         * modules/unictype/property-grapheme-extend: New file.
7592         * modules/unictype/property-other-grapheme-extend: New file.
7593         * modules/unictype/property-grapheme-link: New file.
7594         * modules/unictype/property-bidi-control: New file.
7595         * modules/unictype/property-bidi-left-to-right: New file.
7596         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
7597         * modules/unictype/property-bidi-arabic-right-to-left: New file.
7598         * modules/unictype/property-bidi-european-digit: New file.
7599         * modules/unictype/property-bidi-eur-num-separator: New file.
7600         * modules/unictype/property-bidi-eur-num-terminator: New file.
7601         * modules/unictype/property-bidi-arabic-digit: New file.
7602         * modules/unictype/property-bidi-common-separator: New file.
7603         * modules/unictype/property-bidi-block-separator: New file.
7604         * modules/unictype/property-bidi-segment-separator: New file.
7605         * modules/unictype/property-bidi-whitespace: New file.
7606         * modules/unictype/property-bidi-non-spacing-mark: New file.
7607         * modules/unictype/property-bidi-boundary-neutral: New file.
7608         * modules/unictype/property-bidi-pdf: New file.
7609         * modules/unictype/property-bidi-embedding-or-override: New file.
7610         * modules/unictype/property-bidi-other-neutral: New file.
7611         * modules/unictype/property-hex-digit: New file.
7612         * modules/unictype/property-ascii-hex-digit: New file.
7613         * modules/unictype/property-ideographic: New file.
7614         * modules/unictype/property-unified-ideograph: New file.
7615         * modules/unictype/property-radical: New file.
7616         * modules/unictype/property-ids-binary-operator: New file.
7617         * modules/unictype/property-ids-trinary-operator: New file.
7618         * modules/unictype/property-zero-width: New file.
7619         * modules/unictype/property-space: New file.
7620         * modules/unictype/property-non-break: New file.
7621         * modules/unictype/property-iso-control: New file.
7622         * modules/unictype/property-format-control: New file.
7623         * modules/unictype/property-dash: New file.
7624         * modules/unictype/property-hyphen: New file.
7625         * modules/unictype/property-punctuation: New file.
7626         * modules/unictype/property-line-separator: New file.
7627         * modules/unictype/property-paragraph-separator: New file.
7628         * modules/unictype/property-quotation-mark: New file.
7629         * modules/unictype/property-sentence-terminal: New file.
7630         * modules/unictype/property-terminal-punctuation: New file.
7631         * modules/unictype/property-currency-symbol: New file.
7632         * modules/unictype/property-math: New file.
7633         * modules/unictype/property-other-math: New file.
7634         * modules/unictype/property-paired-punctuation: New file.
7635         * modules/unictype/property-left-of-pair: New file.
7636         * modules/unictype/property-combining: New file.
7637         * modules/unictype/property-composite: New file.
7638         * modules/unictype/property-decimal-digit: New file.
7639         * modules/unictype/property-numeric: New file.
7640         * modules/unictype/property-diacritic: New file.
7641         * modules/unictype/property-extender: New file.
7642         * modules/unictype/property-ignorable-control: New file.
7643         * modules/unictype/property-test: New file.
7644         * modules/unictype/property-byname: New file.
7645         * modules/unictype/property-all: New file.
7646         * modules/unictype/scripts: New file.
7647         * modules/unictype/scripts-all: New file.
7648         * modules/unictype/block-of: New file.
7649         * modules/unictype/block-test: New file.
7650         * modules/unictype/block-list: New file.
7651         * modules/unictype/block-all: New file.
7652         * modules/unictype/syntax-c-whitespace: New file.
7653         * modules/unictype/syntax-java-whitespace: New file.
7654         * modules/unictype/syntax-c-ident: New file.
7655         * modules/unictype/syntax-java-ident: New file.
7656         * modules/unictype/ctype-alnum: New file.
7657         * modules/unictype/ctype-alpha: New file.
7658         * modules/unictype/ctype-cntrl: New file.
7659         * modules/unictype/ctype-digit: New file.
7660         * modules/unictype/ctype-graph: New file.
7661         * modules/unictype/ctype-lower: New file.
7662         * modules/unictype/ctype-print: New file.
7663         * modules/unictype/ctype-punct: New file.
7664         * modules/unictype/ctype-space: New file.
7665         * modules/unictype/ctype-upper: New file.
7666         * modules/unictype/ctype-xdigit: New file.
7667         * modules/unictype/ctype-blank: New file.
7668         * lib/unictype/bidi_byname.c: New file.
7669         * lib/unictype/bidi_name.c: New file.
7670         * lib/unictype/bidi_of.c: New file.
7671         * lib/unictype/bidi_test.c: New file.
7672         * lib/unictype/bitmap.h: New file.
7673         * lib/unictype/block_test.c: New file.
7674         * lib/unictype/blocks.c: New file.
7675         * lib/unictype/categ_C.c: New file.
7676         * lib/unictype/categ_Cc.c: New file.
7677         * lib/unictype/categ_Cf.c: New file.
7678         * lib/unictype/categ_Cn.c: New file.
7679         * lib/unictype/categ_Co.c: New file.
7680         * lib/unictype/categ_Cs.c: New file.
7681         * lib/unictype/categ_L.c: New file.
7682         * lib/unictype/categ_Ll.c: New file.
7683         * lib/unictype/categ_Lm.c: New file.
7684         * lib/unictype/categ_Lo.c: New file.
7685         * lib/unictype/categ_Lt.c: New file.
7686         * lib/unictype/categ_Lu.c: New file.
7687         * lib/unictype/categ_M.c: New file.
7688         * lib/unictype/categ_Mc.c: New file.
7689         * lib/unictype/categ_Me.c: New file.
7690         * lib/unictype/categ_Mn.c: New file.
7691         * lib/unictype/categ_N.c: New file.
7692         * lib/unictype/categ_Nd.c: New file.
7693         * lib/unictype/categ_Nl.c: New file.
7694         * lib/unictype/categ_No.c: New file.
7695         * lib/unictype/categ_P.c: New file.
7696         * lib/unictype/categ_Pc.c: New file.
7697         * lib/unictype/categ_Pd.c: New file.
7698         * lib/unictype/categ_Pe.c: New file.
7699         * lib/unictype/categ_Pf.c: New file.
7700         * lib/unictype/categ_Pi.c: New file.
7701         * lib/unictype/categ_Po.c: New file.
7702         * lib/unictype/categ_Ps.c: New file.
7703         * lib/unictype/categ_S.c: New file.
7704         * lib/unictype/categ_Sc.c: New file.
7705         * lib/unictype/categ_Sk.c: New file.
7706         * lib/unictype/categ_Sm.c: New file.
7707         * lib/unictype/categ_So.c: New file.
7708         * lib/unictype/categ_Z.c: New file.
7709         * lib/unictype/categ_Zl.c: New file.
7710         * lib/unictype/categ_Zp.c: New file.
7711         * lib/unictype/categ_Zs.c: New file.
7712         * lib/unictype/categ_and.c: New file.
7713         * lib/unictype/categ_and_not.c: New file.
7714         * lib/unictype/categ_byname.c: New file.
7715         * lib/unictype/categ_name.c: New file.
7716         * lib/unictype/categ_none.c: New file.
7717         * lib/unictype/categ_of.c: New file.
7718         * lib/unictype/categ_or.c: New file.
7719         * lib/unictype/categ_test.c: New file.
7720         * lib/unictype/combining.c: New file.
7721         * lib/unictype/ctype_alnum.c: New file.
7722         * lib/unictype/ctype_alpha.c: New file.
7723         * lib/unictype/ctype_blank.c: New file.
7724         * lib/unictype/ctype_cntrl.c: New file.
7725         * lib/unictype/ctype_digit.c: New file.
7726         * lib/unictype/ctype_graph.c: New file.
7727         * lib/unictype/ctype_lower.c: New file.
7728         * lib/unictype/ctype_print.c: New file.
7729         * lib/unictype/ctype_punct.c: New file.
7730         * lib/unictype/ctype_space.c: New file.
7731         * lib/unictype/ctype_upper.c: New file.
7732         * lib/unictype/ctype_xdigit.c: New file.
7733         * lib/unictype/decdigit.c: New file.
7734         * lib/unictype/digit.c: New file.
7735         * lib/unictype/identsyntaxmap.h: New file.
7736         * lib/unictype/mirror.c: New file.
7737         * lib/unictype/numeric.c: New file.
7738         * lib/unictype/pr_alphabetic.c: New file.
7739         * lib/unictype/pr_ascii_hex_digit.c: New file.
7740         * lib/unictype/pr_bidi_arabic_digit.c: New file.
7741         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
7742         * lib/unictype/pr_bidi_block_separator.c: New file.
7743         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
7744         * lib/unictype/pr_bidi_common_separator.c: New file.
7745         * lib/unictype/pr_bidi_control.c: New file.
7746         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
7747         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
7748         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
7749         * lib/unictype/pr_bidi_european_digit.c: New file.
7750         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
7751         * lib/unictype/pr_bidi_left_to_right.c: New file.
7752         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
7753         * lib/unictype/pr_bidi_other_neutral.c: New file.
7754         * lib/unictype/pr_bidi_pdf.c: New file.
7755         * lib/unictype/pr_bidi_segment_separator.c: New file.
7756         * lib/unictype/pr_bidi_whitespace.c: New file.
7757         * lib/unictype/pr_byname.c: New file.
7758         * lib/unictype/pr_byname.gperf: New file.
7759         * lib/unictype/pr_combining.c: New file.
7760         * lib/unictype/pr_composite.c: New file.
7761         * lib/unictype/pr_currency_symbol.c: New file.
7762         * lib/unictype/pr_dash.c: New file.
7763         * lib/unictype/pr_decimal_digit.c: New file.
7764         * lib/unictype/pr_default_ignorable_code_point.c: New file.
7765         * lib/unictype/pr_deprecated.c: New file.
7766         * lib/unictype/pr_diacritic.c: New file.
7767         * lib/unictype/pr_extender.c: New file.
7768         * lib/unictype/pr_format_control.c: New file.
7769         * lib/unictype/pr_grapheme_base.c: New file.
7770         * lib/unictype/pr_grapheme_extend.c: New file.
7771         * lib/unictype/pr_grapheme_link.c: New file.
7772         * lib/unictype/pr_hex_digit.c: New file.
7773         * lib/unictype/pr_hyphen.c: New file.
7774         * lib/unictype/pr_id_continue.c: New file.
7775         * lib/unictype/pr_id_start.c: New file.
7776         * lib/unictype/pr_ideographic.c: New file.
7777         * lib/unictype/pr_ids_binary_operator.c: New file.
7778         * lib/unictype/pr_ids_trinary_operator.c: New file.
7779         * lib/unictype/pr_ignorable_control.c: New file.
7780         * lib/unictype/pr_iso_control.c: New file.
7781         * lib/unictype/pr_join_control.c: New file.
7782         * lib/unictype/pr_left_of_pair.c: New file.
7783         * lib/unictype/pr_line_separator.c: New file.
7784         * lib/unictype/pr_logical_order_exception.c: New file.
7785         * lib/unictype/pr_lowercase.c: New file.
7786         * lib/unictype/pr_math.c: New file.
7787         * lib/unictype/pr_non_break.c: New file.
7788         * lib/unictype/pr_not_a_character.c: New file.
7789         * lib/unictype/pr_numeric.c: New file.
7790         * lib/unictype/pr_other_alphabetic.c: New file.
7791         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
7792         * lib/unictype/pr_other_grapheme_extend.c: New file.
7793         * lib/unictype/pr_other_id_continue.c: New file.
7794         * lib/unictype/pr_other_id_start.c: New file.
7795         * lib/unictype/pr_other_lowercase.c: New file.
7796         * lib/unictype/pr_other_math.c: New file.
7797         * lib/unictype/pr_other_uppercase.c: New file.
7798         * lib/unictype/pr_paired_punctuation.c: New file.
7799         * lib/unictype/pr_paragraph_separator.c: New file.
7800         * lib/unictype/pr_pattern_syntax.c: New file.
7801         * lib/unictype/pr_pattern_white_space.c: New file.
7802         * lib/unictype/pr_private_use.c: New file.
7803         * lib/unictype/pr_punctuation.c: New file.
7804         * lib/unictype/pr_quotation_mark.c: New file.
7805         * lib/unictype/pr_radical.c: New file.
7806         * lib/unictype/pr_sentence_terminal.c: New file.
7807         * lib/unictype/pr_soft_dotted.c: New file.
7808         * lib/unictype/pr_space.c: New file.
7809         * lib/unictype/pr_terminal_punctuation.c: New file.
7810         * lib/unictype/pr_test.c: New file.
7811         * lib/unictype/pr_titlecase.c: New file.
7812         * lib/unictype/pr_unassigned_code_value.c: New file.
7813         * lib/unictype/pr_unified_ideograph.c: New file.
7814         * lib/unictype/pr_uppercase.c: New file.
7815         * lib/unictype/pr_variation_selector.c: New file.
7816         * lib/unictype/pr_white_space.c: New file.
7817         * lib/unictype/pr_xid_continue.c: New file.
7818         * lib/unictype/pr_xid_start.c: New file.
7819         * lib/unictype/pr_zero_width.c: New file.
7820         * lib/unictype/scripts.c: New file.
7821         * lib/unictype/sy_c_ident.c: New file.
7822         * lib/unictype/sy_c_whitespace.c: New file.
7823         * lib/unictype/sy_java_ident.c: New file.
7824         * lib/unictype/sy_java_whitespace.c: New file.
7825
7826         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
7827         Unicode 5.0.0.
7828         * lib/unictype/blocks.h: Likewise.
7829         * lib/unictype/categ_C.h: Likewise.
7830         * lib/unictype/categ_Cc.h: Likewise.
7831         * lib/unictype/categ_Cf.h: Likewise.
7832         * lib/unictype/categ_Cn.h: Likewise.
7833         * lib/unictype/categ_Co.h: Likewise.
7834         * lib/unictype/categ_Cs.h: Likewise.
7835         * lib/unictype/categ_L.h: Likewise.
7836         * lib/unictype/categ_Ll.h: Likewise.
7837         * lib/unictype/categ_Lm.h: Likewise.
7838         * lib/unictype/categ_Lo.h: Likewise.
7839         * lib/unictype/categ_Lt.h: Likewise.
7840         * lib/unictype/categ_Lu.h: Likewise.
7841         * lib/unictype/categ_M.h: Likewise.
7842         * lib/unictype/categ_Mc.h: Likewise.
7843         * lib/unictype/categ_Me.h: Likewise.
7844         * lib/unictype/categ_Mn.h: Likewise.
7845         * lib/unictype/categ_N.h: Likewise.
7846         * lib/unictype/categ_Nd.h: Likewise.
7847         * lib/unictype/categ_Nl.h: Likewise.
7848         * lib/unictype/categ_No.h: Likewise.
7849         * lib/unictype/categ_P.h: Likewise.
7850         * lib/unictype/categ_Pc.h: Likewise.
7851         * lib/unictype/categ_Pd.h: Likewise.
7852         * lib/unictype/categ_Pe.h: Likewise.
7853         * lib/unictype/categ_Pf.h: Likewise.
7854         * lib/unictype/categ_Pi.h: Likewise.
7855         * lib/unictype/categ_Po.h: Likewise.
7856         * lib/unictype/categ_Ps.h: Likewise.
7857         * lib/unictype/categ_S.h: Likewise.
7858         * lib/unictype/categ_Sc.h: Likewise.
7859         * lib/unictype/categ_Sk.h: Likewise.
7860         * lib/unictype/categ_Sm.h: Likewise.
7861         * lib/unictype/categ_So.h: Likewise.
7862         * lib/unictype/categ_Z.h: Likewise.
7863         * lib/unictype/categ_Zl.h: Likewise.
7864         * lib/unictype/categ_Zp.h: Likewise.
7865         * lib/unictype/categ_Zs.h: Likewise.
7866         * lib/unictype/categ_of.h: Likewise.
7867         * lib/unictype/combining.h: Likewise.
7868         * lib/unictype/ctype_alnum.h: Likewise.
7869         * lib/unictype/ctype_alpha.h: Likewise.
7870         * lib/unictype/ctype_blank.h: Likewise.
7871         * lib/unictype/ctype_cntrl.h: Likewise.
7872         * lib/unictype/ctype_digit.h: Likewise.
7873         * lib/unictype/ctype_graph.h: Likewise.
7874         * lib/unictype/ctype_lower.h: Likewise.
7875         * lib/unictype/ctype_print.h: Likewise.
7876         * lib/unictype/ctype_punct.h: Likewise.
7877         * lib/unictype/ctype_space.h: Likewise.
7878         * lib/unictype/ctype_upper.h: Likewise.
7879         * lib/unictype/ctype_xdigit.h: Likewise.
7880         * lib/unictype/decdigit.h: Likewise.
7881         * lib/unictype/digit.h: Likewise.
7882         * lib/unictype/mirror.h: Likewise.
7883         * lib/unictype/numeric.h: Likewise.
7884         * lib/unictype/pr_alphabetic.h: Likewise.
7885         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
7886         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
7887         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
7888         * lib/unictype/pr_bidi_block_separator.h: Likewise.
7889         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
7890         * lib/unictype/pr_bidi_common_separator.h: Likewise.
7891         * lib/unictype/pr_bidi_control.h: Likewise.
7892         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
7893         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
7894         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
7895         * lib/unictype/pr_bidi_european_digit.h: Likewise.
7896         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
7897         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
7898         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
7899         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
7900         * lib/unictype/pr_bidi_pdf.h: Likewise.
7901         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
7902         * lib/unictype/pr_bidi_whitespace.h: Likewise.
7903         * lib/unictype/pr_combining.h: Likewise.
7904         * lib/unictype/pr_composite.h: Likewise.
7905         * lib/unictype/pr_currency_symbol.h: Likewise.
7906         * lib/unictype/pr_dash.h: Likewise.
7907         * lib/unictype/pr_decimal_digit.h: Likewise.
7908         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
7909         * lib/unictype/pr_deprecated.h: Likewise.
7910         * lib/unictype/pr_diacritic.h: Likewise.
7911         * lib/unictype/pr_extender.h: Likewise.
7912         * lib/unictype/pr_format_control.h: Likewise.
7913         * lib/unictype/pr_grapheme_base.h: Likewise.
7914         * lib/unictype/pr_grapheme_extend.h: Likewise.
7915         * lib/unictype/pr_grapheme_link.h: Likewise.
7916         * lib/unictype/pr_hex_digit.h: Likewise.
7917         * lib/unictype/pr_hyphen.h: Likewise.
7918         * lib/unictype/pr_id_continue.h: Likewise.
7919         * lib/unictype/pr_id_start.h: Likewise.
7920         * lib/unictype/pr_ideographic.h: Likewise.
7921         * lib/unictype/pr_ids_binary_operator.h: Likewise.
7922         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
7923         * lib/unictype/pr_ignorable_control.h: Likewise.
7924         * lib/unictype/pr_iso_control.h: Likewise.
7925         * lib/unictype/pr_join_control.h: Likewise.
7926         * lib/unictype/pr_left_of_pair.h: Likewise.
7927         * lib/unictype/pr_line_separator.h: Likewise.
7928         * lib/unictype/pr_logical_order_exception.h: Likewise.
7929         * lib/unictype/pr_lowercase.h: Likewise.
7930         * lib/unictype/pr_math.h: Likewise.
7931         * lib/unictype/pr_non_break.h: Likewise.
7932         * lib/unictype/pr_not_a_character.h: Likewise.
7933         * lib/unictype/pr_numeric.h: Likewise.
7934         * lib/unictype/pr_other_alphabetic.h: Likewise.
7935         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
7936         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
7937         * lib/unictype/pr_other_id_continue.h: Likewise.
7938         * lib/unictype/pr_other_id_start.h: Likewise.
7939         * lib/unictype/pr_other_lowercase.h: Likewise.
7940         * lib/unictype/pr_other_math.h: Likewise.
7941         * lib/unictype/pr_other_uppercase.h: Likewise.
7942         * lib/unictype/pr_paired_punctuation.h: Likewise.
7943         * lib/unictype/pr_paragraph_separator.h: Likewise.
7944         * lib/unictype/pr_pattern_syntax.h: Likewise.
7945         * lib/unictype/pr_pattern_white_space.h: Likewise.
7946         * lib/unictype/pr_private_use.h: Likewise.
7947         * lib/unictype/pr_punctuation.h: Likewise.
7948         * lib/unictype/pr_quotation_mark.h: Likewise.
7949         * lib/unictype/pr_radical.h: Likewise.
7950         * lib/unictype/pr_sentence_terminal.h: Likewise.
7951         * lib/unictype/pr_soft_dotted.h: Likewise.
7952         * lib/unictype/pr_space.h: Likewise.
7953         * lib/unictype/pr_terminal_punctuation.h: Likewise.
7954         * lib/unictype/pr_titlecase.h: Likewise.
7955         * lib/unictype/pr_unassigned_code_value.h: Likewise.
7956         * lib/unictype/pr_unified_ideograph.h: Likewise.
7957         * lib/unictype/pr_uppercase.h: Likewise.
7958         * lib/unictype/pr_variation_selector.h: Likewise.
7959         * lib/unictype/pr_white_space.h: Likewise.
7960         * lib/unictype/pr_xid_continue.h: Likewise.
7961         * lib/unictype/pr_xid_start.h: Likewise.
7962         * lib/unictype/pr_zero_width.h: Likewise.
7963         * lib/unictype/scripts.h: Likewise.
7964         * lib/unictype/scripts_byname.gperf: Likewise.
7965         * lib/unictype/sy_c_ident.h: Likewise.
7966         * lib/unictype/sy_c_whitespace.h: Likewise.
7967         * lib/unictype/sy_java_ident.h: Likewise.
7968         * lib/unictype/sy_java_whitespace.h: Likewise.
7969
7970         * lib/unictype/Makefile: New file.
7971         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
7972         glibc.
7973         * lib/unictype/3level.h: New file, copied from glibc.
7974         * lib/unictype/3levelbit.h: New file.
7975
7976 2007-11-11  Bruno Haible  <bruno@clisp.org>
7977
7978         * modules/gperf: New file.
7979         * modules/iconv_open (Depends-on): Add it.
7980         (Makefile.am): Remove the GPERF definition.
7981
7982 2007-11-11  Bruno Haible  <bruno@clisp.org>
7983
7984         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
7985         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
7986
7987 2007-11-11  Bruno Haible  <bruno@clisp.org>
7988
7989         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
7990         (usage): Remove function.
7991
7992 2007-11-11  Bruno Haible  <bruno@clisp.org>
7993
7994         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
7995         gl_FUNC_CEILF_LIBS.
7996         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
7997         gl_FUNC_CEIL_LIBS.
7998         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
7999         gl_FUNC_CEILL_LIBS.
8000         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
8001         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
8002         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
8003
8004 2007-11-11  Bruno Haible  <bruno@clisp.org>
8005
8006         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
8007         roundf were declared but do not exist on functions.
8008         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
8009         roundl were declared but do not exist on functions.
8010         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
8011         HAVE_FLOORL_AND_CEILL, respectively.
8012         Needed for Sun C on Solaris 10.
8013
8014 2007-11-11  Bruno Haible  <bruno@clisp.org>
8015
8016         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
8017         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
8018         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
8019         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
8020         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
8021         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
8022         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
8023         HAVE_DECL_ROUNDF.
8024         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
8025         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
8026         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
8027         of HAVE_DECL_ROUND*.
8028         * modules/math (Makefile.am): Update.
8029
8030 2007-11-10  Bruno Haible  <bruno@clisp.org>
8031
8032         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
8033         ptrdiff_t as m4/intl.m4.
8034
8035 2007-11-10  Jim Meyering  <meyering@redhat.com>
8036
8037         Avoid link failure for the argmatch test.
8038         * tests/test-argmatch.c (usage): Define function to avoid a link
8039         failure: argmatch_die requires a usage function.
8040
8041 2007-11-09  Bruno Haible  <bruno@clisp.org>
8042
8043         * doc/functions/snprintf.texi: Mention BeOS deficiency.
8044         * doc/functions/vsnprintf.texi: Likewise.
8045         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
8046         with a size argument < 2.
8047
8048 2007-11-09  Bruno Haible  <bruno@clisp.org>
8049
8050         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
8051         buffer. Fixes an inefficiency introduced on 2007-11-03.
8052
8053 2007-11-09  Bruno Haible  <bruno@clisp.org>
8054
8055         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
8056         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
8057
8058 2007-11-08  Jim Meyering  <meyering@redhat.com>
8059
8060         Change cache variable name prefix "jm_" to "gl_" everywhere.
8061         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
8062         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
8063         * m4/uptime.m4: s/gl_/jm_/
8064
8065 2007-11-07  Bruno Haible  <bruno@clisp.org>
8066
8067         Update to GNU gettext 0.17.
8068         * m4/intl.m4: Update to GNU gettext 0.17.
8069         * m4/po.m4: Likewise.
8070         * modules/gettext (Files): Remove m4/ulonglong.m4.
8071         (configure.ac): Require gettext infrastructure from version 0.17.
8072
8073 2007-11-06  Bruno Haible  <bruno@clisp.org>
8074
8075         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
8076         symbolic values are not defined in a public header.
8077         * lib/freadable.c (freadable) [QNX]: Likewise.
8078         * lib/freadahead.c (freadahead) [QNX]: Likewise.
8079         * lib/freading.c (freading) [QNX]: Likewise.
8080         * lib/fseterr.c (fseterr) [QNX]: Likewise.
8081         * lib/fwritable.c (fwritable) [QNX]: Likewise.
8082         * lib/fwriting.c (fwriting) [QNX]: Likewise.
8083         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
8084         Reported by Alain Magloire.
8085
8086         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
8087
8088 2007-11-05  Bruno Haible  <bruno@clisp.org>
8089
8090         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
8091         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
8092         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
8093         Reported by Eric Blake.
8094
8095 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8096             Bruno Haible  <bruno@clisp.org>
8097
8098         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
8099         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
8100         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
8101         (malloc): Undefine also before including <stdlib.h>.
8102         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
8103         Needed on OSF/1 4.0.
8104
8105 2007-11-05  Jim Meyering  <meyering@redhat.com>
8106
8107         git-version-gen: sync from coreutils.
8108         * build-aux/git-version-gen: Add comments.
8109         Change the first '-' to '.' in the snapshot version string,
8110         e.g., 6.9-377-08144 -> 6.9.377-08144
8111         Remove first parameter.
8112         Don't declare a version "-dirty" merely because a time
8113         stamp has changed.
8114
8115 2007-11-04  Bruno Haible  <bruno@clisp.org>
8116
8117         * lib/lock.h: Protect all macro definitions containing an 'if'
8118         statement through a "do { ... } while (0)".
8119         * lib/tls.h: Likewise.
8120
8121 2007-11-04  Bruno Haible  <bruno@clisp.org>
8122
8123         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
8124
8125 2007-11-04  Bruno Haible  <bruno@clisp.org>
8126
8127         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
8128         * modules/fprintf-posix (Depends-on): Add nocrash.
8129         * modules/snprintf-posix (Depends-on): Likewise.
8130         * modules/sprintf-posix (Depends-on): Likewise.
8131         * modules/vasnprintf-posix (Depends-on): Likewise.
8132         * modules/vasprintf-posix (Depends-on): Likewise.
8133         * modules/vfprintf-posix (Depends-on): Likewise.
8134         * modules/vsnprintf-posix (Depends-on): Likewise.
8135         * modules/vsprintf-posix (Depends-on): Likewise.
8136         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
8137         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
8138         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
8139         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
8140         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
8141         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
8142         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
8143
8144 2007-11-04  Bruno Haible  <bruno@clisp.org>
8145
8146         * modules/nocrash: New file.
8147         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
8148         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
8149
8150 2007-11-04  Bruno Haible  <bruno@clisp.org>
8151
8152         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
8153         precision handling.
8154         * tests/test-vasprintf-posix.c (test_function): Likewise.
8155         * tests/test-snprintf-posix.h (test_function): Likewise.
8156         * tests/test-sprintf-posix.h (test_function): Likewise.
8157
8158         Fix *printf behaviour for large precisions on mingw and BeOS.
8159         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
8160         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
8161         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
8162         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8163         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8164         gl_PRINTF_PRECISION and test its result. Invoke
8165         gl_PREREQ_VASNPRINTF_PRECISION.
8166         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8167         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8168         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8169         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8170         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8171         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8172         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8173         * doc/functions/fprintf.texi: Update.
8174         * doc/functions/printf.texi: Update.
8175         * doc/functions/snprintf.texi: Update.
8176         * doc/functions/sprintf.texi: Update.
8177         * doc/functions/vfprintf.texi: Update.
8178         * doc/functions/vprintf.texi: Update.
8179         * doc/functions/vsnprintf.texi: Update.
8180         * doc/functions/vsprintf.texi: Update.
8181
8182 2007-11-04  Bruno Haible  <bruno@clisp.org>
8183
8184         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
8185
8186 2007-11-04  Bruno Haible  <bruno@clisp.org>
8187
8188         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
8189         Reported by Sylvain Beucler <beuc@gnu.org>.
8190
8191 2007-11-03  Bruno Haible  <bruno@clisp.org>
8192
8193         * tests/test-fprintf-posix2.sh: New file.
8194         * tests/test-fprintf-posix2.c: New file.
8195         * modules/fprintf-posix-tests (Files): Add them.
8196         (TESTS): Add test-fprintf-posix2.sh.
8197         (configure.ac): Check for getrlimit and setrlimit.
8198         (check_PROGRAMS): Add test-fprintf-posix2.
8199
8200         * tests/test-printf-posix2.sh: New file.
8201         * tests/test-printf-posix2.c: New file.
8202         * modules/printf-posix-tests (Files): Add them.
8203         (TESTS): Add test-printf-posix2.sh.
8204         (configure.ac): Check for getrlimit and setrlimit.
8205         (check_PROGRAMS): Add test-printf-posix2.
8206
8207         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
8208         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
8209         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
8210         (decode_double): New function, copied from decode_long_double.
8211         (scale10_round_decimal_decoded): New function, extracted from
8212         scale10_round_decimal_long_double.
8213         (scale10_round_decimal_long_double): Use it.
8214         (scale10_round_decimal_double): New function.
8215         (floorlog10): New function.
8216         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
8217         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
8218         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8219         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8220         gl_PRINTF_ENOMEM and test its result. Invoke
8221         gl_PREREQ_VASNPRINTF_ENOMEM.
8222         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8223         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8224         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8225         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8226         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8227         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8228         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8229         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
8230         * modules/snprintf-posix (Depends-on): Likewise.
8231         * modules/sprintf-posix (Depends-on): Likewise.
8232         * modules/vasnprintf-posix (Depends-on): Likewise.
8233         * modules/vasprintf-posix (Depends-on): Likewise.
8234         * modules/vfprintf-posix (Depends-on): Likewise.
8235         * modules/vsnprintf-posix (Depends-on): Likewise.
8236         * modules/vsprintf-posix (Depends-on): Likewise.
8237         * doc/functions/fprintf.texi: Update.
8238         * doc/functions/printf.texi: Update.
8239         * doc/functions/snprintf.texi: Update.
8240         * doc/functions/sprintf.texi: Update.
8241         * doc/functions/vfprintf.texi: Update.
8242         * doc/functions/vprintf.texi: Update.
8243         * doc/functions/vsnprintf.texi: Update.
8244         * doc/functions/vsprintf.texi: Update.
8245
8246 2007-11-03  Bruno Haible  <bruno@clisp.org>
8247
8248         * modules/frexp-nolibm-tests: New file.
8249
8250         * modules/frexp-nolibm: New file.
8251         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
8252
8253 2007-11-03  Bruno Haible  <bruno@clisp.org>
8254
8255         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
8256         value is C99 compliant.
8257         Needed for OSF/1 5.1.
8258
8259 2007-11-03  Bruno Haible  <bruno@clisp.org>
8260
8261         Fix out-of-memory handling of vasnprintf.
8262         * lib/printf-parse.c: Include <errno.h>.
8263         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
8264         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
8265         is already set.
8266
8267 2007-11-02  Eric Blake  <ebb9@byu.net>
8268
8269         Fix tests on cygwin.
8270         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
8271
8272 2007-11-01  Bruno Haible  <bruno@clisp.org>
8273
8274         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
8275         warning.
8276         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
8277         needed for POSIX compatibility.
8278
8279 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
8280
8281         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
8282         for compatibility with GNU.
8283
8284 2007-11-01  Bruno Haible  <bruno@clisp.org>
8285
8286         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
8287         (putenv): Renamed from rpl_putenv. Change argument type from
8288         'const char *' to 'char *'.
8289         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
8290         of defining putenv in config.h, just set REPLACE_PUTENV.
8291         * modules/putenv (Depends-on): Add stdlib.
8292         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
8293         (Include): Use <stdlib.h>.
8294         * lib/stdlib.in.h (putenv): New declaration.
8295         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
8296         REPLACE_PUTENV.
8297         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
8298         REPLACE_PUTENV.
8299         Needed for MacOS X 10.5.0.
8300         Reported by Peter O'Gorman <peter@pogma.com>.
8301
8302 2007-11-01  Jim Meyering  <meyering@redhat.com>
8303
8304         Treat an empty date string exactly like "0".
8305         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
8306         if the remaining date string (to be parsed) is empty, use "0".
8307         Reported by Mischa Molhoek and discussed in this thread:
8308         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
8309
8310 2007-10-31  Bruno Haible  <bruno@clisp.org>
8311
8312         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
8313         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
8314         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
8315         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
8316         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
8317         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
8318
8319 2007-10-31  Bruno Haible  <bruno@clisp.org>
8320
8321         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
8322         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
8323         (AC_TYPE_LONG_LONG_INT): Use it.
8324         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
8325         it as well.
8326         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
8327         to m4/longlong.m4.
8328         * modules/stdint (Files): Remove m4/ulonglong.m4.
8329         * modules/strtoull (Files): Use m4/longlong.m4 instead of
8330         m4/ulonglong.m4.
8331         * modules/strtoumax (Files): Likewise.
8332
8333 2007-10-30  Bruno Haible  <bruno@clisp.org>
8334
8335         * modules/xvasprintf-posix: New file.
8336         Suggested by Eric Blake.
8337
8338 2007-10-30  Bruno Haible  <bruno@clisp.org>
8339
8340         * modules/xprintf-posix-tests: New file.
8341         * tests/test-xprintf-posix.sh: New file.
8342         * tests/test-xprintf-posix.c: New file.
8343         * tests/test-xfprintf-posix.c: New file.
8344
8345         * modules/xprintf-posix: New file.
8346
8347 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8348
8349         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
8350         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
8351         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
8352
8353 2007-10-29  Bruno Haible  <bruno@clisp.org>
8354
8355         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
8356         contain the special marker '_cv_'.
8357         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
8358         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
8359         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
8360         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
8361         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
8362         Reported by Ralf Wildenhues.
8363
8364 2007-10-29  Bruno Haible  <bruno@clisp.org>
8365
8366         * gnulib-tool (func_import): When --lgpl is not specified, set
8367         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
8368         GPLv3.
8369         Reported by Simon Josefsson.
8370
8371 2007-10-28  Bruno Haible  <bruno@clisp.org>
8372
8373         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
8374         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
8375         HAVE_DECL_ISFINITE.
8376         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8377         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
8378         HAVE_DECL_ISFINITE.
8379
8380 2007-10-28  Bruno Haible  <bruno@clisp.org>
8381
8382         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
8383         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
8384
8385 2007-10-28  Bruno Haible  <bruno@clisp.org>
8386
8387         Fix link errors with Sun C 5.0 on Solaris 10.
8388         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
8389         function is declared but not present in the compiler's libm.
8390         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
8391         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
8392         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
8393         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
8394         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
8395         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
8396         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
8397         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8398         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
8399         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
8400         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
8401         HAVE_DECL_FLOORL.
8402
8403 2007-10-28  Bruno Haible  <bruno@clisp.org>
8404
8405         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
8406         gl_FUNC_FLOORL. Cache the result.
8407         (gl_FUNC_FLOORL): Use it.
8408         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
8409         gl_FUNC_CEILL. Cache the result.
8410         (gl_FUNC_CEILL): Use it.
8411
8412         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
8413         gl_FUNC_FLOOR. Cache the result.
8414         (gl_FUNC_FLOOR): Use it.
8415         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
8416         gl_FUNC_CEIL. Cache the result.
8417         (gl_FUNC_CEIL): Use it.
8418
8419         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
8420         gl_FUNC_FLOORF. Cache the result.
8421         (gl_FUNC_FLOORF): Use it.
8422         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
8423         gl_FUNC_CEILF. Cache the result.
8424         (gl_FUNC_CEILF): Use it.
8425
8426 2007-10-28  Bruno Haible  <bruno@clisp.org>
8427
8428         * gnulib-tool: Allow specifying the LGPL version number through
8429         --lgpl=2 or --lgpl=3.
8430         (func_usage): Document --lgpl with argument.
8431         Handle --lgpl=... arguments.
8432         (func_import): Recognize also gl_LGPL calls with an argument. When
8433         --lgpl=2 is used and the module's license is just LGPL, report an
8434         error. Set sed_transform_lib_file according to the lgpl variable. In
8435         the generated files, use --lgpl or gl_LGPL invocations with argument,
8436         if necessary.
8437         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
8438         an LGPv2+ license.
8439         * doc/gnulib-tool.texi (Modified imports): Update explanation of
8440         gl_LGPL macro.
8441
8442 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8443             Bruno Haible  <bruno@clisp.org>
8444
8445         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
8446         (u16_uctomb_aux): Likewise.
8447         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
8448         !HAVE_INLINE.
8449         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
8450
8451 2007-10-28  Bruno Haible  <bruno@clisp.org>
8452
8453         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
8454         Invoke AM_GETTEXT_OPTION if it exists.
8455         * modules/vasprintf: Likewise.
8456         * modules/verror: Likewise.
8457         * modules/xprintf: Likewise.
8458         * modules/xvasprintf: Likewise.
8459
8460 2007-10-27  Ben Pfaff  <blp@gnu.org>
8461
8462         * lib/math.in.h: Define isfinite macro and prototypes for
8463         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
8464         implementations.
8465         * m4/math_h.m4: New substitutions for isfinite module.
8466         * lib/isfinite.c: New file.
8467         * m4/isfinite.m4: New file.
8468         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
8469         * modules/isfinite: New file.
8470         * modules/isfinite-tests: New file.
8471         * tests/tests-isfinite.c: New file.
8472         * doc/functions/isfinite.texi: Mention isfinite module.
8473         * MODULES.html.sh: Mention new module.
8474
8475 2007-10-27  Ben Pfaff  <blp@gnu.org>
8476
8477         Ralf Wildenhues reported that Tru64 4.0D declares the round
8478         functions but does not have definitions.
8479         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
8480         cannot be found in any library, set the output variable to
8481         "missing" instead of "".
8482         * m4/round.m4: Also use our substitute if we cannot find round in
8483         any library, even if it is declared.
8484         * m4/roundf.m4: Likewise for roundf.
8485         * m4/roundl.m4: Likewise for roundl.
8486         * lib/math.in.h: Undefine roundf, round, roundl before defining
8487         their replacements, to allow for hypothetical systems where these
8488         may be defined as macros but not available in libraries.
8489
8490 2007-10-27  Bruno Haible  <bruno@clisp.org>
8491
8492         * doc/gnulib.texi: Invoke @firstparagraphindent.
8493         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
8494         changes in gnulib.
8495         (Source changes): New section.
8496
8497 2007-10-26  Bruno Haible  <bruno@clisp.org>
8498
8499         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
8500         borrowed from autoconf.
8501
8502 2007-10-26  Bruno Haible  <bruno@clisp.org>
8503
8504         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
8505         strerror returned the empty string. Needed on HP-UX 11.00.
8506
8507 2007-10-24  Micah Cowan  <micah@cowan.name>
8508
8509         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
8510         * build-aux/bootstrap: Remove support for now-unnecessary option,
8511         --cvs-user, and envvars CVS_USER, CVS_RSH.
8512
8513 2007-10-24  Jim Meyering  <meyering@redhat.com>
8514
8515         Avoid diagnostics from sha1sum when there is no cached checksum.
8516         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
8517         if the po.s1 file hasn't been created yet.
8518
8519         * build-aux/bootstrap: Sync from coreutils:
8520         2007-10-24  Jim Meyering  <meyering@redhat.com>
8521         Get gnulib from the git repository, not from an obsolete cvs one.
8522         * build-aux/bootstrap: Suggestion from Micah Cowan.
8523         2007-10-04  Jim Meyering  <jim@meyering.net>
8524         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
8525         (update_po_files): Work also when there are no .po files in po/.
8526
8527 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8528
8529         * README: Append ".git" to git and cg examples.
8530         Problem reported by Benoit Sigoure.
8531
8532 2007-10-23  Micah Cowan  <micah@cowan.name>
8533
8534         * users.txt: Add wget.
8535
8536 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8537
8538         Fix linking of some unistdio tests on FreeBSD.
8539         * modules/unistdio/u16-vsnprintf-tests
8540         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
8541         * modules/unistdio/u16-vsprintf-tests
8542         (test_u16_vsnprintf1_LDADD): Likewise.
8543         * modules/unistdio/u32-vsnprintf-tests
8544         (test_u32_vsnprintf1_LDADD): Likewise.
8545         * modules/unistdio/u32-vsprintf-tests
8546         (test_u32_vsprintf1_LDADD): Likewise.
8547         * modules/unistdio/u8-vsnprintf-tests
8548         (test_u8_vsnprintf1_LDADD): Likewise.
8549         * modules/unistdio/u8-vsprintf-tests
8550         (test_u8_vsprintf1_LDADD): Likewise.
8551         * modules/unistdio/ulc-vsnprintf-tests
8552         (test_ulc_vsnprintf1_LDADD): Likewise.
8553         * modules/unistdio/ulc-vsprintf-tests
8554         (test_ulc_vsprintf1_LDADD): Likewise.
8555
8556         Fix linking of some uniconv tests on FreeBSD.
8557         * modules/uniconv/u16-conv-from-enc-tests
8558         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
8559         * modules/uniconv/u16-conv-to-enc-tests
8560         (test_u16_conv_to_enc_LDADD): Likewise.
8561         * modules/uniconv/u16-strconv-from-enc-tests
8562         (test_u16_strconv_from_enc_LDADD): Likewise.
8563         * modules/uniconv/u16-strconv-to-enc-tests
8564         (test_u16_strconv_to_enc_LDADD): Likewise.
8565         * modules/uniconv/u32-conv-from-enc-tests
8566         (test_u32_conv_from_enc_LDADD): Likewise.
8567         * modules/uniconv/u32-conv-to-enc-tests
8568         (test_u32_conv_to_enc_LDADD): Likewise.
8569         * modules/uniconv/u32-strconv-from-enc-tests
8570         (test_u32_strconv_from_enc_LDADD): Likewise.
8571         * modules/uniconv/u32-strconv-to-enc-tests
8572         (test_u32_strconv_to_enc_LDADD): Likewise.
8573         * modules/uniconv/u8-conv-from-enc-tests
8574         (test_u8_conv_from_enc_LDADD): Likewise.
8575         * modules/uniconv/u8-conv-to-enc-tests
8576         (test_u8_conv_to_enc_LDADD): Likewise.
8577         * modules/uniconv/u8-strconv-from-enc-tests
8578         (test_u8_strconv_from_enc_LDADD): Likewise.
8579         * modules/uniconv/u8-strconv-to-enc-tests
8580         (test_u8_strconv_to_enc_LDADD): Likewise.
8581
8582 2007-10-22  Bruno Haible  <bruno@clisp.org>
8583
8584         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
8585         size.
8586
8587 2007-10-22  Eric Blake  <ebb9@byu.net>
8588
8589         Tweak x*printf documentation.
8590         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
8591         variable name and comments.
8592         Suggested by Bruno Haible.
8593
8594 2007-10-22  Bruno Haible  <bruno@clisp.org>
8595
8596         * lib/acl.c (copy_acl): Fix file name in comment.
8597
8598 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8599
8600         Fix Tru64 problem with stdbool.h.
8601         * lib/stdbool.in.h (false, true):
8602         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
8603         Don't declare as an enum in this situation; it runs afoul of Tru64.
8604         Problem reported by Steven M. Schweda in
8605         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
8606
8607 2007-10-22  Eric Blake  <ebb9@byu.net>
8608
8609         Also wrap vf?printf.
8610         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
8611         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
8612         (xvprintf, xvfprintf): New functions.
8613
8614 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8615
8616         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
8617         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
8618
8619         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
8620         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
8621
8622 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8623
8624         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
8625         by Bruno Haible.
8626
8627 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8628
8629         * lib/getloadavg.c
8630         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
8631         Undef `sys' after including sys/table.h, for Tru64 4.0D.
8632
8633         * tests/test-i-ring.c: Work for C89.
8634
8635 2007-10-22  Bruno Haible  <bruno@clisp.org>
8636
8637         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
8638         -1u, in preprocessor expression, so that we don't test for the bug
8639         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
8640         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
8641
8642 2007-10-22  Eric Blake  <ebb9@byu.net>
8643
8644         * tests/test-yesno.sh: Silence stderr during test.
8645
8646 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8647
8648         * modules/crypto/gc-camellia: New file.
8649
8650         * m4/gc-camellia.m4: New file.
8651
8652         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
8653
8654         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
8655
8656 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8657
8658         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
8659         --help to stdout.  Reported by sms@antinode.org (Steven
8660         M. Schweda).
8661
8662 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8663
8664         * users.txt: Fix link to libksba.
8665
8666 2007-10-21  Ben Pfaff  <blp@gnu.org>
8667
8668         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
8669         round.c roundf implementation that depends on floorf and ceilf to
8670         be tested unconditionally.
8671
8672 2007-10-21  Ben Pfaff  <blp@gnu.org>
8673
8674         * m4/check-libm-func.m4: Removed.
8675         * m4/check-math-lib.m4: New file.
8676         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
8677         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
8678         definition and lack of AC_LIBOBJ([roundf]).
8679         * m4/roundl.m4: Ditto, and similarly for roundl.
8680         * modules/round: Reference new m4 file.
8681         * modules/roundf: Ditto.
8682         * modules/roundl: Ditto.
8683         * tests/test-round2.c (main): Use ROUND instead of round.
8684         Bug report from Bruno Haible.
8685
8686 2007-10-21  Bruno Haible  <bruno@clisp.org>
8687
8688         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
8689         context.
8690
8691 2007-10-21  Bruno Haible  <bruno@clisp.org>
8692
8693         * tests/test-wcwidth.c (main): Allow negative result for some control
8694         characters.
8695
8696         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
8697         Needed on OSF/1 5.1.
8698
8699 2007-10-21  Bruno Haible  <bruno@clisp.org>
8700
8701         * tests/test-floorf1.c: Include isnanf.h.
8702         (main): Use isnanf() instead of isnan().
8703         * tests/test-ceilf1.c: Include isnanf.h.
8704         (main): Use isnanf() instead of isnan().
8705         * tests/test-truncf1.c: Include isnanf.h.
8706         (main): Use isnanf() instead of isnan().
8707         * tests/test-roundf1.c: Include isnanf.h.
8708         (main): Use isnanf() instead of isnan().
8709
8710 2007-10-21  Eric Blake  <ebb9@byu.net>
8711
8712         * users.txt: Update URL for m4.
8713
8714 2007-10-21  Bruno Haible  <bruno@clisp.org>
8715
8716         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
8717
8718 2007-10-21  Bruno Haible  <bruno@clisp.org>
8719
8720         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
8721         Git's management files if the CVS files are not present.
8722
8723 2007-10-20  Bruno Haible  <bruno@clisp.org>
8724
8725         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
8726         gcc-3.4.x.
8727
8728 2007-10-20  Ben Pfaff  <blp@gnu.org>
8729
8730         * lib/math.in.h: Declare round, roundf, roundl if we are providing
8731         implementations.
8732         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
8733         * lib/round.c: New file.
8734         * lib/roundf.c: New file.
8735         * lib/roundl.c: New file.
8736         * m4/round.m4: New file.
8737         * m4/roundf.m4: New file.
8738         * m4/roundl.m4: New file.
8739         * m4/check-libm-func-m4: New file.
8740         * modules/math: Replace round, roundf, roundl related @VARS@ in
8741         math.in.h.
8742         * modules/round: New file.
8743         * modules/round-tests: New file.
8744         * modules/roundf: New file.
8745         * modules/roundf-tests: New file.
8746         * modules/roundl: New file.
8747         * modules/roundl-tests: New file.
8748         * tests/test-round1.c: New file.
8749         * tests/test-round2.c: New file.
8750         * tests/test-roundf1.c: New file.
8751         * tests/test-roundf2.c: New file.
8752         * tests/test-roundl.c: New file.
8753         * doc/functions/round.texi: Mention round module.
8754         * doc/functions/roundf.texi: Mention roundf module.
8755         * doc/functions/roundl.texi: Mention roundl module.
8756         * MODULES.html.sh: Mention new modules.
8757         Thanks to Bruno Haible for suggestions.
8758
8759 2007-10-20  Jim Meyering  <meyering@redhat.com>
8760
8761         * lib/xprintf.c: Include <config.h> unconditionally.
8762
8763         Change xprintf's license to GPL.
8764         * modules/xprintf (License): s/LGPL/GPL/, since this module
8765         depends on modules (exit and exitfail) which are GPL.
8766         Suggestion from Bruno Haible.
8767
8768         xprintf fixes.
8769         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
8770         Use a clearer diagnostic.
8771         Patch from Bruno Haible.
8772
8773 2007-10-20  Bruno Haible  <bruno@clisp.org>
8774
8775         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
8776         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
8777         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8778
8779 2007-10-20  Bruno Haible  <bruno@clisp.org>
8780
8781         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
8782         precision in the comparison result > x - 1 or similar.
8783         * tests/test-ceilf2.c (correct_result_p): Likewise.
8784         * tests/test-truncf2.c (correct_result_p): Likewise.
8785         * tests/test-trunc2.c (correct_result_p): Likewise.
8786         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8787
8788 2007-10-20  Bruno Haible  <bruno@clisp.org>
8789
8790         * modules/ceil: New file.
8791         * m4/ceil.m4: New file.
8792         * doc/functions/ceil.texi: Mention the 'ceil' module.
8793
8794 2007-10-20  Bruno Haible  <bruno@clisp.org>
8795
8796         * modules/floor: New file.
8797         * m4/floor.m4: New file.
8798         * doc/functions/floor.texi: Mention the 'floor' module.
8799
8800 2007-10-20  Bruno Haible  <bruno@clisp.org>
8801
8802         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
8803         of %a.
8804         * modules/floorf-tests (Depends-on): Likewise.
8805         * modules/truncf-tests (Depends-on): Likewise.
8806         * modules/trunc-tests (Depends-on): Likewise.
8807         Reported by Ben Pfaff.
8808
8809 2007-10-19  Jim Meyering  <meyering@redhat.com>
8810
8811         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
8812         Don't bother testing specific errno values.  Just test ferror.
8813
8814         New module: xprintf
8815         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
8816
8817 2007-10-19  Bruno Haible  <bruno@clisp.org>
8818
8819         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
8820         syntax.
8821         * modules/javaexec (Makefile.am): Likewise.
8822         * modules/relocatable-prog (Makefile.am): Likewise.
8823         Suggested by Jim Meyering.
8824
8825 2007-10-18  Bruno Haible  <bruno@clisp.org>
8826
8827         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
8828         Reported by Jim Meyering.
8829
8830 2007-10-18  Eric Blake  <ebb9@byu.net>
8831
8832         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
8833
8834 2007-10-18  Bruno Haible  <bruno@clisp.org>
8835
8836         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
8837         the format string into writable memory. Needed in Fortify conditions.
8838
8839 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
8840             Bruno Haible  <bruno@clisp.org>
8841
8842         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
8843         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
8844         * modules/trim (Depends-on): Add mbchar.
8845         (configure.ac): Add gl_FUNC_MBRTOWC.
8846         (Makefile.am): Augment lib_SOURCES.
8847
8848 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
8849
8850         Modify glob.c to use fstatat and dirfd, to simplify it.
8851         Suggested by Eric Blake.
8852         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
8853         Don't include <stdbool.h>; not used.
8854         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
8855         (link_exists_p): Simplify implementation, since we can now assume
8856         dirfd and fstatat.
8857         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
8858
8859 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8860
8861         * gnulib-tool (func_get_dependencies): Fix sed script to
8862         match only tests.
8863
8864 2007-10-17  Bruno Haible  <bruno@clisp.org>
8865
8866         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
8867         allow locale names without encoding suffix.
8868         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
8869         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
8870
8871 2007-10-16  Bruno Haible  <bruno@clisp.org>
8872
8873         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
8874         * lib/getgroups.c (getgroups): Likewise.
8875         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
8876
8877 2007-10-16  Bruno Haible  <bruno@clisp.org>
8878
8879         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
8880         * modules/malloc-posix (License): Likewise.
8881         * modules/realloc-posix (License): Likewise.
8882         * modules/calloc-posix (License): Likewise.
8883         * modules/intprops (License): Change from GPL to LGPL, with
8884         Paul Eggert's approval.
8885
8886 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8887
8888         Merge glibc changes into lib/glob.c.
8889
8890         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
8891         2007-10-15 04:59:03 UTC.  Here are the changes:
8892
8893         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
8894
8895         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
8896
8897         * lib/glob.c: Add some branch prediction throughout.
8898
8899         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
8900
8901         [BZ #5103]
8902         * lib/glob.c (glob): Recognize patterns starting \/.
8903
8904         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
8905
8906         [BZ #3996]
8907         * lib/glob.c (attribute_hidden): Define if not defined.
8908         (glob): Unescape dirname, filename or username when needed and not
8909         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
8910         is NULL.  Handle unescaped [ in pattern without closing ].
8911         Don't pass GLOB_CHECK down to recursive glob for directories.
8912         (__glob_pattern_type): New function.
8913         (__glob_pattern_p): Implement using __glob_pattern_type.
8914         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8915         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8916         Remove unreachable code.
8917
8918         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
8919
8920         * lib/glob.c (glob_in_dir): Add some comments and asserts to
8921         explain why there are no leaks.
8922
8923         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
8924
8925         [BZ #3253]
8926         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
8927         time, rather allocate increasingly bigger arrays of pointers, if
8928         possible with alloca, if too large with malloc.
8929
8930 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
8931
8932         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
8933         Problem reported by H.Merijn Brand in
8934         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
8935         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
8936         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
8937
8938 2007-10-15  Bruno Haible  <bruno@clisp.org>
8939
8940         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
8941         with explicit rpl_ prefix.
8942         * lib/fopen.c (fopen): Likewise.
8943         * lib/freopen.c (freopen): Likewise.
8944         * lib/iconv.c (iconv): Likewise.
8945         * lib/iconv_close.c (iconv_close): Likewise.
8946
8947 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8948
8949         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
8950
8951 2007-10-15  Bruno Haible  <bruno@clisp.org>
8952
8953         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
8954         <stddef.h> instead of <stdlib.h> since we only need NULL.
8955         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8956
8957 2007-10-15  Bruno Haible  <bruno@clisp.org>
8958
8959         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
8960         Replace paragraph talking about LIBOBJS.
8961         Reported by Colin Watson <cjwatson@debian.org>.
8962
8963 2007-10-15  Bruno Haible  <bruno@clisp.org>
8964
8965         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
8966         <stdlib.h> before using NULL.
8967
8968 2007-10-15  Simon Josefsson  <simon@josefsson.org>
8969
8970         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
8971         Reported by Albert Chin <china@thewrittenword.com>.
8972
8973 2007-10-14  Bruno Haible  <bruno@clisp.org>
8974
8975         * modules/iconv_open-utf-tests: New file.
8976         * tests/test-iconv-utf.c: New file.
8977
8978         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
8979         * modules/iconv_open-utf: New file.
8980         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
8981         (iconv, iconv_close): New declarations.
8982         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
8983         be defined.
8984         (iconv_open): Add special handling of conversion between UTF-8 and
8985         UTF-{16,32}{BE,LE}.
8986         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
8987         * lib/iconv_close.c: New file.
8988         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
8989         gl_FUNC_ICONV_OPEN.
8990         (gl_FUNC_ICONV_OPEN): Use it.
8991         (gl_FUNC_ICONV_OPEN_UTF): New macro.
8992         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
8993         and REPLACE_ICONV_UTF.
8994         * modules/iconv_open (Depends-on): Add c-strcase.
8995         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
8996         ICONV_CONST.
8997         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
8998
8999 2007-10-13  Albert Chin  <china@thewrittenword.com>
9000             Bruno Haible  <bruno@clisp.org>
9001
9002         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
9003         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
9004
9005 2007-10-13  Bruno Haible  <bruno@clisp.org>
9006
9007         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
9008         defined, use the ISO C99 inline semantics.
9009         * lib/argp.h (ARGP_EI): Likewise.
9010
9011 2007-10-13  Bruno Haible  <bruno@clisp.org>
9012
9013         Handle 'inline' change in gcc 4.3.0.
9014         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
9015         argp_fmtstream_write, argp_fmtstream_set_lmargin,
9016         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
9017         argp_fmtstream_point): Disable 'extern' declaration if the function
9018         definition is going to be provided inline.
9019         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
9020         semantics, not the ISO C99 inline semantics.
9021         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
9022         'extern' declaration if the function definition is going to be provided
9023         inline.
9024         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
9025         the GNU C inline semantics, not the ISO C99 inline semantics. With
9026         GCC 4.2, avoid a warning.
9027
9028 2007-10-13  Bruno Haible  <bruno@clisp.org>
9029
9030         * lib/freading.h (freading): Enable the use of __freading for
9031         glibc >= 2.7.
9032         * lib/freading.c (freading): Likewise.
9033
9034 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9035
9036         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
9037         "warning: C99 inline functions are not supported; using GNU89".
9038
9039 2007-10-12  Bruno Haible  <bruno@clisp.org>
9040
9041         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
9042         of 2.
9043         * tests/test-ceilf2.c: New file.
9044         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
9045
9046         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
9047         * modules/ceilf-tests: Update.
9048
9049 2007-10-12  Bruno Haible  <bruno@clisp.org>
9050
9051         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
9052         of 2.
9053         * tests/test-floorf2.c: New file.
9054         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
9055
9056         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
9057         * modules/floorf-tests: Update.
9058
9059 2007-10-12  Bruno Haible  <bruno@clisp.org>
9060
9061         * tests/test-trunc2.c: New file.
9062         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
9063
9064         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
9065         * modules/trunc-tests: Update.
9066
9067 2007-10-12  Bruno Haible  <bruno@clisp.org>
9068
9069         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
9070         of 2.
9071         * tests/test-truncf2.c: New file.
9072         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
9073
9074         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
9075         * modules/truncf-tests: Update.
9076
9077 2007-10-11  Eric Blake  <ebb9@byu.net>
9078
9079         Don't claim strerror is broken on Interix.
9080         * doc/functions/strerror.texi (strerror): Known broken systems are
9081         now Solaris 8, and not Interix.
9082         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
9083         Interix on cross-compile.
9084         Reported by Martin Koeppe in
9085         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
9086
9087 2007-10-11  Bruno Haible  <bruno@clisp.org>
9088
9089         * modules/i-ring-tests: New file.
9090         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
9091         instead of assert.
9092
9093 2007-10-11  Bruno Haible  <bruno@clisp.org>
9094
9095         * modules/filenamecat-tests: New file.
9096         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
9097         * lib/filenamecat.c: Remove test code.
9098
9099 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9100
9101         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
9102
9103         * lib/strerror.c: Include <string.h> always, to test interface,
9104         and to remove the need for the dummy.
9105         Include intprops.h to compute width instead of doing it ourselves
9106         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
9107         (strerror): Define it to return NULL if there's no system strerror.
9108         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
9109         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
9110         ancient pre-strerror Unix systems well any more.  Saying "unknown
9111         system error" is enough.
9112         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
9113         simpler strerror.c implementation.
9114         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
9115         Simplify the tests to reflect the simpler strerror implementation.
9116         * modules/strerror (Depends-on): Add intprops.
9117
9118 2007-10-09  Eric Blake  <ebb9@byu.net>
9119
9120         Silence test-fpending.
9121         * modules/fpending-tests (Files): Add wrapper script.
9122         * tests/test-fpending.sh: New file.
9123
9124 2007-10-09  Bruno Haible  <bruno@clisp.org>
9125
9126         * MODULES.html.sh (func_module): Don't create a hyperlink for
9127         function names like 'printf_frexp'.
9128         (Misc): Add crc, memxor.
9129         (Characteristics of floating types): New section.
9130         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
9131         isnanf-nolibm, signbit, trunc, truncf, truncl.
9132         (Enhancements for ISO C 99 functions): New subsection Input/output.
9133         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
9134         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
9135         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
9136         (Compatibility checks for POSIX:2001 functions): Add clock-time.
9137         (Enhancements for POSIX:2001 functions): Add chdir-long.
9138         (File system functions): Add areadlink, chdir-safer, read-file.
9139         Remove cycle-check.
9140         (File system as inode set): New section.
9141         (Date and time): Add gethrxtime.
9142         (Multithreading): Add openmp.
9143         (Internationalization functions): Add localename.
9144         (Unicode string functions): Add unistr/u*-mbsnlen.
9145         (Support for maintaining and releasing projects): Add git-version-gen.
9146         (Lone files): Remove directories.
9147
9148 2007-10-08  Ben Pfaff  <blp@gnu.org>
9149
9150         * lib/xmalloca.h: Fix typo in comment.
9151
9152 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
9153
9154         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
9155         when avoiding problems with integer overflow.  Use a portable test
9156         instead.
9157
9158 2007-10-08  Simon Josefsson  <simon@josefsson.org>
9159
9160         * modules/dummy (License): Change to LGPLv2+.
9161         * modules/float (License): Likewise
9162         * modules/realloc (License): Likewise
9163         * modules/stdlib (License): Likewise
9164
9165 2007-10-07  Bruno Haible  <bruno@clisp.org>
9166
9167         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
9168         * floor.c (TWO_MANT_DIG): Likewise.
9169         * ceil.c (TWO_MANT_DIG): Likewise.
9170         Reported by Ben Pfaff.
9171
9172 2007-10-07  Bruno Haible  <bruno@clisp.org>
9173
9174         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
9175         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
9176         * lib/frexp.c (FUNC): Likewise.
9177         * lib/printf-frexp.h (printf_frexp): Likewise.
9178         * lib/printf-frexpl.h (printf_frexpl): Likewise.
9179         * lib/printf-frexp.c (FUNC): Likewise.
9180         Suggested by Jim Meyering.
9181
9182 2007-10-07  Jim Meyering  <meyering@redhat.com>
9183
9184         Make xnanosleep's integer overflow test more robust.
9185         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
9186         so that gcc-4.3.0 doesn't optimize away this test for overflow.
9187
9188 2007-10-07  Bruno Haible  <bruno@clisp.org>
9189
9190         * NEWS: Mention the license change.
9191
9192         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
9193         abbreviations in the modules files.
9194
9195         Change copyright notice from GPLv2+ to GPLv3+.
9196         * README: Change copyright notice.
9197         * MODULES.html.sh: Likewise.
9198         * build-aux/bootstrap.conf: Likewise.
9199         * build-aux/config.libpath: Likewise.
9200         * build-aux/csharpcomp.sh.in: Likewise.
9201         * build-aux/csharpexec.sh.in: Likewise.
9202         * build-aux/install-reloc: Likewise.
9203         * build-aux/javacomp.sh.in: Likewise.
9204         * build-aux/javaexec.sh.in: Likewise.
9205         * build-aux/ldd.sh.in: Likewise.
9206         * build-aux/reloc-ldflags: Likewise.
9207         * build-aux/relocatable.sh.in: Likewise.
9208         * build-aux/x-to-1.in: Likewise.
9209         * check-module: Likewise.
9210         * config/srclistvars.sh: Likewise.
9211         * gnulib-tool: Likewise.
9212         * lib/acl-internal.h: Likewise.
9213         * lib/acl.c: Likewise.
9214         * lib/acl.h: Likewise.
9215         * lib/acl_entries.c: Likewise.
9216         * lib/areadlink-with-size.c: Likewise.
9217         * lib/areadlink.c: Likewise.
9218         * lib/areadlink.h: Likewise.
9219         * lib/argmatch.c: Likewise.
9220         * lib/argmatch.h: Likewise.
9221         * lib/argp-ba.c: Likewise.
9222         * lib/argp-eexst.c: Likewise.
9223         * lib/argp-fmtstream.c: Likewise.
9224         * lib/argp-fmtstream.h: Likewise.
9225         * lib/argp-fs-xinl.c: Likewise.
9226         * lib/argp-help.c: Likewise.
9227         * lib/argp-namefrob.h: Likewise.
9228         * lib/argp-parse.c: Likewise.
9229         * lib/argp-pin.c: Likewise.
9230         * lib/argp-pv.c: Likewise.
9231         * lib/argp-pvh.c: Likewise.
9232         * lib/argp-xinl.c: Likewise.
9233         * lib/argp.h: Likewise.
9234         * lib/at-func.c: Likewise.
9235         * lib/atanl.c: Likewise.
9236         * lib/backupfile.c: Likewise.
9237         * lib/backupfile.h: Likewise.
9238         * lib/basename.c: Likewise.
9239         * lib/binary-io.h: Likewise.
9240         * lib/byteswap.in.h: Likewise.
9241         * lib/c-stack.c: Likewise.
9242         * lib/c-stack.h: Likewise.
9243         * lib/c-strcasestr.c: Likewise.
9244         * lib/c-strcasestr.h: Likewise.
9245         * lib/c-strstr.c: Likewise.
9246         * lib/c-strstr.h: Likewise.
9247         * lib/c-strtod.c: Likewise.
9248         * lib/calloc.c: Likewise.
9249         * lib/canon-host.c: Likewise.
9250         * lib/canon-host.h: Likewise.
9251         * lib/canonicalize-lgpl.c: Likewise.
9252         * lib/canonicalize.c: Likewise.
9253         * lib/canonicalize.h: Likewise.
9254         * lib/ceil.c: Likewise.
9255         * lib/ceilf.c: Likewise.
9256         * lib/ceill.c: Likewise.
9257         * lib/chdir-long.c: Likewise.
9258         * lib/chdir-long.h: Likewise.
9259         * lib/chdir-safer.c: Likewise.
9260         * lib/chdir-safer.h: Likewise.
9261         * lib/chown.c: Likewise.
9262         * lib/classpath.c: Likewise.
9263         * lib/classpath.h: Likewise.
9264         * lib/clean-temp.c: Likewise.
9265         * lib/clean-temp.h: Likewise.
9266         * lib/cloexec.c: Likewise.
9267         * lib/close-stream.c: Likewise.
9268         * lib/closein.c: Likewise.
9269         * lib/closein.h: Likewise.
9270         * lib/closeout.c: Likewise.
9271         * lib/closeout.h: Likewise.
9272         * lib/concat-filename.c: Likewise.
9273         * lib/copy-file.c: Likewise.
9274         * lib/copy-file.h: Likewise.
9275         * lib/count-one-bits.h: Likewise.
9276         * lib/crc.c: Likewise.
9277         * lib/crc.h: Likewise.
9278         * lib/creat-safer.c: Likewise.
9279         * lib/csharpcomp.c: Likewise.
9280         * lib/csharpcomp.h: Likewise.
9281         * lib/csharpexec.c: Likewise.
9282         * lib/csharpexec.h: Likewise.
9283         * lib/cycle-check.c: Likewise.
9284         * lib/cycle-check.h: Likewise.
9285         * lib/diacrit.c: Likewise.
9286         * lib/diacrit.h: Likewise.
9287         * lib/diffseq.h: Likewise.
9288         * lib/dirchownmod.c: Likewise.
9289         * lib/dirent.in.h: Likewise.
9290         * lib/dirfd.c: Likewise.
9291         * lib/dirfd.h: Likewise.
9292         * lib/dirname.c: Likewise.
9293         * lib/dirname.h: Likewise.
9294         * lib/dummy.c: Likewise.
9295         * lib/dup-safer.c: Likewise.
9296         * lib/dup2.c: Likewise.
9297         * lib/eealloc.h: Likewise.
9298         * lib/error.c: Likewise.
9299         * lib/error.h: Likewise.
9300         * lib/euidaccess.c: Likewise.
9301         * lib/exclude.c: Likewise.
9302         * lib/exclude.h: Likewise.
9303         * lib/execute.c: Likewise.
9304         * lib/execute.h: Likewise.
9305         * lib/exitfail.c: Likewise.
9306         * lib/exitfail.h: Likewise.
9307         * lib/expl.c: Likewise.
9308         * lib/fatal-signal.c: Likewise.
9309         * lib/fatal-signal.h: Likewise.
9310         * lib/fbufmode.c: Likewise.
9311         * lib/fbufmode.h: Likewise.
9312         * lib/fchdir.c: Likewise.
9313         * lib/fchmodat.c: Likewise.
9314         * lib/fchownat.c: Likewise.
9315         * lib/fcntl--.h: Likewise.
9316         * lib/fcntl-safer.h: Likewise.
9317         * lib/fcntl.in.h: Likewise.
9318         * lib/fd-safer.c: Likewise.
9319         * lib/fflush.c: Likewise.
9320         * lib/file-has-acl.c: Likewise.
9321         * lib/file-set.c: Likewise.
9322         * lib/file-type.c: Likewise.
9323         * lib/file-type.h: Likewise.
9324         * lib/fileblocks.c: Likewise.
9325         * lib/filemode.c: Likewise.
9326         * lib/filemode.h: Likewise.
9327         * lib/filename.h: Likewise.
9328         * lib/filenamecat.c: Likewise.
9329         * lib/filenamecat.h: Likewise.
9330         * lib/findprog.c: Likewise.
9331         * lib/findprog.h: Likewise.
9332         * lib/float.in.h: Likewise.
9333         * lib/floor.c: Likewise.
9334         * lib/floorf.c: Likewise.
9335         * lib/floorl.c: Likewise.
9336         * lib/fopen-safer.c: Likewise.
9337         * lib/fopen.c: Likewise.
9338         * lib/fpending.c: Likewise.
9339         * lib/fpending.h: Likewise.
9340         * lib/fprintf.c: Likewise.
9341         * lib/fprintftime.h: Likewise.
9342         * lib/fpucw.h: Likewise.
9343         * lib/fpurge.c: Likewise.
9344         * lib/fpurge.h: Likewise.
9345         * lib/freadable.c: Likewise.
9346         * lib/freadable.h: Likewise.
9347         * lib/freadahead.c: Likewise.
9348         * lib/freadahead.h: Likewise.
9349         * lib/freading.c: Likewise.
9350         * lib/freading.h: Likewise.
9351         * lib/free.c: Likewise.
9352         * lib/freopen.c: Likewise.
9353         * lib/frexp.c: Likewise.
9354         * lib/frexpl.c: Likewise.
9355         * lib/fseek.c: Likewise.
9356         * lib/fseterr.c: Likewise.
9357         * lib/fseterr.h: Likewise.
9358         * lib/fstatat.c: Likewise.
9359         * lib/fstrcmp.c: Likewise.
9360         * lib/fstrcmp.h: Likewise.
9361         * lib/fsusage.c: Likewise.
9362         * lib/fsusage.h: Likewise.
9363         * lib/ftell.c: Likewise.
9364         * lib/ftello.c: Likewise.
9365         * lib/fts-cycle.c: Likewise.
9366         * lib/fts.c: Likewise.
9367         * lib/fts_.h: Likewise.
9368         * lib/full-read.c: Likewise.
9369         * lib/full-read.h: Likewise.
9370         * lib/full-write.c: Likewise.
9371         * lib/full-write.h: Likewise.
9372         * lib/fwritable.c: Likewise.
9373         * lib/fwritable.h: Likewise.
9374         * lib/fwriteerror.c: Likewise.
9375         * lib/fwriteerror.h: Likewise.
9376         * lib/fwriting.c: Likewise.
9377         * lib/fwriting.h: Likewise.
9378         * lib/gcd.c: Likewise.
9379         * lib/gcd.h: Likewise.
9380         * lib/getcwd.c: Likewise.
9381         * lib/getdate.h: Likewise.
9382         * lib/getdate.y: Likewise.
9383         * lib/getdomainname.c: Likewise.
9384         * lib/getdomainname.h: Likewise.
9385         * lib/getgroups.c: Likewise.
9386         * lib/gethostname.c: Likewise.
9387         * lib/gethrxtime.c: Likewise.
9388         * lib/gethrxtime.h: Likewise.
9389         * lib/getloadavg.c: Likewise.
9390         * lib/getndelim2.c: Likewise.
9391         * lib/getndelim2.h: Likewise.
9392         * lib/getnline.c: Likewise.
9393         * lib/getnline.h: Likewise.
9394         * lib/getopt.c: Likewise.
9395         * lib/getopt.in.h: Likewise.
9396         * lib/getopt1.c: Likewise.
9397         * lib/getopt_int.h: Likewise.
9398         * lib/getpagesize.h: Likewise.
9399         * lib/getsubopt.c: Likewise.
9400         * lib/gettime.c: Likewise.
9401         * lib/getugroups.c: Likewise.
9402         * lib/getugroups.h: Likewise.
9403         * lib/getusershell.c: Likewise.
9404         * lib/gl_anyavltree_list1.h: Likewise.
9405         * lib/gl_anyavltree_list2.h: Likewise.
9406         * lib/gl_anyhash_list1.h: Likewise.
9407         * lib/gl_anyhash_list2.h: Likewise.
9408         * lib/gl_anylinked_list1.h: Likewise.
9409         * lib/gl_anylinked_list2.h: Likewise.
9410         * lib/gl_anyrbtree_list1.h: Likewise.
9411         * lib/gl_anyrbtree_list2.h: Likewise.
9412         * lib/gl_anytree_list1.h: Likewise.
9413         * lib/gl_anytree_list2.h: Likewise.
9414         * lib/gl_anytree_oset.h: Likewise.
9415         * lib/gl_anytreehash_list1.h: Likewise.
9416         * lib/gl_anytreehash_list2.h: Likewise.
9417         * lib/gl_array_list.c: Likewise.
9418         * lib/gl_array_list.h: Likewise.
9419         * lib/gl_array_oset.c: Likewise.
9420         * lib/gl_array_oset.h: Likewise.
9421         * lib/gl_avltree_list.c: Likewise.
9422         * lib/gl_avltree_list.h: Likewise.
9423         * lib/gl_avltree_oset.c: Likewise.
9424         * lib/gl_avltree_oset.h: Likewise.
9425         * lib/gl_avltreehash_list.c: Likewise.
9426         * lib/gl_avltreehash_list.h: Likewise.
9427         * lib/gl_carray_list.c: Likewise.
9428         * lib/gl_carray_list.h: Likewise.
9429         * lib/gl_linked_list.c: Likewise.
9430         * lib/gl_linked_list.h: Likewise.
9431         * lib/gl_linkedhash_list.c: Likewise.
9432         * lib/gl_linkedhash_list.h: Likewise.
9433         * lib/gl_list.c: Likewise.
9434         * lib/gl_list.h: Likewise.
9435         * lib/gl_oset.c: Likewise.
9436         * lib/gl_oset.h: Likewise.
9437         * lib/gl_rbtree_list.c: Likewise.
9438         * lib/gl_rbtree_list.h: Likewise.
9439         * lib/gl_rbtree_oset.c: Likewise.
9440         * lib/gl_rbtree_oset.h: Likewise.
9441         * lib/gl_rbtreehash_list.c: Likewise.
9442         * lib/gl_rbtreehash_list.h: Likewise.
9443         * lib/gl_sublist.c: Likewise.
9444         * lib/gl_sublist.h: Likewise.
9445         * lib/group-member.c: Likewise.
9446         * lib/group-member.h: Likewise.
9447         * lib/hard-locale.c: Likewise.
9448         * lib/hard-locale.h: Likewise.
9449         * lib/hash-pjw.c: Likewise.
9450         * lib/hash-pjw.h: Likewise.
9451         * lib/hash-triple.c: Likewise.
9452         * lib/hash.c: Likewise.
9453         * lib/hash.h: Likewise.
9454         * lib/human.c: Likewise.
9455         * lib/human.h: Likewise.
9456         * lib/i-ring.c: Likewise.
9457         * lib/i-ring.h: Likewise.
9458         * lib/idcache.c: Likewise.
9459         * lib/imaxabs.c: Likewise.
9460         * lib/imaxdiv.c: Likewise.
9461         * lib/inet_pton.c: Likewise.
9462         * lib/inet_pton.h: Likewise.
9463         * lib/intprops.h: Likewise.
9464         * lib/inttostr.c: Likewise.
9465         * lib/inttostr.h: Likewise.
9466         * lib/inttypes.in.h: Likewise.
9467         * lib/isapipe.c: Likewise.
9468         * lib/isdir.c: Likewise.
9469         * lib/isnan.c: Likewise.
9470         * lib/isnan.h: Likewise.
9471         * lib/isnanf.c: Likewise.
9472         * lib/isnanf.h: Likewise.
9473         * lib/isnanl-nolibm.h: Likewise.
9474         * lib/isnanl.c: Likewise.
9475         * lib/isnanl.h: Likewise.
9476         * lib/javacomp.c: Likewise.
9477         * lib/javacomp.h: Likewise.
9478         * lib/javaexec.c: Likewise.
9479         * lib/javaexec.h: Likewise.
9480         * lib/javaversion.c: Likewise.
9481         * lib/javaversion.h: Likewise.
9482         * lib/javaversion.java: Likewise.
9483         * lib/lbrkprop.h: Likewise.
9484         * lib/lchmod.h: Likewise.
9485         * lib/lchown.c: Likewise.
9486         * lib/ldexpl.c: Likewise.
9487         * lib/linebreak.c: Likewise.
9488         * lib/linebreak.h: Likewise.
9489         * lib/linebuffer.c: Likewise.
9490         * lib/linebuffer.h: Likewise.
9491         * lib/locale.in.h: Likewise.
9492         * lib/logl.c: Likewise.
9493         * lib/long-options.c: Likewise.
9494         * lib/long-options.h: Likewise.
9495         * lib/lstat.c: Likewise.
9496         * lib/lstat.h: Likewise.
9497         * lib/math.in.h: Likewise.
9498         * lib/mbchar.c: Likewise.
9499         * lib/mbchar.h: Likewise.
9500         * lib/mbfile.h: Likewise.
9501         * lib/mbiter.h: Likewise.
9502         * lib/mbscasecmp.c: Likewise.
9503         * lib/mbscasestr.c: Likewise.
9504         * lib/mbschr.c: Likewise.
9505         * lib/mbscspn.c: Likewise.
9506         * lib/mbslen.c: Likewise.
9507         * lib/mbsncasecmp.c: Likewise.
9508         * lib/mbsnlen.c: Likewise.
9509         * lib/mbspbrk.c: Likewise.
9510         * lib/mbspcasecmp.c: Likewise.
9511         * lib/mbsrchr.c: Likewise.
9512         * lib/mbssep.c: Likewise.
9513         * lib/mbsspn.c: Likewise.
9514         * lib/mbsstr.c: Likewise.
9515         * lib/mbstok_r.c: Likewise.
9516         * lib/mbswidth.c: Likewise.
9517         * lib/mbswidth.h: Likewise.
9518         * lib/mbuiter.h: Likewise.
9519         * lib/memcasecmp.c: Likewise.
9520         * lib/memcasecmp.h: Likewise.
9521         * lib/memchr.c: Likewise.
9522         * lib/memcmp.c: Likewise.
9523         * lib/memcoll.c: Likewise.
9524         * lib/memcoll.h: Likewise.
9525         * lib/memcpy.c: Likewise.
9526         * lib/memrchr.c: Likewise.
9527         * lib/mkancesdirs.c: Likewise.
9528         * lib/mkdir-p.c: Likewise.
9529         * lib/mkdir-p.h: Likewise.
9530         * lib/mkdir.c: Likewise.
9531         * lib/mkdirat.c: Likewise.
9532         * lib/mkdtemp.c: Likewise.
9533         * lib/mkstemp-safer.c: Likewise.
9534         * lib/mkstemp.c: Likewise.
9535         * lib/modechange.c: Likewise.
9536         * lib/modechange.h: Likewise.
9537         * lib/mountlist.c: Likewise.
9538         * lib/mountlist.h: Likewise.
9539         * lib/mpsort.c: Likewise.
9540         * lib/nanosleep.c: Likewise.
9541         * lib/obstack.c: Likewise.
9542         * lib/obstack.h: Likewise.
9543         * lib/open-safer.c: Likewise.
9544         * lib/open.c: Likewise.
9545         * lib/openat-die.c: Likewise.
9546         * lib/openat-priv.h: Likewise.
9547         * lib/openat-proc.c: Likewise.
9548         * lib/openat.c: Likewise.
9549         * lib/openat.h: Likewise.
9550         * lib/pagealign_alloc.c: Likewise.
9551         * lib/pagealign_alloc.h: Likewise.
9552         * lib/physmem.c: Likewise.
9553         * lib/physmem.h: Likewise.
9554         * lib/pipe-safer.c: Likewise.
9555         * lib/pipe.c: Likewise.
9556         * lib/pipe.h: Likewise.
9557         * lib/posixtm.c: Likewise.
9558         * lib/posixtm.h: Likewise.
9559         * lib/posixver.c: Likewise.
9560         * lib/printf-frexp.c: Likewise.
9561         * lib/printf-frexp.h: Likewise.
9562         * lib/printf-frexpl.c: Likewise.
9563         * lib/printf-frexpl.h: Likewise.
9564         * lib/printf.c: Likewise.
9565         * lib/progname.c: Likewise.
9566         * lib/progname.h: Likewise.
9567         * lib/progreloc.c: Likewise.
9568         * lib/putenv.c: Likewise.
9569         * lib/quote.c: Likewise.
9570         * lib/quote.h: Likewise.
9571         * lib/quotearg.c: Likewise.
9572         * lib/quotearg.h: Likewise.
9573         * lib/raise.c: Likewise.
9574         * lib/readline.c: Likewise.
9575         * lib/readline.h: Likewise.
9576         * lib/readlink.c: Likewise.
9577         * lib/readtokens.c: Likewise.
9578         * lib/readtokens.h: Likewise.
9579         * lib/readtokens0.c: Likewise.
9580         * lib/readtokens0.h: Likewise.
9581         * lib/readutmp.c: Likewise.
9582         * lib/readutmp.h: Likewise.
9583         * lib/realloc.c: Likewise.
9584         * lib/relocwrapper.c: Likewise.
9585         * lib/rename-dest-slash.c: Likewise.
9586         * lib/rename.c: Likewise.
9587         * lib/rmdir.c: Likewise.
9588         * lib/rpmatch.c: Likewise.
9589         * lib/safe-read.c: Likewise.
9590         * lib/safe-read.h: Likewise.
9591         * lib/safe-write.c: Likewise.
9592         * lib/safe-write.h: Likewise.
9593         * lib/same-inode.h: Likewise.
9594         * lib/same.c: Likewise.
9595         * lib/same.h: Likewise.
9596         * lib/save-cwd.c: Likewise.
9597         * lib/save-cwd.h: Likewise.
9598         * lib/savedir.c: Likewise.
9599         * lib/savedir.h: Likewise.
9600         * lib/savewd.c: Likewise.
9601         * lib/savewd.h: Likewise.
9602         * lib/search.in.h: Likewise.
9603         * lib/setenv.c: Likewise.
9604         * lib/setenv.h: Likewise.
9605         * lib/settime.c: Likewise.
9606         * lib/sh-quote.c: Likewise.
9607         * lib/sh-quote.h: Likewise.
9608         * lib/sig2str.c: Likewise.
9609         * lib/sig2str.h: Likewise.
9610         * lib/signal.in.h: Likewise.
9611         * lib/signbitd.c: Likewise.
9612         * lib/signbitf.c: Likewise.
9613         * lib/signbitl.c: Likewise.
9614         * lib/sigprocmask.c: Likewise.
9615         * lib/sincosl.c: Likewise.
9616         * lib/sleep.c: Likewise.
9617         * lib/sprintf.c: Likewise.
9618         * lib/sqrtl.c: Likewise.
9619         * lib/stat-time.h: Likewise.
9620         * lib/stdio--.h: Likewise.
9621         * lib/stdio-safer.h: Likewise.
9622         * lib/stdlib--.h: Likewise.
9623         * lib/stdlib-safer.h: Likewise.
9624         * lib/stdlib.in.h: Likewise.
9625         * lib/stpcpy.c: Likewise.
9626         * lib/stpncpy.c: Likewise.
9627         * lib/strchrnul.c: Likewise.
9628         * lib/strcspn.c: Likewise.
9629         * lib/strerror.c: Likewise.
9630         * lib/strftime.c: Likewise.
9631         * lib/strftime.h: Likewise.
9632         * lib/striconveh.c: Likewise.
9633         * lib/striconveh.h: Likewise.
9634         * lib/striconveha.c: Likewise.
9635         * lib/striconveha.h: Likewise.
9636         * lib/stripslash.c: Likewise.
9637         * lib/strnlen1.c: Likewise.
9638         * lib/strnlen1.h: Likewise.
9639         * lib/strtod.c: Likewise.
9640         * lib/strtoimax.c: Likewise.
9641         * lib/strtok_r.c: Likewise.
9642         * lib/strtol.c: Likewise.
9643         * lib/strtoll.c: Likewise.
9644         * lib/strtoul.c: Likewise.
9645         * lib/strtoull.c: Likewise.
9646         * lib/sysexits.in.h: Likewise.
9647         * lib/tempname.c: Likewise.
9648         * lib/tempname.h: Likewise.
9649         * lib/timespec.h: Likewise.
9650         * lib/tls.c: Likewise.
9651         * lib/tls.h: Likewise.
9652         * lib/tmpdir.c: Likewise.
9653         * lib/tmpdir.h: Likewise.
9654         * lib/tmpfile-safer.c: Likewise.
9655         * lib/tmpfile.c: Likewise.
9656         * lib/trigl.c: Likewise.
9657         * lib/trigl.h: Likewise.
9658         * lib/trim.c: Likewise.
9659         * lib/trim.h: Likewise.
9660         * lib/trunc.c: Likewise.
9661         * lib/truncf.c: Likewise.
9662         * lib/truncl.c: Likewise.
9663         * lib/tsearch.c: Likewise.
9664         * lib/unicodeio.c: Likewise.
9665         * lib/unicodeio.h: Likewise.
9666         * lib/unistd--.h: Likewise.
9667         * lib/unistd-safer.h: Likewise.
9668         * lib/unistdio/ulc-fprintf.c: Likewise.
9669         * lib/unistdio/ulc-vfprintf.c: Likewise.
9670         * lib/unlinkdir.c: Likewise.
9671         * lib/unlinkdir.h: Likewise.
9672         * lib/unlocked-io.h: Likewise.
9673         * lib/unsetenv.c: Likewise.
9674         * lib/userspec.c: Likewise.
9675         * lib/utime.c: Likewise.
9676         * lib/utimecmp.c: Likewise.
9677         * lib/utimecmp.h: Likewise.
9678         * lib/utimens.c: Likewise.
9679         * lib/verify.h: Likewise.
9680         * lib/verror.c: Likewise.
9681         * lib/verror.h: Likewise.
9682         * lib/version-etc-fsf.c: Likewise.
9683         * lib/version-etc.c: Likewise.
9684         * lib/version-etc.h: Likewise.
9685         * lib/vfprintf.c: Likewise.
9686         * lib/vprintf.c: Likewise.
9687         * lib/vsprintf.c: Likewise.
9688         * lib/w32spawn.h: Likewise.
9689         * lib/wait-process.c: Likewise.
9690         * lib/wait-process.h: Likewise.
9691         * lib/wcwidth.c: Likewise.
9692         * lib/write-any-file.c: Likewise.
9693         * lib/xalloc-die.c: Likewise.
9694         * lib/xalloc.h: Likewise.
9695         * lib/xasprintf.c: Likewise.
9696         * lib/xgetcwd.c: Likewise.
9697         * lib/xgetcwd.h: Likewise.
9698         * lib/xgetdomainname.c: Likewise.
9699         * lib/xgetdomainname.h: Likewise.
9700         * lib/xgethostname.c: Likewise.
9701         * lib/xmalloc.c: Likewise.
9702         * lib/xmalloca.c: Likewise.
9703         * lib/xmalloca.h: Likewise.
9704         * lib/xmemcoll.c: Likewise.
9705         * lib/xnanosleep.c: Likewise.
9706         * lib/xreadlink.c: Likewise.
9707         * lib/xreadlink.h: Likewise.
9708         * lib/xsetenv.c: Likewise.
9709         * lib/xsetenv.h: Likewise.
9710         * lib/xstriconv.c: Likewise.
9711         * lib/xstriconv.h: Likewise.
9712         * lib/xstrndup.c: Likewise.
9713         * lib/xstrndup.h: Likewise.
9714         * lib/xstrtod.c: Likewise.
9715         * lib/xstrtod.h: Likewise.
9716         * lib/xstrtol-error.c: Likewise.
9717         * lib/xstrtol.c: Likewise.
9718         * lib/xstrtol.h: Likewise.
9719         * lib/xtime.h: Likewise.
9720         * lib/xvasprintf.c: Likewise.
9721         * lib/xvasprintf.h: Likewise.
9722         * lib/yesno.c: Likewise.
9723         * lib/yesno.h: Likewise.
9724         * posix-modules: Likewise.
9725         * tests/test-alloca-opt.c: Likewise.
9726         * tests/test-arcfour.c: Likewise.
9727         * tests/test-arctwo.c: Likewise.
9728         * tests/test-argmatch.c: Likewise.
9729         * tests/test-argp-2.sh: Likewise.
9730         * tests/test-argp.c: Likewise.
9731         * tests/test-arpa_inet.c: Likewise.
9732         * tests/test-array_list.c: Likewise.
9733         * tests/test-array_oset.c: Likewise.
9734         * tests/test-atexit.c: Likewise.
9735         * tests/test-avltree_list.c: Likewise.
9736         * tests/test-avltree_oset.c: Likewise.
9737         * tests/test-avltreehash_list.c: Likewise.
9738         * tests/test-base64.c: Likewise.
9739         * tests/test-binary-io.c: Likewise.
9740         * tests/test-byteswap.c: Likewise.
9741         * tests/test-c-ctype.c: Likewise.
9742         * tests/test-c-strcasecmp.c: Likewise.
9743         * tests/test-c-strcasestr.c: Likewise.
9744         * tests/test-c-strncasecmp.c: Likewise.
9745         * tests/test-c-strstr.c: Likewise.
9746         * tests/test-canonicalize-lgpl.c: Likewise.
9747         * tests/test-canonicalize.c: Likewise.
9748         * tests/test-carray_list.c: Likewise.
9749         * tests/test-ceilf.c: Likewise.
9750         * tests/test-ceill.c: Likewise.
9751         * tests/test-count-one-bits.c: Likewise.
9752         * tests/test-crc.c: Likewise.
9753         * tests/test-dirname.c: Likewise.
9754         * tests/test-fbufmode.c: Likewise.
9755         * tests/test-fcntl.c: Likewise.
9756         * tests/test-fflush.c: Likewise.
9757         * tests/test-floorf.c: Likewise.
9758         * tests/test-floorl.c: Likewise.
9759         * tests/test-fopen.c: Likewise.
9760         * tests/test-fprintf-posix.c: Likewise.
9761         * tests/test-fprintf-posix.h: Likewise.
9762         * tests/test-fpurge.c: Likewise.
9763         * tests/test-freadable.c: Likewise.
9764         * tests/test-freadahead.c: Likewise.
9765         * tests/test-freading.c: Likewise.
9766         * tests/test-freopen.c: Likewise.
9767         * tests/test-frexp.c: Likewise.
9768         * tests/test-frexpl.c: Likewise.
9769         * tests/test-fseek.c: Likewise.
9770         * tests/test-fseeko.c: Likewise.
9771         * tests/test-fseterr.c: Likewise.
9772         * tests/test-fstrcmp.c: Likewise.
9773         * tests/test-ftell.c: Likewise.
9774         * tests/test-ftello.c: Likewise.
9775         * tests/test-fwritable.c: Likewise.
9776         * tests/test-fwriting.c: Likewise.
9777         * tests/test-getaddrinfo.c: Likewise.
9778         * tests/test-getpass.c: Likewise.
9779         * tests/test-gettimeofday.c: Likewise.
9780         * tests/test-hmac-md5.c: Likewise.
9781         * tests/test-hmac-sha1.c: Likewise.
9782         * tests/test-iconv.c: Likewise.
9783         * tests/test-iconvme.c: Likewise.
9784         * tests/test-inttypes.c: Likewise.
9785         * tests/test-isnan.c: Likewise.
9786         * tests/test-isnanf.c: Likewise.
9787         * tests/test-isnanl-nolibm.c: Likewise.
9788         * tests/test-isnanl.c: Likewise.
9789         * tests/test-isnanl.h: Likewise.
9790         * tests/test-ldexpl.c: Likewise.
9791         * tests/test-linked_list.c: Likewise.
9792         * tests/test-linkedhash_list.c: Likewise.
9793         * tests/test-locale.c: Likewise.
9794         * tests/test-localename.c: Likewise.
9795         * tests/test-lock.c: Likewise.
9796         * tests/test-lseek.c: Likewise.
9797         * tests/test-malloca.c: Likewise.
9798         * tests/test-math.c: Likewise.
9799         * tests/test-mbscasecmp.c: Likewise.
9800         * tests/test-mbscasestr1.c: Likewise.
9801         * tests/test-mbscasestr2.c: Likewise.
9802         * tests/test-mbscasestr3.c: Likewise.
9803         * tests/test-mbscasestr4.c: Likewise.
9804         * tests/test-mbschr.c: Likewise.
9805         * tests/test-mbscspn.c: Likewise.
9806         * tests/test-mbsncasecmp.c: Likewise.
9807         * tests/test-mbspbrk.c: Likewise.
9808         * tests/test-mbspcasecmp.c: Likewise.
9809         * tests/test-mbsrchr.c: Likewise.
9810         * tests/test-mbsspn.c: Likewise.
9811         * tests/test-mbsstr1.c: Likewise.
9812         * tests/test-mbsstr2.c: Likewise.
9813         * tests/test-mbsstr3.c: Likewise.
9814         * tests/test-md5.c: Likewise.
9815         * tests/test-memmem.c: Likewise.
9816         * tests/test-netinet_in.c: Likewise.
9817         * tests/test-open.c: Likewise.
9818         * tests/test-printf-frexp.c: Likewise.
9819         * tests/test-printf-frexpl.c: Likewise.
9820         * tests/test-printf-posix.c: Likewise.
9821         * tests/test-printf-posix.h: Likewise.
9822         * tests/test-rbtree_list.c: Likewise.
9823         * tests/test-rbtree_oset.c: Likewise.
9824         * tests/test-rbtreehash_list.c: Likewise.
9825         * tests/test-read-file.c: Likewise.
9826         * tests/test-rijndael.c: Likewise.
9827         * tests/test-search.c: Likewise.
9828         * tests/test-signbit.c: Likewise.
9829         * tests/test-sleep.c: Likewise.
9830         * tests/test-snprintf-posix.c: Likewise.
9831         * tests/test-snprintf-posix.h: Likewise.
9832         * tests/test-snprintf.c: Likewise.
9833         * tests/test-sprintf-posix.c: Likewise.
9834         * tests/test-sprintf-posix.h: Likewise.
9835         * tests/test-stat-time.c: Likewise.
9836         * tests/test-stdbool.c: Likewise.
9837         * tests/test-stdint.c: Likewise.
9838         * tests/test-stdio.c: Likewise.
9839         * tests/test-stdlib.c: Likewise.
9840         * tests/test-stpncpy.c: Likewise.
9841         * tests/test-strcasestr.c: Likewise.
9842         * tests/test-striconv.c: Likewise.
9843         * tests/test-striconveh.c: Likewise.
9844         * tests/test-striconveha.c: Likewise.
9845         * tests/test-string.c: Likewise.
9846         * tests/test-sys_select.c: Likewise.
9847         * tests/test-sys_socket.c: Likewise.
9848         * tests/test-sys_stat.c: Likewise.
9849         * tests/test-sys_time.c: Likewise.
9850         * tests/test-sysexits.c: Likewise.
9851         * tests/test-time.c: Likewise.
9852         * tests/test-tls.c: Likewise.
9853         * tests/test-trunc.c: Likewise.
9854         * tests/test-truncf.c: Likewise.
9855         * tests/test-truncl.c: Likewise.
9856         * tests/test-unistd.c: Likewise.
9857         * tests/test-vasnprintf-posix.c: Likewise.
9858         * tests/test-vasnprintf-posix2.c: Likewise.
9859         * tests/test-vasnprintf.c: Likewise.
9860         * tests/test-vasprintf-posix.c: Likewise.
9861         * tests/test-vasprintf.c: Likewise.
9862         * tests/test-verify.c: Likewise.
9863         * tests/test-vfprintf-posix.c: Likewise.
9864         * tests/test-vprintf-posix.c: Likewise.
9865         * tests/test-vsnprintf-posix.c: Likewise.
9866         * tests/test-vsnprintf.c: Likewise.
9867         * tests/test-vsprintf-posix.c: Likewise.
9868         * tests/test-wchar.c: Likewise.
9869         * tests/test-wctype.c: Likewise.
9870         * tests/test-wcwidth.c: Likewise.
9871         * tests/test-xstrtol.c: Likewise.
9872         * tests/test-xvasprintf.c: Likewise.
9873         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
9874         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
9875         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
9876         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
9877         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
9878         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
9879         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
9880         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
9881         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
9882         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
9883         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
9884         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
9885         * tests/uniname/test-uninames.c: Likewise.
9886         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
9887         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
9888         * tests/unistdio/test-u16-printf1.h: Likewise.
9889         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
9890         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
9891         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
9892         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
9893         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
9894         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
9895         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
9896         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
9897         * tests/unistdio/test-u32-printf1.h: Likewise.
9898         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
9899         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
9900         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
9901         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
9902         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
9903         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
9904         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
9905         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
9906         * tests/unistdio/test-u8-printf1.h: Likewise.
9907         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
9908         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
9909         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
9910         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
9911         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
9912         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
9913         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
9914         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
9915         * tests/unistdio/test-ulc-printf1.h: Likewise.
9916         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
9917         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
9918         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
9919         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
9920         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
9921         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
9922         * tests/uniwidth/test-u16-strwidth.c: Likewise.
9923         * tests/uniwidth/test-u16-width.c: Likewise.
9924         * tests/uniwidth/test-u32-strwidth.c: Likewise.
9925         * tests/uniwidth/test-u32-width.c: Likewise.
9926         * tests/uniwidth/test-u8-strwidth.c: Likewise.
9927         * tests/uniwidth/test-u8-width.c: Likewise.
9928         * tests/uniwidth/test-uc_width.c: Likewise.
9929         * config/srclist-update: Likewise.
9930         (fixlicense): Update to GPLv3+.
9931
9932         Change copyright notice from LGPLv2.1+ to LGPLv3+.
9933         * tests/test-tsearch.c: Change copyright notice.
9934
9935         Change copyright notice from LGPLv2.0+ to LGPLv3+.
9936         * lib/c-strcaseeq.h: Change copyright notice.
9937         * lib/streq.h: Likewise.
9938         * lib/uniconv.h: Likewise.
9939         * lib/uniconv/u-conv-from-enc.h: Likewise.
9940         * lib/uniconv/u-conv-to-enc.h: Likewise.
9941         * lib/uniconv/u-strconv-from-enc.h: Likewise.
9942         * lib/uniconv/u-strconv-to-enc.h: Likewise.
9943         * lib/uniconv/u16-conv-from-enc.c: Likewise.
9944         * lib/uniconv/u16-conv-to-enc.c: Likewise.
9945         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
9946         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
9947         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
9948         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
9949         * lib/uniconv/u32-conv-from-enc.c: Likewise.
9950         * lib/uniconv/u32-conv-to-enc.c: Likewise.
9951         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
9952         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
9953         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
9954         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
9955         * lib/uniconv/u8-conv-from-enc.c: Likewise.
9956         * lib/uniconv/u8-conv-to-enc.c: Likewise.
9957         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
9958         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
9959         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
9960         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
9961         * lib/uniname.h: Likewise.
9962         * lib/uniname/uniname.c: Likewise.
9963         * lib/unistdio.h: Likewise.
9964         * lib/unistdio/u-asnprintf.h: Likewise.
9965         * lib/unistdio/u-asprintf.h: Likewise.
9966         * lib/unistdio/u-printf-args.c: Likewise.
9967         * lib/unistdio/u-printf-args.h: Likewise.
9968         * lib/unistdio/u-printf-parse.h: Likewise.
9969         * lib/unistdio/u-snprintf.h: Likewise.
9970         * lib/unistdio/u-sprintf.h: Likewise.
9971         * lib/unistdio/u-vasprintf.h: Likewise.
9972         * lib/unistdio/u-vsnprintf.h: Likewise.
9973         * lib/unistdio/u-vsprintf.h: Likewise.
9974         * lib/unistdio/u16-asnprintf.c: Likewise.
9975         * lib/unistdio/u16-asprintf.c: Likewise.
9976         * lib/unistdio/u16-printf-parse.c: Likewise.
9977         * lib/unistdio/u16-snprintf.c: Likewise.
9978         * lib/unistdio/u16-sprintf.c: Likewise.
9979         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
9980         * lib/unistdio/u16-u16-asprintf.c: Likewise.
9981         * lib/unistdio/u16-u16-snprintf.c: Likewise.
9982         * lib/unistdio/u16-u16-sprintf.c: Likewise.
9983         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
9984         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
9985         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
9986         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
9987         * lib/unistdio/u16-vasnprintf.c: Likewise.
9988         * lib/unistdio/u16-vasprintf.c: Likewise.
9989         * lib/unistdio/u16-vsnprintf.c: Likewise.
9990         * lib/unistdio/u16-vsprintf.c: Likewise.
9991         * lib/unistdio/u32-asnprintf.c: Likewise.
9992         * lib/unistdio/u32-asprintf.c: Likewise.
9993         * lib/unistdio/u32-printf-parse.c: Likewise.
9994         * lib/unistdio/u32-snprintf.c: Likewise.
9995         * lib/unistdio/u32-sprintf.c: Likewise.
9996         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
9997         * lib/unistdio/u32-u32-asprintf.c: Likewise.
9998         * lib/unistdio/u32-u32-snprintf.c: Likewise.
9999         * lib/unistdio/u32-u32-sprintf.c: Likewise.
10000         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
10001         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
10002         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
10003         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
10004         * lib/unistdio/u32-vasnprintf.c: Likewise.
10005         * lib/unistdio/u32-vasprintf.c: Likewise.
10006         * lib/unistdio/u32-vsnprintf.c: Likewise.
10007         * lib/unistdio/u32-vsprintf.c: Likewise.
10008         * lib/unistdio/u8-asnprintf.c: Likewise.
10009         * lib/unistdio/u8-asprintf.c: Likewise.
10010         * lib/unistdio/u8-printf-parse.c: Likewise.
10011         * lib/unistdio/u8-snprintf.c: Likewise.
10012         * lib/unistdio/u8-sprintf.c: Likewise.
10013         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
10014         * lib/unistdio/u8-u8-asprintf.c: Likewise.
10015         * lib/unistdio/u8-u8-snprintf.c: Likewise.
10016         * lib/unistdio/u8-u8-sprintf.c: Likewise.
10017         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
10018         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
10019         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
10020         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
10021         * lib/unistdio/u8-vasnprintf.c: Likewise.
10022         * lib/unistdio/u8-vasprintf.c: Likewise.
10023         * lib/unistdio/u8-vsnprintf.c: Likewise.
10024         * lib/unistdio/u8-vsprintf.c: Likewise.
10025         * lib/unistdio/ulc-asnprintf.c: Likewise.
10026         * lib/unistdio/ulc-asprintf.c: Likewise.
10027         * lib/unistdio/ulc-printf-parse.c: Likewise.
10028         * lib/unistdio/ulc-snprintf.c: Likewise.
10029         * lib/unistdio/ulc-sprintf.c: Likewise.
10030         * lib/unistdio/ulc-vasnprintf.c: Likewise.
10031         * lib/unistdio/ulc-vasprintf.c: Likewise.
10032         * lib/unistdio/ulc-vsnprintf.c: Likewise.
10033         * lib/unistdio/ulc-vsprintf.c: Likewise.
10034         * lib/unistr.h: Likewise.
10035         * lib/unistr/u-cpy-alloc.h: Likewise.
10036         * lib/unistr/u-cpy.h: Likewise.
10037         * lib/unistr/u-endswith.h: Likewise.
10038         * lib/unistr/u-move.h: Likewise.
10039         * lib/unistr/u-set.h: Likewise.
10040         * lib/unistr/u-startswith.h: Likewise.
10041         * lib/unistr/u-stpcpy.h: Likewise.
10042         * lib/unistr/u-stpncpy.h: Likewise.
10043         * lib/unistr/u-strcat.h: Likewise.
10044         * lib/unistr/u-strcpy.h: Likewise.
10045         * lib/unistr/u-strcspn.h: Likewise.
10046         * lib/unistr/u-strdup.h: Likewise.
10047         * lib/unistr/u-strlen.h: Likewise.
10048         * lib/unistr/u-strncat.h: Likewise.
10049         * lib/unistr/u-strncpy.h: Likewise.
10050         * lib/unistr/u-strnlen.h: Likewise.
10051         * lib/unistr/u-strpbrk.h: Likewise.
10052         * lib/unistr/u-strspn.h: Likewise.
10053         * lib/unistr/u-strstr.h: Likewise.
10054         * lib/unistr/u-strtok.h: Likewise.
10055         * lib/unistr/u16-check.c: Likewise.
10056         * lib/unistr/u16-chr.c: Likewise.
10057         * lib/unistr/u16-cmp.c: Likewise.
10058         * lib/unistr/u16-cpy-alloc.c: Likewise.
10059         * lib/unistr/u16-cpy.c: Likewise.
10060         * lib/unistr/u16-endswith.c: Likewise.
10061         * lib/unistr/u16-mblen.c: Likewise.
10062         * lib/unistr/u16-mbsnlen.c: Likewise.
10063         * lib/unistr/u16-mbtouc-aux.c: Likewise.
10064         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
10065         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
10066         * lib/unistr/u16-mbtouc.c: Likewise.
10067         * lib/unistr/u16-mbtoucr.c: Likewise.
10068         * lib/unistr/u16-move.c: Likewise.
10069         * lib/unistr/u16-next.c: Likewise.
10070         * lib/unistr/u16-prev.c: Likewise.
10071         * lib/unistr/u16-set.c: Likewise.
10072         * lib/unistr/u16-startswith.c: Likewise.
10073         * lib/unistr/u16-stpcpy.c: Likewise.
10074         * lib/unistr/u16-stpncpy.c: Likewise.
10075         * lib/unistr/u16-strcat.c: Likewise.
10076         * lib/unistr/u16-strchr.c: Likewise.
10077         * lib/unistr/u16-strcmp.c: Likewise.
10078         * lib/unistr/u16-strcpy.c: Likewise.
10079         * lib/unistr/u16-strcspn.c: Likewise.
10080         * lib/unistr/u16-strdup.c: Likewise.
10081         * lib/unistr/u16-strlen.c: Likewise.
10082         * lib/unistr/u16-strmblen.c: Likewise.
10083         * lib/unistr/u16-strmbtouc.c: Likewise.
10084         * lib/unistr/u16-strncat.c: Likewise.
10085         * lib/unistr/u16-strncmp.c: Likewise.
10086         * lib/unistr/u16-strncpy.c: Likewise.
10087         * lib/unistr/u16-strnlen.c: Likewise.
10088         * lib/unistr/u16-strpbrk.c: Likewise.
10089         * lib/unistr/u16-strrchr.c: Likewise.
10090         * lib/unistr/u16-strspn.c: Likewise.
10091         * lib/unistr/u16-strstr.c: Likewise.
10092         * lib/unistr/u16-strtok.c: Likewise.
10093         * lib/unistr/u16-to-u32.c: Likewise.
10094         * lib/unistr/u16-to-u8.c: Likewise.
10095         * lib/unistr/u16-uctomb-aux.c: Likewise.
10096         * lib/unistr/u16-uctomb.c: Likewise.
10097         * lib/unistr/u32-check.c: Likewise.
10098         * lib/unistr/u32-chr.c: Likewise.
10099         * lib/unistr/u32-cmp.c: Likewise.
10100         * lib/unistr/u32-cpy-alloc.c: Likewise.
10101         * lib/unistr/u32-cpy.c: Likewise.
10102         * lib/unistr/u32-endswith.c: Likewise.
10103         * lib/unistr/u32-mblen.c: Likewise.
10104         * lib/unistr/u32-mbsnlen.c: Likewise.
10105         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
10106         * lib/unistr/u32-mbtouc.c: Likewise.
10107         * lib/unistr/u32-mbtoucr.c: Likewise.
10108         * lib/unistr/u32-move.c: Likewise.
10109         * lib/unistr/u32-next.c: Likewise.
10110         * lib/unistr/u32-prev.c: Likewise.
10111         * lib/unistr/u32-set.c: Likewise.
10112         * lib/unistr/u32-startswith.c: Likewise.
10113         * lib/unistr/u32-stpcpy.c: Likewise.
10114         * lib/unistr/u32-stpncpy.c: Likewise.
10115         * lib/unistr/u32-strcat.c: Likewise.
10116         * lib/unistr/u32-strchr.c: Likewise.
10117         * lib/unistr/u32-strcmp.c: Likewise.
10118         * lib/unistr/u32-strcpy.c: Likewise.
10119         * lib/unistr/u32-strcspn.c: Likewise.
10120         * lib/unistr/u32-strdup.c: Likewise.
10121         * lib/unistr/u32-strlen.c: Likewise.
10122         * lib/unistr/u32-strmblen.c: Likewise.
10123         * lib/unistr/u32-strmbtouc.c: Likewise.
10124         * lib/unistr/u32-strncat.c: Likewise.
10125         * lib/unistr/u32-strncmp.c: Likewise.
10126         * lib/unistr/u32-strncpy.c: Likewise.
10127         * lib/unistr/u32-strnlen.c: Likewise.
10128         * lib/unistr/u32-strpbrk.c: Likewise.
10129         * lib/unistr/u32-strrchr.c: Likewise.
10130         * lib/unistr/u32-strspn.c: Likewise.
10131         * lib/unistr/u32-strstr.c: Likewise.
10132         * lib/unistr/u32-strtok.c: Likewise.
10133         * lib/unistr/u32-to-u16.c: Likewise.
10134         * lib/unistr/u32-to-u8.c: Likewise.
10135         * lib/unistr/u32-uctomb.c: Likewise.
10136         * lib/unistr/u8-check.c: Likewise.
10137         * lib/unistr/u8-chr.c: Likewise.
10138         * lib/unistr/u8-cmp.c: Likewise.
10139         * lib/unistr/u8-cpy-alloc.c: Likewise.
10140         * lib/unistr/u8-cpy.c: Likewise.
10141         * lib/unistr/u8-endswith.c: Likewise.
10142         * lib/unistr/u8-mblen.c: Likewise.
10143         * lib/unistr/u8-mbsnlen.c: Likewise.
10144         * lib/unistr/u8-mbtouc-aux.c: Likewise.
10145         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
10146         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
10147         * lib/unistr/u8-mbtouc.c: Likewise.
10148         * lib/unistr/u8-mbtoucr.c: Likewise.
10149         * lib/unistr/u8-move.c: Likewise.
10150         * lib/unistr/u8-next.c: Likewise.
10151         * lib/unistr/u8-prev.c: Likewise.
10152         * lib/unistr/u8-set.c: Likewise.
10153         * lib/unistr/u8-startswith.c: Likewise.
10154         * lib/unistr/u8-stpcpy.c: Likewise.
10155         * lib/unistr/u8-stpncpy.c: Likewise.
10156         * lib/unistr/u8-strcat.c: Likewise.
10157         * lib/unistr/u8-strchr.c: Likewise.
10158         * lib/unistr/u8-strcmp.c: Likewise.
10159         * lib/unistr/u8-strcpy.c: Likewise.
10160         * lib/unistr/u8-strcspn.c: Likewise.
10161         * lib/unistr/u8-strdup.c: Likewise.
10162         * lib/unistr/u8-strlen.c: Likewise.
10163         * lib/unistr/u8-strmblen.c: Likewise.
10164         * lib/unistr/u8-strmbtouc.c: Likewise.
10165         * lib/unistr/u8-strncat.c: Likewise.
10166         * lib/unistr/u8-strncmp.c: Likewise.
10167         * lib/unistr/u8-strncpy.c: Likewise.
10168         * lib/unistr/u8-strnlen.c: Likewise.
10169         * lib/unistr/u8-strpbrk.c: Likewise.
10170         * lib/unistr/u8-strrchr.c: Likewise.
10171         * lib/unistr/u8-strspn.c: Likewise.
10172         * lib/unistr/u8-strstr.c: Likewise.
10173         * lib/unistr/u8-strtok.c: Likewise.
10174         * lib/unistr/u8-to-u16.c: Likewise.
10175         * lib/unistr/u8-to-u32.c: Likewise.
10176         * lib/unistr/u8-uctomb-aux.c: Likewise.
10177         * lib/unistr/u8-uctomb.c: Likewise.
10178         * lib/unitypes.h: Likewise.
10179         * lib/uniwidth.h: Likewise.
10180         * lib/uniwidth/cjk.h: Likewise.
10181         * lib/uniwidth/u16-strwidth.c: Likewise.
10182         * lib/uniwidth/u16-width.c: Likewise.
10183         * lib/uniwidth/u32-strwidth.c: Likewise.
10184         * lib/uniwidth/u32-width.c: Likewise.
10185         * lib/uniwidth/u8-strwidth.c: Likewise.
10186         * lib/uniwidth/u8-width.c: Likewise.
10187         * lib/uniwidth/width.c: Likewise.
10188
10189 2007-10-07  Bruno Haible  <bruno@clisp.org>
10190
10191         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
10192         The file is still under LGPL (see modules/inttypes).
10193
10194 2007-10-06  Bruno Haible  <bruno@clisp.org>
10195
10196         * modules/trunc (Dependencies): Add 'extensions'.
10197         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
10198         Reported by Ben Pfaff <blp@gnu.org>.
10199
10200 2007-10-06  Bruno Haible  <bruno@clisp.org>
10201
10202         * modules/freopen-tests: New file.
10203         * tests/test-freopen.c: New file.
10204
10205         * modules/fopen-tests: New file.
10206         * tests/test-fopen.c: New file.
10207
10208         * modules/fopen: New file.
10209         * lib/fopen.c: New file.
10210         * m4/fopen.m4: New file.
10211         * modules/freopen: New file.
10212         * lib/freopen.c: New file.
10213         * m4/freopen.m4: New file.
10214         * lib/stdio.in.h (fopen, freopen): New declarations.
10215         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
10216         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10217         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
10218         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10219         * doc/functions/fopen.texi: Mention the 'fopen' module.
10220         * doc/functions/freopen.texi: Mention the 'freopen' module.
10221
10222 2007-10-06  Bruno Haible  <bruno@clisp.org>
10223
10224         * modules/open-tests: New file.
10225         * tests/test-open.c: New file.
10226
10227         * modules/open: New file.
10228         * lib/open.c: New file.
10229         * m4/open.m4: New file.
10230         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
10231         lib/open.c does.
10232         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
10233         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
10234         macros.
10235         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
10236         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
10237         REPLACE_OPEN.
10238         * doc/functions/open.texi: Mention the 'open' module.
10239
10240 2007-10-04  Bruno Haible  <bruno@clisp.org>
10241
10242         * modules/ceill-tests: New file.
10243         * tests/test-ceill.c: New file.
10244
10245         * modules/ceill: New file.
10246         * lib/ceill.c: Replace entire file.
10247         * m4/ceill.m4: New file.
10248         * lib/math.in.h (ceill): Replace declaration.
10249         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
10250         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
10251         * doc/functions/ceill.texi: Mention the 'ceill' module.
10252         * modules/mathl (Files): Remove lib/ceill.c.
10253         (Depends-on): Add ceill.
10254
10255 2007-10-04  Bruno Haible  <bruno@clisp.org>
10256
10257         * modules/ceilf-tests: New file.
10258         * tests/test-ceilf.c: New file.
10259
10260         * modules/ceilf: New file.
10261         * lib/ceil.c: New file.
10262         * lib/ceilf.c: New file.
10263         * m4/ceilf.m4: New file.
10264         * lib/math.in.h (ceilf): New declaration.
10265         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
10266         HAVE_DECL_CEILF.
10267         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
10268         HAVE_DECL_CEILF.
10269         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
10270
10271 2007-10-04  Bruno Haible  <bruno@clisp.org>
10272
10273         * modules/floorl-tests: New file.
10274         * tests/test-floorl.c: New file.
10275
10276         * modules/floorl: New file.
10277         * lib/floorl.c: Replace entire file.
10278         * m4/floorl.m4: New file.
10279         * lib/math.in.h (floorl): Replace declaration.
10280         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
10281         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
10282         * doc/functions/floorl.texi: Mention the 'floorl' module.
10283         * modules/mathl (Files): Remove lib/floorl.c.
10284         (Depends-on): Add floorl.
10285
10286 2007-10-04  Bruno Haible  <bruno@clisp.org>
10287
10288         * modules/floorf-tests: New file.
10289         * tests/test-floorf.c: New file.
10290
10291         * modules/floorf: New file.
10292         * lib/floor.c: New file.
10293         * lib/floorf.c: New file.
10294         * m4/floorf.m4: New file.
10295         * lib/math.in.h (floorf): New declaration.
10296         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
10297         HAVE_DECL_FLOORF.
10298         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
10299         HAVE_DECL_FLOORF.
10300         * doc/functions/floorf.texi: Mention the 'floorf' module.
10301
10302 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
10303             Bruno Haible  <bruno@clisp.org>
10304
10305         Advertise for the Git server instead of the CVS server.
10306         * doc/gnulib-intro.texi (Steady Development): Mention the Git
10307         repository instead of the CVS one.
10308         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
10309         about all VCS systems generically.
10310         * doc/gnulib.texi (Introduction): Capitalize `Git'.
10311
10312 2007-10-04  Bruno Haible  <bruno@clisp.org>
10313
10314         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
10315         means.
10316         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
10317
10318 2007-10-04  Bruno Haible  <bruno@clisp.org>
10319
10320         * modules/truncl-tests: New file.
10321         * tests/test-truncl.c: New file.
10322
10323         * modules/truncl: New file.
10324         * lib/truncl.c: New file.
10325         * m4/truncl.m4: New file.
10326         * lib/math.in.h (truncl): New declaration.
10327         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
10328         HAVE_DECL_TRUNCL.
10329         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
10330         HAVE_DECL_TRUNCL.
10331         * doc/functions/truncl.texi: Mention the 'truncl' module.
10332
10333 2007-10-04  Bruno Haible  <bruno@clisp.org>
10334
10335         * modules/truncf-tests: New file.
10336         * tests/test-truncf.c: New file.
10337
10338         * modules/truncf: New file.
10339         * lib/trunc.c: Make paramerizable through USE_* macros.
10340         * lib/truncf.c: New file.
10341         * m4/truncf.m4: New file.
10342         * lib/math.in.h (truncf): New declaration.
10343         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
10344         HAVE_DECL_TRUNCF.
10345         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
10346         HAVE_DECL_TRUNCF.
10347         * doc/functions/truncf.texi: Mention the 'truncf' module.
10348
10349 2007-10-03  Bruno Haible  <bruno@clisp.org>
10350
10351         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
10352         augmentation also for tests modules.
10353         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
10354         * modules/atexit-tests (Makefile.am): Likewise.
10355         * modules/binary-io-tests (Makefile.am): Likewise.
10356         * modules/c-strcase-tests (Makefile.am): Likewise.
10357         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
10358         * modules/canonicalize-tests (Makefile.am): Likewise.
10359         * modules/closein-tests (Makefile.am): Likewise.
10360         * modules/fprintf-posix-tests (Makefile.am): Likewise.
10361         * modules/freadahead-tests (Makefile.am): Likewise.
10362         * modules/fseek-tests (Makefile.am): Likewise.
10363         * modules/fseeko-tests (Makefile.am): Likewise.
10364         * modules/ftell-tests (Makefile.am): Likewise.
10365         * modules/ftello-tests (Makefile.am): Likewise.
10366         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
10367         * modules/isnanl-tests (Makefile.am): Likewise.
10368         * modules/lseek-tests (Makefile.am): Likewise.
10369         * modules/mbscasecmp-tests (Makefile.am): Likewise.
10370         * modules/mbscasestr-tests (Makefile.am): Likewise.
10371         * modules/mbschr-tests (Makefile.am): Likewise.
10372         * modules/mbscspn-tests (Makefile.am): Likewise.
10373         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
10374         * modules/mbspbrk-tests (Makefile.am): Likewise.
10375         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
10376         * modules/mbsrchr-tests (Makefile.am): Likewise.
10377         * modules/mbsspn-tests (Makefile.am): Likewise.
10378         * modules/mbsstr-tests (Makefile.am): Likewise.
10379         * modules/printf-posix-tests (Makefile.am): Likewise.
10380         * modules/snprintf-posix-tests (Makefile.am): Likewise.
10381         * modules/sprintf-posix-tests (Makefile.am): Likewise.
10382         * modules/tsearch-tests (Makefile.am): Likewise.
10383         * modules/uniname/uniname-tests (Makefile.am): Likewise.
10384         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
10385         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
10386         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
10387         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
10388         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
10389         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
10390         * modules/vprintf-posix-tests (Makefile.am): Likewise.
10391         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
10392         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
10393         * modules/xstrtoimax-tests (Makefile.am): Likewise.
10394         * modules/xstrtol-tests (Makefile.am): Likewise.
10395         * modules/xstrtoumax-tests (Makefile.am): Likewise.
10396         * modules/yesno-tests (Makefile.am): Likewise.
10397
10398 2007-10-03  Bruno Haible  <bruno@clisp.org>
10399
10400         * modules/trunc-tests: New file.
10401         * tests/test-trunc.c: New file.
10402
10403         * modules/trunc: New file.
10404         * lib/trunc.c: New file.
10405         * m4/trunc.m4: New file.
10406         * lib/math.in.h (trunc): New declaration.
10407         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
10408         HAVE_DECL_TRUNC.
10409         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
10410         HAVE_DECL_TRUNC.
10411         * doc/functions/trunc.texi: Mention the 'trunc' module.
10412
10413 2007-10-03  Bruno Haible  <bruno@clisp.org>
10414
10415         * tests/test-fpending.c: New file, mostly copied
10416         from coreutils/lib/t-fpending.c.
10417         * modules/fpending-tests: New file.
10418
10419 2007-10-03  Bruno Haible  <bruno@clisp.org>
10420
10421         Port the stdio extensions to QNX (untested).
10422         * lib/fseterr.c (fseterr): Add support for QNX.
10423         * lib/fbufmode.c (fbufmode): Likewise.
10424         * lib/freadable.c (freadable): Likewise.
10425         * lib/fwritable.c (fwritable): Likewise.
10426         * lib/freading.c (freading): Likewise.
10427         * lib/fwriting.c (fwriting): Likewise.
10428         * lib/freadahead.c (freadahed): Likewise.
10429         * lib/fpurge.c (fpurge): Likewise.
10430         * lib/fseeko.c (rpl_fseeko): Likewise.
10431
10432 2007-10-03  Bruno Haible  <bruno@clisp.org>
10433             Jim Meyering  <jim@meyering.net>
10434             Eric Blake  <ebb9@byu.net>
10435
10436         * doc/relocatable.texi: Use @command instead of @program.
10437
10438 2007-10-02  Jim Meyering  <jim@meyering.net>
10439
10440         Perform one more "_.h" -> ".in.h" substitution.
10441         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
10442         instead of unistd_.h here, too.
10443
10444 2007-10-01  Bruno Haible  <bruno@clisp.org>
10445
10446         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
10447         Needed for the alloca-opt module.
10448
10449 2007-09-30  Bruno Haible  <bruno@clisp.org>
10450
10451         * lib/alloca.in.h: Renamed from lib/alloca_.h.
10452         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
10453         alloca_.h.
10454         * lib/argz.in.h: Renamed from lib/argz_.h.
10455         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
10456         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
10457         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
10458         byteswap_.h.
10459         * lib/dirent.in.h: Renamed from lib/dirent_.h.
10460         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
10461         dirent_.h.
10462         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
10463         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
10464         fcntl_.h.
10465         * lib/float.in.h: Renamed from lib/float_.h.
10466         * modules/float (Files, Makefile.am): Use float.in.h instead of
10467         float_.h.
10468         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
10469         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
10470         fnmatch_.h.
10471         * lib/getopt.in.h: Renamed from lib/getopt_.h.
10472         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
10473         getopt_.h.
10474         * lib/glob.in.h: Renamed from lib/glob_.h.
10475         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
10476         * lib/iconv.in.h: Renamed from lib/iconv_.h.
10477         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
10478         iconv_.h.
10479         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
10480         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
10481         inttypes_.h.
10482         * lib/locale.in.h: Renamed from lib/locale_.h.
10483         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
10484         locale_.h.
10485         * lib/math.in.h: Renamed from lib/math_.h.
10486         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
10487         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
10488         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
10489         of netinet_in_.h. Add dependency.
10490         * lib/poll.in.h: Renamed from lib/poll_.h.
10491         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
10492         * lib/search.in.h: Renamed from lib/search_.h.
10493         * modules/search (Files, Makefile.am): Use search.in.h instead of
10494         search_.h.
10495         * lib/signal.in.h: Renamed from lib/signal_.h.
10496         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
10497         _signal.h.
10498         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
10499         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
10500         stdbool_.h.
10501         * lib/stdint.in.h: Renamed from lib/stdint_.h.
10502         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
10503         stdint_.h.
10504         * lib/stdio.in.h: Renamed from lib/stdio_.h.
10505         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
10506         stdio_.h.
10507         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
10508         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
10509         stdlib_.h.
10510         * lib/string.in.h: Renamed from lib/string_.h.
10511         * modules/string (Files, Makefile.am): Use string.in.h instead of
10512         string_.h.
10513         * doc/gnulib-tool.texi (Initial import): Update.
10514         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
10515         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
10516         of sys_select_.h. Add dependency.
10517         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
10518         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
10519         of sys_socket_.h.
10520         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
10521         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
10522         sys_stat_.h.
10523         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
10524         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
10525         sys_time_.h.
10526         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
10527         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
10528         sysexits_.h.
10529         * lib/time.in.h: Renamed from lib/time_.h.
10530         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
10531         * lib/unistd.in.h: Renamed from lib/unistd_.h.
10532         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
10533         unistd_.h.
10534         * lib/wchar.in.h: Renamed from lib/wchar_.h.
10535         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
10536         wchar_.h.
10537         * lib/wctype.in.h: Renamed from lib/wctype_.h.
10538         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
10539         wctype_.h.
10540         * build-aux/bootstrap (slurp): Update.
10541         * lib/.cppi-disable: Update.
10542
10543 2007-09-30  Bruno Haible  <bruno@clisp.org>
10544
10545         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
10546         Needed on BeOS.
10547
10548 2007-09-30  Bruno Haible  <bruno@clisp.org>
10549
10550         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
10551
10552 2007-09-29  Bruno Haible  <bruno@clisp.org>
10553
10554         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
10555
10556 2007-09-29  Bruno Haible  <bruno@clisp.org>
10557
10558         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
10559         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
10560         * build-aux/install-reloc: Compile also areadlink.c.
10561         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
10562
10563 2007-09-29  Bruno Haible  <bruno@clisp.org>
10564
10565         * gnulib-tool (func_emit_initmacro_done): Indentation.
10566
10567 2007-09-29  Bruno Haible  <bruno@clisp.org>
10568
10569         * README: Add CVS checkout update instructions.
10570         Info from Bob Proulx <bob@proulx.com>.
10571
10572 2007-09-28  Eric Blake  <ebb9@byu.net>
10573
10574         Provide move-if-change.
10575         * build-aux/move-if-change: New file, based on best practice
10576         rather than any canonical upstream location.
10577
10578 2007-09-28  Jim Meyering  <jim@meyering.net>
10579
10580         Fix canonicalize loop-detection corner case.
10581         Do not attempt to stat the symlink values stored via seen_triple.
10582         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
10583         on linux-2.6.18, (but not 2.6.22).
10584         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
10585         triple_compare.  The former compares dev,ino,filename, while the latter
10586         would actually stat dirname(filename) when dev and ino were equal.
10587         * lib/hash-triple.c: Install <string.h>.
10588         (STREQ): Define.
10589         (triple_compare_ino_str): New function.
10590         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
10591
10592 2007-09-28  Eric Blake  <ebb9@byu.net>
10593
10594         Enforce that AC_REPLACE_FUNCS files exist.
10595         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
10596         override check for typos.
10597
10598         Fix test-closein on Solaris 10.
10599         * tests/test-closein.c (main): Don't assume stdin can be inherited
10600         closed on all systems.
10601         * tests/test-closein.sh: Likewise.
10602         Reported by Piotr Tarnowski.
10603
10604 2007-09-28  Jim Meyering  <jim@meyering.net>
10605
10606         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
10607
10608 2007-09-27  Jim Meyering  <jim@meyering.net>
10609
10610         canonicalize: Avoid a false-positive cycle failure.
10611         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
10612         Sort.  Remove cycle-check.
10613         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
10614         not cycle-check.h.
10615         (seen_triple): New function.
10616         (canonicalize_filename_mode): Use it instead of cycle-check.
10617         * tests/test-canonicalize.c: Add a test for this bug.
10618         * tests/test-canonicalize.sh: Set up and run the test.
10619
10620         New module, file-set, from coreutils.
10621         * modules/file-set: Define it.
10622         * lib/file-set.c, lib/file-set.h: Implement.
10623
10624         New module, hash-triple, from coreutils.
10625         * modules/hash-triple: Define it.
10626         * lib/hash-triple.c, lib/hash-triple.h: Implement.
10627
10628 2007-09-25  Eric Blake  <ebb9@byu.net>
10629
10630         Fix strerror on Interix.
10631         * lib/string_.h (strerror): Declare replacement.
10632         * doc/functions/strerror.texi (strerror): Document the Interix
10633         shortcoming.
10634         * modules/string (Makefile.am): Support new hooks.
10635         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
10636         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
10637         gl_FUNC_STRERROR_SEPARATE.
10638         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
10639         * lib/strerror.c (rpl_strerror): Provide replacement.
10640         * modules/strerror (Depends-on): Add string.
10641         (configure.ac): Detect use of module.
10642         * tests/test-strerror.c: New file.
10643         * modules/strerror-tests: New test module.
10644         * modules/argp (Depends-on): Add strerror.
10645         * modules/error (Depends-on): Likewise.
10646         Reported by Martin Koeppe.
10647
10648 2007-09-24  Bruno Haible  <bruno@clisp.org>
10649
10650         * README: Update git instructions.
10651
10652 2007-09-24  Eric Blake  <ebb9@byu.net>
10653
10654         Revert fpending breakage from 2007-09-08.
10655         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
10656         __fpending.c.
10657
10658 2007-09-24  Jim Meyering  <jim@meyering.net>
10659
10660         filenamecat.c: Add a test.
10661         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
10662         showing how the function works when DIR is the empty string.
10663
10664 2007-09-21  Simon Josefsson  <simon@josefsson.org>
10665
10666         * tests/test-canonicalize.sh: Turn on executable bit.
10667
10668 2007-09-19  Eric Blake  <ebb9@byu.net>
10669
10670         * README: Update CVS instructions.
10671
10672 2007-09-18  Bruno Haible  <bruno@clisp.org>
10673
10674         * modules/areadlink: New file.
10675         * lib/areadlink.h (areadlink): New declaration.
10676         * lib/areadlink.c: New file, based on lib/xreadlink.c.
10677
10678 2007-09-17  Jim Meyering  <jim@meyering.net>
10679
10680         * lib/savewd.c (ESTALE) [!defined]: Define.
10681         Reported to be required on Interix by Martin Koeppe.
10682
10683 2007-09-17  Bruno Haible  <bruno@clisp.org>
10684
10685         * gnulib-tool (func_version): Use $version.
10686
10687 2007-09-16  Bruno Haible  <bruno@clisp.org>
10688
10689         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
10690         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
10691         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
10692         Reported by Greg Schafer <gschafer@zip.com.au>.
10693
10694 2007-09-15  Bruno Haible  <bruno@clisp.org>
10695
10696         * gnulib-tool (sed): Try a little harder to make bash understand the
10697         alias.
10698         Reported by Bruce Korb <bruce.korb@gmail.com>.
10699
10700 2007-09-13  Eric Blake  <ebb9@byu.net>
10701
10702         * ChangeLog: Remove conflict markers.
10703
10704 2007-09-13  Simon Josefsson  <simon@josefsson.org>
10705
10706         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
10707         Reported by Bruno Haible <bruno@clisp.org>.
10708
10709 2007-09-12  Bruno Haible  <bruno@clisp.org>
10710
10711         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
10712         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
10713         is not defined.
10714
10715 2007-09-12  Eric Blake  <ebb9@byu.net>
10716
10717         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
10718         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
10719         Autoconf definition.
10720         * modules/euidaccess (Depends-on): Add extensions, for
10721         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
10722         * modules/fnmatch (Depends-on): Likewise.
10723         * modules/getaddrinfo (Depends-on): Likewise.
10724         * modules/getdelim (Depends-on): Likewise.
10725         * modules/getline (Depends-on): Likewise.
10726         * modules/getsubopt (Depends-on): Likewise.
10727         * modules/gettext (Depends-on): Likewise.
10728         * modules/group-member (Depends-on): Likewise.
10729         * modules/mbchar (Depends-on): Likewise.
10730         * modules/memmem (Depends-on): Likewise.
10731         * modules/mempcpy (Depends-on): Likewise.
10732         * modules/memrchr (Depends-on): Likewise.
10733         * modules/pagealign_alloc (Depends-on): Likewise.
10734         * modules/readutmp (Depends-on): Likewise.
10735         * modules/stpcpy (Depends-on): Likewise.
10736         * modules/stpncpy (Depends-on): Likewise.
10737         * modules/strchrnul (Depends-on): Likewise.
10738         * modules/strndup (Depends-on): Likewise.
10739         * modules/strsep (Depends-on): Likewise.
10740         * modules/strverscmp (Depends-on): Likewise.
10741         * modules/vasprintf (Depends-on): Likewise.
10742         * modules/wcwidth (Depends-on): Likewise.
10743         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
10744         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
10745         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
10746         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
10747         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
10748         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10749         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
10750         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
10751         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
10752         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
10753         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
10754         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
10755         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
10756         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
10757         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
10758         * m4/readutmp.m4 (gl_READUTMP): Likewise.
10759         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10760         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
10761         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
10762         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
10763         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
10764         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
10765         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
10766         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
10767         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
10768         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
10769         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
10770         so that lock.m4 can be used in gettext without extensions module.
10771
10772 2007-09-11  Bruno Haible  <bruno@clisp.org>
10773
10774         * m4/isc-posix.m4: Remove file.
10775         Suggested by Eric Blake.
10776
10777 2007-09-11  Eric Blake  <ebb9@byu.net>
10778
10779         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
10780
10781 2007-09-10  Bruno Haible  <bruno@clisp.org>
10782
10783         * posix-modules: Fix typo in error message.
10784         Reported by Matt <mkraai@beckman.com>.
10785
10786 2007-09-09  Bruno Haible  <bruno@clisp.org>
10787
10788         * doc/functions/getdelim.texi: Update list of platforms lacking the
10789         function.
10790         * doc/functions/getline.texi: Likewise.
10791
10792 2007-09-09  Jim Meyering  <jim@meyering.net>
10793
10794         * lib/hash.c (hash_initialize): Detect calloc failure.
10795         Reported by Bruno Haible.
10796
10797 2007-09-09  Bruno Haible  <bruno@clisp.org>
10798
10799         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
10800         malloc or realloc fails.
10801
10802 2007-09-09  Bruno Haible  <bruno@clisp.org>
10803
10804         * modules/getcwd (Depends-on): Add malloc-posix.
10805         * modules/glob (Depends-on): Likewise.
10806         * modules/putenv (Depends-on): Likewise.
10807         * modules/strdup (Depends-on): Likewise.
10808         * modules/getdelim (Depends-on): Add realloc-posix.
10809         * modules/read-file (Depends-on): Likewise.
10810
10811 2007-09-09  Bruno Haible  <bruno@clisp.org>
10812
10813         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
10814         (gl_FUNC_MALLOC_POSIX): Require it.
10815         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
10816         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
10817         * modules/realloc (Files): Add m4/malloc.m4.
10818         * modules/calloc (Files): Likewise.
10819
10820 2007-09-09  Bruno Haible  <bruno@clisp.org>
10821
10822         * modules/malloc-posix: New file.
10823         * modules/malloc (Depends-on): Add malloc-posix.
10824         * lib/malloc.c: Include errno.h.
10825         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
10826         and a POSIX-compatible malloc into a single function. Set ENOMEM
10827         when returning NULL.
10828         * m4/malloc.m4: New file.
10829         * doc/functions/malloc.texi: Mention the malloc-posix module.
10830         * lib/stdlib_.h (malloc): New declaration.
10831         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10832         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
10833         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
10834         and HAVE_MALLOC_POSIX.
10835
10836 2007-09-09  Bruno Haible  <bruno@clisp.org>
10837
10838         * modules/realloc-posix: New file.
10839         * modules/realloc (Depends-on): Add realloc-posix.
10840         * lib/realloc.c: Include errno.h.
10841         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
10842         and a POSIX-compatible realloc into a single function. Set ENOMEM
10843         when returning NULL.
10844         * m4/realloc.m4: New file.
10845         * doc/functions/realloc.texi: Mention the realloc-posix module.
10846         * lib/stdlib_.h (realloc): New declaration.
10847         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10848         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
10849         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
10850         and HAVE_REALLOC_POSIX.
10851
10852 2007-09-09  Bruno Haible  <bruno@clisp.org>
10853
10854         * modules/calloc-posix: New file.
10855         * modules/calloc (Depends-on): Add calloc-posix.
10856         * lib/calloc.c: Include errno.h.
10857         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
10858         and a POSIX-compatible calloc into a single function. Set ENOMEM
10859         when returning NULL.
10860         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
10861         * doc/functions/calloc.texi: Mention the calloc-posix module.
10862         * lib/stdlib_.h (calloc): New declaration.
10863         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10864         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
10865         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
10866         and HAVE_CALLOC_POSIX.
10867
10868 2007-09-09  Bruno Haible  <bruno@clisp.org>
10869
10870         Allow for modules to show an arbitrary notice.
10871         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
10872         * gnulib-tool: New option --extract-notice.
10873         (func_usage): Document it.
10874         (sed_extract_prog): Update.
10875         (func_get_notice): New function.
10876         (func_modules_notice): New function.
10877         (func_import, func_create_testdir): Invoke it.
10878         Suggested by Jim Meyering.
10879
10880 2007-09-09  Bruno Haible  <bruno@clisp.org>
10881
10882         * gnulib-tool: New options --verbose, --quiet.
10883         (func_usage): Document them.
10884         (verbose): New variable.
10885         (func_execute_command): New function.
10886         (func_import): Don't show the module list and the file list if
10887         $verbose < 0.
10888         (func_create_testdir): Likewise. Use func_execute_command.
10889         (func_create_megatestdir): Use func_execute_command.
10890
10891 2007-09-08  Bruno Haible  <bruno@clisp.org>
10892
10893         * gnulib-tool (func_import): Prefer rsync over wget when available,
10894         for fetching the PO files.
10895
10896 2007-09-08  Bruno Haible  <bruno@clisp.org>
10897
10898         * posix-modules: New file. Portions copied from gnulib-tool.
10899         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
10900
10901 2007-09-08  Jim Meyering  <jim@meyering.net>
10902
10903         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
10904         * lib/fpending.h: Rename from __fpending.h.
10905         * lib/fpending.c: Rename from __fpending.c.
10906         Include "fpending.h", not "__fpending.h".
10907         * lib/__fpending.h, lib/__fpending.c: Remove files.
10908         * modules/fpending (Files): Reflect new file names.
10909         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
10910
10911 2007-09-08  Bruno Haible  <bruno@clisp.org>
10912
10913         * m4/inttypes-h.m4: Remove stub file.
10914
10915 2007-09-07  Simon Josefsson  <simon@josefsson.org>
10916
10917         * doc/headers/stdint.texi: Discuss #include_next issue.
10918
10919 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10920
10921         * build-aux/bootstrap: Remove obsolete comment about wget --help.
10922
10923 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10924
10925         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
10926         in variable name.
10927
10928 2007-09-03  Jim Meyering  <jim@meyering.net>
10929
10930         New module: git-version-gen.
10931         * modules/git-version-gen: New file.
10932
10933         Import changes from coreutils for bootstrap script.
10934
10935         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
10936
10937         bootstrap: uses rsync to download the .po files
10938         * build-aux/bootstrap (po_download_command_format): New global.
10939         (download_po_files): Use rsync.
10940         (update_po_files): Don't remove .po files after download,
10941         so future rsync runs can take advantage of the copies.
10942
10943         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
10944
10945         Solve the unnecessary-.po-file-regeneration problem once and for all.
10946         * build-aux/bootstrap (download_po_files): New function, renamed from
10947         get_translations.  Now, downloads, but doesn't update LINGUAS.
10948         (update_po_files): New function.
10949
10950         bootstrap: Ignore more.
10951         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
10952         uniwidth to e.g., lib/.gitignore.
10953         (slurp): Handle the sys_stat_.h -> sys mapping, too.
10954
10955         * build-aux/bootstrap: New setting: vc_ignore.
10956         (insert_sorted_if_absent): Create $file if absent.
10957         Adapt to new, possibly empty, list: $vc_ignore.
10958
10959         bootstrap: generate more ignorable names
10960         * build-aux/bootstrap (slurp): When generating ignorable names,
10961         also map .sin to .sed, .gperf to .c, and .y to .c.
10962
10963 2007-09-03  Jim Meyering  <jim@meyering.net>
10964
10965         * build-aux/git-version-gen: New file, from coreutils.  For details, see
10966         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
10967
10968 2007-09-02  Bruno Haible  <bruno@clisp.org>
10969
10970         Fix mis-recognition of 'mcs' on QNX 6.
10971         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
10972         output contains the string "Mono".
10973         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
10974         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
10975
10976 2007-09-01  Bruno Haible  <bruno@clisp.org>
10977
10978         Fix collision between uniwidth/* and linebreak modules.
10979         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
10980         u32_width): Remove declarations.
10981         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
10982         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
10983         streq3, streq2, streq1, streq0): Remove functions.
10984         (STREQ): Remove macro.
10985         (is_cjk_encoding): Remove function.
10986         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
10987         (uc_width, u8_width, u16_width, u32_width): Remove functions.
10988         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
10989         * NEWS: Document the change.
10990
10991 2007-09-01  Bruno Haible  <bruno@clisp.org>
10992
10993         * lib/streq.h: Add double-inclusion guard.
10994
10995 2007-09-01  Karl Berry  <karl@gnu.org>
10996
10997         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
10998
10999 2007-08-28  Jim Meyering  <jim@meyering.net>
11000
11001         Rename mreadlink_with_size to areadlink_with_size.
11002         * NEWS: Document the change.
11003         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
11004         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
11005         * lib/mreadlink.h: Rename this to...
11006         * lib/areadlink.h: ...this.
11007         * modules/mreadlink-with-size: Rename this to...
11008         * modules/areadlink-with-size: ...this.
11009         * lib/canonicalize.c: Reflect the renaming.
11010         * modules/canonicalize: Likewise.
11011
11012 2007-08-26  Bruno Haible  <bruno@clisp.org>
11013
11014         * gnulib-tool (func_import): When deciding which files to remove,
11015         consider also dangling symbolic links.
11016         Reported by Eric Blake.
11017
11018 2007-08-26  Bruno Haible  <bruno@clisp.org>
11019
11020         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
11021
11022 2007-08-23  Simon Josefsson  <simon@josefsson.org>
11023
11024         * lib/readline.c: Don't include getline.h, the prototype is now
11025         found in stdio.h.
11026
11027 2007-08-23  Jim Meyering  <jim@meyering.net>
11028
11029         Getdelim touchup.
11030         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
11031         around the funlockfile call, since funlockfile never sets errno.
11032         Don't set errno upon failed realloc.
11033
11034 2007-08-22  Eric Blake  <ebb9@byu.net>
11035
11036         Getline touchups.
11037         * lib/getdelim.c (getdelim): Revert regression that required *n to
11038         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
11039         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
11040         getdelim, rather than whether implementation is missing.
11041         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
11042         * lib/stdio_.h (getline): Also declare if replacement is
11043         required.
11044         * doc/functions/getdelim.texi: New file.
11045         * doc/functions/getline.texi: Likewise.
11046         * doc/gnulib.texi (Function Substitutes): Add new files.
11047         Reported by Bruno Haible.
11048
11049 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
11050
11051         * users.txt: Add Guile.
11052
11053 2007-08-22  Eric Blake  <ebb9@byu.net>
11054
11055         * tests/test-getdelim.c (main): Use remove, not unlink.
11056         * tests/test-getline.c (main): Likewise.
11057
11058         Move getline and getdelim into stdio.h, per POSIX 200x.
11059         * modules/getline (Files): Remove getline.h.
11060         (Depends-on): Add stdio.
11061         (configure.ac): Add module indicator.
11062         * modules/getdelim (Files): Remove getdelim.h.
11063         (Depends-on): Add stdio.
11064         (configure.ac): Add module indicator.
11065         * modules/stdio (Makefile.am): Work with new indicators.
11066         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
11067         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
11068         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
11069         * lib/getdelim.h: Delete.
11070         * lib/getline.h: Delete.
11071         * lib/stdio_.h (getdelim, getline): Declare.
11072         * modules/getdelim-tests: New module.
11073         * modules/getline-tests: Likewise.
11074         * tests/test-getdelim.c: New file.
11075         * tests/test-getline.c: Likewise.
11076         * NEWS: Document the change.
11077         * lib/getline.c: Update choice of header.
11078         * lib/csharpcomp.c: Likewise.
11079         * lib/getpass.c: Likewise.
11080         * lib/javacomp.c: Likewise.
11081         * lib/javaversion.c: Likewise.
11082         * lib/yesno.c: Likewise.
11083         * lib/getdelim.c: Likewise.
11084         (getdelim): Set errno on failure, and avoid memory leak.
11085
11086 2007-08-19  Bruno Haible  <bruno@clisp.org>
11087
11088         * modules/closein (Depends-on): Add freadahead.
11089         * lib/closein.c: Include freadahead.h.
11090         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
11091         is zero.
11092
11093 2007-08-19  Bruno Haible  <bruno@clisp.org>
11094
11095         * modules/freadahead-tests: New file.
11096         * tests/test-freadahead.sh: New file.
11097         * tests/test-freadahead.c: New file.
11098
11099         * modules/freadahead: New file.
11100         * lib/freadahead.h: New file.
11101         * lib/freadahead.c: New file.
11102         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
11103         fbufmode, fpurge, freadable, fwritable.
11104
11105 2007-08-19  Eric Blake  <ebb9@byu.net>
11106
11107         Test yesno in combination with closein.
11108         * lib/yesno.c (yesno): Document use of stdin.
11109         * modules/yesno-tests (Files): New module.
11110         * tests/test-yesno.c (main): New file.
11111         * tests/test-yesno.sh: Likewise.
11112
11113 2007-08-19  Bruno Haible  <bruno@clisp.org>
11114
11115         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
11116         * lib/fseeko.c (rpl_fseeko): Likewise.
11117         * lib/fseterr.c (fseterr): Likewise.
11118
11119 2007-08-19  Bruno Haible  <bruno@clisp.org>
11120
11121         * tests/test-lseek.c (main): Disable a test for BeOS.
11122         * doc/functions/lseek.texi: Document the BeOS bug.
11123
11124 2007-08-19  Bruno Haible  <bruno@clisp.org>
11125             Eric Blake  <ebb9@byu.net>
11126
11127         * lib/lseek.c: Include <sys/stat.h>.
11128         (rpl_lseek): Add workaround code also for Unix platforms.
11129         Needed for BeOS.
11130         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
11131         * doc/functions/lseek.texi: Document BeOS definiency.
11132
11133 2007-08-18  Bruno Haible  <bruno@clisp.org>
11134
11135         * modules/fstrcmp-tests: New file.
11136         * tests/test-fstrcmp.c: New file.
11137
11138 2007-08-18  Bruno Haible  <bruno@clisp.org>
11139
11140         * modules/fstrcmp: New file, from GNU gettext with modifications.
11141         * lib/fstrcmp.h: New file, from GNU gettext.
11142         * lib/fstrcmp.c: New file, from GNU gettext.
11143         * MODULES.html.sh (String handling): Add fstrcmp.
11144
11145 2007-08-18  Bruno Haible  <bruno@clisp.org>
11146
11147         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
11148         'bool'.
11149         (diag, compareseq): Remove const from the ctxt argument.
11150         (USE_HEURISTIC): Undefine at the end.
11151
11152 2007-08-18  Jim Meyering  <jim@meyering.net>
11153
11154         New file: lib/idcache.h
11155         * NEWS: Mention the addition.
11156         * modules/idcache (Files): Add lib/idcache.h
11157         * lib/idcache.c: Include "idcache.h".
11158         Don't include <sys/types.h>.
11159         Add a FIXME comment.
11160         Move file-scoped "static" declarations to the top.
11161         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
11162
11163 2007-08-17  Bruno Haible  <bruno@clisp.org>
11164         and Paul Eggert  <eggert@cs.ucla.edu>
11165
11166         * MODULES.html.sh: Add diffseq.
11167         * modules/diffseq: New file.
11168         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
11169         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
11170
11171 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11172
11173         Import changes from coreutils for bootstrap script.
11174
11175         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
11176
11177         * build-aux/bootstrap (slurp): Work even in environments where
11178         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
11179         current code does not slurp files whose names start with ".", and
11180         this looks like it might be a troublesome area.
11181
11182         2007-07-11  Jim Meyering  <jim@meyering.net>
11183
11184         If there's a GPL vN copyright comment, require that N == 3.
11185
11186         2007-07-08  Jim Meyering  <jim@meyering.net>
11187
11188         Run the coreutils-specific code only if tests/Makefile.am.in exists.
11189         * build-aux/bootstrap (mam_template): Move definition out of loop.
11190
11191         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
11192
11193         * build-aux/bootstrap (symlink_to_dir): Rename function from
11194         symlink_to_gnulib.  Add a directory parameter.  Update all
11195         callers.
11196         (cp_mark_as_generated): Also check for -- and link to -- files in
11197         gl/.
11198
11199         2007-07-08  Jim Meyering  <jim@meyering.net>
11200
11201         Adapt to deeper hierarchy in gnulib.
11202         * build-aux/bootstrap (symlink_to_dir): If the destination
11203         directory doesn't exist, create it. This is required at least for
11204         "lib/uniwidth/cjk.h".
11205
11206         2007-05-15  Jim Meyering  <jim@meyering.net>
11207
11208         * build-aux/bootstrap: Now that generated Makefile.am files
11209         are no longer under version control, they must be created at
11210         bootstrap time.
11211
11212 2007-08-14  Ben Pfaff  <blp@gnu.org>
11213
11214         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
11215
11216 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11217
11218         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
11219         given the changes below.
11220         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
11221         even on hosts that have padding bits beyond the supported 64.
11222
11223 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
11224
11225         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
11226         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
11227         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
11228         depends on it.
11229         (xstrtol_error): Remove.
11230         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
11231         but with a different signature.
11232         (ATTRIBUTE_NORETURN, __attribute__): New macros.
11233         * lib/xstrtol-error.c: Include exitfail.h.
11234         (xstrtol_fatal): New function, with a different signature from the
11235         old xstrtol_error, so that the caller need not worry about passing
11236         in an exit status, or about storage management of the option argument.
11237         (xstrtol_error): Now a static function.  Redo signature to
11238         implement xstrtol_fatal.  Output the correct number of hyphens in
11239         front of the option so that the caller need not worry about
11240         storage management.
11241         (N_): New macro.
11242         (_): Remove; not used now.
11243         * modules/xstrtol: Depend on getopt.
11244         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
11245         of old STRTOL_FATAL_ERROR macro.
11246         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
11247         of test program.
11248         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
11249         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
11250
11251 2007-08-08  Eric Blake  <ebb9@byu.net>
11252
11253         * lib/xstrtol-error.c: Add missing include.
11254
11255         Move xstrtol messages into gnulib domain, when --pobase is used.
11256         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
11257         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
11258         * modules/xstrtol (Files): Distribute new file.
11259         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
11260         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
11261         * tests/test-xstrtol.c: ...into new file.
11262         * tests/test-xstrtoul.c: Also test xstrtoul.
11263         * tests/test-xstrtoimax.c: Also test xstrtoimax.
11264         * tests/test-xstrtoumax.c: Also test xstrtoumax.
11265         * tests/test-xstrtol.sh: Drive the tests.
11266         * tests/test-xstrtoimax.sh: Likewise.
11267         * tests/test-xstrtoumax.sh: Likewise.
11268         * modules/xstrtol-tests: New module.
11269         * modules/xstrtoimax-tests: Likewise.
11270         * modules/xstrtoumax-tests: Likewise.
11271
11272 2007-08-08  Jim Meyering  <jim@meyering.net>
11273
11274         New function: mfile_name_concat.
11275         * lib/filenamecat.c (mfile_name_concat): New function, just like
11276         file_name_concat, but return NULL upon failure rather than exiting
11277         with a diagnostic.
11278         * lib/filenamecat.h: Declare it.
11279
11280 2007-08-07  Bruno Haible  <bruno@clisp.org>
11281
11282         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
11283         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
11284         warning from gcc.
11285         Reported by Eric Blake.
11286
11287 2007-08-07  Simon Josefsson  <simon@josefsson.org>
11288
11289         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
11290         * modules/crypto/arcfour (License): Likewise.
11291         * modules/crypto/des-tests (License): Likewise.
11292         * modules/crypto/gc-arctwo-tests (License): Likewise.
11293         * modules/crypto/gc-des-tests (License): Likewise.
11294         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
11295         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
11296         * modules/crypto/gc-md2-tests (License): Likewise.
11297         * modules/crypto/gc-md4-tests (License): Likewise.
11298         * modules/crypto/gc-md5-tests (License): Likewise.
11299         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
11300         * modules/crypto/gc-rijndael-tests (License): Likewise.
11301         * modules/crypto/gc-sha1-tests (License): Likewise.
11302         * modules/crypto/gc-tests (License): Likewise.
11303         * modules/crypto/hmac-md5 (License): Likewise.
11304         * modules/crypto/hmac-sha1 (License): Likewise.
11305         * modules/crypto/md2-tests (License): Likewise.
11306         * modules/crypto/md4-tests (License): Likewise.
11307         * modules/crypto/md5 (License): Likewise.
11308         * modules/crypto/rijndael (License): Likewise.
11309         * modules/crypto/sha1 (License): Likewise.
11310         * modules/memxor (License): Likewise.
11311
11312 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
11313         and Bruno Haible  <bruno@clisp.org>
11314
11315         * NEWS: Describe interface changes to human, xstrtol.
11316         * lib/human.h: Include <xstrtol.h>.
11317         (human_options): Return enum strtol_error, not int.  Remove
11318         bool arg; take int * instead.
11319         * lib/human.c: Don't include "gettext.h".
11320         (_): Remove; no longer used.
11321         Don't include <xstrtol.h>, since human.h does it.
11322         (human_options): Adjust to abovementioned interface changes.
11323         Do not report error to stderr; that's now the caller's
11324         responsibility.
11325         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
11326         interface change.
11327         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
11328         Str, Argument_type_string.  All uses changed.  Put " argument"
11329         in diagnostics to make them clearer.  Change wording of suffix
11330         message for clarity.
11331         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
11332         Argument_type_string.
11333         (STRTOL_FATAL_WARN): Remove; no longer used.
11334         * modules/human (Depends-on): Remove gettext-h.
11335
11336 2007-08-06  Simon Josefsson  <simon@josefsson.org>
11337
11338         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
11339
11340 2007-07-31  Bruno Haible  <bruno@clisp.org>
11341
11342         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
11343         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
11344         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
11345
11346 2007-07-31  Bruno Haible  <bruno@clisp.org>
11347
11348         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
11349         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
11350
11351 2007-07-30  Bruno Haible  <bruno@clisp.org>
11352
11353         * modules/base64 (License): Use the synonymous term "LGPLv2+".
11354         * modules/c-ctype (License): Likewise.
11355         * modules/c-strcase (License): Likewise.
11356         * modules/check-version (License): Likewise.
11357         * modules/iconv (License): Likewise.
11358         * modules/iconv_open (License): Likewise.
11359         * modules/read-file (License): Likewise.
11360         * modules/striconv (License): Likewise.
11361         * modules/strverscmp (License): Likewise.
11362         * modules/vasprintf (License): Likewise.
11363         * modules/crypto/des (License): Likewise.
11364         * modules/crypto/gc (License): Likewise.
11365         * modules/crypto/gc-arcfour (License): Likewise.
11366         * modules/crypto/gc-arctwo (License): Likewise.
11367         * modules/crypto/gc-des (License): Likewise.
11368         * modules/crypto/gc-hmac-md5 (License): Likewise.
11369         * modules/crypto/gc-hmac-sha1 (License): Likewise.
11370         * modules/crypto/gc-md2 (License): Likewise.
11371         * modules/crypto/gc-md4 (License): Likewise.
11372         * modules/crypto/gc-md5 (License): Likewise.
11373         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
11374         * modules/crypto/gc-random (License): Likewise.
11375         * modules/crypto/gc-rijndael (License): Likewise.
11376         * modules/crypto/gc-sha1 (License): Likewise.
11377         * modules/crypto/md2 (License): Likewise.
11378         * modules/crypto/md4 (License): Likewise.
11379
11380 2007-07-30  Jim Meyering  <jim@meyering.net>
11381
11382         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
11383         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
11384         it has valid stat data.  This bug would cause du not to count the
11385         sizes of inaccessible directories.
11386         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
11387         in <http://bugzilla.redhat.com/250077>.
11388
11389 2007-07-25  Peter O'Gorman  <peter@pogma.com>
11390             Bruno Haible  <bruno@clisp.org>
11391
11392         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
11393         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
11394         #include_next, gives a diagnostic about it, but reports no error in
11395         the exit code.
11396         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
11397
11398 2007-07-24  Ben Pfaff  <blp@gnu.org>
11399
11400         Improve name: "count-one-bits" is better than "popcount".
11401         * MODULES.html.sh: Update name.
11402         * lib/popcount.h: Renamed lib/count-one-bits.h.
11403         (popcount): Renamed count_one_bits.
11404         (popcountl): Renamed count_one_bits_l.
11405         (popcountll): Renamed count_one_bits_ll.
11406         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
11407         * modules/popcount: Renamed module/count-one-bits.
11408         * modules/popcount-tests: Renamed module/count-one-bits-tests.
11409         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
11410
11411 2007-07-23  Ben Pfaff  <blp@gnu.org>
11412
11413         * lib/popcount.h (popcount32): Reduce size of constants, to allow
11414         better code generation, and add U to large constants to avoid
11415         warnings, in non-GCC case.
11416         Suggested by Bruno Haible.
11417
11418 2007-07-23  Ben Pfaff  <blp@gnu.org>
11419
11420         * lib/popcount.h: Use verify_true instead of if...abort.
11421         * modules/popcount: Depend on verify module.
11422         Suggested by Jim Meyering.
11423
11424 2007-07-23  Bruno Haible  <bruno@clisp.org>
11425
11426         * gnulib-tool (func_import): Create a .cvsignore file also when the
11427         directory is not yet in CVS but the toplevel directory is. When
11428         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
11429         Reported by Karl Berry.
11430
11431 2007-07-22  Ben Pfaff  <blp@gnu.org>
11432
11433         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
11434         case.
11435         Suggested by Eric Blake.
11436
11437 2007-07-22  Ben Pfaff  <blp@gnu.org>
11438
11439         New module: popcount.
11440         * MODULES.html.sh: Add popcount.
11441         * modules/popcount: New file.
11442         * modules/popcount-tests: New file.
11443         * tests/test-popcount.c: New file.
11444         * lib/popcount.h: New file.
11445         * m4/popcount.m4: New file.
11446
11447 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11448
11449         * build-aux/announce-gen: Update to GPLv3.
11450
11451         * build-aux/config.guess: Update from config.
11452
11453 2007-07-21  Bruno Haible  <bruno@clisp.org>
11454
11455         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
11456         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
11457
11458 2007-07-20  Jim Meyering  <jim@meyering.net>
11459
11460         * check-module: Diagnose a self-dependency.
11461
11462 2007-07-19  Bruno Haible  <bruno@clisp.org>
11463
11464         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
11465         empty.
11466         Reported by Eric Blake.
11467
11468 2007-07-18  Bruno Haible  <bruno@clisp.org>
11469
11470         * gnulib-tool: New options --po-base, --po-domain.
11471         (func_usage): Document them.
11472         (pobase, po_domain): New variables.
11473         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
11474         DEFAULT_TEXT_DOMAIN.
11475         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
11476         (func_import): Consider pobase and po_domain. Create a po/ directory.
11477         (func_create_testdir): Set pobase and po_domain to empty.
11478         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
11479         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
11480
11481 2007-07-18  Bruno Haible  <bruno@clisp.org>
11482
11483         * gnulib-tool (func_get_automake_snippet): Synthesize also an
11484         EXTRA_DIST augmentation for files in build-aux/.
11485
11486 2007-07-16  Bruno Haible  <bruno@clisp.org>
11487
11488         * modules/lseek (License): Use the synonymous term "LGPLv2+".
11489         * modules/getdelim (License): Likewise.
11490
11491 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11492
11493         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
11494         * modules/d-type (License): Likewise.
11495         * modules/extensions (License): Likewise.
11496         * modules/fnmatch (License): Likewise.
11497         * modules/fseeko (License): Likewise.
11498         * modules/getaddrinfo (License): Likewise.
11499         * modules/getline (License): Likewise.
11500         * modules/getlogin_r (License): Likewise.
11501         * modules/getpass (License): Likewise.
11502         * modules/gettimeofday (License): Likewise.
11503         * modules/glob (License): Likewise.
11504         * modules/inet_ntop (License): Likewise.
11505         * modules/malloc (License): Likewise.
11506         * modules/malloca (License): Likewise.
11507         * modules/memmem (License): Likewise.
11508         * modules/mempcpy (License): Likewise.
11509         * modules/memset (License): Likewise.
11510         * modules/minmax (License): Likewise.
11511         * modules/mktime (License): Likewise.
11512         * modules/netinet_in (License): Likewise.
11513         * modules/pathmax (License): Likewise.
11514         * modules/poll (License): Likewise.
11515         * modules/regex (License): Likewise.
11516         * modules/snprintf (License): Likewise.
11517         * modules/stdbool (License): Likewise.
11518         * modules/stdint (License): Likewise.
11519         * modules/stdio (License): Likewise.
11520         * modules/strcase (License): Likewise.
11521         * modules/strcasestr (License): Likewise.
11522         * modules/strdup (License): Likewise.
11523         * modules/string (License): Likewise.
11524         * modules/strndup (License): Likewise.
11525         * modules/strnlen (License): Likewise.
11526         * modules/strpbrk (License): Likewise.
11527         * modules/strptime (License): Likewise.
11528         * modules/strsep (License): Likewise.
11529         * modules/sys_select (License): Likewise.
11530         * modules/sys_socket (License): Likewise.
11531         * modules/sys_stat (License): Likewise.
11532         * modules/sys_time (License): Likewise.
11533         * modules/time (License): Likewise.
11534         * modules/time_r (License): Likewise.
11535         * modules/timegm (License): Likewise.
11536         * modules/unistd (License): Likewise.
11537         * modules/vsnprintf (License): Likewise.
11538         * modules/wctype (License): Likewise.
11539
11540 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11541
11542         * modules/argz (License): LGPLv2+.
11543
11544 2007-07-15  Karl Berry  <karl@gnu.org>
11545
11546         * doc/gnulib.texi: revise node structure per new fdl.texi.
11547
11548 2007-07-14  Bruno Haible  <bruno@clisp.org>
11549
11550         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
11551         the output file.
11552         * lib/uniname/uninames.h: Regenerated.
11553
11554 2007-07-14  Karl Berry  <karl@gnu.org>
11555
11556         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
11557         omitting sectioning and index commands.
11558
11559 2007-07-13  Bruno Haible  <bruno@clisp.org>
11560
11561         New gnulib-tool option --more-symlinks.
11562         * gnulib-tool (func_usage): Document --more-symlinks.
11563         (do_copyrights): New variable.
11564         Recognize option --more-symlinks.
11565         (func_import): Don't add a copyright notice transform to
11566         sed_transform_lib_file if do_copyrights is empty.
11567
11568 2007-07-13  Bruno Haible  <bruno@clisp.org>
11569
11570         * lib/vasnprintf.c (decimal_point_char): Define also if
11571         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
11572         && !NEED_PRINTF_DIRECTIVE_A.
11573         Reported by Clemens Koller <clemens.koller@anagramm.de> via
11574         Gary V. Vaughan <gary@gnu.org>.
11575
11576 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
11577
11578         * lib/inttypes_.h: Undo previous change, since it was fixed
11579         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
11580
11581 2007-07-13  Bruno Haible  <bruno@clisp.org>
11582
11583         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
11584         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
11585
11586 2007-07-13  Jim Meyering  <jim@meyering.net>
11587
11588         df: Don't fail for Tru64's "file-on-file mount".
11589         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
11590         so we fall through and use statfs instead.  Details here:
11591         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
11592         Reported by Albert Chin.
11593
11594 2007-07-13  Bruno Haible  <bruno@clisp.org>
11595
11596         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
11597         * modules/configmake (License): Likewise.
11598         * modules/gettext (License): Likewise.
11599         * modules/gettext-h (License): Likewise.
11600         * modules/include_next (License): Likewise.
11601         * modules/link-warning (License): Likewise.
11602         * modules/localcharset (License): Likewise.
11603         * modules/localename (License): Likewise.
11604         * modules/lock (License): Likewise.
11605         * modules/relocatable-lib-lgpl (License): Likewise.
11606         * modules/size_max (License): Likewise.
11607         * modules/vasnprintf (License): Likewise.
11608         * modules/wchar (License): Likewise.
11609         * modules/xsize (License): Likewise.
11610
11611 2007-07-13  Bruno Haible  <bruno@clisp.org>
11612
11613         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
11614         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
11615
11616 2007-07-12  Bruno Haible  <bruno@clisp.org>
11617
11618         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
11619         in the modules files.
11620
11621 2007-07-11  Karl Berry  <karl@gnu.org>
11622
11623         * MODULES.html.sh (func_module): use
11624          sed -e '\|^'"${includefile}"'$|d'
11625          instead of /.../d, to avoid errors on $includefile's containing /.
11626
11627 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
11628
11629         * gnulib-tool (func_import): Avoid duplication of --avoid
11630         statements
11631         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
11632         names to `_' in variable names.
11633
11634 2007-07-10  Eric Blake  <ebb9@byu.net>
11635
11636         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
11637         * NEWS: Document this change.
11638
11639 2007-07-08  Bruno Haible  <bruno@clisp.org>
11640
11641         Update to Unicode 5.0.
11642         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
11643         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
11644         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
11645         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
11646         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
11647         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
11648         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
11649         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
11650         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
11651         U+10A3F, U+1D242..U+1D244.
11652         (nonspacing_table_ind): Update.
11653         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
11654         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
11655
11656 2007-07-08  Bruno Haible  <bruno@clisp.org>
11657
11658         Update to Unicode 5.0.
11659         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
11660         code transform. Extend the name index field of unicode_name_to_code and
11661         unicode_code_to_name from 16 to 24 bits.
11662         * lib/uniname/uniname.c (unicode_character_name,
11663         unicode_name_character): Add the range 0x12xxx to the code transform.
11664         * lib/uniname/uninames.h: Regenerated.
11665         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
11666
11667 2007-07-07  Bruno Haible  <bruno@clisp.org>
11668
11669         * modules/wcwidth-tests: New file.
11670         * tests/test-wcwidth.c: New file.
11671
11672         Work around MacOS X wcwidth() bug.
11673         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
11674         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
11675         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
11676         original wcwidth in non-UTF-8 locales.
11677         * modules/wcwidth (Depends-on): Add localcharset, streq,
11678         uniwidth/width.
11679         * doc/functions/wcwidth.texi: Update.
11680
11681 2007-07-07  Bruno Haible  <bruno@clisp.org>
11682
11683         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
11684         (wcwidth): New declaration.
11685         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
11686         macros.
11687         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
11688         here. Prepare for creating <wchar.h> unconditionally.
11689         * modules/wchar (Depends-on): Add link-warning.
11690         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
11691         REPLACE_WCWIDTH, and GL_LINK_WARNING.
11692         * lib/wcwidth.h: Remove file.
11693         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
11694         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
11695         * modules/wcwidth (Files): Remove lib/wcwidth.h.
11696         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
11697         (Include): Replace wcwidth.h with <wchar.h>.
11698         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
11699         * lib/mbchar.h: Don't include wcwidth.h.
11700         * lib/mbswidth.c: Likewise.
11701         * NEWS: Mention the change.
11702
11703 2007-07-07  Bruno Haible  <bruno@clisp.org>
11704
11705         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
11706         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
11707         definition with an external declaration.
11708         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
11709         defined as a function. Remove AC_C_INLINE requirement.
11710         * modules/wcwidth (Files): Add lib/wcwidth.c.
11711         (Makefile.am): Remove redundant statement.
11712
11713 2007-07-07  Bruno Haible  <bruno@clisp.org>
11714
11715         * MODULES.html.sh (Unicode string functions): Add the new modules.
11716
11717         * tests/uniwidth/test-u32-strwidth.c: New file.
11718         * modules/uniwidth/u32-strwidth-tests: New file.
11719
11720         * lib/uniwidth/u32-strwidth.c: New file.
11721         * modules/uniwidth/u32-strwidth: New file.
11722
11723         * tests/uniwidth/test-u16-strwidth.c: New file.
11724         * modules/uniwidth/u16-strwidth-tests: New file.
11725
11726         * lib/uniwidth/u16-strwidth.c: New file.
11727         * modules/uniwidth/u16-strwidth: New file.
11728
11729         * tests/uniwidth/test-u8-strwidth.c: New file.
11730         * modules/uniwidth/u8-strwidth-tests: New file.
11731
11732         * lib/uniwidth/u8-strwidth.c: New file.
11733         * modules/uniwidth/u8-strwidth: New file.
11734
11735         * tests/uniwidth/test-u32-width.c: New file.
11736         * modules/uniwidth/u32-width-tests: New file.
11737
11738         * lib/uniwidth/u32-width.c: New file.
11739         * modules/uniwidth/u32-width: New file.
11740
11741         * tests/uniwidth/test-u16-width.c: New file.
11742         * modules/uniwidth/u16-width-tests: New file.
11743
11744         * lib/uniwidth/u16-width.c: New file.
11745         * modules/uniwidth/u16-width: New file.
11746
11747         * tests/uniwidth/test-u8-width.c: New file.
11748         * modules/uniwidth/u8-width-tests: New file.
11749
11750         * lib/uniwidth/u8-width.c: New file.
11751         * modules/uniwidth/u8-width: New file.
11752
11753         * tests/uniwidth/test-uc_width.c: New file.
11754         * modules/uniwidth/width-tests: New file.
11755
11756         * lib/uniwidth/width.c: New file, from GNU libiconv.
11757         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
11758         * modules/uniwidth/width: New file.
11759
11760         * lib/uniwidth.h: New file, from GNU libiconv.
11761         * modules/uniwidth/base: New file.
11762
11763 2007-07-07  Bruno Haible  <bruno@clisp.org>
11764
11765         * lib/uniname.h: New file, from GNU gettext.
11766         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
11767         * lib/uniname/uninames.h: New file, from GNU gettext.
11768         * lib/uniname/uniname.c: New file, from GNU gettext.
11769         * tests/uniname/test-uninames.sh: New file.
11770         * tests/uniname/test-uninames.c: New file, from GNU gettext.
11771         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
11772         * modules/uniname/base: New file.
11773         * modules/uniname/uniname: New file.
11774         * modules/uniname/uniname-tests: New file.
11775         * MODULES.html.sh (Unicode string functions): Add the new modules.
11776
11777 2007-07-06  Bruno Haible  <bruno@clisp.org>
11778
11779         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
11780
11781 2007-07-06  Bruno Haible  <bruno@clisp.org>
11782
11783         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
11784         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
11785         includes <cygwin/sys_time.h> which includes <sys/select.h> which
11786         include <sys/time.h>.
11787         Reported by Eric Blake.
11788
11789 2007-07-06  Eric Blake  <ebb9@byu.net>
11790
11791         Fix testing canonicalize on cygwin.
11792         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
11793         Revert patch from 2007-06-19.
11794         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
11795         canonicalize module is also in use.
11796         * tests/test-canonicalize.c: New file.
11797         * tests/test-canonicalize.sh: Likewise.
11798         * modules/canonicalize-tests: Likewise.
11799
11800 2007-07-06  Jim Meyering  <jim@meyering.net>
11801
11802         * lib/getugroups.c (getugroups): Detect getgrent failure.
11803         Adjust comment to reflect reality: this function may return -1.
11804
11805 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
11806
11807         * build-aux/bootstrap (TP_URL,get_translations): Update to use
11808         the new TP address.
11809         (usage): Fix typo
11810         (gnulib_mk): New variable.
11811
11812 2007-07-05  Jim Meyering  <jim@meyering.net>
11813
11814         Don't let endgrent clobber errno, no matter how improbable.
11815         * lib/getugroups.c (getugroups): Save and restore errno around
11816         endgrent call.
11817
11818         Close the group DB even when failing with 2^31 or more members.
11819         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
11820
11821 2007-07-04  Jim Meyering  <jim@meyering.net>
11822
11823         * lib/getugroups.h: New file.
11824         * lib/getugroups.c: Include "getugroups.h".
11825         Remove uses of "register" keyword.
11826         Move local variable, "cp", down into scope where used.
11827         Give "username" parameter the "const" attribute.
11828         * modules/getugroups (Files): Add lib/getugroups.h
11829
11830 2007-07-04  Karl Berry  <karl@gnu.org>
11831
11832         * MODULES.html.sh (func_all_modules): Complete rename of
11833         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
11834
11835 2007-07-02  Bruno Haible  <bruno@clisp.org>
11836
11837         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
11838         mode, when inttypes.h comes from gnulib.
11839         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
11840
11841 2007-07-02  Simon Josefsson  <simon@josefsson.org>
11842
11843         * NEWS: Mention lgpl module name change.
11844
11845         * modules/lgpl-2.1: Renamed from lgpl.
11846
11847         * NEWS: Mention gpl module name change.
11848
11849         * modules/gpl-3.0: New file, based on gpl-2.0.
11850
11851         * modules/gpl-2.0: Renamed from gpl.
11852
11853         * modules/gpl: Fix filename, doc/gpl.texi is now found at
11854         doc/gpl-2.0.texi.
11855
11856 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11857
11858         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
11859         #define __STDC_LIMIT_MACROS temporarily while including
11860         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
11861         Problem reported by Joel E. Denny in
11862         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
11863
11864 2007-07-01  Bruno Haible  <bruno@clisp.org>
11865
11866         * lib/unistdio.h: New file.
11867         * lib/unistdio/u-asnprintf.h: New file.
11868         * lib/unistdio/u-asprintf.h: New file.
11869         * lib/unistdio/u-printf-args.c: New file.
11870         * lib/unistdio/u-printf-args.h: New file.
11871         * lib/unistdio/u-printf-parse.h: New file.
11872         * lib/unistdio/u-snprintf.h: New file.
11873         * lib/unistdio/u-sprintf.h: New file.
11874         * lib/unistdio/u-vasprintf.h: New file.
11875         * lib/unistdio/u-vsnprintf.h: New file.
11876         * lib/unistdio/u-vsprintf.h: New file.
11877         * lib/unistdio/ulc-asnprintf.c: New file.
11878         * lib/unistdio/ulc-asprintf.c: New file.
11879         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
11880         * lib/unistdio/ulc-printf-parse.c: New file.
11881         * lib/unistdio/ulc-snprintf.c: New file.
11882         * lib/unistdio/ulc-sprintf.c: New file.
11883         * lib/unistdio/ulc-vasnprintf.c: New file.
11884         * lib/unistdio/ulc-vasprintf.c: New file.
11885         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
11886         * lib/unistdio/ulc-vsnprintf.c: New file.
11887         * lib/unistdio/ulc-vsprintf.c: New file.
11888         * lib/unistdio/u8-asnprintf.c: New file.
11889         * lib/unistdio/u8-asprintf.c: New file.
11890         * lib/unistdio/u8-printf-parse.c: New file.
11891         * lib/unistdio/u8-snprintf.c: New file.
11892         * lib/unistdio/u8-sprintf.c: New file.
11893         * lib/unistdio/u8-vasnprintf.c: New file.
11894         * lib/unistdio/u8-vasprintf.c: New file.
11895         * lib/unistdio/u8-vsnprintf.c: New file.
11896         * lib/unistdio/u8-vsprintf.c: New file.
11897         * lib/unistdio/u8-u8-asnprintf.c: New file.
11898         * lib/unistdio/u8-u8-asprintf.c: New file.
11899         * lib/unistdio/u8-u8-snprintf.c: New file.
11900         * lib/unistdio/u8-u8-sprintf.c: New file.
11901         * lib/unistdio/u8-u8-vasnprintf.c: New file.
11902         * lib/unistdio/u8-u8-vasprintf.c: New file.
11903         * lib/unistdio/u8-u8-vsnprintf.c: New file.
11904         * lib/unistdio/u8-u8-vsprintf.c: New file.
11905         * lib/unistdio/u16-asnprintf.c: New file.
11906         * lib/unistdio/u16-asprintf.c: New file.
11907         * lib/unistdio/u16-printf-parse.c: New file.
11908         * lib/unistdio/u16-snprintf.c: New file.
11909         * lib/unistdio/u16-sprintf.c: New file.
11910         * lib/unistdio/u16-vasnprintf.c: New file.
11911         * lib/unistdio/u16-vasprintf.c: New file.
11912         * lib/unistdio/u16-vsnprintf.c: New file.
11913         * lib/unistdio/u16-vsprintf.c: New file.
11914         * lib/unistdio/u16-u16-asnprintf.c: New file.
11915         * lib/unistdio/u16-u16-asprintf.c: New file.
11916         * lib/unistdio/u16-u16-snprintf.c: New file.
11917         * lib/unistdio/u16-u16-sprintf.c: New file.
11918         * lib/unistdio/u16-u16-vasnprintf.c: New file.
11919         * lib/unistdio/u16-u16-vasprintf.c: New file.
11920         * lib/unistdio/u16-u16-vsnprintf.c: New file.
11921         * lib/unistdio/u16-u16-vsprintf.c: New file.
11922         * lib/unistdio/u32-asnprintf.c: New file.
11923         * lib/unistdio/u32-asprintf.c: New file.
11924         * lib/unistdio/u32-printf-parse.c: New file.
11925         * lib/unistdio/u32-snprintf.c: New file.
11926         * lib/unistdio/u32-sprintf.c: New file.
11927         * lib/unistdio/u32-vasnprintf.c: New file.
11928         * lib/unistdio/u32-vasprintf.c: New file.
11929         * lib/unistdio/u32-vsnprintf.c: New file.
11930         * lib/unistdio/u32-vsprintf.c: New file.
11931         * lib/unistdio/u32-u32-asnprintf.c: New file.
11932         * lib/unistdio/u32-u32-asprintf.c: New file.
11933         * lib/unistdio/u32-u32-snprintf.c: New file.
11934         * lib/unistdio/u32-u32-sprintf.c: New file.
11935         * lib/unistdio/u32-u32-vasnprintf.c: New file.
11936         * lib/unistdio/u32-u32-vasprintf.c: New file.
11937         * lib/unistdio/u32-u32-vsnprintf.c: New file.
11938         * lib/unistdio/u32-u32-vsprintf.c: New file.
11939         * tests/unistdio/test-ulc-asnprintf1.c: New file.
11940         * tests/unistdio/test-ulc-asnprintf1.h: New file.
11941         * tests/unistdio/test-ulc-printf1.h: New file.
11942         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
11943         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
11944         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
11945         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
11946         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
11947         * tests/unistdio/test-ulc-vasprintf1.c: New file.
11948         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
11949         * tests/unistdio/test-ulc-vsprintf1.c: New file.
11950         * tests/unistdio/test-u8-asnprintf1.c: New file.
11951         * tests/unistdio/test-u8-asnprintf1.h: New file.
11952         * tests/unistdio/test-u8-printf1.h: New file.
11953         * tests/unistdio/test-u8-vasnprintf1.c: New file.
11954         * tests/unistdio/test-u8-vasnprintf2.c: New file.
11955         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
11956         * tests/unistdio/test-u8-vasnprintf3.c: New file.
11957         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
11958         * tests/unistdio/test-u8-vasprintf1.c: New file.
11959         * tests/unistdio/test-u8-vsnprintf1.c: New file.
11960         * tests/unistdio/test-u8-vsprintf1.c: New file.
11961         * tests/unistdio/test-u16-asnprintf1.c: New file.
11962         * tests/unistdio/test-u16-asnprintf1.h: New file.
11963         * tests/unistdio/test-u16-printf1.h: New file.
11964         * tests/unistdio/test-u16-vasnprintf1.c: New file.
11965         * tests/unistdio/test-u16-vasnprintf2.c: New file.
11966         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
11967         * tests/unistdio/test-u16-vasnprintf3.c: New file.
11968         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
11969         * tests/unistdio/test-u16-vasprintf1.c: New file.
11970         * tests/unistdio/test-u16-vsnprintf1.c: New file.
11971         * tests/unistdio/test-u16-vsprintf1.c: New file.
11972         * tests/unistdio/test-u32-asnprintf1.c: New file.
11973         * tests/unistdio/test-u32-asnprintf1.h: New file.
11974         * tests/unistdio/test-u32-printf1.h: New file.
11975         * tests/unistdio/test-u32-vasnprintf1.c: New file.
11976         * tests/unistdio/test-u32-vasnprintf2.c: New file.
11977         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
11978         * tests/unistdio/test-u32-vasnprintf3.c: New file.
11979         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
11980         * tests/unistdio/test-u32-vasprintf1.c: New file.
11981         * tests/unistdio/test-u32-vsnprintf1.c: New file.
11982         * tests/unistdio/test-u32-vsprintf1.c: New file.
11983         * modules/unistdio/base: New file.
11984         * modules/unistdio/u-printf-args: New file.
11985         * modules/unistdio/ulc-asnprintf: New file.
11986         * modules/unistdio/ulc-asprintf: New file.
11987         * modules/unistdio/ulc-fprintf: New file.
11988         * modules/unistdio/ulc-printf-parse: New file.
11989         * modules/unistdio/ulc-snprintf: New file.
11990         * modules/unistdio/ulc-sprintf: New file.
11991         * modules/unistdio/ulc-vasnprintf: New file.
11992         * modules/unistdio/ulc-vasprintf: New file.
11993         * modules/unistdio/ulc-vfprintf: New file.
11994         * modules/unistdio/ulc-vsnprintf: New file.
11995         * modules/unistdio/ulc-vsprintf: New file.
11996         * modules/unistdio/u8-asnprintf: New file.
11997         * modules/unistdio/u8-asprintf: New file.
11998         * modules/unistdio/u8-printf-parse: New file.
11999         * modules/unistdio/u8-snprintf: New file.
12000         * modules/unistdio/u8-sprintf: New file.
12001         * modules/unistdio/u8-vasnprintf: New file.
12002         * modules/unistdio/u8-vasprintf: New file.
12003         * modules/unistdio/u8-vsnprintf: New file.
12004         * modules/unistdio/u8-vsprintf: New file.
12005         * modules/unistdio/u8-u8-asnprintf: New file.
12006         * modules/unistdio/u8-u8-asprintf: New file.
12007         * modules/unistdio/u8-u8-snprintf: New file.
12008         * modules/unistdio/u8-u8-sprintf: New file.
12009         * modules/unistdio/u8-u8-vasnprintf: New file.
12010         * modules/unistdio/u8-u8-vasprintf: New file.
12011         * modules/unistdio/u8-u8-vsnprintf: New file.
12012         * modules/unistdio/u8-u8-vsprintf: New file.
12013         * modules/unistdio/u16-asnprintf: New file.
12014         * modules/unistdio/u16-asprintf: New file.
12015         * modules/unistdio/u16-printf-parse: New file.
12016         * modules/unistdio/u16-snprintf: New file.
12017         * modules/unistdio/u16-sprintf: New file.
12018         * modules/unistdio/u16-vasnprintf: New file.
12019         * modules/unistdio/u16-vasprintf: New file.
12020         * modules/unistdio/u16-vsnprintf: New file.
12021         * modules/unistdio/u16-vsprintf: New file.
12022         * modules/unistdio/u16-u16-asnprintf: New file.
12023         * modules/unistdio/u16-u16-asprintf: New file.
12024         * modules/unistdio/u16-u16-snprintf: New file.
12025         * modules/unistdio/u16-u16-sprintf: New file.
12026         * modules/unistdio/u16-u16-vasnprintf: New file.
12027         * modules/unistdio/u16-u16-vasprintf: New file.
12028         * modules/unistdio/u16-u16-vsnprintf: New file.
12029         * modules/unistdio/u16-u16-vsprintf: New file.
12030         * modules/unistdio/u32-asnprintf: New file.
12031         * modules/unistdio/u32-asprintf: New file.
12032         * modules/unistdio/u32-printf-parse: New file.
12033         * modules/unistdio/u32-snprintf: New file.
12034         * modules/unistdio/u32-sprintf: New file.
12035         * modules/unistdio/u32-vasnprintf: New file.
12036         * modules/unistdio/u32-vasprintf: New file.
12037         * modules/unistdio/u32-vsnprintf: New file.
12038         * modules/unistdio/u32-vsprintf: New file.
12039         * modules/unistdio/u32-u32-asnprintf: New file.
12040         * modules/unistdio/u32-u32-asprintf: New file.
12041         * modules/unistdio/u32-u32-snprintf: New file.
12042         * modules/unistdio/u32-u32-sprintf: New file.
12043         * modules/unistdio/u32-u32-vasnprintf: New file.
12044         * modules/unistdio/u32-u32-vasprintf: New file.
12045         * modules/unistdio/u32-u32-vsnprintf: New file.
12046         * modules/unistdio/u32-u32-vsprintf: New file.
12047         * modules/unistdio/ulc-asnprintf-tests: New file.
12048         * modules/unistdio/ulc-vasnprintf-tests: New file.
12049         * modules/unistdio/ulc-vasprintf-tests: New file.
12050         * modules/unistdio/ulc-vsnprintf-tests: New file.
12051         * modules/unistdio/ulc-vsprintf-tests: New file.
12052         * modules/unistdio/u8-asnprintf-tests: New file.
12053         * modules/unistdio/u8-vasnprintf-tests: New file.
12054         * modules/unistdio/u8-vasprintf-tests: New file.
12055         * modules/unistdio/u8-vsnprintf-tests: New file.
12056         * modules/unistdio/u8-vsprintf-tests: New file.
12057         * modules/unistdio/u16-asnprintf-tests: New file.
12058         * modules/unistdio/u16-vasnprintf-tests: New file.
12059         * modules/unistdio/u16-vasprintf-tests: New file.
12060         * modules/unistdio/u16-vsnprintf-tests: New file.
12061         * modules/unistdio/u16-vsprintf-tests: New file.
12062         * modules/unistdio/u32-asnprintf-tests: New file.
12063         * modules/unistdio/u32-vasnprintf-tests: New file.
12064         * modules/unistdio/u32-vasprintf-tests: New file.
12065         * modules/unistdio/u32-vsnprintf-tests: New file.
12066         * modules/unistdio/u32-vsprintf-tests: New file.
12067         * MODULES.html.sh (Unicode string functions): Add the new modules.
12068
12069 2007-07-01  Bruno Haible  <bruno@clisp.org>
12070
12071         * lib/sprintf.c (sprintf): Limit the available length estimation,
12072         to avoid address wraparound.
12073         * lib/vsprintf.c (vsprintf): Likewise.
12074         * modules/sprintf-posix (Dependencies): Add stdint.
12075         * modules/vsprintf-posix (Dependencies): Likewise.
12076
12077 2007-07-01  Bruno Haible  <bruno@clisp.org>
12078
12079         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
12080         Windows PATH as well. Conservative double-quoting. Comments.
12081
12082 2007-07-01  Bruno Haible  <bruno@clisp.org>
12083             Eric Blake  <ebb9@byu.net>
12084             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12085
12086         * gnulib-tool (self_abspathname): Fix algorithm to cope with
12087         empty components in $PATH, denoting '.'.
12088
12089 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12090
12091         * gnulib-tool: Fix indentation.
12092         (func_create_megatestdir): Likewise.
12093         Report by Bruno Haible.
12094
12095 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12096
12097         Sync from Automake.
12098         * build-aux/gnupload: Fix shell portability issues with for loops.
12099         Report by Karl Berry.
12100
12101 2007-06-29  Simon Josefsson  <simon@josefsson.org>
12102
12103         * build-aux/maint.mk (POURL): Use translationproject.org.
12104
12105 2007-06-27  Simon Josefsson  <simon@josefsson.org>
12106             Bruno Haible  <bruno@clisp.org>
12107
12108         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
12109         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
12110         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
12111         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
12112         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
12113
12114 2007-06-27  Bruno Haible  <bruno@clisp.org>
12115
12116         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
12117         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
12118
12119 2007-06-26  Karl Berry  <karl@gnu.org>
12120
12121         * MODULES.html.sh: remove xreadlink-with-size.
12122
12123 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12124
12125         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
12126         method that I hope also handles the double-include problem noted
12127         by Bruno Haible in
12128         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
12129
12130 2007-06-23  Bruno Haible  <bruno@clisp.org>
12131
12132         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12133         Don't let the 'mostlyclean' target fail if the last subdirectory could
12134         not be removed.
12135         Reported by Karl Berry.
12136
12137 2007-06-23  Bruno Haible  <bruno@clisp.org>
12138
12139         * gnulib-tool (echo): Add a speedier workaround for ksh.
12140         * tests/test-echo.sh: Likewise.
12141
12142 2007-06-23  Bruno Haible  <bruno@clisp.org>
12143
12144         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
12145         * tests/test-echo.sh: Likewise.
12146
12147 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12148
12149         * gnulib-tool (IFS): Initialize early, so we don't set it to
12150         empty later.
12151         (self_abspathname): Rewrite algorithm to set it, reindent.
12152         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
12153         (func_create_megatestdir): Merge some sed scripts.
12154
12155 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12156
12157         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
12158         exposed by Sun Studio 11 cc on Solaris 8.
12159
12160 2007-06-22  Bruno Haible  <bruno@clisp.org>
12161
12162         * gnulib-tool (echo): Ensure the echo primitive does not interpret
12163         backslashes.
12164         * tests/test-echo.sh: New file.
12165
12166 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12167
12168         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
12169         simplify `sed_replace_build_aux' scripts, they are portable but
12170         echoing them with `echo' is not.
12171         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
12172
12173 2007-06-21  Karl Berry  <karl@gnu.org>
12174
12175         * config/srclist.txt: guess we can't handle the licenses via
12176         srclist at the moment.
12177
12178 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12179
12180         * MODULES.html.sh: Add include_next.
12181         * modules/include_next: New file.
12182
12183 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12184
12185         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
12186         INCLUDE_NEXT.
12187         (gl_CHECK_NEXT_HEADERS): New macro.
12188         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
12189         the obsolescent gl_ABSOLUTE_HEADER.
12190         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
12191         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
12192         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
12193         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
12194         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
12195         * m4/math_h.m4 (gl_MATH_H): Likewise.
12196         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
12197         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
12198         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
12199         * m4/stdint.m4 (gl_STDINT_H): Likewise.
12200         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
12201         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
12202         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
12203         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12204         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
12205         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
12206         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
12207         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
12208         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
12209         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
12210         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
12211         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
12212         * m4/inttypes.m4 (gl_INTTYPES_H): Define
12213         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
12214         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
12215         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
12216         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
12217         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
12218         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
12219         * lib/float_.h: Likewise.
12220         * lib/inttypes_.h: Likewise.
12221         * lib/math_.h: Likewise.
12222         * lib/search_.h: Likewise.
12223         * lib/signal_.h: Likewise.
12224         * lib/stdint_.h: Likewise.
12225         * lib/stdio_.h: Likewise.
12226         * lib/stdlib_.h: Likewise.
12227         * lib/string_.h: Likewise.
12228         * lib/sys_stat_.h: Likewise.
12229         * lib/sys_time_.h: Likewise.
12230         * lib/time_.h: Likewise.
12231         * lib/unistd_.h: Likewise.
12232         * lib/wchar_.h: Likewise.
12233         * lib/wctype_.h: Likewise.
12234         * lib/dirent_.h: Likewise.
12235         * lib/iconv_.h: Likewise.
12236         * lib/locale_.h: Likewise.
12237         * lib/netinet_in_.h: Likewise.
12238         * lib/sys_select_.h: Likewise.
12239         * lib/sys_socket_.h: Likewise.
12240         * lib/sysexits_.h: Likewise.
12241         * modules/fcntl (Depends-on): Depend on include_next, not
12242         absolute_header.
12243         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
12244         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
12245         * modules/fchdir: Likewise.
12246         * modules/float: Likewise.
12247         * modules/iconv_open: Likewise.
12248         * modules/inttypes: Likewise.
12249         * modules/locale: Likewise.
12250         * modules/math: Likewise.
12251         * modules/netinet_in: Likewise.
12252         * modules/search: Likewise.
12253         * modules/signal: Likewise.
12254         * modules/stdint: Likewise.
12255         * modules/stdio: Likewise.
12256         * modules/stdlib: Likewise.
12257         * modules/string: Likewise.
12258         * modules/sys_select: Likewise.
12259         * modules/sys_socket: Likewise.
12260         * modules/sys_stat: Likewise.
12261         * modules/sys_time: Likewise.
12262         * modules/sysexits: Likewise.
12263         * modules/time: Likewise.
12264         * modules/unistd: Likewise.
12265         * modules/wchar: Likewise.
12266         * modules/wctype: Likewise.
12267         * modules/sys_stat: Change maintainer to "all".
12268         * modules/unistd: Likewise.
12269
12270 2007-06-20  Karl Berry  <karl@gnu.org>
12271
12272         * config/srclist.txt: track www changes in license files.
12273
12274 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
12275
12276         * build-aux/bootstrap: Remove stray dot.
12277         Make sure build_aux settings are honored when linking
12278         gnulib_extra_files.
12279
12280 2007-06-19  Eric Blake  <ebb9@byu.net>
12281
12282         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
12283         Allow compilation on cygwin.
12284
12285 2007-06-19  Jim Meyering  <jim@meyering.net>
12286
12287         xreadlink-with-size: Remove module.  No longer used.
12288         Ex-callers now use xreadlink or mreadlink-with-size.
12289         * modules/xreadlink-with-size: Remove module.
12290         * lib/xreadlink-with-size.c: Remove file.
12291         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
12292         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
12293         just before the function definition *is* accurate.
12294
12295         Eliminate one way canonicalize_filename_mode could exit.
12296         * lib/canonicalize.c (canonicalize_filename_mode):
12297         Use mreadlink_with_size, not xreadlink_with_size.
12298
12299 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
12300
12301         Detect porting problems to FreeBSD/arm, which has time_t wider than
12302         long int.  Original problem reported for GNU diff by Xin Li in
12303         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
12304         * modules/getdate (Depends-on): Add intprops, verify.
12305         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
12306         is an integer type no wider than long int.
12307
12308 2007-06-18  Jim Meyering  <jim@meyering.net>
12309
12310         New module: mreadlink-with-size.
12311         * MODULES.html.sh: Add mreadlink-with-size.
12312         * modules/mreadlink-with-size: New module
12313         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
12314         not xreadlink-with-size.
12315         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
12316
12317 2007-06-16  Bruno Haible  <bruno@clisp.org>
12318
12319         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
12320         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
12321         Reported by Gary V. Vaughan <gary@gnu.org>.
12322
12323 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
12324
12325         Revamp lchown so that it lives in unistd.h where it belongs.
12326         * lib/lchown.h: Remove.
12327         * lib/dirchownmod.c: Don't include lib/lchown.h.
12328         * lib/fchownat.c: Likewise.
12329         * lib/openat.c: Likewise.
12330         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
12331         does not follow symlinks.
12332         (EOPNOTSUPP): Define if not defined.
12333         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
12334         is defined to 0.
12335         (lchown): New decl.
12336         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
12337         Do not check for lchown decl.
12338         Set REPLACE_LCHOWN.
12339         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
12340         REPLACE_LCHOWN.
12341         * modules/chown: Make it clear it follows symlinks.
12342         * modules/lchown: Make it clear it doesn't follow symlinks.
12343         (Files): Remove lib/lchown.h
12344         (Depends-on): Add unistd.
12345         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
12346         (Include): Include <unistd.h>, not "lchown.h".
12347         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
12348         REPLACE_LCHOWN.
12349
12350 2007-06-15  Jim Meyering  <jim@meyering.net>
12351
12352         Change license (GPL to LGPL) of fsusage and dependents.
12353         * modules/fsusage (License): Change to LGPL.
12354         * modules/full-read (License): Likewise.
12355         * modules/full-write (License): Likewise.
12356         * modules/safe-read (License): Likewise.
12357         * modules/safe-write (License): Likewise.
12358
12359 2007-06-14  Ben Pfaff  <blp@gnu.org>
12360
12361         Missing part of allocsa -> malloca transition.
12362         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
12363         gl_MALLOCA.
12364
12365 2007-06-12  Bruno Haible  <bruno@clisp.org>
12366
12367         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
12368         to ia64, x86_64, i386.
12369         Reported by Eric Blake.
12370
12371 2007-06-12  Bruno Haible  <bruno@clisp.org>
12372
12373         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
12374         cross-compiling to x86_64.
12375
12376 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
12377
12378         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
12379         glitch reported by Ralf Wildenhues in
12380         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
12381
12382         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
12383         Vin Shelton.
12384
12385 2007-06-11  Bruno Haible  <bruno@clisp.org>
12386
12387         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
12388         replacement string.
12389         Reported by Eric Blake.
12390
12391 2007-06-10  Bruno Haible  <bruno@clisp.org>
12392
12393         Prepare vasnprintf code for use with Unicode strings.
12394         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
12395         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
12396         TYPE_U32_STRING.
12397         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
12398         a_u32_string variants.
12399         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12400         * lib/printf-args.c: Don't include config.h and the specification
12401         header if PRINTF_FETCHARGS is already defined.
12402         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12403         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
12404         TYPE_U16_STRING, TYPE_U32_STRING.
12405         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
12406         u16_directive, u16_directives, u32_directive, u32_directives): New
12407         types.
12408         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
12409         New declarations.
12410         * lib/printf-parse.c: Don't include config.h and the specification
12411         header if PRINTF_PARSE is already defined. Eliminate the set of
12412         parameters for WIDE_CHAR_VERSION; the user of this file must provide
12413         them now. Include c-ctype.h.
12414         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
12415         directive and CHAR_T_ONLY_ASCII.
12416         * lib/vasnprintf.c: Don't include config.h and the specification header
12417         if VASNPRINTF is already defined.
12418         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
12419         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
12420         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
12421         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
12422         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
12423         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
12424         code accordingly.
12425         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
12426         pad_ourselves also in this case, with the 'c' and 's' directives, and
12427         with a different notion of "width".
12428         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
12429
12430 2007-06-10  Bruno Haible  <bruno@clisp.org>
12431
12432         * modules/unistr/u32-mbsnlen: New file.
12433         * lib/unistr/u32-mbsnlen.c: New file.
12434
12435         * modules/unistr/u16-mbsnlen: New file.
12436         * lib/unistr/u16-mbsnlen.c: New file.
12437
12438         * modules/unistr/u8-mbsnlen: New file.
12439         * lib/unistr/u8-mbsnlen.c: New file.
12440
12441         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
12442         declarations.
12443
12444 2007-06-10  Bruno Haible  <bruno@clisp.org>
12445
12446         * lib/string_.h (mbsnlen): New declaration.
12447         * lib/mbsnlen.c: New file.
12448         * m4/mbsnlen.m4: New file.
12449         * modules/mbsnlen: New file.
12450         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
12451         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
12452         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
12453
12454 2007-06-10  Bruno Haible  <bruno@clisp.org>
12455
12456         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
12457
12458 2007-06-10  Bruno Haible  <bruno@clisp.org>
12459
12460         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
12461         * lib/mbuiter.h: Likewise.
12462
12463 2007-06-10  Bruno Haible  <bruno@clisp.org>
12464
12465         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
12466         declaration.
12467
12468 2007-06-10  Karl Berry  <karl@gnu.org>
12469
12470         * config/srclist.txt: remove gettext entries, Bruno prefers
12471         to update individually.
12472
12473 2007-06-10  Bruno Haible  <bruno@clisp.org>
12474
12475         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
12476         'maxlen'. Ensure only length + width bytes are allocated, not
12477         length + 1 + width.
12478
12479 2007-06-09  Bruno Haible  <bruno@clisp.org>
12480
12481         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
12482         (CHAR_T): Remove macro.
12483         (VASNPRINTF): Update.
12484
12485 2007-06-09  Bruno Haible  <bruno@clisp.org>
12486
12487         * MODULES.html.sh (Unicode string functions): Add the new modules.
12488
12489         * modules/uniconv/u32-conv-to-enc: New file.
12490         * lib/uniconv/u32-conv-to-enc.c: New file.
12491         * modules/uniconv/u32-conv-to-enc-tests: New file.
12492         * tests/uniconv/test-u32-conv-to-enc.c: New file.
12493
12494         * modules/uniconv/u16-conv-to-enc: New file.
12495         * lib/uniconv/u16-conv-to-enc.c: New file.
12496         * lib/uniconv/u-conv-to-enc.h: New file.
12497         * modules/uniconv/u16-conv-to-enc-tests: New file.
12498         * tests/uniconv/test-u16-conv-to-enc.c: New file.
12499
12500         * modules/uniconv/u8-conv-to-enc: New file.
12501         * lib/uniconv/u8-conv-to-enc.c: New file.
12502         * modules/uniconv/u8-conv-to-enc-tests: New file.
12503         * tests/uniconv/test-u8-conv-to-enc.c: New file.
12504
12505         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
12506         u32_conv_to_encoding): New declarations.
12507
12508 2007-06-09  Bruno Haible  <bruno@clisp.org>
12509
12510         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
12511
12512 2007-06-09  Bruno Haible  <bruno@clisp.org>
12513
12514         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
12515         * modules/malloca: Renamed from modules/allocsa, updated.
12516         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
12517         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
12518         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
12519         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
12520         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
12521         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
12522         * modules/xmalloca: Renamed from modules/xallocsa, updated.
12523         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
12524         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
12525         * modules/c-strcasestr (Depends-on): Update.
12526         * lib/c-strcasestr.c: Update.
12527         * modules/c-strstr (Depends-on): Update.
12528         * lib/c-strstr.c: Update.
12529         * modules/canonicalize-lgpl (Depends-on): Update.
12530         * lib/canonicalize-lgpl.c: Update.
12531         * modules/clean-temp (Depends-on): Update.
12532         * lib/clean-temp.c: Update.
12533         * modules/csharpcomp (Depends-on): Update.
12534         * lib/csharpcomp.c: Update.
12535         * modules/csharpexec (Depends-on): Update.
12536         * lib/csharpexec.c: Update.
12537         * modules/javacomp (Depends-on): Update.
12538         * lib/javacomp.c: Update.
12539         * modules/javaexec (Depends-on): Update.
12540         * lib/javaexec.c: Update.
12541         * modules/mbscasestr (Depends-on): Update.
12542         * lib/mbscasestr.c: Update.
12543         * modules/mbsstr (Depends-on): Update.
12544         * lib/mbsstr.c: Update.
12545         * modules/setenv (Depends-on): Update.
12546         * lib/setenv.c: Update.
12547         * modules/strcasestr (Depends-on): Update.
12548         * lib/strcasestr.c: Update.
12549         * modules/striconveha (Depends-on): Update.
12550         * lib/striconveha.c: Update.
12551         * modules/relocatable-prog-wrapper (Files): Update.
12552         * lib/relocwrapper.c: Update.
12553         * build-aux/install-reloc: Update.
12554         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
12555
12556 2007-06-08  Bruno Haible  <bruno@clisp.org>
12557
12558         Port to uClibc.
12559         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
12560         * lib/fpurge.c (fpurge): Likewise.
12561         * lib/freading.c (freading): Likewise.
12562         * lib/fseeko.c (rpl_fseeko): Likewise.
12563         * lib/fseterr.c (fseterr): Likewise.
12564         * lib/fwriting.c (fwriting): Likewise.
12565         * tests/test-fflush.c (main): Avoid a failure on uClibc.
12566
12567 2007-06-08  Bruno Haible  <bruno@clisp.org>
12568
12569         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
12570         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
12571         * modules/gettext (Files): Add m4/intlmacosx.m4.
12572
12573 2007-06-07  Bruno Haible  <bruno@clisp.org>
12574
12575         * modules/localename-tests: New file.
12576         * tests/test-localename.c: New file.
12577
12578         New module 'localename'.
12579         * lib/localename.h: New file.
12580         * lib/localename.c: New file, from GNU gettext.
12581         * m4/localename.m4: New file.
12582         * modules/localename: New file.
12583
12584 2007-06-07  Bruno Haible  <bruno@clisp.org>
12585
12586         Work around the lack of <wchar.h> on some builds of uClibc.
12587         * doc/headers/wchar.texi: Update.
12588         * lib/wchar_.h: Include <wchar.h> only if it exists.
12589         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
12590         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
12591         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
12592         doesn't exist.
12593         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
12594         * modules/mbfile (Depends-on): Add wchar.
12595         * modules/mbiter (Depends-on): Likewise.
12596         * modules/mbuiter (Depends-on): Likewise.
12597         Reported by Simon Josefsson.
12598
12599 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
12600
12601         Work around problem reported by Steven M. Schweda in
12602         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
12603         Tru64 5.1B with the Compaq compiler environment installed declares
12604         an 'isblank' function but does not define it in the C library.
12605         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
12606         * lib/regex_internal.h (isblank): Likewise.
12607         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
12608         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
12609
12610 2007-06-05  Bruno Haible  <bruno@clisp.org>
12611
12612         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
12613         ia64.
12614         * modules/printf-safe: New file.
12615         * modules/fprintf-posix (Depends-on): Add printf-safe.
12616         * modules/printf-posix (Depends-on): Likewise.
12617         * modules/snprintf-posix (Depends-on): Likewise.
12618         * modules/sprintf-posix (Depends-on): Likewise.
12619         * modules/vasnprintf-posix (Depends-on): Likewise.
12620         * modules/vasprintf-posix (Depends-on): Likewise.
12621         * modules/vfprintf-posix (Depends-on): Likewise.
12622         * modules/vprintf-posix (Depends-on): Likewise.
12623         * modules/vsnprintf-posix (Depends-on): Likewise.
12624         * modules/vsprintf-posix (Depends-on): Likewise.
12625         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
12626         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
12627         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
12628         "no" on i386, x86_64, ia64.
12629         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
12630         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12631         on i386, x86_64, ia64.
12632         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
12633         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12634         on i386, x86_64, ia64.
12635         * tests/test-vasnprintf-posix.c: Include float.h.
12636         (LDBL80_WORDS): New macro.
12637         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12638         on i386, x86_64, ia64.
12639         * tests/test-vasprintf-posix.c: Include float.h.
12640         (LDBL80_WORDS): New macro.
12641         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12642         on i386, x86_64, ia64.
12643         * tests/test-snprintf-posix.c: Include float.h.
12644         * tests/test-sprintf-posix.c: Likewise.
12645         * tests/test-vsnprintf-posix.c: Likewise.
12646         * tests/test-vsprintf-posix.c: Likewise.
12647
12648 2007-06-05  Bruno Haible  <bruno@clisp.org>
12649
12650         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
12651         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
12652         non-IEEE numbers on i386, x86_64, ia64.
12653         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
12654         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
12655         * tests/test-isnanl.h: Include float.h.
12656         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
12657
12658 2007-06-05  Bruno Haible  <bruno@clisp.org>
12659
12660         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
12661         also the %a / %A. Handle the %a / %A code before this extra handling.
12662
12663 2007-06-05  Bruno Haible  <bruno@clisp.org>
12664
12665         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
12666         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
12667
12668 2007-06-05  Bruno Haible  <bruno@clisp.org>
12669
12670         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
12671         typo in variable name.
12672
12673 2007-06-05  Eric Blake  <ebb9@byu.net>
12674
12675         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
12676         Reported by Simon Josefsson.
12677
12678 2007-06-04  Bruno Haible  <bruno@clisp.org>
12679
12680         Avoid test failures on some PowerPC platforms.
12681         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
12682         Define differently for PowerPC.
12683         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
12684         Reported by Gary V. Vaughan <gary@gnu.org>.
12685
12686 2007-06-02  Bruno Haible  <bruno@clisp.org>
12687
12688         Fix test-stdint failure on FreeBSD/ia64.
12689         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
12690         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
12691         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
12692         * doc/headers/stdint.texi: Update.
12693
12694 2007-06-01  Bruno Haible  <bruno@clisp.org>
12695
12696         * tests/test-binary-io.c (main): Pass a third argument to open().
12697         Reported by Gary V. Vaughan <gary@gnu.org>.
12698
12699 2007-06-01  Bruno Haible  <bruno@clisp.org>
12700
12701         * doc/functions/frexpl.texi: Update for mingw.
12702
12703 2007-06-01  Bruno Haible  <bruno@clisp.org>
12704
12705         * tests/test-lseek.c (main): Disable test of errno for invalid third
12706         argument.
12707         * doc/functions/lseek.texi: Update.
12708         Reported by Gary V. Vaughan <gary@gnu.org>.
12709
12710 2007-05-28  Bruno Haible  <bruno@clisp.org>
12711
12712         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
12713
12714 2007-05-31  Eric Blake  <ebb9@byu.net>
12715
12716         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
12717         cross compiling.
12718
12719 2007-05-30  Eric Blake  <ebb9@byu.net>
12720         and Bruno Haible  <bruno@clisp.org>
12721
12722         Work around mingw test failures exposed by m4-1.4.9b.
12723         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
12724         * tests/test-unistd.c: Disable uid_t and git_t tests for the
12725         moment.
12726
12727 2007-05-30  Bruno Haible  <bruno@clisp.org>
12728
12729         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
12730         assuming that they are closed. Needed on HP-UX 11.
12731
12732 2007-05-29  Bruno Haible  <bruno@clisp.org>
12733
12734         Fix a problem with #include_next.
12735         * lib/dirent_.h: Split the double-inclusion guard.
12736         * lib/fcntl_.h: Likewise.
12737         * lib/float_.h: Likewise.
12738         * lib/iconv_.h: Likewise.
12739         * lib/inttypes_.h: Likewise.
12740         * lib/locale_.h: Likewise.
12741         * lib/math_.h: Likewise.
12742         * lib/netinet_in_.h: Likewise.
12743         * lib/search_.h: Likewise.
12744         * lib/signal_.h: Likewise.
12745         * lib/stdint_.h: Likewise.
12746         * lib/stdio_.h: Likewise.
12747         * lib/stdlib_.h: Likewise.
12748         * lib/string_.h: Likewise.
12749         * lib/sys_select_.h: Likewise.
12750         * lib/sys_socket_.h: Likewise.
12751         * lib/sys_stat_.h: Likewise.
12752         * lib/sys_time_.h: Likewise.
12753         * lib/sysexits_.h: Likewise.
12754         * lib/time_.h: Likewise.
12755         * lib/unistd_.h: Likewise.
12756         * lib/wchar_.h: Likewise.
12757         * lib/wctype_.h: Likewise.
12758
12759 2007-05-29  Bruno Haible  <bruno@clisp.org>
12760
12761         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
12762         for the moment.
12763
12764 2007-05-29  Bruno Haible  <bruno@clisp.org>
12765
12766         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
12767         invocation.
12768         Reported by Eric Blake.
12769
12770 2007-05-29  Bruno Haible  <bruno@clisp.org>
12771
12772         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
12773         compiling case.
12774
12775 2007-05-29  Eric Blake  <ebb9@byu.net>
12776             Bruno Haible  <bruno@clisp.org>
12777
12778         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
12779         cross compiles.
12780
12781 2007-05-28  Eric Blake  <ebb9@byu.net>
12782
12783         * modules/closein-tests (test_closein_LDADD): Support test on
12784         cygwin with libtool.
12785
12786 2007-05-28  Bruno Haible  <bruno@clisp.org>
12787
12788         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
12789         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
12790         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
12791         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
12792         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
12793         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
12794         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
12795         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
12796         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
12797
12798 2007-05-28  Eric Blake  <ebb9@byu.net>
12799
12800         Unconditionally include <config.h> in unit tests.
12801         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
12802         * tests/test-allocsa.c, tests/test-arcfour.c,
12803         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
12804         tests/test-array_list.c, tests/test-array_oset.c,
12805         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
12806         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
12807         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
12808         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
12809         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
12810         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
12811         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
12812         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
12813         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
12814         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
12815         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
12816         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
12817         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
12818         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
12819         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
12820         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
12821         test-md5.c, test-memmem.c, test-printf-posix.c,
12822         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
12823         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
12824         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
12825         test-strcasestr.c, test-striconv.c, test-striconveh.c,
12826         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
12827         test-vasnprintf-posix2.c, test-vasnprintf.c,
12828         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
12829         test-vfprintf-posix.c, test-vprintf-posix.c,
12830         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
12831         test-xvasprintf.c: Likewise.
12832
12833 2007-05-28  Bruno Haible  <bruno@clisp.org>
12834
12835         * gnulib-tool (func_import): Remember the --with-tests command-line
12836         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
12837         Reported by Eric Blake.
12838
12839 2007-05-28  Bruno Haible  <bruno@clisp.org>
12840
12841         * modules/ftell-tests: New file.
12842         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
12843         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
12844
12845         * lib/ftell.c: New file.
12846         * modules/ftell: New file.
12847         * m4/ftell.m4: New file.
12848         * doc/functions/ftell.texi: Update.
12849         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
12850         REPLACE_FTELL.
12851         * lib/stdio_.h (rpl_ftell): New declaration.
12852         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
12853         REPLACE_FTELL.
12854
12855 2007-05-28  Eric Blake  <ebb9@byu.net>
12856
12857         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
12858
12859 2007-05-28  Bruno Haible  <bruno@clisp.org>
12860
12861         * modules/fseek-tests: New file.
12862         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
12863         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
12864
12865         * lib/fseek.c: New file.
12866         * modules/fseek: New file.
12867         * m4/fseek.m4: New file.
12868         * doc/functions/fseek.texi: Update.
12869         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
12870         REPLACE_FSEEK.
12871         * lib/stdio_.h (rpl_fseek): New declaration.
12872         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
12873         REPLACE_FSEEK.
12874
12875 2007-05-28  Bruno Haible  <bruno@clisp.org>
12876
12877         * lib/stdio_.h (fflush): More comments.
12878
12879 2007-05-28  Bruno Haible  <bruno@clisp.org>
12880
12881         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
12882         runtime test.
12883
12884 2007-05-28  Eric Blake  <ebb9@byu.net>
12885
12886         Improve lseek module.
12887         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
12888         * lib/unistd_.h (lseek): Scale back link warning message.
12889         * tests/test-lseek.c: Beef up test.
12890         * tests/test-lseek.sh: Exercise more facets of lseek.
12891         Reported by Bruno Haible.
12892
12893 2007-05-28  Bruno Haible  <bruno@clisp.org>
12894
12895         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
12896         to define.
12897
12898 2007-05-27  Bruno Haible  <bruno@clisp.org>
12899
12900         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
12901
12902 2007-05-27  Bruno Haible  <bruno@clisp.org>
12903
12904         * modules/openmp: New file.
12905         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
12906         Noah Misch.
12907
12908 2007-05-26  Bruno Haible  <bruno@clisp.org>
12909
12910         * modules/chdir-long (Depends-on): Add fchdir.
12911         * modules/chdir-safer (Depends-on): Likewise.
12912         * modules/fts (Depends-on): Likewise.
12913         * modules/fts-lgpl (Depends-on): Likewise.
12914         * modules/openat (Depends-on): Likewise.
12915         * modules/savewd (Depends-on): Likewise.
12916
12917 2007-05-24  Eric Blake  <ebb9@byu.net>
12918
12919         Fix lseek on mingw.
12920         * modules/lseek: New module.
12921         * m4/lseek.m4: New file.
12922         * lib/lseek.c: New file.
12923         * modules/lseek-tests: New file.
12924         * tests/test-lseek.c: New file.
12925         * tests/test-lseek.sh: New file.
12926         * MODULES.html.sh: Document lseek module.
12927         * modules/fflush (Depends-on): Add lseek, fseeko.
12928         * modules/fseeko (Depends-on): Likewise.
12929         * modules/ftello (Depends-on): Likewise.
12930         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
12931         broken.
12932         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
12933         broken.
12934         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
12935         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
12936         * lib/ftello.c (rpl_ftello): Likewise.
12937         * tests/test-fseeko.c (main): Test this.
12938         * tests/test-fseeko.sh: Likewise.
12939         * tests/test-ftello.c (main): Likewise.
12940         * tests/test-ftello.sh: Likewise.
12941         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
12942         implies replacing fseek.
12943         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
12944         HAVE_FTELLO.
12945         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
12946         * modules/unistd (Makefile.am): Likewise.
12947         * lib/unistd_.h (lseek): Declare a replacement.
12948         * doc/functions/lseek.texi (lseek): Document this fix.
12949         * doc/functions/fseek.texi (fseek): Likewise.
12950         * doc/functions/ftell.texi (ftell): Likewise.
12951
12952 2007-05-24  Bruno Haible  <bruno@clisp.org>
12953
12954         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
12955         in the printed representation of a NaN.
12956         * tests/test-vasprintf-posix.c (test_function): Likewise.
12957         * tests/test-snprintf-posix.h (test_function): Likewise.
12958         * tests/test-sprintf-posix.h (test_function): Likewise.
12959         Reported by Eric Blake.
12960
12961 2007-05-23  Eric Blake  <ebb9@byu.net>
12962
12963         Fix fseeko/ftello on cygwin 1.5.24.
12964         * doc/functions/fseeko.texi (fseeko): Document the fix.
12965         * doc/functions/ftello.texi (ftello): Document the fix.
12966         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
12967         * doc/functions/stdout.text (stdout): New file.
12968         * doc/functions/stderr.text (stderr): New file.
12969         * doc/gnulib.texi (Function Substitutes): Use new files.
12970         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
12971         prior to 1.7.0.
12972         * tests/test-ftello.c (main): Likewise for ftello.
12973         * tests/test-fseeko.sh: New file.
12974         * tests/test-ftello.sh: New file.
12975         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
12976         with seekable stdin.
12977         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
12978         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
12979         (gl_REPLACE_FSEEKO): New macro.
12980         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
12981         * modules/fseeko (Files): Distribute fseeko.c.
12982         * modules/ftello (Files): Distribute ftello.c.
12983         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
12984         mode.
12985         * lib/ftello.c (rpl_ftello): New file.
12986         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
12987         fseeko, ftello.
12988         (gl_STDIN_LARGE_OFFSET): New macro.
12989         * modules/stdio (Makefile.am): Perform the replacement.
12990         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
12991
12992 2007-05-23  Bruno Haible  <bruno@clisp.org>
12993
12994         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
12995         GNULIB_POSIXCHECK is defined.
12996
12997 2007-05-21  Bruno Haible  <bruno@clisp.org>
12998
12999         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
13000         Check also the output for NaN arguments. When cross-compiling, guess
13001         no on IRIX.
13002         * lib/vasnprintf.c: Update comments.
13003         * tests/test-vasnprintf-posix.c (strisnan): New function.
13004         (test_function): Use it.
13005         * tests/test-vasprintf-posix.c (strisnan): New function.
13006         (test_function): Use it.
13007         * tests/test-snprintf-posix.h (strisnan): New function.
13008         (test_function): Use it.
13009         * tests/test-sprintf-posix.h (strisnan): New function.
13010         (test_function): Use it.
13011         Reported by Eric Blake.
13012
13013 2007-05-20  Bruno Haible  <bruno@clisp.org>
13014
13015         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
13016         numbers that fails on BeOS.
13017         * doc/functions/frexpl.texi: Update.
13018
13019 2007-05-20  Jim Meyering  <jim@meyering.net>
13020
13021         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
13022         forced upon us by glibc-2.6.
13023
13024 2007-05-20  Bruno Haible  <bruno@clisp.org>
13025
13026         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
13027         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
13028         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
13029         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
13030         NEED_PRINTF_INFINITE.
13031         (is_infinitel): New function.
13032         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
13033         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
13034         gl_PREREQ_VASNPRINTF_INFINITE.
13035         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
13036         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13037         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
13038         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
13039         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
13040         gl_PREREQ_VASNPRINTF_INFINITE.
13041         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13042         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13043         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13044         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13045         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13046         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13047         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13048         * doc/functions/fprintf.texi: Update.
13049         * doc/functions/printf.texi: Update.
13050         * doc/functions/snprintf.texi: Update.
13051         * doc/functions/sprintf.texi: Update.
13052         * doc/functions/vfprintf.texi: Update.
13053         * doc/functions/vprintf.texi: Update.
13054         * doc/functions/vsnprintf.texi: Update.
13055         * doc/functions/vsprintf.texi: Update.
13056
13057 2007-05-20  Bruno Haible  <bruno@clisp.org>
13058
13059         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
13060         was not found in libc.
13061         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
13062
13063 2007-05-20  Bruno Haible  <bruno@clisp.org>
13064
13065         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
13066         printed as "-nan" instead of "nan".
13067         * tests/test-vasprintf-posix.c (test_function): Likewise.
13068         * tests/test-snprintf-posix.h (test_function): Likewise.
13069         * tests/test-sprintf-posix.h (test_function): Likewise.
13070         Needed for HP-UX 11.
13071
13072 2007-05-20  Jim Meyering  <jim@meyering.net>
13073
13074         Fix buggy test for the fchownat-deref bug.
13075         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
13076         symlink required for the run-test.  Without it, this test would
13077         always declare that fchownat doesn't work, and client code would
13078         unnecessarily use the replacement function with fixed libc.
13079         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
13080         Reported by Greg Schafer.
13081
13082 2007-05-19  Bruno Haible  <bruno@clisp.org>
13083
13084         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
13085         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
13086         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
13087         Needed for IRIX 6.5 and Solaris 2.5.1.
13088
13089 2007-05-19  Bruno Haible  <bruno@clisp.org>
13090
13091         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
13092         (test_function): Skip tests involving -0.0 on platforms where
13093         -0.0 = 0.0.
13094         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
13095         (test_function): Skip tests involving -0.0 on platforms where
13096         -0.0 = 0.0.
13097         * tests/test-snprintf-posix.h (have_minus_zero): New function.
13098         (test_function): Skip tests involving -0.0 on platforms where
13099         -0.0 = 0.0.
13100         * tests/test-sprintf-posix.h (have_minus_zero): New function.
13101         (test_function): Skip tests involving -0.0 on platforms where
13102         -0.0 = 0.0.
13103         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
13104         tests.
13105         * tests/test-printf-posix.h (test_function): Likewise.
13106         * tests/test-printf-posix.output: Remove all -0.0 related results.
13107         Needed for IRIX 6.5.
13108
13109 2007-05-19  Bruno Haible  <bruno@clisp.org>
13110
13111         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
13112         printed as "nan0x7fffffff" instead of "nan".
13113         * tests/test-vasprintf-posix.c (test_function): Likewise.
13114         * tests/test-snprintf-posix.h (test_function): Likewise.
13115         * tests/test-sprintf-posix.h (test_function): Likewise.
13116         * tests/test-fprintf-posix.h (NaN): Remove macro.
13117         (test_function): Remove all NaN related tests.
13118         * tests/test-printf-posix.h (NaN): Remove macro.
13119         (test_function): Remove all NaN related tests.
13120         * tests/test-printf-posix.output: Remove all NaN related results.
13121         Needed for IRIX 6.5.
13122
13123 2007-05-19  Bruno Haible  <bruno@clisp.org>
13124
13125         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
13126         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
13127
13128 2007-05-19  Bruno Haible  <bruno@clisp.org>
13129
13130         * lib/float_.h: New file.
13131         * m4/float_h.m4: New file.
13132         * modules/float: New file.
13133         * modules/isnanl (Dependencies): Add float.
13134         * modules/isnanl-nolibm (Dependencies): Likewise.
13135         * modules/mathl (Dependencies): Likewise.
13136         * modules/printf-frexpl (Dependencies): Likewise.
13137         * modules/signbit (Dependencies): Likewise.
13138         * modules/vasnprintf (Dependencies): Likewise.
13139         * doc/headers/float.texi: Update.
13140
13141 2007-05-19  Jim Meyering  <jim@meyering.net>
13142
13143         * lib/utimens.c (gl_futimens): Rename from futimens,
13144         now that glibc-2.6 declares futimens.
13145         * lib/utimens.h: Likewise.
13146
13147 2007-05-19  Bruno Haible  <bruno@clisp.org>
13148
13149         Avoid test failures on mingw.
13150         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
13151         * tests/test-printf-posix.sh: Likewise.
13152         * tests/test-vfprintf-posix.sh: Likewise.
13153         * tests/test-vprintf-posix.sh: Likewise.
13154
13155 2007-05-19  Bruno Haible  <bruno@clisp.org>
13156
13157         Fix *printf result for NaN, Inf, -0.0 on mingw.
13158         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
13159         * lib/vasnprintf.c: Include math.h and isnan.h.
13160         (is_infinite_or_zero): New function.
13161         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
13162         values in the %f, %F, %e, %E, %g, %G directives.
13163         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
13164         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13165         gl_PRINTF_INFINITE and test its result. Invoke
13166         gl_PREREQ_VASNPRINTF_INFINITE.
13167         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13168         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13169         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13170         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13171         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13172         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13173         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13174         * doc/functions/fprintf.texi: Update.
13175         * doc/functions/printf.texi: Update.
13176         * doc/functions/snprintf.texi: Update.
13177         * doc/functions/sprintf.texi: Update.
13178         * doc/functions/vfprintf.texi: Update.
13179         * doc/functions/vprintf.texi: Update.
13180         * doc/functions/vsnprintf.texi: Update.
13181         * doc/functions/vsprintf.texi: Update.
13182
13183 2007-05-19  Bruno Haible  <bruno@clisp.org>
13184
13185         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
13186         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
13187         Instead of multiplying with 10^k, set extra_zeroes to k.
13188         (scale10_round_long_double): Remove function.
13189
13190 2007-05-18  Bruno Haible  <bruno@clisp.org>
13191
13192         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
13193         introduced on 2007-05-06.
13194
13195 2007-05-18  Bruno Haible  <bruno@clisp.org>
13196
13197         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
13198         %g directives.
13199         * tests/test-vasprintf-posix.c (test_function): Likewise.
13200         * tests/test-snprintf-posix.h (test_function): Likewise.
13201         * tests/test-sprintf-posix.h (test_function): Likewise.
13202
13203 2007-05-18  Bruno Haible  <bruno@clisp.org>
13204
13205         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
13206         (strmatch): New function.
13207         (test_function): Test the %f directive on numbers of various exponents.
13208         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
13209         (strmatch): New function.
13210         (test_function): Test the %f directive on numbers of various exponents.
13211         * tests/test-snprintf-posix.h (strmatch): New function.
13212         (test_function): Test the %f directive on numbers of various exponents.
13213         * tests/test-sprintf-posix.h (strmatch): New function.
13214         (test_function): Test the %f directive on numbers of various exponents.
13215         * tests/test-snprintf-posix.c (SIZEOF): New macro.
13216         * tests/test-sprintf-posix.c (SIZEOF): New macro.
13217         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
13218         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
13219
13220 2007-05-18  Bruno Haible  <bruno@clisp.org>
13221
13222         Add support for 'long double' number output.
13223         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
13224         * lib/vasnprintf.c: Include math.h and float+.h.
13225         (mp_limb_t): New type.
13226         (GMP_LIMB_BITS): New macro.
13227         (mp_twolimb_t): New type.
13228         (GMP_TWOLIMB_BITS): New macro.
13229         (mpn_t): New type.
13230         (multiply, divide, convert_to_decimal, decode_long_double,
13231         scale10_round_long_double, scale10_round_decimal_long_double,
13232         floorlog10l): New functions.
13233         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
13234         for the %f, %F, %e, %E, %g, %G directives.
13235         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
13236         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13237         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
13238         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
13239         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13240         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13241         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13242         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13243         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13244         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13245         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13246         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
13247         * modules/snprintf-posix (Depends-on): Likewise.
13248         * modules/sprintf-posix (Depends-on): Likewise.
13249         * modules/vasnprintf-posix (Depends-on): Likewise.
13250         * modules/vasprintf-posix (Depends-on): Likewise.
13251         * modules/vfprintf-posix (Depends-on): Likewise.
13252         * modules/vsnprintf-posix (Depends-on): Likewise.
13253         * modules/vsprintf-posix (Depends-on): Likewise.
13254         * modules/vasnprintf (Files): Add lib/float+.h.
13255         * doc/functions/fprintf.texi: Update.
13256         * doc/functions/printf.texi: Update.
13257         * doc/functions/snprintf.texi: Update.
13258         * doc/functions/sprintf.texi: Update.
13259         * doc/functions/vfprintf.texi: Update.
13260         * doc/functions/vprintf.texi: Update.
13261         * doc/functions/vsnprintf.texi: Update.
13262         * doc/functions/vsprintf.texi: Update.
13263
13264 2007-05-18  Bruno Haible  <bruno@clisp.org>
13265
13266         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
13267
13268 2007-05-18  Bruno Haible  <bruno@clisp.org>
13269
13270         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
13271         for printing 64-bit integers. Needed for mingw.
13272
13273 2007-05-18  Bruno Haible  <bruno@clisp.org>
13274
13275         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
13276         gl_FUNC_FREXPL_WORKS.
13277         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
13278
13279 2007-05-18  Bruno Haible  <bruno@clisp.org>
13280
13281         * modules/frexpl-nolibm-tests: New file.
13282
13283         * modules/frexpl-nolibm: New file.
13284         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
13285
13286 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
13287
13288         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
13289         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13290         GCC 4.2, which otherwise issues a lot of warnings.
13291         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
13292         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
13293         Likewise.
13294         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
13295         * modules/iconv_open (iconv.h): Likewise.
13296         * modules/locale (locale.h): Likewise.
13297         * modules/netinet_in (netinet/in.h): Likewise.
13298         * modules/sys_select (sys_select.h): Likewise.
13299         * modules/sys_socket (sys/socket.h): Likewise.
13300         * modules/sys_stat (sys/stat.h): Likewise.
13301         * modules/sysexits (sysexits.h): Likewise.
13302         * modules/unistd (unistd.h): Likewise.
13303
13304 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13305
13306         * modules/closein-tests (Makefile.am): Distribute
13307         `test-closein.sh'.
13308
13309 2007-05-17  Bruno Haible  <bruno@clisp.org>
13310
13311         * tests/test-printf-posix.output: Renamed from
13312         tests/test-fprintf-posix.out.
13313         * modules/fprintf-posix-tests: Update.
13314         * modules/printf-posix-tests: Update.
13315         * modules/vfprintf-posix-tests: Update.
13316         * modules/vprintf-posix-tests: Update.
13317         * tests/test-fprintf-posix.sh: Update.
13318         * tests/test-printf-posix.sh: Update.
13319         * tests/test-vfprintf-posix.sh: Update.
13320         * tests/test-vprintf-posix.sh: Update.
13321         Reported by Ralf Wildenhues.
13322
13323 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
13324
13325         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
13326         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13327         GCC 4.2, which otherwise issues a lot of warnings.
13328         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
13329         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
13330         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
13331         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
13332         it should no longer be needed.
13333         * lib/string_.h: Likewise.
13334         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
13335         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
13336         * modules/inttypes (inttypes.h): Likewise.
13337         * modules/math (math.h): Likewise.
13338         * modules/search (search.h): Likewise.
13339         * modules/signal (signal.h): Likewise.
13340         * modules/stdint (stdint.h): Likewise.
13341         * modules/stdio (stdio.h): Likewise.
13342         * modules/stdlib (stdlib.h): Likewise.
13343         * modules/string (string.h): Likewise.
13344         * modules/sys_time (sys/time.h): Likewise.
13345         * modules/time (time.h): Likewise.
13346         * modules/wchar (wchar.h): Likewise.
13347         * modules/wctype (wtype.h): Likewise.
13348
13349 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
13350
13351         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
13352
13353 2007-05-13  Bruno Haible  <bruno@clisp.org>
13354
13355         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
13356         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
13357         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
13358         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
13359         (gl_PREREQ_STRTOK_R): Don't require it here.
13360
13361 2007-05-13  Bruno Haible  <bruno@clisp.org>
13362
13363         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
13364         when used in C++ mode.
13365
13366 2007-05-12  Bruno Haible  <bruno@clisp.org>
13367
13368         * lib/linebuffer.h: Tweak doc.
13369         * lib/linebuffer.c: Likewise.
13370
13371 2007-05-12  James Youngman  <jay@gnu.org>
13372
13373         * lib/linebuffer.c (readlinebuffer_delim): New function,
13374         like readlinebuffer, but use a caller-specified delimiter.
13375         (readlinebuffer): Just call readlinebuffer_delim with '\n'
13376         as the delimiter.
13377         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
13378
13379 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13380
13381         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
13382         * modules/openat (Files): Remove openat-die.c.
13383         (Depends-on): Add openat-die.
13384         * modules/openat-die: New module.
13385
13386 2007-05-06  Bruno Haible  <bruno@clisp.org>
13387
13388         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
13389         Update with info about Cygwin.
13390         * doc/functions/fprintf.texi: Update.
13391         * doc/functions/printf.texi: Update.
13392         * doc/functions/snprintf.texi: Update.
13393         * doc/functions/sprintf.texi: Update.
13394         * doc/functions/vfprintf.texi: Update.
13395         * doc/functions/vprintf.texi: Update.
13396         * doc/functions/vsnprintf.texi: Update.
13397         * doc/functions/vsprintf.texi: Update.
13398         Reported by Eric Blake.
13399
13400 2007-05-06  Bruno Haible  <bruno@clisp.org>
13401
13402         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
13403         padding ourselves for the floating-point directives.
13404         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
13405         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
13406         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13407         gl_PRINTF_FLAG_ZERO and test its result. Invoke
13408         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
13409         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13410         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13411         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13412         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13413         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13414         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13415         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13416         * tests/test-snprintf-posix.h (test_function): Also check the width
13417         and some flags in the %f directive.
13418         * tests/test-sprintf-posix.h (test_function): Likewise.
13419         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13420         * tests/test-vasprintf-posix.c (test_function): Likewise.
13421         * doc/functions/fprintf.texi: Update.
13422         * doc/functions/printf.texi: Update.
13423         * doc/functions/snprintf.texi: Update.
13424         * doc/functions/sprintf.texi: Update.
13425         * doc/functions/vfprintf.texi: Update.
13426         * doc/functions/vprintf.texi: Update.
13427         * doc/functions/vsnprintf.texi: Update.
13428         * doc/functions/vsprintf.texi: Update.
13429
13430 2007-05-06  Bruno Haible  <bruno@clisp.org>
13431
13432         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
13433         pass the ' flag character to sprintf or snprintf.
13434         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
13435         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
13436         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13437         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
13438         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
13439         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13440         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13441         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13442         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13443         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13444         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13445         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13446         * tests/test-snprintf-posix.h (test_function): Also check the grouping
13447         flag.
13448         * tests/test-sprintf-posix.h (test_function): Likewise.
13449         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13450         * tests/test-vasprintf-posix.c (test_function): Likewise.
13451         * doc/functions/fprintf.texi: Update.
13452         * doc/functions/printf.texi: Update.
13453         * doc/functions/snprintf.texi: Update.
13454         * doc/functions/sprintf.texi: Update.
13455         * doc/functions/vfprintf.texi: Update.
13456         * doc/functions/vprintf.texi: Update.
13457         * doc/functions/vsnprintf.texi: Update.
13458         * doc/functions/vsprintf.texi: Update.
13459
13460 2007-05-01  Bruno Haible  <bruno@clisp.org>
13461
13462         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
13463
13464 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
13465
13466         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
13467         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
13468
13469 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13470
13471         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
13472         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
13473         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
13474
13475 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
13476
13477         * lib/argp-help.c (struct hol_entry): New member `ord'.
13478         (HOL_ENTRY_PTRCMP): Use ord for comparison
13479         (hol_sort): Initialize ord.
13480
13481 2007-05-01  Bruno Haible  <bruno@clisp.org>
13482
13483         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
13484         Reported by Eric Blake.
13485         * doc/gnulib.texi (Function Substitutes): Update.
13486
13487 2007-05-01  Bruno Haible  <bruno@clisp.org>
13488
13489         * doc/functions.texi: Remove file, now redundant through
13490         doc/functions/*.texi.
13491
13492 2007-05-01  Bruno Haible  <bruno@clisp.org>
13493
13494         * modules/argp (Depends-on): Add sleep.
13495
13496 2007-05-01  Bruno Haible  <bruno@clisp.org>
13497
13498         * modules/sleep-tests: New file.
13499         * tests/test-sleep.c: New file.
13500
13501         * modules/sleep: New file.
13502         * lib/sleep.c: New file.
13503         * m4/sleep.m4: New file.
13504         * lib/unistd_.h (sleep): New declaration.
13505         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
13506         HAVE_SLEEP.
13507         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
13508         * doc/functions/sleep.texi: Document the sleep module.
13509
13510 2007-05-01  Bruno Haible  <bruno@clisp.org>
13511
13512         * lib/sigprocmask.h: Remove file.
13513         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
13514         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
13515         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
13516         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
13517         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
13518         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
13519         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
13520         HAVE_SIGSET_T as a shell variable.
13521         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
13522         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
13523         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
13524         (Depends-on): Add signal. Remove verify.
13525         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
13526         (Include): Mention <signal.h> instead of sigprocmask.h.
13527         * NEWS: Mention the change.
13528         * lib/fatal-signal.c: Don't include sigprocmask.h.
13529
13530 2007-05-01  Bruno Haible  <bruno@clisp.org>
13531
13532         * modules/signal: New file.
13533         * lib/signal_.h: New file.
13534         * m4/signal_h.m4: New file.
13535
13536 2007-05-01  Bruno Haible  <bruno@clisp.org>
13537
13538         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
13539         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
13540         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
13541         HAVE_WCTYPE_CTMP_BUG into wctype.h.
13542
13543 2007-05-01  Bruno Haible  <bruno@clisp.org>
13544
13545         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
13546         configure time.
13547         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
13548         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
13549         * modules/sys_stat (Makefile.am): Substitute their values into
13550         sys/stat.h.
13551
13552 2007-05-01  Bruno Haible  <bruno@clisp.org>
13553
13554         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
13555         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
13556         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
13557
13558 2007-05-01  Bruno Haible  <bruno@clisp.org>
13559
13560         * doc/header/assert.texi: Undo last change: don't mention the gnulib
13561         'assert' module here.
13562
13563 2007-05-01  Bruno Haible  <bruno@clisp.org>
13564
13565         * doc/functions/*.texi: New files.
13566         * doc/functions/google-ranking.txt: New file.
13567         * doc/gnulib.texi (Function Substitutes): New chapter.
13568         (ctime, inet_ntoa): Remove sections.
13569         * doc/ctime.texi: Remove file.
13570         * doc/inet_ntoa.texi: Remove file.
13571         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
13572         dependencies.
13573         (%.info): New rule, specifying a --reference-limit.
13574
13575 2007-05-01  Bruno Haible  <bruno@clisp.org>
13576
13577         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
13578
13579 2007-05-01  Bruno Haible  <bruno@clisp.org>
13580
13581         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
13582         the portability of 'mkdir' to mingw systems.
13583
13584 2007-05-01  Bruno Haible  <bruno@clisp.org>
13585
13586         * doc/headers/google-ranking.txt: New file.
13587
13588 2007-04-30  Eric Blake  <ebb9@byu.net>
13589
13590         Prefer fseeko to fseek.
13591         * modules/getpass (Depends-on): Add fseeko.
13592         * lib/getpass.c (getpass): Use fseeko, not fseek.
13593
13594 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
13595
13596         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
13597         assumes the sorting is stable, while most qsort implementations
13598         are not.  Use argument addresses to ensure they never compare as
13599         equal.
13600
13601         * tests/test-argp-2.sh (usage-indent test): Fix output
13602         (func_compare): Restore diff options
13603         * tests/test-argp.c: Restore #include "progname.h"
13604
13605 2007-04-29  Bruno Haible  <bruno@clisp.org>
13606
13607         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
13608         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13609         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
13610         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13611         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
13612         (configure.ac): Define CHECK_SNPRINTF_POSIX.
13613         (TESTS, check_PROGRAMS): Add test-snprintf.
13614         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
13615         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
13616         (TESTS, check_PROGRAMS): Add test-vsnprintf.
13617         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
13618         assertions that fail on HP-UX, OSF/1, or IRIX.
13619         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
13620
13621 2007-04-29  Bruno Haible  <bruno@clisp.org>
13622
13623         * MODULES.html.sh (posix_functions): Remove 'contents'.
13624
13625 2007-04-29  Karl Berry  <karl@gnu.org>
13626
13627         * config/srclist.txt (gendocs_template_min): new entry.
13628
13629 2007-04-29  Bruno Haible  <bruno@clisp.org>
13630
13631         Work around fpurge bug on BSD systems.
13632         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
13633         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
13634         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
13635         fpurge to rpl_fpurge if the system already has this function.
13636         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
13637         the case where the system already has this function. Correct invariants
13638         on BSD systems.
13639         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
13640         BSD systems.
13641
13642 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
13643
13644         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
13645         proposed by Sven Verdoolaege.
13646
13647         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
13648         options.
13649         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
13650         (usage and help tests): Update
13651
13652 2007-04-29  Bruno Haible  <bruno@clisp.org>
13653
13654         * tests/test-fflush.c (main): Use a file of size 17, not 10.
13655         Print more information in case of failure. Disable a test on BeOS.
13656
13657 2007-04-29  Bruno Haible  <bruno@clisp.org>
13658
13659         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
13660         This helps debugging on systems on which no gdb is available.
13661
13662 2007-04-29  Bruno Haible  <bruno@clisp.org>
13663
13664         * lib/freading.h: Improve comments.
13665         * lib/fwriting.h: Likewise.
13666         * tests/test-freading.c (main): Don't check freading immediately after
13667         repositioning. Needed for glibc.
13668
13669 2007-04-29  Bruno Haible  <bruno@clisp.org>
13670
13671         * lib/freading.c (freading): Trivial simplification.
13672
13673 2007-04-28  Bruno Haible  <bruno@clisp.org>
13674
13675         * tests/test-fwriting.c (main): Also test the interaction between
13676         fflush and fwriting.
13677         * modules/fwriting-tests (Depends-on): Add fflush.
13678
13679         * tests/test-freading.c (main): Also test the interaction between
13680         fflush and freading.
13681         * modules/freading-tests (Depends-on): Add fflush.
13682
13683 2007-04-28  Bruno Haible  <bruno@clisp.org>
13684
13685         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
13686         fseeko and ftello.
13687         Suggested by Eric Blake.
13688
13689 2007-04-28  Jim Meyering  <jim@meyering.net>
13690
13691         Avoid false-negative in gl_STDINT_H's C99 conformance test.
13692         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
13693         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
13694
13695 2007-04-27  Eric Blake  <ebb9@byu.net>
13696
13697         * doc/headers/assert.texi (assert.h): Document assert module use.
13698
13699 2007-04-27  Bruno Haible  <bruno@clisp.org>
13700
13701         * doc/headers/*.texi: New files.
13702         * doc/gnulib.texi (Header File Substitutes): New chapter.
13703         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
13704         dependencies.
13705         (standards.info ,standards.html, standards.dvi): Update dependencies.
13706         (mostlyclean, clean): New targets.
13707
13708 2007-04-27  Bruno Haible  <bruno@clisp.org>
13709
13710         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
13711         * modules/sysexits (Files, Makefile.am): Update.
13712
13713         * lib/sys_socket_.h: Renamed from lib/socket_.h.
13714         * modules/sys_socket (Files, Makefile.am): Update.
13715
13716         * lib/sys_stat_.h: Renamed from lib/stat_.h.
13717         * modules/sys_stat (Files, Makefile.am): Update.
13718
13719 2007-04-27  Eric Blake  <ebb9@byu.net>
13720
13721         * lib/freading.h: Improve comments.
13722         * lib/fwriting.h: Likewise.
13723         * lib/fflush.c: Likewise.
13724
13725         Fix closein for mingw.
13726         * modules/closein-tests: Add tests for closein.
13727         * tests/test-closein.c: New file.
13728         * tests/test-closein.sh: Likewise.
13729         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
13730         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
13731
13732 2007-04-27  Bruno Haible  <bruno@clisp.org>
13733
13734         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
13735         version is < 6.
13736         * lib/math_.h [__DECC]: Likewise.
13737         * lib/stdio_.h [__DECC]: Likewise.
13738         * lib/stdlib_.h [__DECC]: Likewise.
13739         * lib/string_.h [__DECC]: Likewise.
13740         * lib/time_.h [__DECC]: Likewise.
13741         * lib/wchar_.h [__DECC]: Likewise.
13742         * lib/wctype_.h [__DECC]: Likewise.
13743
13744 2007-04-27  Bruno Haible  <bruno@clisp.org>
13745
13746         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
13747
13748 2007-04-27  Bruno Haible  <bruno@clisp.org>
13749
13750         * lib/fflush.c: Add comments.
13751         * modules/fpurge-tests (Depends-on): Add fflush.
13752         * modules/freadable-tests (Depends-on): Likewise.
13753         * modules/fwritable-tests (Depends-on): Likewise.
13754
13755 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
13756
13757         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
13758         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
13759         Report by Bruno Haible <bruno@clisp.org>.
13760
13761 2007-04-26  Eric Blake  <ebb9@byu.net>
13762
13763         Fix fflush on mingw.
13764         * modules/fflush (Depends-on): Add freading.
13765         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
13766         but unread data.
13767
13768 2007-04-26  Eric Blake  <ebb9@byu.net>
13769         and Bruno Haible  <bruno@clisp.org>
13770
13771         Implement freading and fwriting.
13772         * lib/freading.c: New file.
13773         * lib/freading.h: Likewise.
13774         * m4/freading.m4: Likewise.
13775         * modules/freading: Likewise.
13776         * modules/freading-tests: Likewise.
13777         * tests/test-freading.c: Likewise.
13778         * lib/fwriting.c: New file.
13779         * lib/fwriting.h: Likewise.
13780         * m4/fwriting.m4: Likewise.
13781         * modules/fwriting: Likewise.
13782         * modules/fwriting-tests: Likewise.
13783         * tests/test-fwriting.c: Likewise.
13784         * MODULES.html.sh (File stream based Input/Output): Mention them.
13785
13786 2007-04-26  Bruno Haible  <bruno@clisp.org>
13787
13788         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
13789         'long' when we assume it.
13790         Suggested by Eric Blake.
13791
13792 2007-04-26  Bruno Haible  <bruno@clisp.org>
13793
13794         Ensure fseeko, ftello are declared on glibc systems.
13795         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
13796         * modules/fseeko (configure.ac-early): Likewise.
13797         * modules/ftello (configure.ac-early): Likewise.
13798         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
13799         AC_FUNC_FSEEKO for this.
13800         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
13801         (gl_CHECK_FSEEKO): Remove macro.
13802
13803 2007-04-26  Bruno Haible  <bruno@clisp.org>
13804
13805         * tests/test-fflush.c (main): Also check the ftell result after
13806         fflush and fseek/fseeko.
13807         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
13808         file descriptor position cache in the stream.
13809         * lib/fseeko.c (rpl_fseeko): Likewise.
13810
13811 2007-04-26  Bruno Haible  <bruno@clisp.org>
13812
13813         * modules/fflush-tests (Depends-on): Add fseeko.
13814
13815 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
13816             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13817
13818         * lib/argz_.h: ensure error_t definition is obtained in same
13819         mechanism system argz.h would have.
13820         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
13821         argz facilities are known bad.  Err on the side of caution if
13822         cross-compiling.
13823
13824 2007-04-25  Eric Blake  <ebb9@byu.net>
13825
13826         * lib/fpurge.c (includes): Use stdlib.h for free.
13827         * tests/test-fflush.c (main): Also test fflush-fseeko.
13828
13829 2007-04-25  Bruno Haible  <bruno@clisp.org>
13830
13831         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
13832         * lib/fseeko.c: New file.
13833         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
13834         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
13835         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
13836         gl_FUNC_FSEEKO.
13837         (gl_FUNC_FSEEKO): Invoke it.
13838         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
13839         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
13840         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
13841
13842 2007-04-25  Bruno Haible  <bruno@clisp.org>
13843
13844         * modules/fflush (Depends-on): Add ftello.
13845
13846 2007-04-25  Bruno Haible  <bruno@clisp.org>
13847
13848         * modules/ftello-tests: New file.
13849         * tests/test-ftello.c: New file.
13850
13851         * modules/ftello: New file.
13852         * m4/ftello.m4: New file.
13853         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
13854         HAVE_FTELLO.
13855         * lib/stdio_.h (ftello): New declaration.
13856         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
13857         HAVE_FTELLO.
13858
13859 2007-04-25  Bruno Haible  <bruno@clisp.org>
13860
13861         * modules/fseeko-tests: New file.
13862         * tests/test-fseeko.c: New file.
13863
13864         * modules/fseeko: New file.
13865         * m4/fseeko.m4: New file.
13866         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
13867         HAVE_FSEEKO.
13868         * lib/stdio_.h (fseeko): New declaration.
13869         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
13870         HAVE_FSEEKO.
13871
13872 2007-04-25  Bruno Haible  <bruno@clisp.org>
13873
13874         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
13875
13876 2007-04-25  Bruno Haible  <bruno@clisp.org>
13877
13878         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
13879         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
13880         * tests/test-unistd.c: Likewise.
13881         * tests/test-fcntl.c: Likewise.
13882
13883 2007-04-23  Eric Blake  <ebb9@byu.net>
13884
13885         * lib/fflush.c: Fix missing include.
13886         Reported by Bruno Haible.
13887
13888 2007-04-23  Bruno Haible  <bruno@clisp.org>
13889
13890         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
13891         Reported by Eric Blake.
13892
13893 2007-04-23  Bruno Haible  <bruno@clisp.org>
13894
13895         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
13896
13897 2007-04-23  Bruno Haible  <bruno@clisp.org>
13898
13899         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
13900
13901 2007-04-23  Bruno Haible  <bruno@clisp.org>
13902
13903         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
13904         Needed on HP-UX 11.
13905
13906 2007-04-16  Eric Blake  <ebb9@byu.net>
13907
13908         Make fflush rely on fpurge.
13909         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
13910         open coding all variants.
13911         * modules/fflush (Depends-on): Add fpurge and unistd.
13912         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
13913         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
13914
13915         Fix --with-tests compilation on cygwin.
13916         * modules/argmatch-tests (Makefile.am): List gnulib library first
13917         in LDADD.
13918         * modules/argp-tests (Makefile.am): Likewise.
13919         * modules/array-list-tests (Makefile.am): Likewise.
13920         * modules/array-oset-tests (Makefile.am): Likewise.
13921         * modules/avltree-list-tests (Makefile.am): Likewise.
13922         * modules/avltree-oset-tests (Makefile.am): Likewise.
13923         * modules/avltreehash-list-tests (Makefile.am): Likewise.
13924         * modules/carray-list-tests (Makefile.am): Likewise.
13925         * modules/dirname-tests (Makefile.am): Likewise.
13926         * modules/frexp-tests (Makefile.am): Likewise.
13927         * modules/isnanl-tests (Makefile.am): Likewise.
13928         * modules/linked-list-tests (Makefile.am): Likewise.
13929         * modules/linkedhash-list-tests (Makefile.am): Likewise.
13930         * modules/lock-tests (Makefile.am): Likewise.
13931         * modules/rbtree-list-tests (Makefile.am): Likewise.
13932         * modules/rbtree-oset-tests (Makefile.am): Likewise.
13933         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
13934         * modules/tls-tests (Makefile.am): Likewise.
13935         * modules/tsearch-tests (Makefile.am): Likewise.
13936         * modules/xvasprintf-tests (Makefile.am): Likewise.
13937
13938         Fix fpurge for cygwin.
13939         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
13940         value.
13941         * modules/fpurge-tests (Depends-on): Clean up trash.
13942
13943 2007-04-16  Simon Josefsson  <simon@josefsson.org>
13944
13945         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
13946
13947         * m4/autobuild.m4: Re-indent.
13948
13949 2007-04-13  Bruno Haible  <bruno@clisp.org>
13950
13951         * modules/fpurge-tests: New file.
13952         * tests/test-fpurge.c: New file.
13953
13954         * modules/fpurge: New file.
13955         * lib/fpurge.h: New file.
13956         * lib/fpurge.c: New file.
13957         * m4/fpurge.m4: New file.
13958
13959 2007-04-13  Bruno Haible  <bruno@clisp.org>
13960
13961         * modules/fbufmode-tests: New file.
13962         * tests/test-fbufmode.c: New file.
13963
13964         * modules/fbufmode: New file.
13965         * lib/fbufmode.h: New file.
13966         * lib/fbufmode.c: New file.
13967         * m4/fbufmode.m4: New file.
13968
13969 2007-04-13  Bruno Haible  <bruno@clisp.org>
13970
13971         * modules/fwritable-tests: New file.
13972         * tests/test-fwritable.c: New file.
13973
13974         * modules/fwritable: New file.
13975         * lib/fwritable.h: New file.
13976         * lib/fwritable.c: New file.
13977         * m4/fwritable.m4: New file.
13978
13979 2007-04-13  Bruno Haible  <bruno@clisp.org>
13980
13981         * modules/freadable-tests: New file.
13982         * tests/test-freadable.c: New file.
13983
13984         * modules/freadable: New file.
13985         * lib/freadable.h: New file.
13986         * lib/freadable.c: New file.
13987         * m4/freadable.m4: New file.
13988
13989 2007-04-13  Bruno Haible  <bruno@clisp.org>
13990
13991         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
13992         MOSTLYCLEANFILES.
13993
13994 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13995
13996         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
13997         gzip bootstrap.conf to avoid dragging in i18n machinery.
13998         (gnulib_tool_option): Use it.
13999
14000 2007-04-13  Bruno Haible  <bruno@clisp.org>
14001
14002         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
14003         %F directives.
14004         * tests/test-vasprintf-posix.c (test_function): Likewise.
14005         * tests/test-snprintf-posix.h (test_function): Likewise.
14006         * tests/test-sprintf-posix.h (test_function): Likewise.
14007         * tests/test-fprintf-posix.h (test_function): Likewise.
14008         * tests/test-printf-posix.h (test_function): Likewise.
14009         * tests/test-fprintf-posix.out: Likewise.
14010
14011 2007-04-13  Bruno Haible  <bruno@clisp.org>
14012
14013         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
14014         * modules/tls-tests (configure.ac): Likewise.
14015         Reported by Arto C. Nirkko <anirkko@insel.ch>.
14016
14017 2007-04-13  Bruno Haible  <bruno@clisp.org>
14018
14019         * lib/tls.c (glthread_tls_get): Fix return type.
14020         Patch by Arto C. Nirkko <anirkko@insel.ch>.
14021
14022 2007-04-12  Eric Blake  <ebb9@byu.net>
14023
14024         * modules/gettime (Depends-on): Remove gettime.
14025         Reported by Dmitry V. Levin.
14026
14027 2007-04-12  Bruno Haible  <bruno@clisp.org>
14028
14029         * modules/fflush (Include): Mention <stdio.h>.
14030         * modules/strtoimax (Include): Mention <inttypes.h>.
14031         * modules/strtoumax (Include): Likewise.
14032
14033 2007-04-12  Eric Blake  <ebb9@byu.net>
14034
14035         * .cvsignore: New file.
14036         * .gitignore: Likewise.
14037
14038 2007-04-12  Bruno Haible  <bruno@clisp.org>
14039
14040         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
14041         not before, since $(LDADD) often contains libgnu.a.
14042         * modules/striconv-tests (test_striconv_LDADD): Likewise.
14043         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
14044         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
14045         Needed on Cygwin.
14046
14047 2007-04-12  Eric Blake  <ebb9@byu.net>
14048
14049         Work around glibc's failure to flush stdin on fclose.
14050         * lib/closein.c (close_stdin): Flush stdin before closing.
14051
14052         Work around glibc's failure to reset seekable stdin on exit.
14053         * modules/closein: New module.
14054         * lib/closein.c: New file.
14055         * lib/closein.h: Likewise.
14056         * m4/closein.m4: Likewise.
14057         * MODULES.html.sh (File stream based Input/Output): Document it.
14058
14059 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14060
14061         * gnulib-tool: Rename generated 'autobuild' script to
14062         'do-autobuild' in --create-megatestdir output.
14063
14064         * doc/gnulib.texi (Build robot for gnulib): Fix.
14065
14066 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14067
14068         * modules/sysexits (Depends-on): Add absolute-header.
14069
14070 2007-04-12  Eric Blake  <ebb9@byu.net>
14071
14072         No need to preserve errno on success.
14073         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
14074         Reported by Bruno Haible.
14075
14076 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14077
14078         * MODULES.html.sh (Support for maintaining and releasing
14079         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
14080
14081 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14082
14083         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
14084
14085 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14086
14087         * modules/autobuild: New module.
14088
14089         * m4/autobuild.m4: New file.
14090
14091 2007-04-11  Bruno Haible  <bruno@clisp.org>
14092
14093         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
14094         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
14095         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
14096         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
14097         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
14098         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14099         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14100         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
14101         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14102         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14103         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
14104         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14105         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14106         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
14107         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14108         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14109         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
14110         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14111         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14112         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
14113         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14114         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14115         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
14116         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14117         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14118         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
14119         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14120         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14121         Reported by Eric Blake.
14122
14123 2007-04-11  Bruno Haible  <bruno@clisp.org>
14124
14125         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
14126
14127 2007-04-10  Bruno Haible  <bruno@clisp.org>
14128
14129         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
14130         for NaN and Infinity. Needed on FreeBSD 6.1.
14131         * tests/test-vasnprintf-posix.c (test_function): Undo last change
14132         regarding results for "%010a" of Infinity and NaN.
14133         * tests/test-vasprintf-posix.c (test_function): Likewise.
14134         * tests/test-snprintf-posix.h (test_function): Likewise.
14135         * tests/test-sprintf-posix.h (test_function): Likewise.
14136         * tests/test-fprintf-posix.h (test_function): Likewise.
14137         * tests/test-printf-posix.h (test_function): Likewise.
14138         * tests/test-fprintf-posix.out: Likewise.
14139
14140 2007-04-10  Bruno Haible  <bruno@clisp.org>
14141
14142         * modules/locale-tests: New file.
14143         * tests/test-locale.c: New file.
14144
14145         * modules/locale: New file.
14146         * lib/locale_.h: New file.
14147         * m4/locale_h.m4: New file.
14148
14149 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
14150             Bruno Haible  <bruno@clisp.org>
14151
14152         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
14153         be determined, test for availability of the copysignf, copysign,
14154         copysignl functions.
14155         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
14156         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
14157         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
14158
14159 2007-04-09  Eric Blake  <ebb9@byu.net>
14160
14161         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
14162         * modules/stdio (Makefile.am): Support fflush.
14163         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14164         * modules/fflush: New file.
14165         * lib/fflush.c: Likewise.
14166         * m4/fflush.m4: Likewise.
14167         * modules/fflush-tests: New test.
14168         * tests/test-fflush.c: Likewise.
14169         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
14170
14171 2007-04-06  Bruno Haible  <bruno@clisp.org>
14172
14173         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
14174         (VASNPRINTF): Use signbit for faster determination whether to print a
14175         minus sign.
14176         * modules/vasnprintf (Files): Remove lib/float+.h.
14177         * modules/fprintf-posix (Depends-on): Add signbit.
14178         * modules/snprintf-posix (Depends-on): Likewise.
14179         * modules/sprintf-posix (Depends-on): Likewise.
14180         * modules/vasnprintf-posix (Depends-on): Likewise.
14181         * modules/vasprintf-posix (Depends-on): Likewise.
14182         * modules/vfprintf-posix (Depends-on): Likewise.
14183         * modules/vsnprintf-posix (Depends-on): Likewise.
14184         * modules/vsprintf-posix (Depends-on): Likewise.
14185
14186 2007-04-06  Bruno Haible  <bruno@clisp.org>
14187
14188         * tests/test-frexp.c (main): Test also the sign bit of zero results.
14189         * tests/test-frexpl.c (main): Likewise.
14190         * tests/test-ldexpl.c (main): Likewise.
14191         * modules/frexp-tests (Depends-on): Add signbit.
14192         * modules/frexpl-tests (Depdends-on): Likewise.
14193         * modules/ldexpl-tests (Depdends-on): Likewise.
14194
14195 2007-04-06  Bruno Haible  <bruno@clisp.org>
14196
14197         * modules/signbit-tests: New file.
14198         * tests/test-signbit.c: New file.
14199
14200         * modules/signbit: New file.
14201         * lib/signbitf.c: New file.
14202         * lib/signbitd.c: New file.
14203         * lib/signbitl.c: New file.
14204         * m4/signbit.m4: New file.
14205         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
14206         (signbit): New macro.
14207         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
14208         REPLACE_SIGNBIT.
14209         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
14210         REPLACE_FREXPL into math.h.
14211
14212 2007-04-06  Bruno Haible  <bruno@clisp.org>
14213
14214         * modules/isnanf-nolibm-tests: New file.
14215         * tests/test-isnanf.c: New file.
14216
14217         * modules/isnanf-nolibm: New file.
14218         * lib/isnanf.h: New file.
14219         * lib/isnanf.c: New file.
14220         * lib/isnan.c: Consider the USE_FLOAT macro.
14221         * m4/isnanf.m4: New file.
14222
14223 2007-04-06  Bruno Haible  <bruno@clisp.org>
14224
14225         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
14226         (Link): New section.
14227
14228         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
14229
14230 2007-04-06  Bruno Haible  <bruno@clisp.org>
14231
14232         Assume the 'long double' type.
14233         * m4/longdouble.m4: Remove file.
14234         * config/srclist.txt: Don't mention longdouble.m4.
14235         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
14236         * lib/float+.h: Likewise.
14237         * lib/frexp.c: Likewise.
14238         * lib/printf-args.h: Likewise.
14239         * lib/printf-args.c: Likewise.
14240         * lib/printf-frexp.c: Likewise.
14241         * lib/printf-parse.c: Likewise.
14242         * lib/vasnprintf.c: Likewise.
14243         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
14244         * m4/intl.m4: Likewise.
14245         * m4/isnanl.m4: Likewise.
14246         * m4/printf.m4: Likewise.
14247         * m4/printf-frexpl.m4: Likewise.
14248         * m4/vasnprintf.m4: Likewise.
14249         * modules/allocsa (Files): Remove m4/longdouble.m4.
14250         * modules/gettext (Files): Likewise.
14251         * modules/relocatable-prog-wrapper (Files): Likewise.
14252         * modules/vasnprintf (Files): Likewise.
14253         * modules/isnanl (Files): Likewise.
14254         (Include): Simplify.
14255         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
14256         (Include): Simplify.
14257         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
14258         (Include): Simplify.
14259         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
14260         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14261         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
14262         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14263         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14264         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14265         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
14266         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14267         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14268         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14269         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
14270         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14271         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
14272         * tests/test-isnanl.c: Likewise.
14273         * tests/test-snprintf-posix.h: Likewise.
14274         * tests/test-sprintf-posix.h: Likewise.
14275         * tests/test-vasnprintf-posix.c: Likewise.
14276         * tests/test-vasnprintf-posix2.c: Likewise.
14277         * tests/test-vasprintf-posix.c: Likewise.
14278
14279 2007-04-06  Bruno Haible  <bruno@clisp.org>
14280
14281         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
14282         * lib/math_.h [__DECC]: Include the overridden include file through
14283         #include_next, outside the double-inclusion guard.
14284         * lib/stdio_.h [__DECC]: Likewise.
14285         * lib/stdlib_.h [__DECC]: Likewise.
14286         * lib/string_.h [__DECC]: Likewise.
14287         * lib/time_.h [__DECC]: Likewise.
14288         * lib/wchar_.h [__DECC]: Likewise.
14289         * lib/wctype_.h [__DECC]: Likewise.
14290         * lib/inttypes_.h [__DECC]: Likewise.
14291         Reported by Albert Chin <china@thewrittenword.com> in
14292         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
14293
14294 2007-04-04  Eric Blake  <ebb9@byu.net>
14295
14296         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
14297         1.5.x.
14298
14299 2007-04-04  Bruno Haible  <bruno@clisp.org>
14300
14301         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
14302         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
14303
14304 2007-04-04  Bruno Haible  <bruno@clisp.org>
14305
14306         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
14307         results for "%010a" of Infinity and NaN.
14308         * tests/test-vasprintf-posix.c (test_function): Likewise.
14309         * tests/test-snprintf-posix.h (test_function): Likewise.
14310         * tests/test-sprintf-posix.h (test_function): Likewise.
14311         * tests/test-fprintf-posix.h (test_function): Remove these tests.
14312         * tests/test-printf-posix.h (test_function): Likewise.
14313         * tests/test-fprintf-posix.out: Update.
14314         Needed for FreeBSD 6.1.
14315
14316 2007-04-04  Bruno Haible  <bruno@clisp.org>
14317
14318         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
14319         directly used by the gnulib modules nor by gnulib-tool.
14320
14321 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14322
14323         * DEPENDENCIES: Give overall description of version dependency
14324         desirability.  Use more-typical names for apps.
14325         Add shell, coreutils, diffutils, grep, tar, gzip.
14326
14327 2007-04-04  Simon Josefsson  <simon@josefsson.org>
14328
14329         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
14330
14331 2007-04-04  Karl Berry  <karl@gnu.org>
14332
14333         * MODULES.html.sh (func_module): missing '.
14334
14335 2007-04-03  Bruno Haible  <bruno@clisp.org>
14336
14337         * modules/argmatch-tests (Makefile.am): New variable
14338         test_argmatch_LDADD.
14339         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
14340         * modules/array-list-tests (Makefile.am): New variable
14341         test_array_list_LDADD.
14342         * modules/array-oset-tests (Makefile.am): New variable
14343         test_array_oset_LDADD.
14344         * modules/avltree-list-tests (Makefile.am): New variable
14345         test_avltree_list_LDADD.
14346         * modules/avltree-oset-tests (Makefile.am): New variable
14347         test_avltree_oset_LDADD.
14348         * modules/avltreehash-list-tests (Makefile.am): New variable
14349         test_avltreehash_list_LDADD.
14350         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
14351         test_canonicalize_lgpl_LDADD.
14352         * modules/carray-list-tests (Makefile.am): New variable
14353         test_carray_list_LDADD.
14354         * modules/dirname-tests (Makefile.am): New variable
14355         test_dirname_LDADD.
14356         * modules/linked-list-tests (Makefile.am): New variable
14357         test_linked_list_LDADD.
14358         * modules/linkedhash-list-tests (Makefile.am): New variable
14359         test_linkedhash_list_LDADD.
14360         * modules/rbtree-list-tests (Makefile.am): New variable
14361         test_rbtree_list_LDADD.
14362         * modules/rbtree-oset-tests (Makefile.am): New variable
14363         test_rbtree_oset_LDADD.
14364         * modules/rbtreehash-list-tests (Makefile.am): New variable
14365         test_rbtreehash_list_LDADD.
14366         * modules/xvasprintf-tests (Makefile.am): New variable
14367         test_xvasprintf_LDADD.
14368         Reported by Eric Blake.
14369
14370 2007-04-03  Eric Blake  <ebb9@byu.net>
14371
14372         * DEPENDENCIES: Weaken m4 requirements.
14373
14374 2007-04-03  Bruno Haible  <bruno@clisp.org>
14375
14376         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
14377         * modules/isnanl-tests (configure.ac): Likewise.
14378
14379 2007-04-03  Ben Pfaff  <blp@gnu.org>
14380
14381         * modules/iconv_open: Add $(srcdir)/ to source directory
14382         references in Makefile fragments that call gperf, to fix VPATH
14383         builds.
14384
14385 2007-04-03  Bruno Haible  <bruno@clisp.org>
14386
14387         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
14388         * lib/ldexpl.c: Undo last change.
14389
14390 2007-04-03  Bruno Haible  <bruno@clisp.org>
14391
14392         * modules/printf-frexpl (Depends-on): Undo last change.
14393         (Files): Add m4/ldexpl.m4.
14394
14395 2007-04-03  Bruno Haible  <bruno@clisp.org>
14396
14397         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
14398         * modules/isnanl (Link): New section.
14399
14400         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
14401         * modules/frexp (Link): New section.
14402
14403         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
14404         * modules/frexpl (Link): New section.
14405
14406         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
14407         * modules/ldexpl (Link): New section.
14408
14409 2007-04-03  Bruno Haible  <bruno@clisp.org>
14410
14411         * modules/TEMPLATE-EXTENDED: New file.
14412         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
14413
14414 2007-04-03  Bruno Haible  <bruno@clisp.org>
14415
14416         * DEPENDENCIES: New file.
14417         Suggested by Simon Josefsson.
14418
14419 2007-04-03  Bruno Haible  <bruno@clisp.org>
14420
14421         * doc/gnulib.texi: Escape @.
14422
14423 2007-04-03  James Youngman  <jay@gnu.org>
14424         and Paul Eggert  <eggert@cs.ucla.edu>
14425
14426         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
14427         birthtime on all systems that have birthtime, not just those which
14428         use st_birthtimensec rather than st_birthtim.  Putting zero in
14429         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
14430         that the birth time is not available for files on an NFS mount.
14431
14432 2007-04-03  Simon Josefsson  <simon@josefsson.org>
14433
14434         * modules/memxor: Move back from crypto/, suggested by Bruno.
14435         * modules/crypto/hmac-sha1: Fix memxor dependency.
14436
14437         * modules/crypto/gc: Moved from ../.
14438
14439 2007-04-02  Eric Blake  <ebb9@byu.net>
14440
14441         * lib/ldexpl.c (includes): Avoid libm.
14442
14443         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
14444
14445 2007-04-02  Bruno Haible  <bruno@clisp.org>
14446
14447         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
14448         on IRIX.
14449
14450 2007-04-02  Bruno Haible  <bruno@clisp.org>
14451
14452         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
14453         x86 or x86_64 platforms running MacOS X.
14454         Reported by Ryan Schmidt <@ryandesign.com>.
14455
14456 2007-04-02  Bruno Haible  <bruno@clisp.org>
14457
14458         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
14459         i386.
14460
14461 2007-04-01  Simon Josefsson  <simon@josefsson.org>
14462
14463         * modules/crypto/arcfour: Moved from ../.
14464         * modules/crypto/arcfour-tests: Moved from ../.
14465         * modules/crypto/arctwo: Moved from ../.
14466         * modules/crypto/arctwo-tests: Moved from ../.
14467         * modules/crypto/des: Moved from ../.
14468         * modules/crypto/des-tests: Moved from ../.
14469         * modules/crypto/gc-arcfour: Moved from ../.
14470         * modules/crypto/gc-arcfour-tests: Moved from ../.
14471         * modules/crypto/gc-arctwo: Moved from ../.
14472         * modules/crypto/gc-arctwo-tests: Moved from ../.
14473         * modules/crypto/gc-des: Moved from ../.
14474         * modules/crypto/gc-des-tests: Moved from ../.
14475         * modules/crypto/gc-hmac-md5: Moved from ../.
14476         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
14477         * modules/crypto/gc-hmac-sha1: Moved from ../.
14478         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
14479         * modules/crypto/gc-md2: Moved from ../.
14480         * modules/crypto/gc-md2-tests: Moved from ../.
14481         * modules/crypto/gc-md4: Moved from ../.
14482         * modules/crypto/gc-md4-tests: Moved from ../.
14483         * modules/crypto/gc-md5: Moved from ../.
14484         * modules/crypto/gc-md5-tests: Moved from ../.
14485         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
14486         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
14487         * modules/crypto/gc-random: Moved from ../.
14488         * modules/crypto/gc-rijndael: Moved from ../.
14489         * modules/crypto/gc-rijndael-tests: Moved from ../.
14490         * modules/crypto/gc-sha1: Moved from ../.
14491         * modules/crypto/gc-sha1-tests: Moved from ../.
14492         * modules/crypto/gc-tests: Moved from ../.
14493         * modules/crypto/hmac-md5: Moved from ../.
14494         * modules/crypto/hmac-md5-tests: Moved from ../.
14495         * modules/crypto/hmac-sha1: Moved from ../.
14496         * modules/crypto/hmac-sha1-tests: Moved from ../.
14497         * modules/crypto/md2: Moved from ../.
14498         * modules/crypto/md2-tests: Moved from ../.
14499         * modules/crypto/md4: Moved from ../.
14500         * modules/crypto/md4-tests: Moved from ../.
14501         * modules/crypto/md5: Moved from ../.
14502         * modules/crypto/md5-tests: Moved from ../.
14503         * modules/crypto/memxor: Moved from ../.
14504         * modules/crypto/rijndael: Moved from ../.
14505         * modules/crypto/rijndael-tests: Moved from ../.
14506         * modules/crypto/sha1: Moved from ../.
14507
14508 2007-03-30  James Youngman  <jay@gnu.org>
14509
14510         * tests/test-stat-time.c (prepare_test): use chmod() rather than
14511         rename() to change the ctime of a file (because ctime is unaffected
14512         by rename on jfs2 on AIX 5.1).
14513         (main): Start by doing cleanup, in case a previous run failed leaving
14514         test files behind.
14515
14516 2007-03-31  Bruno Haible  <bruno@clisp.org>
14517
14518         Support old proprietary implementations of iconv.
14519         * modules/iconv_open: New file.
14520         * lib/iconv_.h: New file.
14521         * m4/iconv_h.m4: New file.
14522         * lib/iconv_open.c: New file.
14523         * lib/iconv_open-aix.gperf: New file.
14524         * lib/iconv_open-hpux.gperf: New file.
14525         * lib/iconv_open-irix.gperf: New file.
14526         * lib/iconv_open-osf.gperf: New file.
14527         * m4/iconv_open.m4: New file.
14528         * modules/linebreak (Depends-on): Add iconv_open.
14529         * modules/striconv (Depends-on): Likewise.
14530         * modules/striconveh (Depends-on): Likewise.
14531         * modules/unicodeio (Depends-on): Likewise.
14532         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
14533         (iconv_t)(-1).
14534         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
14535         conversion if cd is (iconv_t)(-1).
14536         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
14537         is not possible.
14538
14539 2007-03-31  Bruno Haible  <bruno@clisp.org>
14540
14541         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14542         work on Solaris either. Protect also second use of "autodetect_jp".
14543
14544 2007-03-31  Bruno Haible  <bruno@clisp.org>
14545
14546         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
14547         the function is not present.
14548
14549 2007-03-31  Bruno Haible  <bruno@clisp.org>
14550
14551         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
14552         the function is not present.
14553
14554 2007-03-31  Bruno Haible  <bruno@clisp.org>
14555
14556         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
14557         a bug in HP-UX iconv_open().
14558
14559 2007-03-31  Bruno Haible  <bruno@clisp.org>
14560
14561         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
14562         (Mathematics <math.h>): New section, add fpieee.
14563         (Input/output <stdio.h>): Add fseterr.
14564         (Mathematics <math.h>): New section, add printf-frexp.
14565         (Container data structures): Add sublist.
14566         (Core language properties): Add fpucw, inline.
14567         (Functions for greatest-width integer types <inttypes.h>): Add
14568         imaxabs, imaxdiv, inttypes.
14569         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
14570         isnanl-nolibm, ldexp.
14571         (Mathematics <math.h>): New section, add printf-frexpl.
14572         (Support for systems lacking POSIX:2001): Add fprintf-posix,
14573         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
14574         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
14575         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
14576         (Unicode string functions): Add unistr/u*-mbtoucr.
14577         (Java): Add javacomp-script, javaexec-script.
14578         (C#): Add csharpcomp-script, csharpexec-script.
14579         (Support for building libraries and executables): Add havelib,
14580         relocatable-*.
14581         (Support for maintaining and releasing projects): Renamed from
14582         'Support for maintaining and release projects'. Add announce-gen.
14583
14584 2007-03-31  Bruno Haible  <bruno@clisp.org>
14585
14586         * README: Talk primarily about git.
14587         (git and CVS): Renamed from CVS.
14588         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
14589         gnulib is available through git.
14590         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
14591
14592 2007-03-30  Bruno Haible  <bruno@clisp.org>
14593
14594         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
14595         * lib/poll_.h: Likewise.
14596         * lib/stat_.h: Likewise.
14597         * lib/sys_time_.h: Likewise.
14598         * lib/sysexit_.h: Likewise.
14599         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
14600         * lib/stdbool_.h: Likewise.
14601         * lib/byteswap_.h: Add double-inclusion guard.
14602
14603 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
14604
14605         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
14606
14607 2007-03-30  Karl Berry  <karl@gnu.org>
14608
14609         * config/srclist-update: double space after USA in the license
14610         substitution, since that's how it's usually (?) written.
14611
14612 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
14613
14614         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
14615         reported by Bruno Haible.
14616
14617 2007-03-29  Bruno Haible  <bruno@clisp.org>
14618
14619         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
14620         a bug in AIX iconv().
14621
14622 2007-03-29  Bruno Haible  <bruno@clisp.org>
14623
14624         * modules/ldexpl-tests: New file.
14625         * tests/test-ldexpl.c: New file.
14626
14627 2007-03-29  Bruno Haible  <bruno@clisp.org>
14628
14629         * lib/ldexpl.c: Include fpucw.h.
14630         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
14631         multiplication.
14632         * modules/ldexpl (Depends-on): Add fpucw.
14633
14634 2007-03-29  Bruno Haible  <bruno@clisp.org>
14635
14636         * modules/ldexpl: New file.
14637         * m4/ldexpl.m4: New file.
14638         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
14639         set.
14640         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
14641         REPLACE_LDEXPL.
14642         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
14643         REPLACE_LDEXPL.
14644         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
14645         gl_FUNC_LDEXPL_WORKS.
14646         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
14647         * modules/mathl (Files): Remove lib/ldexpl.c.
14648         (Depends-on): Add ldexpl.
14649
14650 2007-03-29  Bruno Haible  <bruno@clisp.org>
14651
14652         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
14653
14654 2007-03-29  Bruno Haible  <bruno@clisp.org>
14655
14656         * tests/test-striconveh.c (main): Don't assume that a direct conversion
14657         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
14658         and possibly also HP-UX.
14659         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14660         work on AIX, IRIX, HP-UX, OSF/1.
14661         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
14662         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
14663         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
14664         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
14665         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
14666         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
14667
14668 2007-03-29  Bruno Haible  <bruno@clisp.org>
14669
14670         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
14671
14672 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14673
14674         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
14675         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
14676
14677 2007-03-29  Eric Blake  <ebb9@byu.net>
14678
14679         * lib/acl-internal.h: Remove redundant include.
14680         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
14681         Cygwin when a file is locked.
14682
14683 2007-03-29  Bruno Haible  <bruno@clisp.org>
14684
14685         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
14686         file.
14687         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
14688
14689 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14690
14691         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
14692         try to remove a parent directory if the child couldn't be removed
14693         (except for the first rmdir, which could fail because the child
14694         doesn't exist).  Problem reported by Jeff Blaine in
14695         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
14696
14697 2007-03-28  Bruno Haible  <bruno@clisp.org>
14698
14699         * lib/striconveh.c (utf8conv_carefully): New function.
14700         (mem_cd_iconveh_internal): Invoke it.
14701
14702 2007-03-28  Bruno Haible  <bruno@clisp.org>
14703
14704         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
14705         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
14706         input.
14707         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
14708         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
14709         unistr/u8-uctomb.
14710
14711 2007-03-28  Bruno Haible  <bruno@clisp.org>
14712
14713         * modules/unistr/u8-mbtoucr: New file.
14714         * lib/unistr/u8-mbtoucr.c: New file.
14715         * modules/unistr/u16-mbtoucr: New file.
14716         * lib/unistr/u16-mbtoucr.c: New file.
14717         * modules/unistr/u16-mbtoucr: New file.
14718         * lib/unistr/u16-mbtoucr.c: New file.
14719         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
14720
14721 2007-03-27  Simon Josefsson  <simon@josefsson.org>
14722             Bruno Haible  <bruno@clisp.org>
14723
14724         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
14725         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
14726         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
14727
14728         * m4/stdio_h.m4: Add stubs for vasprintf too.
14729
14730         * modules/stdio: Support vasprintf in sed command.
14731
14732         * modules/vasprintf: Depend on stdio for prototypes.  Remove
14733         vasprintf.h.  Add stdio module indicator.
14734
14735         * lib/stdio_.h: Declare asprintf and vasprintf, based on
14736         vasprintf.h.
14737
14738         * lib/vasprintf.h: File removed.
14739
14740         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
14741         * lib/vasprintf.c: Ditto.
14742         * lib/xvasprintf.c: Ditto.
14743         * tests/test-vasprintf-posix.c: Ditto.
14744         * tests/test-vasprintf.c: Ditto.
14745
14746 2007-03-27  Bruno Haible  <bruno@clisp.org>
14747
14748         Make vasnprintf multithread-safe.
14749         * lib/vasnprintf.c (decimal_point_char): New function.
14750         (VASNPRINTF): Use it.
14751         Suggested by Simon Josefsson.
14752
14753 2007-03-27  Eric Blake  <ebb9@byu.net>
14754
14755         Support sub-second birthtime on cygwin.
14756         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
14757         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
14758         (get_stat_birthtime): Also work with st_birthtim.
14759
14760 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
14761
14762         * lib/stat-time.h (USE_BIRTHTIME): Remove.
14763         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
14764         (get_stat_birthtime_ns): Do not try to use "spare" fields.
14765         (get_stat_birthtime_ns): Simplify compile-time tests.
14766         (get_stat_birthtime): Change the API to look like
14767         get_stat_mtime etc., except return a negative tv_nsec on error.
14768         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
14769         Don't check for "spare" fields.
14770         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
14771         or for struct stat.st_birthtime, as these tests aren't used.
14772         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
14773
14774 2007-03-27  Bruno Haible  <bruno@clisp.org>
14775
14776         * lib/stat-time.h: Include <sys/stat.h>.
14777
14778 2007-03-27  James Youngman  <jay@gnu.org>
14779
14780         * lib/stat-time.h (get_stat_birthtime): New function for
14781           retrieving st_birthtime as provided by UFS2 (hence *BSD).
14782         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
14783           and its variants.
14784         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
14785         * modules/stat-time-test: New file.
14786         * tests/test-stat-time.c: New test, devised by Bruno Haible.
14787
14788 2007-03-26  Bruno Haible  <bruno@clisp.org>
14789
14790         Better support of signalling NaNs.
14791         * lib/atanl.c: Include isnanl.h.
14792         (atanl): Perform test for NaN at the beginning of the function and
14793         through a call to isnanl.
14794         * lib/cosl.c: Include isnanl.h.
14795         (cosl): Perform test for NaN at the beginning of the function and
14796         through a call to isnanl.
14797         * lib/ldexpl.c: Include isnanl.h.
14798         (ldexpl): Perform test for NaN through a call to isnanl.
14799         * lib/logl.c: Include isnanl.h.
14800         (logl): Perform test for NaN at the beginning of the function and
14801         through a call to isnanl.
14802         * lib/sinl.c: Include isnanl.h.
14803         (sinl): Perform test for NaN at the beginning of the function and
14804         through a call to isnanl.
14805         * lib/sqrtl.c: Include isnanl.h.
14806         (sqrtl): Perform test for NaN at the beginning of the function and
14807         through a call to isnanl.
14808         * lib/tanl.c: Include isnanl.h.
14809         (tanl): Perform test for NaN at the beginning of the function and
14810         through a call to isnanl.
14811         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
14812         * modules/mathl (Depends-on): Add isnanl.
14813
14814 2007-03-26  Eric Blake  <ebb9@byu.net>
14815
14816         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
14817         regression in logic sense of previous patch.
14818
14819 2007-03-26  Bruno Haible  <bruno@clisp.org>
14820
14821         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
14822         unportable shell command "if ! ...".
14823         Reported by Ralf Wildenhues.
14824
14825 2007-03-25  Bruno Haible  <bruno@clisp.org>
14826
14827         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
14828         <sysexits.h> file, and only add EX_CONFIG.
14829         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
14830         absolute file name and whether it is sufficient. Substitute also
14831         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
14832         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
14833         ABSOLUTE_SYSEXITS_H into sysexits.h.
14834
14835 2007-03-25  Bruno Haible  <bruno@clisp.org>
14836
14837         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
14838         hints is NULL.
14839
14840 2007-03-25  Bruno Haible  <bruno@clisp.org>
14841
14842         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
14843         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
14844
14845 2007-03-25  Bruno Haible  <bruno@clisp.org>
14846
14847         * lib/vasnprintf.c: Include langinfo.h.
14848         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
14849         multithread-safe.
14850         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
14851         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
14852         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
14853         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
14854         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
14855         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
14856         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
14857         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
14858         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
14859         Reported by Simon Josefsson.
14860
14861 2007-03-25  Bruno Haible  <bruno@clisp.org>
14862
14863         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
14864         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
14865         * modules/vasnprintf (Depends-on): Add stdint.
14866
14867 2007-03-25  Bruno Haible  <bruno@clisp.org>
14868
14869         * modules/fpieee: New file.
14870         * m4/fpieee.m4: New file.
14871         * modules/isnan-nolibm (Depends-on): Add fpieee.
14872         * modules/isnanl-nolibm (Depends-on): Add fpieee.
14873         * modules/isnanl (Depends-on): Add fpieee.
14874
14875 2007-03-25  Bruno Haible  <bruno@clisp.org>
14876
14877         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
14878
14879 2007-03-25  Bruno Haible  <bruno@clisp.org>
14880
14881         Avoid test failures on IRIX 6.5.
14882         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
14883         (main): Use it.
14884         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
14885         macros.
14886         (main): Use them.
14887
14888 2007-03-25  Bruno Haible  <bruno@clisp.org>
14889
14890         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
14891         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
14892         exists but doesn't work.
14893         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
14894         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
14895         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
14896         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
14897
14898 2007-03-25  Bruno Haible  <bruno@clisp.org>
14899
14900         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
14901         returns inf. Needed on IRIX 6.5.
14902
14903 2007-03-25  Bruno Haible  <bruno@clisp.org>
14904
14905         * tests/test-frexpl.c: Include isnanl-nolibm.h.
14906         (main): Use isnanl instead of x != x idiom.
14907         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
14908
14909         * tests/test-frexp.c: Include isnan.h.
14910         (main): Use isnan instead of x != x idiom.
14911         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
14912
14913 2007-03-25  Bruno Haible  <bruno@clisp.org>
14914
14915         * tests/test-frexp.c (NaN): New function/macro.
14916         (main): Use it instead of 0.0 / 0.0.
14917         * tests/test-isnan.c (NaN): New function/macro.
14918         (main): Use it instead of 0.0 / 0.0.
14919         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
14920         (test_function): Use it instead of 0.0 / 0.0.
14921         * tests/test-vasprintf-posix.c (NaN): New function/macro.
14922         (test_function): Use it instead of 0.0 / 0.0.
14923         * tests/test-snprintf-posix.h (NaN): New function/macro.
14924         (test_function): Use it instead of 0.0 / 0.0.
14925         * tests/test-sprintf-posix.h (NaN): New function/macro.
14926         (test_function): Use it instead of 0.0 / 0.0.
14927         * tests/test-fprintf-posix.h (NaN): New function/macro.
14928         (test_function): Use it instead of 0.0 / 0.0.
14929         * tests/test-printf-posix.h (NaN): New function/macro.
14930         (test_function): Use it instead of 0.0 / 0.0.
14931
14932         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
14933
14934 2007-03-25  Bruno Haible  <bruno@clisp.org>
14935
14936         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
14937
14938 2007-03-25  Bruno Haible  <bruno@clisp.org>
14939
14940         * lib/regexec.c (merge_state_with_log): Make static.
14941
14942 2007-03-25  Bruno Haible  <bruno@clisp.org>
14943
14944         * lib/trigl.c (kernel_rem_pio2): Make static.
14945
14946 2007-03-25  Bruno Haible  <bruno@clisp.org>
14947
14948         * lib/sincosl.c (sincosl_table): Make static.
14949
14950 2007-03-25  Bruno Haible  <bruno@clisp.org>
14951
14952         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
14953         if the compiler does not support C99.
14954
14955 2007-03-25  Bruno Haible  <bruno@clisp.org>
14956
14957         * modules/time (Makefile.am): Ensure all rule action lines start with a
14958         tab.
14959
14960 2007-03-24  Bruno Haible  <bruno@clisp.org>
14961
14962         * modules/tsearch-tests: New file.
14963         * tests/test-tsearch.sh: New file.
14964         * tests/test-tsearch.c: New file, mostly copied from glibc.
14965
14966         * modules/search-tests: New file.
14967         * tests/test-search.c: New file.
14968
14969         * modules/search: New file.
14970         * lib/search_.h: New file, incorporating lib/tsearch.h.
14971         * m4/search_h.m4: New file.
14972         * lib/tsearch.h: Remove file.
14973         * lib/tsearch.c: Include search.h instead of tsearch.h.
14974         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
14975         HAVE_TSEARCH.
14976         * modules/tsearch (Files): Remove lib/tsearch.h.
14977         (Depends-on): Add search.
14978         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
14979         (Include): Change tsearch.h into search.h.
14980
14981 2007-03-24  Bruno Haible  <bruno@clisp.org>
14982
14983         * modules/fpucw: New file.
14984         * lib/fpucw.h: New file.
14985         * lib/frexp.c: Include fpucw.h.
14986         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
14987         (FUNC): Use them.
14988         * lib/printf-frexp.c: Include fpucw.h.
14989         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
14990         (FUNC): Use them.
14991         * lib/vasnprintf.c: Include fpucw.h.
14992         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
14993         'long double' calculations.
14994         * tests/test-frexpl.c: Include fpucw.h.
14995         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
14996         * tests/test-printf-frexpl.c: Include fpucw.h.
14997         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
14998         * modules/frexpl (Depends-on): Add fpucw.
14999         * modules/printf-frexpl (Depends-on): Likewise.
15000         * modules/fprintf-posix (Depends-on): Likewise.
15001         * modules/snprintf-posix (Depends-on): Likewise.
15002         * modules/sprintf-posix (Depends-on): Likewise.
15003         * modules/vasnprintf-posix (Depends-on): Likewise.
15004         * modules/vasprintf-posix (Depends-on): Likewise.
15005         * modules/vfprintf-posix (Depends-on): Likewise.
15006         * modules/vsnprintf-posix (Depends-on): Likewise.
15007         * modules/vsprintf-posix (Depends-on): Likewise.
15008         * modules/frexpl-tests (Depends-on): Likewise.
15009         * modules/printf-frexpl-tests (Depends-on): Likewise.
15010
15011 2007-03-24  Bruno Haible  <bruno@clisp.org>
15012
15013         * lib/float+.h: New file.
15014         * lib/isnan.c: Include float+.h.
15015         (SIZE): New macro.
15016         (FUNC): Compare only SIZE bytes of the value.
15017         * lib/vasnprintf.c: Include float+.h.
15018         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
15019         SIZEOF_LDBL or SIZEOF_DBL bytes.
15020         * modules/isnan-nolibm (Files): Add lib/float+.h.
15021         * modules/isnanl-nolibm (Files): Add lib/float+.h.
15022         * modules/isnanl (Files): Add lib/float+.h.
15023         * modules/vasnprintf (Files): Add lib/float+.h.
15024
15025 2007-03-24  Bruno Haible  <bruno@clisp.org>
15026
15027         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
15028         include isnanl-nolibm.h.
15029
15030 2007-03-24  Bruno Haible  <bruno@clisp.org>
15031
15032         * tests/test-read-file.c (main): Don't produce spurious output for
15033         expected situations. Make the test fail if it encountered unexpected
15034         results.
15035
15036 2007-03-24  Bruno Haible  <bruno@clisp.org>
15037
15038         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
15039         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
15040
15041 2007-03-24  Bruno Haible  <bruno@clisp.org>
15042
15043         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
15044
15045 2007-03-24  Bruno Haible  <bruno@clisp.org>
15046
15047         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
15048         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
15049
15050         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
15051         * modules/utf8-ucs4: Turn into a symbolic link to module
15052         unistr/u8-mbtouc.
15053
15054         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
15055         utf8-ucs4-unsafe.
15056         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
15057         unistr/u8-mbtouc-unsafe.
15058
15059         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
15060         * modules/utf16-ucs4: Turn into a symbolic link to module
15061         unistr/u16-mbtouc.
15062
15063         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
15064         utf16-ucs4-unsafe.
15065         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
15066         unistr/u16-mbtouc-unsafe.
15067
15068         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
15069         * modules/ucs4-utf8: Turn into a symbolic link to module
15070         unistr/u8-ubtomb.
15071
15072         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
15073         * modules/ucs4-utf16: Turn into a symbolic link to module
15074         unistr/u16-ubtomb.
15075
15076 2007-03-24  Bruno Haible  <bruno@clisp.org>
15077
15078         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
15079         Enable the function only if HAVE_INLINE.
15080         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
15081         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15082         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
15083         Enable the function only if HAVE_INLINE.
15084         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
15085         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15086         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
15087         Enable the function only if HAVE_INLINE.
15088         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
15089         Enable the function only if HAVE_INLINE.
15090         * modules/utf8-ucs4: Update.
15091         * modules/utf8-ucs4-unsafe: Update.
15092         * modules/utf16-ucs4: Update.
15093         * modules/utf16-ucs4-unsafe: Update.
15094         * modules/ucs4-utf8: Update.
15095         * modules/ucs4-utf16: Update.
15096
15097 2007-03-24  Bruno Haible  <bruno@clisp.org>
15098
15099         * lib/utf8-ucs4.h: Remove file.
15100         * lib/utf8-ucs4-unsafe.h: Remove file.
15101         * lib/utf16-ucs4.h: Remove file.
15102         * lib/utf16-ucs4-unsafe.h: Remove file.
15103         * lib/ucs4-utf8.h: Remove file.
15104         * lib/ucs4-utf16.h: Remove file.
15105         * lib/unistr.h: Include their previous contents.
15106         * m4/utf-ucs4.m4: Remove file.
15107         * m4/ucs4-utf.m4: Remove file.
15108         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
15109         (Depends-on): Add unistr/base.
15110         (configure.ac): Remove gl_UTF_UCS4.
15111         (Makefile.am): Update.
15112         (Include): Change to unistr.h.
15113         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
15114         (Depends-on): Add unistr/base.
15115         (configure.ac): Remove gl_UTF_UCS4.
15116         (Makefile.am): Update.
15117         (Include): Change to unistr.h.
15118         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
15119         (Depends-on): Add unistr/base.
15120         (configure.ac): Remove gl_UTF_UCS4.
15121         (Makefile.am): Update.
15122         (Include): Change to unistr.h.
15123         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
15124         (Depends-on): Add unistr/base.
15125         (configure.ac): Remove gl_UTF_UCS4.
15126         (Makefile.am): Update.
15127         (Include): Change to unistr.h.
15128         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
15129         (Depends-on): Add unistr/base.
15130         (configure.ac): Remove gl_UCS4_UTF.
15131         (Makefile.am): Update.
15132         (Include): Change to unistr.h.
15133         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
15134         (Depends-on): Add unistr/base.
15135         (configure.ac): Remove gl_UCS4_UTF.
15136         (Makefile.am): Update.
15137         (Include): Change to unistr.h.
15138         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
15139         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
15140         utf8-ucs4-unsafe.h.
15141         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
15142         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
15143         utf16-ucs4-unsafe.h.
15144         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
15145         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
15146         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
15147         * lib/unistr/u8-strchr.c: Likewise.
15148         * lib/unistr/u8-strrchr.c: Likewise.
15149         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
15150         * lib/unistr/u16-strchr.c: Likewise.
15151         * lib/unistr/u16-strrchr.c: Likewise.
15152         * lib/striconveh.c: Update.
15153         * lib/linebreak.c: Update.
15154
15155 2007-03-24  Bruno Haible  <bruno@clisp.org>
15156
15157         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
15158         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
15159
15160 2007-03-22  Bruno Haible  <bruno@clisp.org>
15161
15162         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
15163
15164 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
15165
15166         * MODULES.html.sh (File system functions): New module write-any-file.
15167         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
15168         * m4/write-any-file.m4: New files.
15169
15170 2007-03-23  Eric Blake  <ebb9@byu.net>
15171
15172         * gnulib-tool: Rearrange space-tab sequences, since some editors
15173         like to eat them.
15174
15175 2007-03-23  Eric Blake  <ebb9@byu.net>
15176
15177         * lib/version-etc.c (version_etc_va): Update license wording to
15178         be more concise.  Recommended by Richard Stallman.
15179
15180 2007-03-22  Bruno Haible  <bruno@clisp.org>
15181
15182         * lib/poll.c (MSG_PEEK): New fallback definition.
15183
15184 2007-03-22  Bruno Haible  <bruno@clisp.org>
15185
15186         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
15187         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
15188         (main): Update.
15189         Fixes a compilation error on BeOS.
15190
15191 2007-03-22  Bruno Haible  <bruno@clisp.org>
15192
15193         * modules/frexpl-tests: New file.
15194         * tests/test-frexpl.c: New file.
15195
15196         * modules/frexpl: New file.
15197         * m4/frexpl.m4: New file.
15198         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
15199         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
15200         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
15201         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
15202         (Depends-on): Add frexpl. Remove isnanl-nolibm.
15203         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
15204
15205 2007-03-22  Bruno Haible  <bruno@clisp.org>
15206
15207         * lib/frexpl.c: Share code with lib/frexp.c.
15208         * modules/mathl (Files): Add lib/frexp.c.
15209         (Depends-on): Add isnanl-nolibm.
15210
15211 2007-03-22  Bruno Haible  <bruno@clisp.org>
15212
15213         * modules/printf-frexp (Files): Add m4/frexp.m4.
15214         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
15215         only if the found frexp function actually works.
15216
15217 2007-03-22  Bruno Haible  <bruno@clisp.org>
15218
15219         * lib/frexp.c: Remove older implementation that uses divisions.
15220
15221 2007-03-21  Bruno Haible  <bruno@clisp.org>
15222
15223         * modules/frexp-tests: New file.
15224         * tests/test-frexp.c: New file.
15225
15226         * modules/frexp: New file.
15227         * lib/frexp.c: New file.
15228         * m4/frexp.m4: New file.
15229         * lib/math_.h (frexp): New declaration.
15230         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
15231         REPLACE_FREXP.
15232         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
15233
15234 2007-03-21  Bruno Haible  <bruno@clisp.org>
15235
15236         * modules/isnanl-tests: New file.
15237         * tests/test-isnanl.c: New file.
15238
15239         * modules/isnanl: New file.
15240         * lib/isnanl.h: New file.
15241         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
15242         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
15243         gl_FUNC_ISNANL_WORKS.
15244         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
15245         New macros.
15246
15247 2007-03-21  Bruno Haible  <bruno@clisp.org>
15248
15249         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
15250         lib/isnanl.h.
15251         (Include): Update.
15252         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
15253         * lib/vasnprintf.c: Update.
15254         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
15255         tests/test-isnanl.h, remove tests/test-isnanl.c.
15256         (Makefile.am): Update.
15257         * tests/test-isnanl-nolibm.c: New file.
15258         * tests/test-isnanl.h: New file.
15259         * tests/test-isnanl.c: Remove file.
15260
15261 2007-03-21  Jim Meyering  <jim@meyering.net>
15262
15263         When trying to open ".", treat ESTALE like EACCES.
15264         * lib/savewd.c (savewd_save): Resort to forking not just upon
15265         failure with EACCES, but also when errno is ESTALE.
15266
15267 2007-03-20  Bruno Haible  <bruno@clisp.org>
15268
15269         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
15270         Needed on AIX 5.1. Reported by Matthew Woehlke.
15271
15272 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15273
15274         Suggestions by Bruno Haible:
15275         * lib/acl-internal.h: Include "gettext.h" rather than rolling
15276         our own.
15277         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
15278         * modules/acl (Depends-on): Add gettext.
15279
15280 2007-03-19  Bruno Haible  <bruno@clisp.org>
15281
15282         * modules/iconvme: Remove file.
15283         * lib/iconvme.h: Remove file.
15284         * lib/iconvme.c: Remove file.
15285         * m4/iconvme.m4: Remove file.
15286
15287 2007-03-19  Bruno Haible  <bruno@clisp.org>
15288
15289         * doc/relocatable-maint.texi: Break long shell script line.
15290         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15291
15292 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15293
15294         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
15295         handle file_has_acl.
15296         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
15297         * lib/acl.c: Move header inclusions and related macro defns into
15298         lib/acl-internal.h.
15299         (S_ISLNK): Remove defn, since that's now done for us.
15300         (file_has_acl): Move to lib/file-has-acl.c.
15301         Call acl_trivial if available.  This is the crucial part of the fix.
15302         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
15303         shared within the library.  Rewrite a bit, partly to make it compatible
15304         with the GNU coding style.
15305         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
15306         Remove unnecessary double-quotes.
15307         Don't test for acl_to_text; the build will catch that.
15308         Replace acl_entries if it doesn't exist and it is needed.
15309         Check for -lsec and acl_trivial (as used on Solaris 10).
15310         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
15311         lib/file-has-acl.c.
15312         (Depends-on): Add sys_stat, for S_ISLNK.
15313
15314 2007-03-19  Ben Pfaff  <blp@gnu.org>
15315
15316         * doc/gnulib.texi: Fix typos.
15317         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15318
15319 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15320
15321         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
15322         If size is zero here, buf must be zero.
15323
15324 2007-03-19  Simon Josefsson  <simon@josefsson.org>
15325
15326         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
15327         <bruno@clisp.org>.
15328
15329 2007-03-18  Bruno Haible  <bruno@clisp.org>
15330
15331         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
15332         Suggested by Eric Blake.
15333
15334 2007-03-18  Ben Pfaff  <blp@gnu.org>
15335
15336         * doc/relocatable.texi: Recommend using as prefix a directory
15337         that does not exist and will never be created.  Based on
15338         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
15339         and others.
15340
15341 2007-03-17  Bruno Haible  <bruno@clisp.org>
15342
15343         * lib/fchownat.c: Include lchown.h.
15344
15345 2007-03-17  Bruno Haible  <bruno@clisp.org>
15346
15347         Fix endless loop when the given allocated size was > INT_MAX.
15348         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
15349         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
15350         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
15351         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
15352         * lib/sprintf.c (sprintf): Likewise.
15353
15354 2007-03-17  Bruno Haible  <bruno@clisp.org>
15355
15356         * tests/test-argp-2.sh (func_compare): Output a context diff.
15357
15358 2007-03-17  Bruno Haible  <bruno@clisp.org>
15359
15360         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
15361         locale's decimal-point character.
15362
15363 2007-03-17  Bruno Haible  <bruno@clisp.org>
15364
15365         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
15366         before comparing it. Needed because on some platforms (e.g. x86) a
15367         'long double' occupies less bytes than sizeof (long double).
15368
15369 2007-03-17  Bruno Haible  <bruno@clisp.org>
15370
15371         * tests/test-crc.c (main): Make printf statements 64-bit clean.
15372         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
15373         * tests/test-getaddrinfo.c (simple): Likewise.
15374         * tests/test-read-file.c (main): Likewise.
15375
15376 2007-03-17  Bruno Haible  <bruno@clisp.org>
15377
15378         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
15379
15380 2007-03-17  Bruno Haible  <bruno@clisp.org>
15381
15382         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
15383         unused variable.
15384
15385 2007-03-17  Bruno Haible  <bruno@clisp.org>
15386
15387         * tests/test-c-strcasecmp.c: Include c-strcase.h.
15388         * tests/test-c-strncasecmp.c: Likewise.
15389
15390 2007-03-17  Bruno Haible  <bruno@clisp.org>
15391
15392         * modules/stdlib (Depends-on): Add unistd.
15393         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
15394         Needed for MacOS X 10.3.
15395
15396 2007-03-17  Bruno Haible  <bruno@clisp.org>
15397
15398         * lib/unistr/u-strdup.h: Include <stdlib.h>.
15399
15400 2007-03-17  Bruno Haible  <bruno@clisp.org>
15401
15402         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
15403
15404 2007-03-17  Bruno Haible  <bruno@clisp.org>
15405
15406         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
15407         to reflect files copied from gnulib (with or without modifications).
15408         Suggested by Jim Meyering.
15409
15410 2007-03-17  Eric Blake  <ebb9@byu.net>
15411
15412         * NEWS: Document stdlib change from 2007-02-18.
15413
15414 2007-03-17  Jim Meyering  <jim@meyering.net>
15415
15416         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
15417         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
15418         someone uses a name containing shell meta-characters.
15419         Reported by Alfred M. Szmidt.
15420
15421         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
15422
15423 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15424
15425         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
15426         and copy gettext configuration files only if configure.ac contains
15427         a use of AM_GNU_GETTEXT_VERSION.
15428
15429 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15430
15431         * build-aux/bootstrap (gnulib_name): New variable.
15432         (gnulib_tool_options): Use it.
15433
15434 2007-03-13  Simon Josefsson  <simon@josefsson.org>
15435
15436         * tests/test-des.c: Use new namespace.
15437
15438 2007-03-15  Bruno Haible  <bruno@clisp.org>
15439
15440         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
15441         Reported by James Youngman <jay@gnu.org>.
15442
15443 2007-03-15  Bruno Haible  <bruno@clisp.org>
15444
15445         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
15446         declared prototype. Needed with cc on OSF/1 5.1.
15447
15448 2007-03-15  Bruno Haible  <bruno@clisp.org>
15449
15450         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
15451         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
15452         (struct gl_list_implementation): Add dispose_fn argument to the
15453         'create_empty', 'create' methods.
15454         (struct gl_list_impl_base): Add field 'dispose_fn'.
15455         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
15456         argument.
15457         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
15458         dispose_fn argument.
15459         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
15460         dispose_fn on the dropped values.
15461         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
15462         dispose_fn argument.
15463         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
15464         dropped values.
15465         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
15466         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15467         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
15468         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15469         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
15470         argument.
15471         (gl_tree_list_free): Call dispose_fn on the dropped values.
15472         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
15473         the dropped values.
15474         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
15475         Add dispose_fn argument.
15476         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
15477         Call dispose_fn on the dropped values.
15478         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
15479         Add dispose_fn argument.
15480         (gl_sublist_create): Initialize the 'dispose_fn' field.
15481         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
15482         * tests/test-array_list.c (main): Update.
15483         * tests/test-carray_list.c (main): Update.
15484         * tests/test-avltree_list.c (main): Update.
15485         * tests/test-rbtree_list.c (main): Update.
15486         * tests/test-avltreehash_list.c (main): Update.
15487         * tests/test-rbtreehash_list.c (main): Update.
15488         * tests/test-linked_list.c (main): Update.
15489         * tests/test-linkedhash_list.c (main): Update.
15490         * tests/test-array_oset.c (main): Update.
15491
15492 2007-03-15  Bruno Haible  <bruno@clisp.org>
15493
15494         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
15495         (gl_oset_create_empty): Add dispose_fn argument.
15496         (struct gl_oset_implementation): Add dispose_fn argument to
15497         'create_empty' method.
15498         (struct gl_oset_impl_base): Add dispose_fn field.
15499         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
15500         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
15501         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
15502         values.
15503         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
15504         (gl_tree_oset_free): Call dispose_fn on the dropped values.
15505         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15506         dropped value.
15507         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15508         dropped value.
15509         * tests/test-array_oset.c (main): Update.
15510         * tests/test-avltree_oset.c (main): Update.
15511         * tests/test-rbtree_oset.c (main): Update.
15512         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
15513
15514 2007-03-13  Bruno Haible  <bruno@clisp.org>
15515
15516         * tests/test-stdbool.c (i): Update after last patch.
15517
15518 2007-03-12  Bruno Haible  <bruno@clisp.org>
15519
15520         * lib/quotearg.c: Include <wctype.h> early, before the definition of
15521         the iswprint macro. Needed on Solaris 2.5.1.
15522
15523 2007-03-12  Bruno Haible  <bruno@clisp.org>
15524
15525         * tests/test-printf-frexp.c (main): Declare x as volatile.
15526
15527 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15528
15529         * doc/gnulib.texi (Build robot for gnulib): New section.
15530
15531 2007-03-12  Jim Meyering  <jim@meyering.net>
15532
15533         * build-aux/bootstrap: New file.
15534         * build-aux/bootstrap.conf: New file, from coreutils.
15535
15536 2007-03-11  Bruno Haible  <bruno@clisp.org>
15537
15538         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
15539
15540 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15541
15542         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
15543         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
15544         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
15545
15546 2007-03-11  Bruno Haible  <bruno@clisp.org>
15547
15548         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
15549         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
15550
15551 2007-03-11  Bruno Haible  <bruno@clisp.org>
15552
15553         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
15554         formula. Needed for SunPRO C 5.0.
15555
15556 2007-03-11  Bruno Haible  <bruno@clisp.org>
15557
15558         * modules/long-options (Depends-on): Add getopt.
15559
15560 2007-03-11  Bruno Haible  <bruno@clisp.org>
15561
15562         * modules/modechange (Depends-on): Add stdbool.
15563
15564 2007-03-11  Bruno Haible  <bruno@clisp.org>
15565
15566         * modules/i-ring (Depends-on): Add stdbool.
15567
15568 2007-03-11  Bruno Haible  <bruno@clisp.org>
15569
15570         * modules/gc-des (Depends-on): Add stdbool.
15571
15572 2007-03-11  Bruno Haible  <bruno@clisp.org>
15573
15574         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
15575
15576 2007-03-11  Bruno Haible  <bruno@clisp.org>
15577
15578         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
15579
15580 2007-03-11  Bruno Haible  <bruno@clisp.org>
15581
15582         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
15583
15584 2007-03-11  Bruno Haible  <bruno@clisp.org>
15585
15586         * lib/vasnprintf.c (sprintf): Undefine.
15587
15588 2007-03-11  Bruno Haible  <bruno@clisp.org>
15589
15590         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
15591         initializers in SunPRO C and Compaq C compilers.
15592
15593 2007-03-11  Bruno Haible  <bruno@clisp.org>
15594
15595         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
15596         decrementing code ANSI C compliant.
15597
15598 2007-03-11  Bruno Haible  <bruno@clisp.org>
15599
15600         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
15601         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
15602
15603 2007-03-11  Bruno Haible  <bruno@clisp.org>
15604
15605         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
15606         <stdbool.h> substitute doesn't pass.
15607
15608 2007-03-11  Bruno Haible  <bruno@clisp.org>
15609
15610         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
15611
15612 2007-03-11  Bruno Haible  <bruno@clisp.org>
15613
15614         * gnulib-tool (func_create_megatestdir): Create also an autobuild
15615         script, for submission to autobuild.josefsson.org.
15616
15617 2007-03-10  Bruno Haible  <bruno@clisp.org>
15618
15619         * modules/canonicalize-lgpl-tests: New file.
15620         * tests/test-canonicalize-lgpl.sh: New file.
15621         * tests/test-canonicalize-lgpl.c: New file.
15622
15623         * modules/c-strcase-tests: New file.
15624         * tests/test-c-strcase.sh: New file.
15625         * tests/test-c-strcasecmp.c: New file.
15626         * tests/test-c-strncasecmp.c: New file.
15627
15628         * modules/atexit-tests: New file.
15629         * tests/test-atexit.sh: New file.
15630         * tests/test-atexit.c: New file.
15631
15632 2007-03-10  Bruno Haible  <bruno@clisp.org>
15633
15634         * tests/test-binary-io.sh: Use temporary filenames that are not so
15635         likely to clash with those of other tests (in a parallel make).
15636         * tests/test-binary-io.c: Likewise.
15637
15638 2007-03-10  Bruno Haible  <bruno@clisp.org>
15639
15640         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
15641         fallback; use #error instead.
15642         Suggested by Simon Josefsson.
15643
15644 2007-03-10  Bruno Haible  <bruno@clisp.org>
15645
15646         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
15647         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
15648         first and the last.
15649
15650 2007-03-10  Bruno Haible  <bruno@clisp.org>
15651
15652         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
15653
15654 2007-03-10  Bruno Haible  <bruno@clisp.org>
15655
15656         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
15657         "make distcheck".
15658         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
15659         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
15660         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
15661
15662 2007-03-10  Bruno Haible  <bruno@clisp.org>
15663
15664         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
15665         variable.
15666         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
15667         variable.
15668
15669 2007-03-09  Eric Blake  <ebb9@byu.net>
15670         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
15671
15672         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
15673         types are not being provided by gnulib.
15674         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
15675         types are supported.
15676
15677 2007-03-10  Bruno Haible  <bruno@clisp.org>
15678
15679         * lib/stdio_.h (__attribute__): New macro.
15680         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
15681         vsprintf): Specify __attribute__ __format__ for GCC.
15682         Suggested by Eric Blake.
15683
15684 2007-03-09  Bruno Haible  <bruno@clisp.org>
15685
15686         * modules/printf-posix-tests: New file.
15687         * tests/test-printf-posix.sh: New file.
15688         * tests/test-printf-posix.c: New file.
15689
15690         * modules/printf-posix: New file.
15691         * lib/printf.c: New file.
15692         * m4/printf-posix-rpl.m4: New file.
15693         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
15694         REPLACE_PRINTF.
15695         * lib/stdio_.h (printf): New declaration.
15696         (format, __format__, ____printf____, ____scanf____, ____strftime____,
15697         ____strfmon____): New macros.
15698         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
15699         REPLACE_PRINTF.
15700
15701 2007-03-09  Bruno Haible  <bruno@clisp.org>
15702
15703         * tests/test-vasnprintf-posix2.sh: New file.
15704         * tests/test-vasnprintf-posix2.c: New file.
15705         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
15706         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
15707         (Makefile.am): Activate test-vasnprintf-posix2.sh.
15708
15709         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
15710         a locale dependent decimal point, rather than always '.'.
15711
15712 2007-03-09  Eric Blake  <ebb9@byu.net>
15713
15714         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
15715         spite of platforms like Tandem/NSK that define it to -1.
15716
15717 2007-03-08  Bruno Haible  <bruno@clisp.org>
15718
15719         * modules/vprintf-posix-tests: New file.
15720         * tests/test-vprintf-posix.sh: New file.
15721         * tests/test-vprintf-posix.c: New file.
15722         * tests/test-printf-posix.h: New file.
15723
15724         * modules/vprintf-posix: New file.
15725         * lib/vprintf.c: New file.
15726         * m4/vprintf-posix.m4: New file.
15727         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
15728         REPLACE_VPRINTF.
15729         * lib/stdio_.h (vprintf): New declaration.
15730         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
15731         REPLACE_VPRINTF.
15732
15733 2007-03-08  Bruno Haible  <bruno@clisp.org>
15734
15735         * modules/fprintf-posix-tests: New file.
15736         * tests/test-fprintf-posix.sh: New file.
15737         * tests/test-fprintf-posix.c: New file.
15738
15739         * modules/fprintf-posix: New file.
15740         * lib/fprintf.c: New file.
15741         * m4/fprintf-posix.m4: New file.
15742         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
15743         REPLACE_FPRINTF.
15744         * lib/stdio_.h (fprintf): New declaration.
15745         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
15746         REPLACE_FPRINTF.
15747
15748 2007-03-08  Bruno Haible  <bruno@clisp.org>
15749
15750         * modules/vfprintf-posix-tests: New file.
15751         * tests/test-vfprintf-posix.sh: New file.
15752         * tests/test-vfprintf-posix.c: New file.
15753         * tests/test-fprintf-posix.h: New file.
15754         * tests/test-fprintf-posix.out: New file.
15755
15756         * modules/vfprintf-posix: New file.
15757         * lib/vfprintf.c: New file.
15758         * m4/vfprintf-posix.m4: New file.
15759         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
15760         REPLACE_VFPRINTF.
15761         * lib/stdio_.h (vfprintf): New declaration.
15762         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
15763         REPLACE_VFPRINTF.
15764
15765 2007-03-08  Bruno Haible  <bruno@clisp.org>
15766
15767         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
15768
15769 2007-03-08  Bruno Haible  <bruno@clisp.org>
15770
15771         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
15772         instead of 'expr' invocations.
15773         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15774         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15775         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15776         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15777         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15778         Suggested by Paul Eggert.
15779
15780 2007-03-08  Bruno Haible  <bruno@clisp.org>
15781
15782         * modules/fseterr-tests: New file.
15783         * tests/test-fseterr.c: New file.
15784
15785         * modules/fseterr: New file.
15786         * lib/fseterr.h: New file.
15787         * lib/fseterr.c: New file.
15788
15789 2007-03-08  Bruno Haible  <bruno@clisp.org>
15790
15791         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
15792         * lib/getopt_.h: Likewise.
15793         * lib/mbswidth.h: Likewise.
15794         * lib/setenv.h: Likewise.
15795         * lib/vasnprintf.h: Likewise.
15796         * lib/vasprintf.h: Likewise.
15797         * lib/verror.h: Likewise.
15798         * lib/xsetenv.h: Likewise.
15799         * lib/xvasprintf.h: Likewise.
15800
15801 2007-03-08  Jim Meyering  <jim@meyering.net>
15802
15803         * users.txt: Add parted.
15804
15805         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
15806
15807 2007-03-07  Bruno Haible  <bruno@clisp.org>
15808
15809         * m4/printf.m4: Make the shell script snippets copy&pastable.
15810
15811 2007-03-02  Bruno Haible  <bruno@clisp.org>
15812
15813         * lib/netinet_in_.h: New file.
15814         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
15815         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
15816         * modules/netinet_in (Files): Add lib/netinet_in_.h.
15817         (Depends-on): Add absolute-header.
15818         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
15819         into netinet/in.h.
15820
15821 2007-03-03  Bruno Haible  <bruno@clisp.org>
15822
15823         * lib/sys_select_.h: New file.
15824         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
15825         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
15826         * modules/sys_select (Files): Add lib/sys_select_.h.
15827         (Depends-on): Add absolute-header.
15828         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
15829         into sys/select.h.
15830
15831 2007-03-02  Bruno Haible  <bruno@clisp.org>
15832
15833         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
15834         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
15835         values.
15836         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
15837         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
15838         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
15839         * modules/sys_socket (Depends-on): Add absolute-header.
15840         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
15841         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
15842         (Include): Remove requirement of inclusion of <sys/types.h>.
15843
15844 2007-03-02  Bruno Haible  <bruno@clisp.org>
15845
15846         * lib/byteswap_.h (bswap_32): Fix formula.
15847
15848 2007-03-06  Bruno Haible  <bruno@clisp.org>
15849
15850         * modules/sprintf-posix-tests: New file.
15851         * tests/test-sprintf-posix.c: New file.
15852
15853         * modules/sprintf-posix: New file.
15854         * lib/sprintf.c: New file.
15855         * m4/sprintf-posix.m4: New file.
15856         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
15857         REPLACE_SPRINTF.
15858         * lib/stdio_.h (sprintf): New declaration.
15859         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
15860         REPLACE_SPRINTF.
15861
15862 2007-03-06  Bruno Haible  <bruno@clisp.org>
15863
15864         * modules/vsprintf-posix-tests: New file.
15865         * tests/test-vsprintf-posix.c: New file.
15866         * tests/test-sprintf-posix.h: New file.
15867
15868         * modules/vsprintf-posix: New file.
15869         * lib/vsprintf.c: New file.
15870         * m4/vsprintf-posix.m4: New file.
15871         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
15872         REPLACE_VSPRINTF.
15873         * lib/stdio_.h (vsprintf): New declaration.
15874         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
15875         REPLACE_VSPRINTF.
15876
15877 2007-03-06  Bruno Haible  <bruno@clisp.org>
15878
15879         * modules/vsnprintf (Depend-on): Remove minmax.
15880
15881 2007-03-06  Bruno Haible  <bruno@clisp.org>
15882
15883         * modules/snprintf-posix-tests: New file.
15884         * tests/test-snprintf-posix.c: New file.
15885
15886         * modules/snprintf-posix: New file.
15887         * m4/snprintf-posix.m4: New file.
15888         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
15889         gl_FUNC_SNPRINTF.
15890         (gl_FUNC_SNPRINTF): Invoke it.
15891         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
15892         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
15893         is set.
15894         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
15895
15896 2007-03-06  Bruno Haible  <bruno@clisp.org>
15897
15898         * modules/vsnprintf-posix-tests: New file.
15899         * tests/test-vsnprintf-posix.c: New file.
15900         * tests/test-snprintf-posix.h: New file.
15901
15902         * modules/vsnprintf-posix: New file.
15903         * m4/vsnprintf-posix.m4: New file.
15904         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
15905         gl_FUNC_VSNPRINTF.
15906         (gl_FUNC_VSNPRINTF): Invoke it.
15907         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
15908         * lib/stdio_.h (vsnprintf): Define as a replacement if
15909         REPLACE_VSNPRINTF is set.
15910         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
15911
15912 2007-03-06  Bruno Haible  <bruno@clisp.org>
15913
15914         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
15915         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
15916
15917 2007-03-06  Bruno Haible  <bruno@clisp.org>
15918
15919         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
15920         (asinl): Declare also if HAVE_DECL_ASINL is set.
15921         (atanl): Declare also if HAVE_DECL_ATANL is set.
15922         (ceill): Declare also if HAVE_DECL_CEILL is set.
15923         (cosl): Declare also if HAVE_DECL_COSL is set.
15924         (expl): Declare also if HAVE_DECL_EXPL is set.
15925         (floorl): Declare also if HAVE_DECL_FLOORL is set.
15926         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
15927         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
15928         (logl): Declare also if HAVE_DECL_LOGL is set.
15929         (sinl): Declare also if HAVE_DECL_SINL is set.
15930         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
15931         (tanl): Declare also if HAVE_DECL_TANL is set.
15932         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
15933         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
15934         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
15935         declaration of frexpl, ldexpl.
15936         * modules/printf-frexpl (Depends-on): Add math.
15937         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
15938
15939 2007-03-05  Bruno Haible  <bruno@clisp.org>
15940
15941         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
15942         frexpl and ldexpl are declared.
15943         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
15944
15945 2007-03-05  Bruno Haible  <bruno@clisp.org>
15946
15947         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
15948         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
15949
15950 2007-03-05  Bruno Haible  <bruno@clisp.org>
15951
15952         * lib/stdio_.h: Include <stddef.h>.
15953
15954 2007-03-05  Bruno Haible  <bruno@clisp.org>
15955
15956         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
15957
15958 2007-03-05  Bruno Haible  <bruno@clisp.org>
15959
15960         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
15961         NetBSD 4, from Ralf Wildenhues.
15962
15963 2007-03-04  Bruno Haible  <bruno@clisp.org>
15964
15965         * lib/vasprintf.h: Update #if logic for the case when the functions
15966         exist but are overridden.
15967
15968 2007-03-04  Bruno Haible  <bruno@clisp.org>
15969
15970         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
15971         implementations: glibc-2.4 and MacOS X 10.3.
15972         * tests/test-vasnprintf-posix.c (test_function): Test also the case
15973         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
15974         * tests/test-vasprintf-posix.c (test_function): Likewise.
15975
15976 2007-03-04  Bruno Haible  <bruno@clisp.org>
15977
15978         * modules/vasprintf-posix-tests: New file.
15979         * tests/test-vasprintf-posix.c: New file.
15980
15981         * modules/vasprintf-posix: New file.
15982         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
15983         defined.
15984         * m4/vasprintf-posix.m4: New file.
15985         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
15986         gl_FUNC_VASPRINTF.
15987         (gl_FUNC_VASPRINTF): Invoke it.
15988         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
15989         here.
15990         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
15991
15992 2007-03-04  Bruno Haible  <bruno@clisp.org>
15993
15994         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
15995         REPLACE_GETTIMEOFDAY.
15996         * modules/sys_time (Makefile.am): Likewise.
15997         * m4/sys_time_h.m4: Likewise.
15998         * m4/gettimeofday.m4: Likewise.
15999
16000 2007-03-04  Bruno Haible  <bruno@clisp.org>
16001
16002         * modules/vasnprintf-posix-tests: New file.
16003         * tests/test-vasnprintf-posix.c: New file.
16004
16005         * modules/vasnprintf-posix: New file.
16006         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
16007         printf-frexpl.h.
16008         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
16009         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
16010         REPLACE_VASNPRINTF is defined.
16011         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
16012         gl_FUNC_VASNPRINTF.
16013         (gl_FUNC_VASNPRINTF): Invoke it.
16014         * m4/vasnprintf-posix.m4: New file.
16015         * m4/printf.m4: New file.
16016
16017 2007-03-04  Bruno Haible  <bruno@clisp.org>
16018
16019         Compile progreloc.c only if --enable-relocatable is specified.
16020         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
16021         if --enable-relocatable was specified.
16022         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
16023         lib_SOURCES.
16024
16025 2007-03-04  Jim Meyering  <jim@meyering.net>
16026
16027         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
16028         Use it consistently, rather than enumerating errno constants.
16029
16030 2007-03-04  Bruno Haible  <bruno@clisp.org>
16031
16032         * modules/xvasprintf-tests: New file.
16033         * tests/test-xvasprintf.c: New file.
16034
16035         * modules/vasprintf-tests: New file.
16036         * tests/test-vasprintf.c: New file.
16037
16038         * modules/vasnprintf-tests: New file.
16039         * tests/test-vasnprintf.c: New file.
16040
16041         * modules/vsnprintf-tests: New file.
16042         * tests/test-vsnprintf.c: New file.
16043
16044         * modules/snprintf-tests: New file.
16045         * tests/test-snprintf.c: New file.
16046
16047 2007-03-04  Bruno Haible  <bruno@clisp.org>
16048
16049         Compile relocatable.c only if --enable-relocatable is specified.
16050         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
16051         gl_RELOCATABLE_LIBRARY.
16052         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
16053         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
16054         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
16055         gl_RELOCATABLE_LIBRARY.
16056         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
16057         (Makefile.am): Remove lib_SOURCES.
16058         * modules/relocatable-lib-lgpl (configure.ac): Invoke
16059         gl_RELOCATABLE_LIBRARY.
16060         (Makefile.am): Remove lib_SOURCES.
16061         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
16062         always.
16063         * modules/relocatable-prog-wrapper (configure.ac): Invoke
16064         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
16065
16066 2007-03-04  Bruno Haible  <bruno@clisp.org>
16067
16068         * modules/argmatch-tests: New file.
16069         * tests/test-argmatch.c: New file.
16070
16071         * tests/test-allocsa.c (main): Halve the number of loop runs.
16072
16073         * modules/alloca-opt-tests: New file.
16074         * tests/test-alloca-opt.c: New file.
16075
16076 2007-03-04  Jim Meyering  <jim@meyering.net>
16077
16078         Work around difference between Linux ACLs and Solaris 10 ZFS.
16079         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
16080         for EINVAL.
16081
16082 2007-03-03  Bruno Haible  <bruno@clisp.org>
16083
16084         * modules/relocatable-prog (Depends-on): Add back progreloc's
16085         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
16086
16087 2007-03-03  Bruno Haible  <bruno@clisp.org>
16088
16089         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
16090         * modules/relocatable-lib: New file.
16091
16092 2007-03-03  Bruno Haible  <bruno@clisp.org>
16093
16094         * modules/relocatable-prog: Renamed from modules/relocatable.
16095         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
16096
16097 2007-03-03  Bruno Haible  <bruno@clisp.org>
16098
16099         * modules/relocatable-script (Files): Add doc/relocatable.texi,
16100         m4/relocatable-lib.m4.
16101         (Depends-on): Remove 'relocatable'.
16102         (configure.ac): Add gl_RELOCATABLE_NOP.
16103
16104 2007-03-03  Bruno Haible  <bruno@clisp.org>
16105
16106         * modules/relocatable-prog-wrapper: New file.
16107         * modules/relocatable (Depends-on): Add it. Remove all other
16108         dependencies except progname.
16109         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
16110
16111         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
16112         (gl_FUNC_STRERROR): Nop.
16113         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
16114
16115         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
16116         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
16117
16118         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
16119         (gl_FUNC_READLINK): Update.
16120
16121         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
16122
16123 2007-03-03  Bruno Haible  <bruno@clisp.org>
16124
16125         * lib/xreadlink.c: Include <unistd.h> unconditionally.
16126         * modules/xreadlink (Depends-on): Add unistd.
16127         * modules/xreadlink-with-size (Depends-on): Likewise.
16128
16129 2007-03-03  Bruno Haible  <bruno@clisp.org>
16130
16131         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
16132         extracted from gt_FUNC_SETENV.
16133         (gt_FUNC_SETENV): Remove macro.
16134         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
16135         remove gt_FUNC_SETENV.
16136
16137 2007-03-03  Bruno Haible  <bruno@clisp.org>
16138
16139         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
16140         ENABLE_RELOCATABLE here.
16141         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
16142
16143 2007-03-03  Bruno Haible  <bruno@clisp.org>
16144
16145         * modules/rbtreehash-list-tests (Depends-on): Add progname.
16146         * tests/test-rbtreehash_list.c: Include progname.h.
16147         (main): Call set_program_name.
16148
16149         * modules/rbtree-oset-tests (Depends-on): Add progname.
16150         * tests/test-rbtree_oset.c: Include progname.h.
16151         (main): Call set_program_name.
16152
16153         * modules/rbtree-list-tests (Depends-on): Add progname.
16154         * tests/test-rbtree_list.c: Include progname.h.
16155         (main): Call set_program_name.
16156
16157         * modules/linked-list-tests (Depends-on): Add progname.
16158         * tests/test-linked_list.c: Include progname.h.
16159         (main): Call set_program_name.
16160
16161 2007-03-03  Bruno Haible  <bruno@clisp.org>
16162
16163         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
16164         All uses of __restrict changed to _Restrict_.
16165         * lib/glob_.h (__restrict): Remove macro.
16166
16167 2007-03-02  Bruno Haible  <bruno@clisp.org>
16168
16169         * modules/gettext (configure.ac): Require gettext infrastructure
16170         from version 0.16.1.
16171
16172 2007-03-02  Bruno Haible  <bruno@clisp.org>
16173
16174         * modules/linkedhash-list-tests (Depends-on): Add progname.
16175         * tests/test-linkedhash_list.c: Include progname.h.
16176         (main): Call set_program_name.
16177
16178         * modules/carray-list-tests (Depends-on): Add progname.
16179         * tests/test-carray_list.c: Include progname.h.
16180         (main): Call set_program_name.
16181
16182         * modules/avltreehash-list-tests (Depends-on): Add progname.
16183         * tests/test-avltreehash_list.c: Include progname.h.
16184         (main): Call set_program_name.
16185
16186         * modules/avltree-oset-tests (Depends-on): Add progname.
16187         * tests/test-avltree_oset.c: Include progname.h.
16188         (main): Call set_program_name.
16189
16190         * modules/avltree-list-tests (Depends-on): Add progname.
16191         * tests/test-avltree_list.c: Include progname.h.
16192         (main): Call set_program_name.
16193
16194         * modules/array-oset-tests (Depends-on): Add progname.
16195         * tests/test-array_oset.c: Include progname.h.
16196         (main): Call set_program_name.
16197
16198         * modules/array-list-tests (Depends-on): Add progname.
16199         * tests/test-array_list.c: Include progname.h.
16200         (main): Call set_program_name.
16201
16202         * modules/argp-tests (Depends-on): Add progname.
16203         * tests/test-argp.c: Include argp.h first. Include progname.h.
16204         (main): Call set_program_name.
16205
16206 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
16207
16208         * doc/gnulib-tool.texi (Initial import): Reword description of
16209         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
16210         limited effect even if defined after the first system include.
16211
16212 2007-03-01  Bruno Haible  <bruno@clisp.org>
16213
16214         * build-aux/config.libpath: Update to libtool-1.5.22.
16215         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16216
16217 2007-03-01  Bruno Haible  <bruno@clisp.org>
16218
16219         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
16220         foo_CFLAGS.
16221         Reported by Ralf Wildenhues.
16222
16223 2007-03-01  Bruno Haible  <bruno@clisp.org>
16224
16225         * build-aux/install-reloc: Remove object files left over by some
16226         compilers.
16227         Reported by Ralf Wildenhues.
16228
16229 2007-03-01  Bruno Haible  <bruno@clisp.org>
16230
16231         * build-aux/install-reloc: Break long lines.
16232
16233 2007-03-01  Bruno Haible  <bruno@clisp.org>
16234
16235         * doc/relocatable.texi: Document that it may not work on OpenBSD.
16236         Reported by Ralf Wildenhues.
16237
16238 2007-03-01  Bruno Haible  <bruno@clisp.org>
16239
16240         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
16241         include ordering constraints.
16242
16243 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
16244
16245         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
16246         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
16247         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
16248         as another example.
16249         * lib/time_.h: Fix misspelling.
16250         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
16251         Require gl_HEADER_TIME_H_DEFAULTS.
16252         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
16253         * m4/time_r.m4 (gl_TIME_R): Likewise.
16254         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
16255
16256 2007-03-01  Bruno Haible  <bruno@clisp.org>
16257
16258         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
16259         * m4/utimens.m4 (gl_UTIMENS): Likewise.
16260
16261 2007-03-01  Jim Meyering  <jim@meyering.net>
16262
16263         * modules/xreadlink (Maintainer): Add my name.
16264         * modules/xreadlink-with-size (Depends-on): Alphabetize.
16265
16266 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
16267             Bruno Haible  <bruno@clisp.org>
16268
16269         * build-aux/install-reloc: Compile also c-ctype.c.
16270         * build-aux/relocatable.sh.in: New file.
16271         * doc/relocatable.texi: New file.
16272         * doc/relocatable-maint.texi: New file.
16273         * doc/gnulib.texi: Include relocatable-maint.texi.
16274         * lib/progreloc.c: Include unistd.h unconditionally.
16275         * lib/relocwrapper.c: Include unistd.h unconditionally.
16276         Include c-ctype.h.
16277         (add_dotbin): Use c_tolower.
16278         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
16279         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
16280         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
16281         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
16282         to m4/relocatable-lib.m4.
16283         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
16284         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
16285         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
16286         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
16287         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
16288         * modules/relocatable: New file.
16289         * modules/relocatable-lib: New file.
16290         * modules/relocatable-script: New file.
16291
16292 2007-02-28  Bruno Haible  <bruno@clisp.org>
16293
16294         Import --enable-relocatable infrastructure.
16295         * build-aux/config.libpath: New file, from GNU gettext.
16296         * build-aux/install-reloc: New file, from GNU gettext.
16297         * build-aux/reloc-ldflags: New file, from GNU gettext.
16298         * lib/relocatable.h: New file, from GNU gettext.
16299         * lib/relocatable.c: New file, from GNU gettext.
16300         * lib/relocwrapper.c: New file, from GNU gettext.
16301         * m4/relocatable.m4: New file, from GNU gettext.
16302
16303 2007-02-28  Bruno Haible  <bruno@clisp.org>
16304
16305         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
16306
16307         * modules/xreadlink: New file, from GNU gettext with modifications.
16308         * lib/xreadlink.c: New file, from GNU gettext.
16309         * lib/xreadlink.h: Add comments.
16310         (xreadlink): New declaration.
16311
16312         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
16313         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
16314         lib/xreadlink-with-size.c.
16315         (configure.ac): Remove gl_XREADLINK invocation.
16316         (Makefile.am): Augment lib_SOURCES.
16317         * m4/xreadlink.m4: Remove file.
16318         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
16319         (xreadlink_with_size): Renamed from xreadink.
16320         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
16321         * modules/canonicalize (Depends-on): Replace xreadlink with
16322         xreadlink-with-size.
16323         * lib/canonicalize.c (canonicalize_filename_mode): Update.
16324
16325 2007-02-25  Jim Meyering  <jim@meyering.net>
16326
16327         * build-aux/announce-gen: When complaining about excess arguments,
16328         list them.
16329
16330 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
16331
16332         * README: Document signed integer overflow situation more
16333         accurately.
16334
16335 2007-02-25  Bruno Haible  <bruno@clisp.org>
16336
16337         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
16338         'a' or 'A' conversion.
16339
16340 2007-02-25  Bruno Haible  <bruno@clisp.org>
16341
16342         * modules/filename: Renamed from modules/pathname.
16343         (Files): Replace lib/pathname.h with lib/filename.h. Replace
16344         lib/concatpath.c with lib/concat-filename.c.
16345         (Makefile.am): Update.
16346         (Include): Replace pathname.h with filename.h.
16347         * lib/filename.h: Renamed from lib/pathname.h.
16348         (concatenated_filename): Renamed from concatenated_pathname.
16349         * lib/concat-filename.c: Renamed from lib/concatpath.c.
16350         (concatenated_filename): Renamed from concatenated_pathname.
16351         * lib/findprog.c: Include filename.h instead of pathname.h.
16352         (find_in_path): Update.
16353         * lib/javacomp.c: Include filename.h instead of pathname.h.
16354         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
16355         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
16356         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
16357         is_oldgcj_14_13_usable, is_javac_usable): Update.
16358         * lib/javaexec.c: Include filename.h instead of pathname.h.
16359         (execute_java_class): Update.
16360         * modules/findprog: Update.
16361         * modules/javacomp: Update.
16362         * modules/javaexec: Update.
16363         * MODULES.html.sh (File system functions): Add 'filename', remove
16364         'pathname'.
16365
16366 2007-02-25  Bruno Haible  <bruno@clisp.org>
16367
16368         * modules/printf-frexpl-tests: New file.
16369         * tests/test-printf-frexpl.c: New file.
16370
16371         * modules/printf-frexpl: New file.
16372         * lib/printf-frexpl.h: New file.
16373         * lib/printf-frexpl.c: New file.
16374         * m4/printf-frexpl.m4: New file.
16375
16376 2007-02-25  Bruno Haible  <bruno@clisp.org>
16377
16378         * modules/printf-frexp-tests: New file.
16379         * tests/test-printf-frexp.c: New file.
16380
16381         * modules/printf-frexp: New file.
16382         * lib/printf-frexp.h: New file.
16383         * lib/printf-frexp.c: New file.
16384         * m4/printf-frexp.m4: New file.
16385
16386 2007-02-25  Bruno Haible  <bruno@clisp.org>
16387
16388         Assume automake >= 1.10 for the tests.
16389         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
16390         * modules/arctwo-tests: Likewise.
16391         * modules/argp-tests: Likewise.
16392         * modules/avltree-list-tests: Likewise.
16393         * modules/avltree-oset-tests: Likewise.
16394         * modules/avltreehash-list-tests: Likewise.
16395         * modules/carray-list-tests: Likewise.
16396         * modules/crc-tests: Likewise.
16397         * modules/des-tests: Likewise.
16398         * modules/gc-arcfour-tests: Likewise.
16399         * modules/gc-arctwo-tests: Likewise.
16400         * modules/gc-des-tests: Likewise.
16401         * modules/gc-hmac-md5-tests: Likewise.
16402         * modules/gc-hmac-sha1-tests: Likewise.
16403         * modules/gc-md2-tests: Likewise.
16404         * modules/gc-md4-tests: Likewise.
16405         * modules/gc-md5-tests: Likewise.
16406         * modules/gc-pbkdf2-sha1-tests: Likewise.
16407         * modules/gc-rijndael-tests: Likewise.
16408         * modules/gc-sha1-tests: Likewise.
16409         * modules/gc-tests: Likewise.
16410         * modules/getaddrinfo-tests: Likewise.
16411         * modules/hmac-md5-tests: Likewise.
16412         * modules/hmac-sha1-tests: Likewise.
16413         * modules/linked-list-tests: Likewise.
16414         * modules/linkedhash-list-tests: Likewise.
16415         * modules/lock-tests: Likewise.
16416         * modules/md2-tests: Likewise.
16417         * modules/md4-tests: Likewise.
16418         * modules/md5-tests: Likewise.
16419         * modules/rbtree-list-tests: Likewise.
16420         * modules/rbtree-oset-tests: Likewise.
16421         * modules/rbtreehash-list-tests: Likewise.
16422         * modules/read-file-tests: Likewise.
16423         * modules/rijndael-tests: Likewise.
16424         * modules/stdint-tests: Likewise.
16425         * modules/tls-tests: Likewise.
16426
16427 2007-02-24  Bruno Haible  <bruno@clisp.org>
16428
16429         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
16430         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
16431         function; instead check whether isnan with a double argument links.
16432         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
16433         function; instead check whether isnan with a 'long double' argument
16434         links.
16435         Reported by Eric Blake <ebb9@byu.net>.
16436
16437 2007-02-24  Bruno Haible  <bruno@clisp.org>
16438
16439         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
16440         defined.
16441         * lib/isnanl.c: Remove all code. Just include isnan.c.
16442         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
16443
16444 2007-02-25  Jim Meyering  <jim@meyering.net>
16445
16446         Avoid conflicting types for 'unsetenv' on FreeBSD.
16447         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
16448         conflicting with FreeBSD's (5.0 and 6.1) function declaration
16449         in stdlib.h.
16450
16451 2007-02-24  Bruno Haible  <bruno@clisp.org>
16452
16453         * modules/isnanl-nolibm-tests: New file.
16454         * tests/test-isnanl.c: New file.
16455
16456         * modules/isnanl-nolibm: New file.
16457         * lib/isnanl.h: New file.
16458         * lib/isnanl.c: New file.
16459         * m4/isnanl.m4: New file.
16460
16461 2007-02-24  Bruno Haible  <bruno@clisp.org>
16462
16463         * modules/isnan-nolibm-tests: New file.
16464         * tests/test-isnan.c: New file.
16465
16466         * modules/isnan-nolibm: New file.
16467         * lib/isnan.h: New file.
16468         * lib/isnan.c: New file.
16469         * m4/isnan.m4: New file.
16470
16471 2007-02-24  Bruno Haible  <bruno@clisp.org>
16472
16473         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
16474         assume that an exponent fits in 20 bits.
16475
16476 2007-02-24  Jim Meyering  <jim@meyering.net>
16477
16478         * m4/regex.m4: Update the description of the configure-time option,
16479         --without-included-regex, to state accurately what the defaults are,
16480         and perhaps to give people an idea why using this option is risky.
16481
16482 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
16483
16484         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
16485         loops on small arguments.  This attempts to avoid the problem
16486         Bruno Haible reported for AIX 4.3.2 in
16487         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
16488
16489 2007-02-23  Bruno Haible  <bruno@clisp.org>
16490
16491         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
16492         Needed for help2man.
16493
16494 2007-02-23  Karl Berry  <karl@gnu.org>
16495
16496         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
16497         exists, foo.h should be cvs-ignored, not committed.
16498
16499 2007-02-23  Eric Blake  <ebb9@byu.net>
16500
16501         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
16502         * lib/stat-time.h (includes): Likewise.
16503         * lib/utimecmp.c (includes): Likewise.
16504         * lib/utimens.h (includes): Likewise.
16505         * lib/getdate.y (includes): Also include "timespec.h" for use
16506         internal to the module.
16507         * modules/utimens (Depends-on): Revert yesterday's patch.
16508         * modules/nanosleep (Depends-on): Add missing dependency.
16509
16510 2007-02-22  Bruno Haible  <bruno@clisp.org>
16511
16512         * lib/glob.c: Don't include getlogin_r.h.
16513
16514 2007-02-22  Jim Meyering  <jim@meyering.net>
16515
16516         * modules/utimens (Depends-on): Add timespec, required for
16517         utimens.h's inclusion of timespec.h.
16518
16519 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
16520
16521         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
16522         long unreadable paths in GNU/Linux.  Problem reported by Andreas
16523         Schwab in
16524         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
16525         I'll try to think of a better way to fix the Solaris problem.
16526
16527         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
16528         like glibc; on Solaris 10, it fails with errno == EINVAL.
16529         POSIX says the behavior is unspecified if the first argument is NULL,
16530         so play it safe and never pass NULL to the system getcwd.
16531
16532 2007-02-21  Jim Meyering  <jim@meyering.net>
16533
16534         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
16535         of gettimeofday.  It would conflict with the one now always
16536         provided via sys_time_.h.  Reported by Matthew Woehlke, as
16537         an IRIX 6.5 build failure.
16538
16539 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
16540
16541         Minor fixups to port to Solaris 10 with Sun C 5.8.
16542         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
16543         * modules/getcwd (Depends-on): Add dirfd.
16544         * lib/putenv.c (putenv): #undef it.
16545         (rpl_putenv): New decl.
16546         (malloc, free): Include <stdlib.h> rather than prototyping separately.
16547
16548 2007-02-20  Bruno Haible  <bruno@clisp.org>
16549
16550         * modules/stdio-tests: New file.
16551         * tests/test-stdio.c: New file.
16552
16553         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
16554         (Depends-on): Add stdio.
16555         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16556         (Include): Use <stdio.h> instead of vsnprintf.h.
16557         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16558         HAVE_DECL_VSNPRINTF.
16559         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
16560
16561         * modules/snprintf (Files): Remove lib/snprintf.h.
16562         (Depends-on): Add stdio.
16563         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16564         (Include): Use <stdio.h> instead of snprintf.h.
16565         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16566         HAVE_DECL_SNPRINTF.
16567         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
16568         * lib/getaddrinfo.c: Likewise.
16569
16570         * modules/stdio: New file.
16571         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
16572         * lib/snprintf.h: Remove file.
16573         * lib/vsnprintf.h: Remove file.
16574         * lib/.cppi-disable: Remove snprintf.h.
16575         * m4/stdio_h.m4: New file.
16576         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
16577
16578 2007-02-20  Jim Meyering  <jim@meyering.net>
16579
16580         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
16581         used by e.g., mingw.  From Bruno Haible.
16582
16583 2007-02-19  Bruno Haible  <bruno@clisp.org>
16584
16585         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
16586         warnings.
16587         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16588
16589 2007-02-19  Bruno Haible  <bruno@clisp.org>
16590
16591         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
16592         from mingw users.
16593
16594 2007-02-19  Bruno Haible  <bruno@clisp.org>
16595
16596         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
16597         warnings.
16598         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
16599
16600 2007-02-19  Jim Meyering  <jim@meyering.net>
16601
16602         Don't use FD after a successful "fdopendir (fd)".
16603         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
16604         Reset it by calling dirfd on the just-obtained DIR*.
16605
16606         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
16607         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
16608
16609 2007-02-18  Bruno Haible  <bruno@clisp.org>
16610
16611         * lib/readlink.c: Include <unistd.h>.
16612         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
16613         HAVE_READLINK.
16614         * modules/readlink (Depends-on): Add unistd.
16615         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16616         (Include): Add <unistd.h>.
16617
16618         * lib/getlogin_r.h: Remove file.
16619         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
16620         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
16621         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
16622         HAVE_DECL_GETLOGIN_R.
16623         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
16624         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16625         (Include): Use <unistd.h> instead of getlogin_r.h.
16626
16627         * lib/getcwd.h: Remove file.
16628         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
16629         * lib/xgetcwd.c: Likewise.
16630         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
16631         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
16632         * modules/getcwd (Files): Remove lib/getcwd.h.
16633         (Depends-on): Add unistd.
16634         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16635         (Include): Use <unistd.h> instad of getcwd.h.
16636
16637         * lib/ftruncate.c: Include <unistd.h> first.
16638         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
16639         Set HAVE_FTRUNCATE.
16640         * modules/ftruncate (Depends-on): Add unistd.
16641         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16642
16643         * lib/fchdir.c: Include <unistd.h> first.
16644         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
16645         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
16646         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
16647         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16648         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
16649
16650         * lib/dup2.c: Include <unistd.h> first.
16651         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
16652         HAVE_DUP2.
16653         * modules/dup2 (Depends-on): Add unistd.
16654         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16655
16656         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
16657         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
16658         REPLACE_CHOWN. Don't define chown as a macro here.
16659         * modules/chown (Depends-on): Add unistd.
16660         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16661
16662         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
16663         Add definition for GL_LINK_WARNING.
16664         (chown, dup2): New declarations.
16665         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
16666         link warning.
16667         (ftruncate): New declaration.
16668         (getcwd): New declaration, taken from old getcwd.h.
16669         (getlogin_r): New declaration, taken from old getlogin_r.h.
16670         (readlink): New declaration.
16671         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
16672         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
16673         (gl_PREREQ_UNISTD): Remove macro.
16674         (gl_UNISTD_MODULE_INDICATOR): New macro.
16675         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
16676         many new variables. Don't set UNISTD_H.
16677         * modules/unistd (Description): Change.
16678         (Depends-on): Add link-warning.
16679         (configure.ac): Update.
16680         (Makefile.am): Create unistd.h always. Substitute many new variables
16681         into it.
16682
16683 2007-02-18  Bruno Haible  <bruno@clisp.org>
16684
16685         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
16686         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
16687         HAVE_GETSUBOPT.
16688         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
16689         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
16690         * lib/getsubopt.h: Remove file.
16691         * modules/getsubopt (Files): Remove lib/getsubopt.h.
16692         (Depends-on): Add stdlib.
16693         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16694         (Includes): Use <stdlib.h> instead of getsubopt.h.
16695         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
16696         Set HAVE_GETSUBOPT.
16697         * lib/getsubopt.c: Don't include getsubopt.h.
16698
16699 2007-02-18  Bruno Haible  <bruno@clisp.org>
16700
16701         * modules/fchdir (Depends-on): Add dup2.
16702
16703 2007-02-18  Bruno Haible  <bruno@clisp.org>
16704
16705         * lib/stdlib_.h: Handle glibc's special invocation convention
16706         specially.
16707
16708 2007-02-18  Bruno Haible  <bruno@clisp.org>
16709
16710         * modules/stdlib-tests: New file.
16711         * tests/test-stdlib.c: New file.
16712
16713         * modules/mkstemp (Files): Remove lib/mkstemp.h.
16714         (Depends-on): Add stdlib.
16715         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16716         (Includes): Use <stdlib.h> instead of mkstemp.h.
16717         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16718         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
16719         * lib/mkstemp.c: Don't include mkstemp.h.
16720         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
16721         * lib/stdlib--.h: Don't include mkstemp.h.
16722
16723         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
16724         (Depends-on): Add stdlib.
16725         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16726         (Includes): Use <stdlib.h> instead of mkdtemp.h.
16727         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16728         HAVE_MKDTEMP.
16729         * lib/mkdtemp.c: Don't include mkdtemp.h.
16730         * lib/clean-temp.c: Don't include mkdtemp.h.
16731
16732         * modules/exit (Files): Remove lib/exit.h.
16733         (Depends-on): Add stdlib.
16734         (Makefile.am): Remove lib_SOURCES.
16735         (Include): Use <stdlib.h> instead of exit.h.
16736         * lib/argmatch.c: Don't include exit.h.
16737         * lib/execute.c: Likewise.
16738         * lib/pagealign_alloc.c: Likewise.
16739         * lib/pipe.c: Likewise.
16740         * lib/wait-process.c: Likewise.
16741         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
16742         * lib/exitfail.c: Likewise.
16743         * lib/savewd.c: Likewise.
16744         * lib/xsetenv.c: Likewise.
16745
16746         * modules/stdlib: New file.
16747         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
16748         and extra comments about mkstemp().
16749         * lib/exit.h: Remove file.
16750         * lib/mkdtemp.h: Remove file.
16751         * lib/mkstemp.h: Remove file.
16752         * m4/stdlib_h.m4: New file.
16753         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
16754
16755 2007-02-18  Bruno Haible  <bruno@clisp.org>
16756
16757         * modules/math-tests: New file.
16758         * tests/test-math.c: New file.
16759
16760         * modules/math: New file.
16761         * modules/mathl (Files): Remove lib/mathl.h.
16762         (Depends-on): Add math.
16763         (Makefile.am): Don't mention mathl.h.
16764         (Include): Use <math.h> instead of mathl.h.
16765         * lib/math_.h: New file.
16766         * lib/mathl.h: Remove file.
16767         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
16768         mathl.h.
16769         * lib/asinl.c: Likewise.
16770         * lib/atanl.c: Likewise.
16771         * lib/ceill.c: Likewise.
16772         * lib/cosl.c: Likewise.
16773         * lib/expl.c: Likewise.
16774         * lib/floorl.c: Likewise.
16775         * lib/frexpl.c: Likewise.
16776         * lib/ldexpl.c: Likewise.
16777         * lib/logl.c: Likewise.
16778         * lib/sincosl.c: Likewise.
16779         * lib/sinl.c: Likewise.
16780         * lib/sqrtl.c: Likewise.
16781         * lib/tanl.c: Likewise.
16782         * lib/trigl.c: Likewise.
16783         * m4/math_h.m4: New file.
16784         * MODULES.html.sh (Mathematics): Add math.
16785
16786 2007-02-17  Bruno Haible  <bruno@clisp.org>
16787
16788         * modules/wctype-tests: New file.
16789         * tests/test-wctype.c: New file.
16790
16791         * modules/wchar-tests: New file.
16792         * tests/test-wchar.c: New file.
16793
16794         * modules/unistd-tests: New file.
16795         * tests/test-unistd.c: New file.
16796
16797         * modules/time-tests: New file.
16798         * tests/test-time.c: New file.
16799
16800         * modules/sysexits-tests: New file.
16801         * tests/test-sysexits.c: New file.
16802
16803         * modules/sys_time-tests: New file.
16804         * tests/test-sys_time.c: New file.
16805
16806         * modules/sys_stat-tests: New file.
16807         * tests/test-sys_stat.c: New file.
16808
16809         * modules/sys_socket-tests: New file.
16810         * tests/test-sys_socket.c: New file.
16811
16812         * modules/sys_select-tests: New file.
16813         * tests/test-sys_select.c: New file.
16814
16815         * modules/string-tests: New file.
16816         * tests/test-string.c: New file.
16817
16818         * modules/stdbool-tests: New file.
16819         * tests/test-stdbool.c: New file.
16820
16821         * modules/netinet_in-tests: New file.
16822         * tests/test-netinet_in.c: New file.
16823
16824         * modules/inttypes-tests: New file.
16825         * tests/test-inttypes.c: New file.
16826
16827         * modules/fcntl-tests: New file.
16828         * tests/test-fcntl.c: New file.
16829
16830         * modules/byteswap-tests: New file.
16831         * tests/test-byteswap.c: New file.
16832
16833         * modules/arpa_inet-tests: New file.
16834         * tests/test-arpa_inet.c: New file.
16835
16836 2007-02-17  Bruno Haible  <bruno@clisp.org>
16837
16838         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
16839         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
16840         if the corresponding module is not enabled. Emit link warnings if
16841         the function is used nevertheless.
16842         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
16843         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
16844         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
16845         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
16846         * modules/inttypes (Depends-on): Add link-warning.
16847         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16848         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
16849         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
16850         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
16851         * modules/imaxdiv (configure.ac): Likewise.
16852         * modules/strtoimax (configure.ac): Likewise.
16853         * modules/strtoumax (configure.ac): Likewise.
16854
16855 2007-02-17  Bruno Haible  <bruno@clisp.org>
16856
16857         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
16858         gl_STRING_MODULE_INDICATOR_DEFAULTS.
16859         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
16860         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
16861
16862 2007-02-17  Bruno Haible  <bruno@clisp.org>
16863
16864         * modules/link-warning: New file.
16865         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
16866         * lib/string_.h (GL_LINK_WARNING): Remove definition.
16867         * modules/string (Depends-on): Add link-warning.
16868         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16869         string.h.
16870         * MODULES.html.sh (Support for building libraries and executables): Add
16871         link-warning.
16872
16873 2007-02-17  Bruno Haible  <bruno@clisp.org>
16874
16875         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
16876         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
16877         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
16878         long lines.
16879
16880 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
16881             Bruno Haible  <bruno@clisp.org>
16882
16883         * modules/tmpfile: New file.
16884         * lib/tmpfile.c: New file.
16885         * m4/tmpfile.m4: New file.
16886         * MODULES.html.sh (func_all_modules): New section "Input/output".
16887
16888 2007-02-15  Bruno Haible  <bruno@clisp.org>
16889
16890         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
16891         (supports_delete_on_close): New function.
16892         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
16893
16894 2007-02-14  Bruno Haible  <bruno@clisp.org>
16895
16896         * modules/mbspcasecmp-tests: New file.
16897         * tests/test-mbspcasecmp.sh: New file.
16898         * tests/test-mbspcasecmp.c: New file.
16899
16900         New module mbspcasecmp.
16901         * modules/mbspcasecmp: New file.
16902         * lib/mbspcasecmp.c: New file.
16903         * lib/string_.h (strncasecmp): Change warning message.
16904         (mbspcasecmp): New declaration.
16905         * m4/mbspcasecmp.m4: New file.
16906         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
16907         GNULIB_MBSPCASECMP.
16908         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
16909         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
16910
16911 2007-02-14  Bruno Haible  <bruno@clisp.org>
16912
16913         * modules/mbsncasecmp-tests: New file.
16914         * tests/test-mbsncasecmp.sh: New file.
16915         * tests/test-mbsncasecmp.c: New file.
16916
16917         New module mbsncasecmp.
16918         * modules/mbsncasecmp: New file.
16919         * lib/mbsncasecmp.c: New file.
16920         * lib/string_.h (mbsncasecmp): New declaration.
16921         * m4/mbsncasecmp.m4: New file.
16922         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
16923         GNULIB_MBSNCASECMP.
16924         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
16925         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
16926
16927 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
16928
16929         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
16930         Verify that it doesn't overlap with our flags.
16931         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
16932         do not have the desired effect in multibyte locales; instead, use
16933         mbscasecmp.
16934         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
16935         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
16936         we don't require GNU fnmatch ourselves (if our users require it, they
16937         should do so explicitly).
16938
16939         Fix regex code so it doesn't rely on strcasecmp.
16940         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
16941         Otherwise, include gnulib's langinfo.h.
16942         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
16943         undesirable behavior in non-C locales.  Instead, rely on localecharset.
16944         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
16945         * modules/regex (FILES): Remove m4/codeset.m4.
16946         (Depends-on): Add localcharset.  Remove strcase.
16947
16948 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16949
16950         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
16951         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
16952
16953 2007-02-13  Bruno Haible  <bruno@clisp.org>
16954
16955         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
16956         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16957
16958 2007-02-12  Bruno Haible  <bruno@clisp.org>
16959
16960         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
16961         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
16962         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
16963         time warning rather than a link error.
16964
16965 2007-02-12  Bruno Haible  <bruno@clisp.org>
16966
16967         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
16968         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
16969         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16970
16971 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
16972
16973         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
16974         args, not 2.
16975
16976 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
16977
16978         New module 'time', so that apps can include <time.h> as per
16979         POSIX and GNU instead of separate include files like time_r.h
16980         and timegm.h.  This implementation tries out a simpler approach
16981         for replacing decls in standard include files (as compared to
16982         the string module), somewhat as an experiment.
16983
16984         * config/srclist.txt: Comment out mktime.c for now.
16985         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
16986         since it doesn't apply any more.  Use generic wording instead.
16987         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
16988         'time'.
16989         * lib/time_.h, m4/time_h.m4, modules/time: New files.
16990         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
16991         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
16992         Don't include <sys/types.h>; no longer needed since we assume C89.
16993         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
16994         * lib/strftime.c: Likewise.
16995         * lib/time_r.c: Likewise.
16996         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
16997         * lib/nanosleep.c: Include <time.h> first, to check interface.
16998         * lib/strptime.c: Likewise.
16999         * lib/time_r.c: Likewise.
17000         * lib/timegm.c: Likewise.
17001         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
17002         needed.
17003         * lib/timegm.c: Don't include timegm.h; no longer needed.
17004         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
17005         time.h now handles any problems in that area.
17006         (struct timespec, nanosleep): Remove; time.h now arranges for these.
17007         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
17008         that time.h defines struct timespec.
17009         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
17010         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
17011         handles that.
17012         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
17013         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
17014         needed.  Set REPLACE_LOCALTIME.
17015         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
17016         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
17017         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
17018         nanosleep; time_h.m4 now does that.  Don't require
17019         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
17020         module handles this now.
17021         * modules/getdate (Depends-on): Remove timespec.  Add time.
17022         * modules/nanosleep (Depends-on): Likewise.
17023         * modules/stat-time (Depends-on): Likewise.
17024         * modules/nanosleep (Include): Include time.h, not timespec.h.
17025         * modules/strptime (Files): Remove lib/strptime.h.
17026         (Depends-on): Add extensions, time.
17027         (Include): Include time.h, not strptime.h.
17028         * modules/time_r (Files): Remove lib/time_r.h.
17029         (Depends-on): Add time.
17030         (Include): Include time.h, not time_r.h.
17031         * modules/timegm: Likewise.
17032         * modules/timespec (Description): Now does timespec-related decls
17033         of our own, instead of struct timespec itself.
17034         (Depends-on): Add time; remove extensions.
17035         (Maintainer): Add self.
17036         * modules/utimecmp (Depends-on): Add time; remove timespec.
17037         * modules/utimens (Depends-on): Likewise.
17038         * modules/xnanosleep (Depends-on): Likewise.
17039
17040 2007-02-11  Bruno Haible  <bruno@clisp.org>
17041
17042         * lib/c-strstr.c: Include allocsa.h.
17043         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17044         * lib/c-strcasestr.c: Include allocsa.h.
17045         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17046         * lib/strcasestr.c: Include allocsa.h.
17047         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17048         * lib/mbsstr.c: Include allocsa.h.
17049         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
17050         allocsa/freesa instead of malloc/free.
17051         * lib/mbscasestr.c: Include allocsa.h.
17052         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
17053         allocsa/freesa instead of malloc/free.
17054         * modules/c-strstr (Depends-on): Add allocsa.
17055         * modules/c-strcasestr (Depends-on): Likewise.
17056         * modules/strcasestr (Depends-on): Likewise.
17057         * modules/mbsstr (Depends-on): Likewise.
17058         * modules/mbscasestr (Depends-on): Likewise.
17059
17060 2007-02-11  Bruno Haible  <bruno@clisp.org>
17061
17062         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
17063
17064         * modules/mbsspn-tests: New file.
17065         * tests/test-mbsspn.sh: New file.
17066         * tests/test-mbsspn.c: New file.
17067
17068 2007-02-11  Bruno Haible  <bruno@clisp.org>
17069
17070         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
17071
17072         * modules/mbspbrk-tests: New file.
17073         * tests/test-mbspbrk.sh: New file.
17074         * tests/test-mbspbrk.c: New file.
17075
17076 2007-02-11  Bruno Haible  <bruno@clisp.org>
17077
17078         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
17079         unneeded cast.
17080
17081         * modules/mbscspn-tests: New file.
17082         * tests/test-mbscspn.sh: New file.
17083         * tests/test-mbscspn.c: New file.
17084
17085 2007-02-11  Bruno Haible  <bruno@clisp.org>
17086
17087         * modules/mbscasecmp-tests: New file.
17088         * tests/test-mbscasecmp.sh: New file.
17089         * tests/test-mbscasecmp.c: New file.
17090
17091 2007-02-11  Bruno Haible  <bruno@clisp.org>
17092
17093         Ensure O(n) worst-case complexity of mbscasestr.
17094         * lib/mbscasestr.c: Include stdbool.h.
17095         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17096         functions.
17097         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
17098         the bookkeeping indicates that it's worth it.
17099         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
17100
17101         * modules/mbscasestr-tests: New file.
17102         * tests/test-mbscasestr1.c: New file.
17103         * tests/test-mbscasestr2.sh: New file.
17104         * tests/test-mbscasestr2.c: New file.
17105         * tests/test-mbscasestr3.sh: New file.
17106         * tests/test-mbscasestr3.c: New file.
17107         * tests/test-mbscasestr4.sh: New file.
17108         * tests/test-mbscasestr4.c: New file.
17109         * m4/locale-tr.m4: New file.
17110
17111 2007-02-11  Bruno Haible  <bruno@clisp.org>
17112
17113         Ensure O(n) worst-case complexity of mbsstr.
17114         * lib/mbsstr.c: Include stdbool.h.
17115         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17116         functions.
17117         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
17118         bookkeeping indicates that it's worth it.
17119         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
17120
17121         * modules/mbsstr-tests: New file.
17122         * tests/test-mbsstr1.c: New file.
17123         * tests/test-mbsstr2.sh: New file.
17124         * tests/test-mbsstr2.c: New file.
17125         * tests/test-mbsstr3.sh: New file.
17126         * tests/test-mbsstr3.c: New file.
17127         * m4/locale-fr.m4: New file.
17128
17129 2007-02-11  Bruno Haible  <bruno@clisp.org>
17130
17131         * lib/mbsrchr.c (mbsrchr): Fix bug.
17132
17133         * modules/mbsrchr-tests: New file.
17134         * tests/test-mbsrchr.sh: New file.
17135         * tests/test-mbsrchr.c: New file.
17136
17137 2007-02-11  Bruno Haible  <bruno@clisp.org>
17138
17139         * lib/mbschr.c (mbschr): Fix bug.
17140
17141         * modules/mbschr-tests: New file.
17142         * tests/test-mbschr.sh: New file.
17143         * tests/test-mbschr.c: New file.
17144         * m4/locale-zh.m4: New file.
17145
17146 2007-02-11  Bruno Haible  <bruno@clisp.org>
17147
17148         Support for copying multibyte string iterators.
17149         * lib/mbiter.h: Include <string.h>.
17150         (mbiter_multi_copy): New function.
17151         (mbi_copy): New macro.
17152         * lib/mbuiter.h: Include <string.h>.
17153         (mbuiter_multi_copy): New function.
17154         (mbui_copy): New macro.
17155
17156 2007-02-11  Bruno Haible  <bruno@clisp.org>
17157
17158         New module mbslen.
17159         * modules/mbslen: New file.
17160         * lib/mbslen.c: New file.
17161         * lib/string_.h (mbslen): New declaration.
17162         * m4/mbslen.m4: New file.
17163         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17164         GNULIB_MBSLEN.
17165         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
17166         * MODULES.html.sh (Internationalization functions): Add mbslen.
17167
17168 2007-02-11  Bruno Haible  <bruno@clisp.org>
17169
17170         Ensure O(n) worst-case complexity of strcasestr substitute.
17171         * lib/strcasestr.c: Include stdbool.h.
17172         (knuth_morris_pratt): New function.
17173         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17174         bookkeeping indicates that it's worth it.
17175         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
17176
17177         * modules/strcasestr-tests: New file.
17178         * tests/test-strcasestr.c: New file.
17179
17180 2007-02-11  Bruno Haible  <bruno@clisp.org>
17181
17182         Ensure O(n) worst-case complexity of c_strcasestr.
17183         * lib/c-strcasestr.c: Include stdbool.h, string.h.
17184         (knuth_morris_pratt): New function.
17185         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
17186         the bookkeeping indicates that it's worth it.
17187         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
17188
17189         * modules/c-strcasestr-tests: New file.
17190         * tests/test-c-strcasestr.c: New file.
17191
17192 2007-02-11  Bruno Haible  <bruno@clisp.org>
17193
17194         Ensure O(n) worst-case complexity of c_strstr.
17195         * lib/c-strstr.c: Include stdbool.h, string.h.
17196         (knuth_morris_pratt): New function.
17197         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17198         bookkeeping indicates that it's worth it.
17199         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
17200
17201         * lib/c-strstr.c: Complete rewrite for maintainability.
17202
17203         * modules/c-strstr-tests: New file.
17204         * tests/test-c-strstr.c: New file.
17205
17206 2007-02-11  Bruno Haible  <bruno@clisp.org>
17207
17208         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
17209         5.2.1 and earlier, whereby \055 was treated just like the range
17210         delimiter '-'.
17211         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
17212
17213 2007-02-08  Bruno Haible  <bruno@clisp.org>
17214
17215         * modules/regex (Depends-on): Add stdbool.
17216         Reported by Dalibor Topic <robilad@kaffe.org>.
17217
17218 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
17219
17220         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
17221         Prefer returning from main to exiting from it.
17222         Remove unnecessary parens after sizeof.
17223
17224 2007-02-05  Bruno Haible  <bruno@clisp.org>
17225
17226         New module mbssep.
17227         * modules/mbssep: New file.
17228         * lib/mbssep.c: New file.
17229         * lib/string_.h (strsep): Add a conditional link warning.
17230         (mbssep): New declaration.
17231         * m4/mbssep.m4: New file.
17232         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17233         GNULIB_MBSSEP.
17234         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
17235         * MODULES.html.sh (Internationalization functions): Add mbssep.
17236
17237 2007-02-05  Bruno Haible  <bruno@clisp.org>
17238
17239         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
17240         Optimize search in case of 1 delimiter.
17241
17242 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17243
17244         * lib/acl.h: Include sys/types.h before sys/acl.h.
17245
17246 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17247
17248         Merge upstream fix for glibc bugzilla #3957:
17249
17250         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
17251
17252         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
17253         bit for RE_HAT_LISTS_NOT_NEWLINE.
17254         (build_charclass_op): Remove bogus comment.
17255
17256 2007-02-05  Simon Josefsson  <simon@josefsson.org>
17257
17258         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
17259
17260 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17261
17262         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
17263         * lib/memmem.c [!defined _LIBC]: Include config.h.
17264
17265 2007-02-04  Bruno Haible  <bruno@clisp.org>
17266
17267         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
17268         warning message.
17269
17270 2007-02-04  Bruno Haible  <bruno@clisp.org>
17271
17272         New module mbstok_r.
17273         * modules/mbstok_r: New file.
17274         * lib/mbstok_r.c: New file.
17275         * lib/string_.h (strtok_r): Change argument names to match the
17276         comments. Add a conditional link warning.
17277         (mbstok_r): New declaration.
17278         * m4/mbstok_r.m4: New file.
17279         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17280         GNULIB_MBSTOK_R.
17281         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
17282         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
17283
17284 2007-02-04  Bruno Haible  <bruno@clisp.org>
17285
17286         New module mbsspn.
17287         * modules/mbsspn: New file.
17288         * lib/mbsspn.c: New file.
17289         * lib/string_.h (strspn): Add a conditional link warning.
17290         (mbsspn): New declaration.
17291         * m4/mbsspn.m4: New file.
17292         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17293         GNULIB_MBSSPN.
17294         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
17295         * MODULES.html.sh (Internationalization functions): Add mbsspn.
17296
17297 2007-02-04  Bruno Haible  <bruno@clisp.org>
17298
17299         New module mbspbrk.
17300         * modules/mbspbrk: New file.
17301         * lib/mbspbrk.c: New file.
17302         * lib/string_.h (strpbrk): Add a conditional link warning.
17303         (mbspbrk): New declaration.
17304         * m4/mbspbrk.m4: New file.
17305         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17306         GNULIB_MBSPBRK.
17307         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
17308         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
17309
17310 2007-02-04  Bruno Haible  <bruno@clisp.org>
17311
17312         New module mbscspn.
17313         * modules/mbscspn: New file.
17314         * lib/mbscspn.c: New file.
17315         * lib/string_.h (strcspn): Add a conditional link warning.
17316         (mbscspn): New declaration.
17317         * m4/mbscspn.m4: New file.
17318         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17319         GNULIB_MBSCSPN.
17320         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
17321         * MODULES.html.sh (Internationalization functions): Add mbscspn.
17322
17323 2007-02-04  Bruno Haible  <bruno@clisp.org>
17324
17325         New module mbscasestr, reduced goal of strcasestr.
17326         * modules/mbscasestr: New file.
17327         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
17328         (mbscasestr): Renamed from strcasestr.
17329         * lib/strcasestr.c: Don't include mbuiter.h.
17330         (strcasestr): Remove support for multibyte locales.
17331         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
17332         Change the conditional link warning.
17333         (mbscasestr): New declaration.
17334         * m4/mbscasestr.m4: New file.
17335         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
17336         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
17337         REPLACE_STRCASESTR.
17338         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
17339         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17340         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17341         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
17342         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
17343         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17344         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
17345         (Depends-on): Remove mbuiter.
17346         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
17347
17348 2007-02-04  Bruno Haible  <bruno@clisp.org>
17349
17350         Simplify handling of strncasecmp.
17351         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
17352         the conditional link warning.
17353         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17354         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
17355         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
17356         * modules/strcase (configure.ac): Don't invoke
17357         gl_STRING_MODULE_INDICATOR.
17358         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
17359
17360 2007-02-04  Bruno Haible  <bruno@clisp.org>
17361
17362         New module mbscasecmp, reduced goal of strcasecmp.
17363         * modules/mbscasecmp: New file.
17364         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
17365         (mbscasecmp): Renamed from strcasecmp.
17366         * lib/strcasecmp.c: Don't include mbuiter.h.
17367         (strcasecmp): Remove support for multibyte locales.
17368         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
17369         Change the conditional link warning.
17370         (mbscasecmp): New declaration.
17371         * m4/mbscasecmp.m4: New file.
17372         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
17373         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
17374         REPLACE_STRCASECMP.
17375         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
17376         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17377         GNULIB_MBSCASECMP.
17378         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
17379         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
17380         * modules/strcase (Files): Remove m4/mbrtowc.m4.
17381         (Depends-on): Remove mbuiter.
17382         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
17383
17384 2007-02-04  Bruno Haible  <bruno@clisp.org>
17385
17386         New module mbsstr. Remove module strstr.
17387         * modules/mbsstr: New file.
17388         * modules/strstr: Remove file.
17389         * lib/mbsstr.c: Renamed from lib/strstr.c.
17390         (mbsstr): Renamed from strstr.
17391         * lib/string_.h (strstr): Remove declaration. Change the conditional
17392         link warning.
17393         (mbsstr): New declaration.
17394         * m4/mbsstr.m4: New file.
17395         * m4/strstr.m4: Remove file.
17396         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
17397         REPLACE_STRSTR.
17398         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
17399         Don't initialize GNULIB_STRSTR.
17400         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
17401         substitute GNULIB_STRSTR and REPLACE_STRSTR.
17402         * MODULES.html.sh (Internationalization functions): Add mbsstr.
17403         (Support for systems lacking ANSI C 89): Remove strstr.
17404
17405 2007-02-04  Bruno Haible  <bruno@clisp.org>
17406
17407         New module mbsrchr.
17408         * modules/mbsrchr: New file.
17409         * lib/mbsrchr.c: New file.
17410         * lib/string_.h (strrchr): Add a conditional link warning.
17411         (mbsrchr): New declaration.
17412         * m4/mbsrchr.m4: New file.
17413         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17414         GNULIB_MBSRCHR.
17415         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
17416         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
17417
17418 2007-02-04  Bruno Haible  <bruno@clisp.org>
17419
17420         New module mbschr.
17421         * modules/mbschr: New file.
17422         * lib/mbschr.c: New file.
17423         * lib/string_.h (strchr): Add a conditional link warning.
17424         (mbschr): New declaration.
17425         * m4/mbschr.m4: New file.
17426         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17427         GNULIB_MBSCHR.
17428         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
17429         * MODULES.html.sh (Internationalization functions): Add mbschr.
17430
17431 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17432
17433         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
17434
17435         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
17436
17437 2007-02-04  Bruno Haible  <bruno@clisp.org>
17438
17439         New module description section 'configure.ac-early'.
17440         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
17441         (func_get_autoconf_early_snippet): New function.
17442         (func_import, func_create_testdir): Use it. Remove special cases for
17443         modules 'extensions' and 'lock'.
17444         * modules/extensions (configure.ac-early): Require
17445         gl_USE_SYSTEM_EXTENSIONS.
17446         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
17447
17448 2007-02-04  Bruno Haible  <bruno@clisp.org>
17449
17450         Make use of gcj-4.3's -fsource and -ftarget option.
17451         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
17452         and if so try the options -fsource and -ftarget.
17453         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
17454         source_version, ftarget_option, target_version arguments.
17455         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
17456         (is_envjavac_oldgcj_14_14_usable): Renamed from
17457         is_envjavac_gcj_14_14_usable.
17458         (is_envjavac_oldgcj_14_13_usable): Renamed from
17459         is_envjavac_gcj_14_13_usable.
17460         (is_gcj_present): Update.
17461         (is_gcj_43, is_gcj43_usable): New functions.
17462         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
17463         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
17464         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
17465         try the options -fsource and -ftarget.
17466
17467 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
17468
17469         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
17470         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
17471         larger value.
17472
17473 2007-02-03  Jim Meyering  <jim@meyering.net>
17474
17475         Give tools a better chance to allocate space for very large buffers.
17476         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
17477
17478         Make pwd and readlink work also when run with an unreadable parent dir
17479         on systems with openat support.
17480         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
17481         provided getcwd function, even when we have openat support.
17482         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
17483
17484 2007-02-02  Bruno Haible  <bruno@clisp.org>
17485
17486         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
17487         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
17488         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
17489         portability problems if one of these functions is only used on specific
17490         platforms.
17491         Reported by Paul Eggert.
17492
17493 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
17494
17495         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
17496         is causing more trouble than it's curing.
17497         * lib/regex_internal.h (__mempcpy): Remove.
17498         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
17499         (and make the code a tad smaller to boot).
17500         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
17501
17502 2007-02-02  Jim Meyering  <jim@meyering.net>
17503
17504         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
17505         section, not in the Makefile.am: one.
17506
17507 2007-02-02  Eric Blake  <ebb9@byu.net>
17508
17509         * lib/strchrnul.c: Always include config.h first.
17510
17511         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
17512         gnulib strstr is not necessary here.
17513
17514 2007-02-02  Simon Josefsson  <simon@josefsson.org>
17515
17516         * m4/socklen.m4: Fix typo.
17517
17518 2007-02-02  Eric Blake  <ebb9@byu.net>
17519
17520         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
17521         * modules/netinet_in (Makefile.am): Likewise.
17522
17523 2007-02-01  Bruno Haible  <bruno@clisp.org>
17524
17525         * lib/string_.h (GL_LINK_WARNING): New macro.
17526         (strcasecmp, strstr, strcasestr): If provided by the system,
17527         conditionally define as a macro that leads to a warning instead of to
17528         an error.
17529         (strncasecmp): Conditionally define as a macro that leads to a warning.
17530
17531 2007-02-01  Karl Berry  <karl@gnu.org>
17532
17533         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
17534
17535 2007-02-01  Bruno Haible  <bruno@clisp.org>
17536
17537         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
17538         renamings.
17539
17540 2007-02-01  Eric Blake  <ebb9@byu.net>
17541
17542         * modules/regex (Depends-on): Revert dependence on mempcpy.
17543         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
17544         module's definition of mempcpy.
17545         Reported by Paul Eggert.
17546
17547 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
17548
17549         * lib/string_.h: If the gnulib module XYZ is not present, undefine
17550         the symbol XYZ before redefining it.  This fixes a problem with
17551         programs that don't use XYZ, when compiled on systems that define
17552         XYZ to something else.
17553
17554 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
17555
17556         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
17557         occurs when "mkdir -m foo" creates a setgid directory that is (1)
17558         writeable to group or other and (2) is intended to have a special
17559         mode bit that is set or cleared.  In such a case, the directory
17560         should be neither group- nor other-writeable until the special
17561         mode bits are right.
17562
17563 2007-01-31  Eric Blake  <ebb9@byu.net>
17564
17565         * modules/mountlist (Depends-on): Add strstr.
17566
17567         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
17568         bug.
17569         * modules/string (Makefile.am): Remove redundant replacement.
17570         * modules/regex (Depends-on): Add mempcpy.
17571
17572 2007-01-31  Bruno Haible  <bruno@clisp.org>
17573
17574         New module description field 'Link'.
17575         * gnulib-tool (func_usage): Document --extract-link-directive.
17576         (sed_extract_prog): Recognize 'Link' directive.
17577         (func_get_link_directive): New function.
17578         (func_import): Show summary of link directives.
17579         Handle --extract-link-directive option.
17580         * modules/acl (Link): New section.
17581         * modules/clock-time (Link): New section.
17582         * modules/euidaccess (Link): New section.
17583         * modules/gettext (Link): New section.
17584         * modules/iconv (Link): New section.
17585         * modules/lock (Link): New section.
17586         * modules/nanosleep (Link): New section.
17587         * modules/readline (Link): New section.
17588
17589 2007-01-27  Bruno Haible  <bruno@clisp.org>
17590
17591         Enforce the use of gnulib modules for unportable <string.h> functions.
17592         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
17593         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
17594         (gl_HEADER_STRING_H_BODY): Require it.
17595         * lib/string_.h: If the gnulib module XYZ is not present, redefine
17596         the symbol XYZ to one that gives a link error.
17597         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
17598         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
17599         * modules/mempcpy (configure.ac): Likewise.
17600         * modules/memrchr (configure.ac): Likewise.
17601         * modules/stpcpy (configure.ac): Likewise.
17602         * modules/stpncpy (configure.ac): Likewise.
17603         * modules/strcase (configure.ac): Likewise.
17604         * modules/strcasestr (configure.ac): Likewise.
17605         * modules/strchrnul (configure.ac): Likewise.
17606         * modules/strdup (configure.ac): Likewise.
17607         * modules/strndup (configure.ac): Likewise.
17608         * modules/strnlen (configure.ac): Likewise.
17609         * modules/strpbrk (configure.ac): Likewise.
17610         * modules/strsep (configure.ac): Likewise.
17611         * modules/strstr (configure.ac): Likewise.
17612         * modules/strtok_r (configure.ac): Likewise.
17613
17614 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
17615
17616         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
17617
17618 2007-01-30  Jim Meyering  <jim@meyering.net>
17619
17620         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
17621
17622 2007-01-29  Bruno Haible  <bruno@clisp.org>
17623
17624         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
17625         * lib/execute.c: Likewise.
17626         * lib/pipe.c: Likewise.
17627         * lib/printf-args.h: Likewise.
17628         * lib/printf-args.c: Likewise.
17629         * lib/printf-parse.c: Likewise.
17630         * lib/vasnprintf.c: Likewise.
17631
17632 2007-01-29  Eric Blake  <ebb9@byu.net>
17633
17634         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
17635         declaration.
17636
17637 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
17638
17639         * lib/strptime.h (strptime): Use 'restrict' for args where
17640         POSIX requires this.
17641         * lib/strptime.c (strptime): Likewise.
17642         Change license notice from LGPL to GPL, since gnulib-tool will
17643         change this as needed.
17644         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
17645         defined.
17646         Include "strptime.h" first, to check interface.
17647         Do not #undef _LIBC and _NL_CURRENT.
17648         Do not include <stdlib.h>; no longer needed.
17649         Include "time_r.h" and declare ptime_locale_status
17650         only if _LIBC is not defined.
17651         (__P): Remove unused macro.
17652         (match_string): Bring back glibc version, but use it only if _LIBC
17653         is defined.
17654         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
17655         Remove unnecessary assertion and abort() call.
17656         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
17657         * m4/strptime.m4: Fix serial number comment.
17658         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
17659         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
17660         (Depends-on): Add time_r.
17661
17662 2007-01-29  Bruno Haible  <bruno@clisp.org>
17663
17664         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17665         strptime.
17666         * modules/strptime (Depends-on): Add stdbool.
17667         * lib/strptime.h: Include <time.h> always. Add comments.
17668
17669 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
17670
17671         * modules/strptime: New file.
17672         * lib/strptime.h: New file.
17673         * lib/strptime.c: New file.
17674         * m4/strptime.m4: New file.
17675
17676 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
17677
17678         * MODULES.html.sh: New module mpsort.
17679         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
17680
17681         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
17682         a circularity problem with HP-UX ia64 reported by Bob Proulx in
17683         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
17684         All uses changed.
17685         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
17686         All uses changed.
17687         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
17688         to _Restrict_.
17689         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
17690         the parameter matches the prototype.
17691
17692 2007-01-28  Jim Meyering  <jim@meyering.net>
17693
17694         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
17695         sys/time.h here, reverting that part of the previous patch:
17696         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
17697
17698 2007-01-28  Bruno Haible  <bruno@clisp.org>
17699
17700         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
17701         value of $(SYS_TIME_H).
17702         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
17703         remove it conditionally, too. [added by Jim Meyering]
17704         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
17705         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
17706         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
17707         GETTIMEOFDAY_REPLACEMENT to 1.
17708
17709 2007-01-28  Bruno Haible  <bruno@clisp.org>
17710
17711         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
17712         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
17713         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
17714         Set UNISTD_H instead of UNISTD_H2.
17715         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
17716
17717 2007-01-28  Bruno Haible  <bruno@clisp.org>
17718
17719         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
17720         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
17721
17722 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17723
17724         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
17725         (func_create_testdir): Ensure C locale for `grep' and `tr'
17726         character ranges.
17727         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
17728         ACLOCAL_AMFLAGS parsing state machine.
17729
17730 2007-01-27  Bruno Haible  <bruno@clisp.org>
17731
17732         * modules/unistr/base: Update.
17733
17734 2007-01-27  Bruno Haible  <bruno@clisp.org>
17735
17736         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
17737         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
17738         * modules/unistr/u32-mbtouc-unsafe: Renamed from
17739         modules/unistr/u32-mbtouc.
17740         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
17741         * lib/unistr.h: Update.
17742         * lib/linebreak.c: Update.
17743         * modules/unistr/u32-mbtouc: Renamed from
17744         modules/unistr/u32-mbtouc-safe.
17745         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
17746         * lib/unistr.h: Update.
17747         * lib/unistr/u32-to-u8.c: Update.
17748         * lib/unistr/u32-to-u16.c: Update.
17749
17750 2007-01-27  Bruno Haible  <bruno@clisp.org>
17751
17752         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
17753         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
17754         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
17755         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
17756         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
17757         * modules/unistr/u16-mbtouc-unsafe: Renamed from
17758         modules/unistr/u16-mbtouc.
17759         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
17760         * lib/unistr.h: Update.
17761         * lib/linebreak.c: Update.
17762         * modules/linebreak: Update.
17763         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
17764         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
17765         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
17766         * modules/unistr/u16-mbtouc: Renamed from
17767         modules/unistr/u16-mbtouc-safe.
17768         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
17769         * lib/unistr.h: Update.
17770         * lib/unistr/u16-to-u8.c: Update.
17771         * modules/unistr/u16-to-u8: Update.
17772         * lib/unistr/u16-to-u32.c: Update.
17773         * modules/unistr/u16-to-u32: Update.
17774
17775 2007-01-27  Bruno Haible  <bruno@clisp.org>
17776
17777         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
17778         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
17779         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
17780         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
17781         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
17782         * modules/unistr/u8-mbtouc-unsafe: Renamed from
17783         modules/unistr/u8-mbtouc.
17784         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
17785         * lib/unistr.h: Update.
17786         * lib/striconveh.c: Update.
17787         * modules/striconveh: Update.
17788         * lib/linebreak.c: Update.
17789         * modules/linebreak: Update.
17790         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
17791         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
17792         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
17793         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
17794         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
17795         * lib/unistr.h: Update.
17796         * lib/striconveh.c: Update.
17797         * modules/striconveh: Update.
17798         * lib/unistr/u8-to-u16.c: Update.
17799         * modules/unistr/u8-to-u16: Update.
17800         * lib/unistr/u8-to-u32.c: Update.
17801         * modules/unistr/u8-to-u32: Update.
17802
17803 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17804
17805         Sync from Libtool.
17806         * lib/argz.c: Do not include strings.h nor memory.h, include
17807         string.h unconditionally.  Patch by Simon Josefsson.
17808
17809 2007-01-27  Bruno Haible  <bruno@clisp.org>
17810
17811         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
17812         from gl_HEADER_STRING_H_BODY.
17813         (gl_HEADER_STRING_H_BODY): Require it.
17814         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
17815         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
17816         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
17817         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
17818         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
17819         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
17820         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17821         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
17822         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
17823         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
17824         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
17825         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
17826         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
17827         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17828         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
17829
17830 2007-01-27  Bruno Haible  <bruno@clisp.org>
17831
17832         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
17833         check_PROGRAMS into noinst_PROGRAMS.
17834         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
17835         check_PROGRAMS in this case.
17836         (func_import): Set for_test to false.
17837         (func_create_testdir): Set for_test to true.
17838
17839 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
17840             Bruno Haible  <bruno@clisp.org>
17841
17842         * modules/strcasestr (Files): Remove lib/strcasestr.h.
17843         (Depends-on): Add string.
17844         (Includes): Use <string.h> instead of strcasestr.h.
17845         * modules/string (Makefile.am): Also substitute the value of
17846         REPLACE_STRCASESTR.
17847         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
17848         assume strcasestr is declared in <string.h> not <strings.h>. Also
17849         set REPLACE_STRCASESTR.
17850         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
17851         REPLACE_STRCASESTR.
17852         * lib/strcasestr.h: Remove file.
17853         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
17854         * lib/string_.h (strcasestr): New declaration.
17855
17856 2007-01-27  Bruno Haible  <bruno@clisp.org>
17857
17858         * lib/string_.h: Use 'extern'.
17859
17860 2007-01-27  Jim Meyering  <jim@meyering.net>
17861
17862         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
17863         of set-but-not-used local, "q".
17864
17865         * lib/mempcpy.c: Include <config.h> before <string.h>.
17866         This fixes a compilation error on HP-UX, due to the system's
17867         "restrict"-using mempcpy prototype.
17868
17869 2007-01-26  Bruno Haible  <bruno@clisp.org>
17870
17871         Small optimization.
17872         * lib/javacomp.c: Include c-strstr.h.
17873          (is_envjavac_gcj): Use c_strstr instead of strstr.
17874         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
17875
17876 2007-01-26  Bruno Haible  <bruno@clisp.org>
17877
17878         * MODULES.html.sh (Unicode string functions): Add the new modules.
17879
17880         * modules/uniconv/u32-strconv-to-locale: New file.
17881         * lib/uniconv/u32-strconv-to-locale.c: New file.
17882
17883         * modules/uniconv/u16-strconv-to-locale: New file.
17884         * lib/uniconv/u16-strconv-to-locale.c: New file.
17885
17886         * modules/uniconv/u8-strconv-to-locale: New file.
17887         * lib/uniconv/u8-strconv-to-locale.c: New file.
17888
17889         * modules/uniconv/u32-strconv-from-locale: New file.
17890         * lib/uniconv/u32-strconv-from-locale.c: New file.
17891
17892         * modules/uniconv/u16-strconv-from-locale: New file.
17893         * lib/uniconv/u16-strconv-from-locale.c: New file.
17894
17895         * modules/uniconv/u8-strconv-from-locale: New file.
17896         * lib/uniconv/u8-strconv-from-locale.c: New file.
17897
17898         * modules/uniconv/u32-strconv-to-enc: New file.
17899         * lib/uniconv/u32-strconv-to-enc.c: New file.
17900         * modules/uniconv/u32-strconv-to-enc-tests: New file.
17901         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
17902
17903         * modules/uniconv/u16-strconv-to-enc: New file.
17904         * lib/uniconv/u16-strconv-to-enc.c: New file.
17905         * lib/uniconv/u-strconv-to-enc.h: New file.
17906         * modules/uniconv/u16-strconv-to-enc-tests: New file.
17907         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
17908
17909         * modules/uniconv/u8-strconv-to-enc: New file.
17910         * lib/uniconv/u8-strconv-to-enc.c: New file.
17911         * modules/uniconv/u8-strconv-to-enc-tests: New file.
17912         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
17913
17914         * modules/uniconv/u32-strconv-from-enc: New file.
17915         * lib/uniconv/u32-strconv-from-enc.c: New file.
17916         * modules/uniconv/u32-strconv-from-enc-tests: New file.
17917         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
17918
17919         * modules/uniconv/u16-strconv-from-enc: New file.
17920         * lib/uniconv/u16-strconv-from-enc.c: New file.
17921         * modules/uniconv/u16-strconv-from-enc-tests: New file.
17922         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
17923
17924         * modules/uniconv/u8-strconv-from-enc: New file.
17925         * lib/uniconv/u8-strconv-from-enc.c: New file.
17926         * lib/uniconv/u-strconv-from-enc.h: New file.
17927         * modules/uniconv/u8-strconv-from-enc-tests: New file.
17928         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
17929
17930         * modules/uniconv/u32-conv-from-enc: New file.
17931         * lib/uniconv/u32-conv-from-enc.c: New file.
17932         * modules/uniconv/u32-conv-from-enc-tests: New file.
17933         * tests/uniconv/test-u32-conv-from-enc.c: New file.
17934
17935         * modules/uniconv/u16-conv-from-enc: New file.
17936         * lib/uniconv/u16-conv-from-enc.c: New file.
17937         * lib/uniconv/u-conv-from-enc.h: New file.
17938         * modules/uniconv/u16-conv-from-enc-tests: New file.
17939         * tests/uniconv/test-u16-conv-from-enc.c: New file.
17940
17941         * modules/uniconv/u8-conv-from-enc: New file.
17942         * lib/uniconv/u8-conv-from-enc.c: New file.
17943         * modules/uniconv/u8-conv-from-enc-tests: New file.
17944         * tests/uniconv/test-u8-conv-from-enc.c: New file.
17945
17946         * modules/uniconv/base: New file.
17947         * lib/uniconv.h: New file.
17948
17949 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
17950
17951         * doc/gnulib-tool.texi (Initial import): Update to match current
17952         behavior with strdup module.
17953         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
17954         * lib/memmem.h: Remove; all uses removed.  This is now done
17955         by <string.h>.
17956         * lib/mempcpy.h: Likewise.
17957         * lib/memrchr.h: Likewise.
17958         * lib/stpcpy.h: Likewise.
17959         * lib/stpncpy.h: Likewise.
17960         * lib/strcase.h: Likewise.
17961         * lib/strchrnul.h: Likewise.
17962         * lib/strdup.h: Likewise.
17963         * lib/strndup.h: Likewise.
17964         * lib/strnlen.h: Likewise.
17965         * lib/strpbrk.h: Likewise.
17966         * lib/strsep.h: Likewise.
17967         * lib/strstr.h: Likewise.
17968         * lib/strtok_r.h: Likewise.
17969         * lib/string_.h: New file.
17970         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
17971         Rely on <string.h> instead.
17972         * lib/canon-host.c: Likewise.
17973         * lib/chdir-long.c: Likewise.
17974         * lib/concatpath.c: Likewise.
17975         * lib/exclude.c: Likewise.
17976         * lib/fchdir.c: Likewise.
17977         * lib/getaddrinfo.c: Likewise.
17978         * lib/getcwd.c: Likewise.
17979         * lib/getsubopt.c: Likewise.
17980         * lib/glob.c: Likewise.
17981         * lib/hard-locale.c: Likewise.
17982         * lib/iconvme.c: Likewise.
17983         * lib/javacomp.c: Likewise.
17984         * lib/mempcpy.c: Likewise.
17985         * lib/memrchr.c: Likewise.
17986         * lib/regex_internal.h: Likewise.
17987         * lib/stpncpy.c: Likewise.
17988         * lib/strcasecmp.c: Likewise.
17989         * lib/strchrnul.c: Likewise.
17990         * lib/strdup.c: Likewise.
17991         * lib/striconv.c: Likewise.
17992         * lib/striconveh.c: Likewise.
17993         * lib/striconveha.c: Likewise.
17994         * lib/strncasecmp.c: Likewise.
17995         * lib/strndup.c: Likewise.
17996         * lib/strnlen.c: Likewise.
17997         * lib/strsep.c: Likewise.
17998         * lib/strstr.c: Likewise.
17999         * lib/strtok_r.c: Likewise.
18000         * lib/userspec.c: Likewise.
18001         * lib/w32spawn.h: Likewise.
18002         * lib/xstrndup.c: Likewise.
18003         * lib/mountlist.c (strstr): Remove decl.
18004         * m4/string_h.m4: New file.
18005         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
18006         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
18007         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
18008         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
18009         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
18010         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
18011         Set REPLACE_STRCASECMP if necessary.
18012         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
18013         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
18014         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
18015         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
18016         HAVE_DECL_STRDUP if necessary.
18017         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
18018         since gl_FUNC_STRNDUP does that now.
18019         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
18020         Check for decl here...
18021         (gl_PREREQ_STRNLEN): ... not here.
18022         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
18023         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
18024         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
18025         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
18026         necessary.
18027         * modules/string: New file.
18028         * modules/memmem (Files): Remove special-purpose include file.
18029         (Depends-on): Add string.
18030         (Include): Include <string.h>, not the removed file.
18031         * modules/mempcpy: Likewise.
18032         * modules/memrchr: Likewise.
18033         * modules/stpcpy: Likewise.
18034         * modules/stpncpy: Likewise.
18035         * modules/strcase: Likewise.
18036         * modules/strchrnul: Likewise.
18037         * modules/strdup: Likewise.
18038         * modules/strndup: Likewise.
18039         * modules/strnlen: Likewise.
18040         * modules/strpbrk: Likewise.
18041         * modules/strsep: Likewise.
18042         * modules/strstr: Likewise.
18043         * modules/strtok_r: Likewise.
18044         * tests/test-dirname.c: Don't include "strdup.h", since
18045         <string.h> now suffices.
18046         * tests/test-memmem.c: Don't include "memmem.h", since
18047         <string.h> now suffices.
18048
18049 2007-01-25  Bruno Haible  <bruno@clisp.org>
18050
18051         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
18052         *resultp is 0.
18053
18054         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
18055         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
18056         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
18057         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
18058
18059         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
18060         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
18061         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
18062         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
18063         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
18064         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
18065
18066 2007-01-24  Bruno Haible  <bruno@clisp.org>
18067
18068         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
18069         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
18070         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
18071         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
18072         gl_FUNC_FTS_CORE.
18073         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
18074         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
18075         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
18076         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
18077         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
18078         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
18079         gl_FUNC_FCHOWNAT.
18080         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
18081         gl_FUNC_STRFTIME.
18082         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
18083         Reported by Ralf Wildenhues.
18084
18085 2007-01-24  Bruno Haible  <bruno@clisp.org>
18086
18087         Drop AC_REQUIRE calls that are redundant with the module dependencies.
18088         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
18089         gl_GETADDRINFO.
18090         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
18091         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
18092         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
18093
18094 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
18095
18096         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
18097         Don't use 'exit'; just return from 'main'.
18098         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
18099
18100         * lib/fnmatch_.h: Readjust white space and comments to match
18101         glibc, to avoid spurious diffs.
18102
18103 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18104
18105         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
18106         2004-12-01 change by Jakub Jelinek, since this code won't compile
18107         if !LIBC.  Problem reported by Bob Proulx.
18108
18109 2007-01-23  Bruno Haible  <bruno@clisp.org>
18110
18111         * lib/striconveh.c: Include c-strcaseeq.h.
18112         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
18113         * modules/striconveh (Depends-on): Add c-strcaseeq.
18114
18115 2007-01-23  Bruno Haible  <bruno@clisp.org>
18116
18117         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
18118
18119         * modules/c-strcaseeq: New file.
18120         * lib/c-strcaseeq.h: New file.
18121
18122         * modules/streq: New file.
18123         * lib/streq.h: New file.
18124
18125 2007-01-23  Bruno Haible  <bruno@clisp.org>
18126
18127         * modules/striconveha-tests: New file.
18128         * tests/test-striconveha.c: New file.
18129
18130         * lib/striconveha.h: Include <stdbool.h>.
18131         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
18132         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
18133         (mem_iconveha_notranslit): Renamed from mem_iconveha.
18134         (mem_iconveha): New function.
18135         (str_iconveha_notranslit): Renamed from str_iconveha.
18136         (str_iconveha): New function.
18137         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
18138         c-strcase.
18139
18140 2007-01-23  Bruno Haible  <bruno@clisp.org>
18141
18142         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
18143         encodings without forgiving before trying any encoding with handler.
18144         (str_iconveha): Try all encodings without forgiving before trying any
18145         encoding with handler.
18146
18147 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18148
18149         Import the following changes from libc.
18150
18151         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
18152
18153         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
18154
18155         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
18156
18157         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
18158         normal_bracket label.
18159
18160         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
18161
18162         [BZ #361]
18163         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
18164         to normal_bracket after fetching the next character.
18165
18166 2007-01-22  Bruno Haible  <bruno@clisp.org>
18167
18168         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
18169         argument.
18170         * lib/striconveh.c (iconv_carefully_1): New function.
18171         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
18172         argument.
18173         (str_cd_iconveh): Update.
18174         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
18175         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
18176         * tests/test-striconveh.c (MAGIC): New macro.
18177         (new_offsets): New function.
18178         (main): Test call with and without offsets.
18179
18180 2007-01-22  Bruno Haible  <bruno@clisp.org>
18181
18182         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
18183         * modules/sys_select (Makefile.am): Likewise.
18184         * modules/sys_socket (Makefile.am): Likewise.
18185         * modules/sys_time (Makefile.am): Likewise.
18186
18187 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
18188
18189         * modules/gettimeofday (License): Change from GPL to LGPL, since
18190         gettimeofday is a library function.
18191
18192 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18193
18194         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
18195
18196 2007-01-21  Bruno Haible  <bruno@clisp.org>
18197
18198         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
18199
18200 2007-01-21  Bruno Haible  <bruno@clisp.org>
18201
18202         * modules/striconveha: New file.
18203         * lib/striconveha.h: New file.
18204         * lib/striconveha.c: New file.
18205         * MODULES.html.sh (Internationalization functions): Add striconveha.
18206         * lib/striconv.c (str_iconv): Optimize the case of an empty input
18207         string.
18208         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
18209
18210 2007-01-21  Bruno Haible  <bruno@clisp.org>
18211
18212         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
18213         * lib/striconveh.c (str_iconveh): Likewise.
18214
18215 2007-01-21  Bruno Haible  <bruno@clisp.org>
18216
18217         * lib/striconveh.h (mem_iconveh): New declaration.
18218         * lib/striconveh.c (mem_iconveh): New function.
18219         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
18220
18221 2007-01-21  Bruno Haible  <bruno@clisp.org>
18222
18223         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
18224
18225         * lib/striconveh.h (mem_cd_iconveh): Change specification.
18226         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
18227         original result buffer.
18228         (str_cd_iconveh): Update.
18229         * tests/test-striconveh.c (main): Update.
18230
18231         * lib/striconv.h (mem_cd_iconv): Change specification.
18232         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
18233         result buffer.
18234         (str_cd_iconv): Update.
18235         * tests/test-striconv.c (main): Update.
18236
18237 2007-01-21  Bruno Haible  <bruno@clisp.org>
18238
18239         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
18240
18241 2007-01-20  Jim Meyering  <jim@meyering.net>
18242
18243         * lib/userspec.c (parse_with_separator): If a user or group string
18244         starts with "+", skip the corresponding name-to-ID look-up, since
18245         such a look-up must fail: user and group names may not include "+".
18246
18247 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
18248
18249         * lib/poll.c: Include sys/time.h and time.h unconditionally,
18250         since we now assume the sys_time module.
18251         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
18252         check for sys/time.h; no longer needed.
18253         * modules/poll (Depends-on): Depend on sys_time.
18254
18255 2007-01-18  Bruno Haible  <bruno@clisp.org>
18256
18257         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
18258         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18259
18260         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
18261         gettimeofday.
18262
18263         * tests/test-gettimeofday.c: Include <time.h>.
18264         (dummy): Remove variable.
18265
18266         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
18267         gl_HEADER_SYS_TIME_H.
18268         (gl_HEADER_SYS_TIME_H): New macro.
18269
18270         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
18271         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18272         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
18273         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
18274         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18275         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
18276         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
18277         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18278         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
18279         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
18280         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18281
18282         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
18283         last change; it caused a compilation error when cross-compiling to
18284         Cygwin.
18285
18286 2007-01-18  Jim Meyering  <jim@meyering.net>
18287
18288         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
18289         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
18290         than the race-prone "test -d sys || mkdir sys".
18291         (configure.ac): Use AC_PROG_MKDIR_P.
18292         * modules/sys_select: Likewise.
18293         * modules/sys_socket: Likewise.
18294         * modules/sys_time: Likewise.
18295
18296 2007-01-18  Eric Blake  <ebb9@byu.net>
18297
18298         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
18299         replace gettimeofday.
18300         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
18301         name, to avoid infinite recursion.
18302
18303 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
18304
18305         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
18306         module sys_time.
18307         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
18308         assume timespec.h defines struct timeval.
18309         * lib/settime.c: Likewise.
18310         * lib/utimens.c: Likewise.
18311         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
18312         since we now assume the gettimeofday module.
18313         * lib/tempname.c (__gen_tempname): Likewise.
18314         * lib/gettimeofday.h: Remove.
18315         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
18316         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
18317         Include <time.h>, for 'time()'.
18318         (localtime_buffer_addr): Also use this workaround if
18319         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
18320         to simplify the uses.  All uses changed.
18321         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
18322         that #undef is inside {}, and 'const' follows type name consistently.
18323         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
18324         (gettimeofday): Do not use the maximum possible value for
18325         tv->tv_usec, since that might break usages other than ls.c.
18326         Instead, we'll leave ls.c alone.  This undoes today's patch
18327         by Bruno.  Add a compile-time warning for 1s-clock resolution;
18328         we've never observed the problem but might as well keep the
18329         canary.
18330         * lib/nanosleep.c: Include timespec.h first, for interface check.
18331         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
18332         now assume the sys_time module.
18333         * lib/tempname.c: Likewise.
18334         * lib/timespec.h: Likewise.
18335         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
18336         needed.
18337         * lib/strftime.c: Likewise.
18338         * lib/timespec.h: Likewise.
18339         * lib/posixtm.c: Include posixtm.h first, for interface check.
18340         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
18341         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
18342         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
18343         * lib/sys_time_.h: New file.
18344         * lib/timespec.h (struct timespec): Use long int, not long.
18345         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
18346         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
18347         Remove obsolescent call to AC_HEADER_TIME.
18348         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
18349         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
18350         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18351         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
18352         Likewise.
18353         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
18354         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
18355         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
18356         into the sys_time module.  Check for gettimeofday just once.
18357         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
18358         for gettimeofday signature to just check the signature.  Merely
18359         compile it, since linking doesn't test signature.  Improve test for
18360         whether gettimeofday.o is actually needed.
18361         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
18362         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
18363         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
18364         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18365         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
18366         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
18367         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
18368         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
18369         than worrying about sys/time.h.
18370         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
18371         Don't bother worrying about TIME_WITH_SYS_TIME.
18372         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
18373         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
18374         * m4/sys_time_h.m4: New file.
18375         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
18376         Don't include sys/time.h.  Return from main rather than exiting.
18377         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
18378         all uses changed.
18379         * modules/gethrxtime (Depends-on): Add sys_time.
18380         * modules/gettime (Depends-on): Likewise.
18381         * modules/gettimeofday (Depends-on): Likewise.
18382         * modules/nanosleep (Depends-on): Likewise.
18383         * modules/settime (Depends-on): Likewise.
18384         * modules/tempname (Depends-on): Likewise.
18385         * modules/utimens (Depends-on): Likewise.
18386         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
18387         (Include:) Change back to <sys/time.h>.
18388         (Maintainer:) Add self.
18389         * modules/sys_time: New file.
18390         * modules/tempname (Depends-on): Add gettimeofday.
18391         * tests/test-gettimeofday.c: Include <sys/time.h>
18392         rather than gettimeofday.h.
18393
18394 2007-01-17  Bruno Haible  <bruno@clisp.org>
18395
18396         * gnulib-tool (func_get_license): Revert last patch. Instead, let
18397         the license default to GPL.
18398         (func_create_testdir): Don't complain if a module is LGPL and its
18399         tests module depends on GPLed modules.
18400
18401 2007-01-17  Bruno Haible  <bruno@clisp.org>
18402
18403         * lib/gettimeofday.c (gettimeofday): Add code for the case
18404         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
18405         maximum possible value for tv->tv_usec, rather than the minimum one.
18406
18407 2005-10-08  Martin Lambers  <marlam@marlam.de>
18408 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
18409 2007-01-16  Bruno Haible  <bruno@clisp.org>
18410
18411         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
18412         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
18413         gl_FUNC_GETTIMEOFDAY.
18414         (Include): Add gettimeofday.h.
18415         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
18416         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
18417         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
18418         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
18419         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
18420         * lib/gettimeofday.h: New file.
18421         * lib/gettimeofday.c: Include <sys/timeb.h>.
18422         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
18423         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18424         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
18425         fall back on time().
18426
18427         * tests/test-gettimeofday.c: New file.
18428         * modules/gettimeofday-tests: New file.
18429
18430 2007-01-16  Eric Blake  <ebb9@byu.net>
18431
18432         * modules/fnmatch (Depends-on): Depend on wchar.
18433         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
18434         * m4/fnmatch.m4: Likewise.
18435         * modules/mbchar (Makefile.am): Assume <wchar.h>.
18436         * m4/mbchar.m4: Likewise.
18437         * modules/mbswidth (Depends-on): Depend on wchar.
18438         * lib/mbswidth.c: Assume <wchar.h>.
18439         * m4/mbswidth.m4: Likewise.
18440         * modules/quotearg (Depends-on): Depend on wchar.
18441         * lib/quotearg.c: Assume <wchar.h>.
18442         * m4/quotearg.m4: Likewise.
18443         * modules/regex (Depends-on): Depend on wchar.
18444         * lib/regex_internal.h: Assume <wchar.h>.
18445         * m4/regex.m4: Likewise.
18446         * modules/stdint (Depends-on): Depend on wchar.
18447         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
18448         * m4/stdint.m4: Likewise.
18449         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
18450         * modules/strftime (Depends-on): Depend on wchar.
18451         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
18452         * modules/strtol (Depends-on): Depend on wchar.
18453         * lib/strtol.c: Assume <wchar.h>.
18454         * modules/wcwidth (Depends-on): Depend on wchar.
18455         * lib/wcwidth.h: Assume <wchar.h>.
18456         * m4/wcwidth.m4: Likewise.
18457
18458 2007-01-16  Bruno Haible  <bruno@clisp.org>
18459
18460         * modules/csharpexec-script: New, created from...
18461         * modules/csharpexec: ... this.
18462
18463 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
18464
18465         * modules/javaexec-script: New, created from...
18466         * modules/javaexec: ... this.
18467
18468 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18469
18470         * modules/poll (Dependencies): Add sys_select.
18471
18472 2007-01-15  Jim Meyering  <jim@meyering.net>
18473
18474         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
18475         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
18476         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
18477         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
18478
18479 2007-01-15  Bruno Haible  <bruno@clisp.org>
18480
18481         * modules/striconveh: New file.
18482         * lib/striconveh.h: New file.
18483         * lib/striconveh.c: New file.
18484         * MODULES.html.sh (Internationalization functions): Add striconveh.
18485
18486         * modules/striconveh-tests: New file.
18487         * tests/test-striconveh.c: New file.
18488
18489 2007-01-15  Bruno Haible  <bruno@clisp.org>
18490
18491         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
18492         not from GNU libiconv or GNU libc.
18493
18494 2007-01-15  Bruno Haible  <bruno@clisp.org>
18495
18496         * doc/gnulib-intro.texi (Copyright): Explain the different license
18497         terms for module descriptions, autoconf macros, tests, documentation.
18498
18499 2007-01-14  Bruno Haible  <bruno@clisp.org>
18500
18501         * modules/striconv-tests: New file.
18502         * tests/test-striconv.c: New file.
18503
18504 2007-01-14  Bruno Haible  <bruno@clisp.org>
18505
18506         * modules/iconv-tests: New file.
18507         * tests/test-iconv.c: New file.
18508
18509 2007-01-14  Bruno Haible  <bruno@clisp.org>
18510
18511         * gnulib-tool (func_get_license): For test modules, use the license of
18512         the main module.
18513
18514 2007-01-14  Bruno Haible  <bruno@clisp.org>
18515
18516         * modules/iconv (Include): Clarify that <iconv.h> can only be included
18517         if iconv is found to exist.
18518
18519 2007-01-14  Bruno Haible  <bruno@clisp.org>
18520
18521         * modules/c-ctype-tests: New file.
18522         * tests/test-c-ctype.c: New file.
18523
18524 2007-01-14  Bruno Haible  <bruno@clisp.org>
18525
18526         * modules/binary-io-tests: New file.
18527         * tests/test-binary-io.sh: New file.
18528         * tests/test-binary-io.c: New file.
18529
18530 2007-01-14  Bruno Haible  <bruno@clisp.org>
18531
18532         * modules/array-oset-tests: New file.
18533         * tests/test-array_oset.c: New file.
18534
18535 2007-01-14  Bruno Haible  <bruno@clisp.org>
18536
18537         * modules/array-list-tests: New file.
18538         * tests/test-array_list.c: New file.
18539
18540 2007-01-14  Bruno Haible  <bruno@clisp.org>
18541
18542         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
18543         and make.
18544         Reported by Simon Josefsson in
18545         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
18546
18547 2007-01-14  Bruno Haible  <bruno@clisp.org>
18548
18549         * modules/allocsa-tests: New file.
18550         * tests/test-allocsa.c: New file.
18551
18552 2007-01-14  Bruno Haible  <bruno@clisp.org>
18553
18554         * modules/fchdir (Depends-on): Add absolute-header.
18555         * modules/unistd (Depends-on): Likewise.
18556
18557 2006-12-30  Bruno Haible  <bruno@clisp.org>
18558
18559         * modules/fchdir: New file.
18560         * modules/unistd (Files): Add lib/unistd_.h.
18561         (Makefile.am): Generate unistd.h from unistd_.h.
18562         * lib/fchdir.c: New file.
18563         * lib/dirent_.h: New file.
18564         * lib/unistd_.h: New file.
18565         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
18566         * m4/fchdir.m4: New file.
18567         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
18568         (gl_HEADER_UNISTD): Invoke it.
18569         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
18570         function.
18571         * lib/backupfile.c (opendir, closedir): Undefine.
18572         * lib/chown.c (open, close): Undefine.
18573         * lib/clean-temp.c (open, close): Undefine.
18574         * lib/copy-file.c (open, close): Undefine.
18575         * lib/execute.c (open, close): Undefine.
18576         * lib/fsusage.c (open, close): Undefine.
18577         * lib/gc-gnulib.c (open, close): Undefine.
18578         * lib/getcwd.c (opendir, closedir): Undefine.
18579         * lib/glob.c (opendir, closedir): Undefine.
18580         * lib/javacomp.c (open, close): Undefine.
18581         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
18582         * lib/openat-proc.c (open, close): Undefine.
18583         * lib/pagealign_alloc.c (open, close): Undefine.
18584         * lib/pipe.c (open, close): Undefine.
18585         * lib/progreloc.c (open, close): Undefine.
18586         * lib/savedir.c (opendir, closedir): Undefine.
18587         * lib/utime.c (open, close): Undefine.
18588         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
18589
18590 2007-01-10  Bruno Haible  <bruno@clisp.org>
18591
18592         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
18593
18594 2007-01-12  Eric Blake  <ebb9@byu.net>
18595
18596         Provide a robust <wchar.h>.  Further simplifications are now
18597         possible in other modules, but not included here.
18598         * modules/wchar: New module.
18599         * m4/wchar.m4: New file.
18600         * lib/wchar_.h: Likewise.
18601         * modules/mbchar (Depends-on): Depend on wchar, as the first use
18602         of the new module.
18603         * MODULES.html.sh (Extended multibyte and wide character utilities):
18604         New section.
18605
18606 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
18607
18608         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
18609         to a reasonable default for memory allocation.
18610         (xreadlink): Don't allocate a huge buffer, to work around a buggy
18611         file system that reports garbage st_size values for symlinks.
18612         Problem reported by Liyang Hu.
18613
18614 2007-01-11  Simon Josefsson  <simon@josefsson.org>
18615
18616         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
18617         Emacs .#* auto-save files).
18618
18619 2007-01-11  Bruno Haible  <bruno@clisp.org>
18620
18621         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
18622         directory.
18623
18624 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18625
18626         Use @...@ consistently in lib/wctype_.h.
18627         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
18628         on it being set to 1 or 0.
18629         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
18630         go back to AC_SUBSTing it.
18631         * modules/wctype (Makefile.am): Undo previous change.
18632
18633 2007-01-10  Eric Blake  <ebb9@byu.net>
18634
18635         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
18636         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
18637         * modules/wctype (Makefile.am): Likewise.
18638         Reported by Chris McGuire.
18639
18640 2007-01-10  Jim Meyering  <jim@meyering.net>
18641
18642         fts.c: a small readability/maintainability improvement
18643         * lib/fts.c (fts_read): Make this code slightly more readable and
18644         maintainable by hoisting the "sp->fts_cur = p" assignments to
18645         immediately follow the statements that set P.  Derived from
18646         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
18647
18648 2007-01-10  Eric Blake  <ebb9@byu.net>
18649
18650         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
18651         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
18652         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
18653         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18654         Reported by Chris McGuire.
18655
18656 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18657
18658         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
18659         in sed script.
18660
18661 2007-01-09  Bruno Haible  <bruno@clisp.org>
18662
18663         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
18664         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
18665         variables.
18666         (func_module): Use them.
18667
18668 2007-01-09  Bruno Haible  <bruno@clisp.org>
18669
18670         * modules/unistr/base: New file.
18671         * lib/unistr.h: New file.
18672
18673         * modules/unistr/u8-to-u16: New file.
18674         * lib/unistr/u8-to-u16.c: New file.
18675
18676         * modules/unistr/u8-to-u32: New file.
18677         * lib/unistr/u8-to-u32.c: New file.
18678
18679         * modules/unistr/u16-to-u8: New file.
18680         * lib/unistr/u16-to-u8.c: New file.
18681
18682         * modules/unistr/u16-to-u32: New file.
18683         * lib/unistr/u16-to-u32.c: New file.
18684
18685         * modules/unistr/u32-to-u8: New file.
18686         * lib/unistr/u32-to-u8.c: New file.
18687
18688         * modules/unistr/u32-to-u16: New file.
18689         * lib/unistr/u32-to-u16.c: New file.
18690
18691         * modules/unistr/u8-check: New file.
18692         * modules/unistr/u16-check: New file.
18693         * modules/unistr/u32-check: New file.
18694         * lib/unistr/u8-check.c: New file.
18695         * lib/unistr/u16-check.c: New file.
18696         * lib/unistr/u32-check.c: New file.
18697
18698         * modules/unistr/u8-chr: New file.
18699         * modules/unistr/u16-chr: New file.
18700         * modules/unistr/u32-chr: New file.
18701         * lib/unistr/u8-chr.c: New file.
18702         * lib/unistr/u16-chr.c: New file.
18703         * lib/unistr/u32-chr.c: New file.
18704
18705         * modules/unistr/u8-cmp: New file.
18706         * modules/unistr/u16-cmp: New file.
18707         * modules/unistr/u32-cmp: New file.
18708         * lib/unistr/u8-cmp.c: New file.
18709         * lib/unistr/u16-cmp.c: New file.
18710         * lib/unistr/u32-cmp.c: New file.
18711
18712         * modules/unistr/u8-cpy: New file.
18713         * modules/unistr/u16-cpy: New file.
18714         * modules/unistr/u32-cpy: New file.
18715         * lib/unistr/u8-cpy.c: New file.
18716         * lib/unistr/u16-cpy.c: New file.
18717         * lib/unistr/u32-cpy.c: New file.
18718         * lib/unistr/u-cpy.h: New file.
18719
18720         * modules/unistr/u8-cpy-alloc: New file.
18721         * modules/unistr/u16-cpy-alloc: New file.
18722         * modules/unistr/u32-cpy-alloc: New file.
18723         * lib/unistr/u8-cpy-alloc.c: New file.
18724         * lib/unistr/u16-cpy-alloc.c: New file.
18725         * lib/unistr/u32-cpy-alloc.c: New file.
18726         * lib/unistr/u-cpy-alloc.h: New file.
18727
18728         * modules/unistr/u8-endswith: New file.
18729         * modules/unistr/u16-endswith: New file.
18730         * modules/unistr/u32-endswith: New file.
18731         * lib/unistr/u8-endswith.c: New file.
18732         * lib/unistr/u16-endswith.c: New file.
18733         * lib/unistr/u32-endswith.c: New file.
18734         * lib/unistr/u-endswith.h: New file.
18735
18736         * modules/unistr/u8-mblen: New file.
18737         * modules/unistr/u16-mblen: New file.
18738         * modules/unistr/u32-mblen: New file.
18739         * lib/unistr/u8-mblen.c: New file.
18740         * lib/unistr/u16-mblen.c: New file.
18741         * lib/unistr/u32-mblen.c: New file.
18742
18743         * modules/unistr/u8-mbtouc: New file.
18744         * modules/unistr/u16-mbtouc: New file.
18745         * modules/unistr/u32-mbtouc: New file.
18746         * lib/unistr/u8-mbtouc.c: New file.
18747         * lib/unistr/u16-mbtouc.c: New file.
18748         * lib/unistr/u32-mbtouc.c: New file.
18749
18750         * modules/unistr/u8-mbtouc-safe: New file.
18751         * modules/unistr/u16-mbtouc-safe: New file.
18752         * modules/unistr/u32-mbtouc-safe: New file.
18753         * lib/unistr/u8-mbtouc-safe.c: New file.
18754         * lib/unistr/u16-mbtouc-safe.c: New file.
18755         * lib/unistr/u32-mbtouc-safe.c: New file.
18756
18757         * modules/unistr/u8-move: New file.
18758         * modules/unistr/u16-move: New file.
18759         * modules/unistr/u32-move: New file.
18760         * lib/unistr/u8-move.c: New file.
18761         * lib/unistr/u16-move.c: New file.
18762         * lib/unistr/u32-move.c: New file.
18763         * lib/unistr/u-move.h: New file.
18764
18765         * modules/unistr/u8-next: New file.
18766         * modules/unistr/u16-next: New file.
18767         * modules/unistr/u32-next: New file.
18768         * lib/unistr/u8-next.c: New file.
18769         * lib/unistr/u16-next.c: New file.
18770         * lib/unistr/u32-next.c: New file.
18771
18772         * modules/unistr/u8-prev: New file.
18773         * modules/unistr/u16-prev: New file.
18774         * modules/unistr/u32-prev: New file.
18775         * lib/unistr/u8-prev.c: New file.
18776         * lib/unistr/u16-prev.c: New file.
18777         * lib/unistr/u32-prev.c: New file.
18778
18779         * modules/unistr/u8-set: New file.
18780         * modules/unistr/u16-set: New file.
18781         * modules/unistr/u32-set: New file.
18782         * lib/unistr/u8-set.c: New file.
18783         * lib/unistr/u16-set.c: New file.
18784         * lib/unistr/u32-set.c: New file.
18785         * lib/unistr/u-set.h: New file.
18786
18787         * modules/unistr/u8-startswith: New file.
18788         * modules/unistr/u16-startswith: New file.
18789         * modules/unistr/u32-startswith: New file.
18790         * lib/unistr/u8-startswith.c: New file.
18791         * lib/unistr/u16-startswith.c: New file.
18792         * lib/unistr/u32-startswith.c: New file.
18793         * lib/unistr/u-startswith.h: New file.
18794
18795         * modules/unistr/u8-stpcpy: New file.
18796         * modules/unistr/u16-stpcpy: New file.
18797         * modules/unistr/u32-stpcpy: New file.
18798         * lib/unistr/u8-stpcpy.c: New file.
18799         * lib/unistr/u16-stpcpy.c: New file.
18800         * lib/unistr/u32-stpcpy.c: New file.
18801         * lib/unistr/u-stpcpy.h: New file.
18802
18803         * modules/unistr/u8-stpncpy: New file.
18804         * modules/unistr/u16-stpncpy: New file.
18805         * modules/unistr/u32-stpncpy: New file.
18806         * lib/unistr/u8-stpncpy.c: New file.
18807         * lib/unistr/u16-stpncpy.c: New file.
18808         * lib/unistr/u32-stpncpy.c: New file.
18809         * lib/unistr/u-stpncpy.h: New file.
18810
18811         * modules/unistr/u8-strcat: New file.
18812         * modules/unistr/u16-strcat: New file.
18813         * modules/unistr/u32-strcat: New file.
18814         * lib/unistr/u8-strcat.c: New file.
18815         * lib/unistr/u16-strcat.c: New file.
18816         * lib/unistr/u32-strcat.c: New file.
18817         * lib/unistr/u-strcat.h: New file.
18818
18819         * modules/unistr/u8-strchr: New file.
18820         * modules/unistr/u16-strchr: New file.
18821         * modules/unistr/u32-strchr: New file.
18822         * lib/unistr/u8-strchr.c: New file.
18823         * lib/unistr/u16-strchr.c: New file.
18824         * lib/unistr/u32-strchr.c: New file.
18825
18826         * modules/unistr/u8-strcmp: New file.
18827         * modules/unistr/u16-strcmp: New file.
18828         * modules/unistr/u32-strcmp: New file.
18829         * lib/unistr/u8-strcmp.c: New file.
18830         * lib/unistr/u16-strcmp.c: New file.
18831         * lib/unistr/u32-strcmp.c: New file.
18832
18833         * modules/unistr/u8-strcpy: New file.
18834         * modules/unistr/u16-strcpy: New file.
18835         * modules/unistr/u32-strcpy: New file.
18836         * lib/unistr/u8-strcpy.c: New file.
18837         * lib/unistr/u16-strcpy.c: New file.
18838         * lib/unistr/u32-strcpy.c: New file.
18839         * lib/unistr/u-strcpy.h: New file.
18840
18841         * modules/unistr/u8-strcspn: New file.
18842         * modules/unistr/u16-strcspn: New file.
18843         * modules/unistr/u32-strcspn: New file.
18844         * lib/unistr/u8-strcspn.c: New file.
18845         * lib/unistr/u16-strcspn.c: New file.
18846         * lib/unistr/u32-strcspn.c: New file.
18847         * lib/unistr/u-strcspn.h: New file.
18848
18849         * modules/unistr/u8-strdup: New file.
18850         * modules/unistr/u16-strdup: New file.
18851         * modules/unistr/u32-strdup: New file.
18852         * lib/unistr/u8-strdup.c: New file.
18853         * lib/unistr/u16-strdup.c: New file.
18854         * lib/unistr/u32-strdup.c: New file.
18855         * lib/unistr/u-strdup.h: New file.
18856
18857         * modules/unistr/u8-strlen: New file.
18858         * modules/unistr/u16-strlen: New file.
18859         * modules/unistr/u32-strlen: New file.
18860         * lib/unistr/u8-strlen.c: New file.
18861         * lib/unistr/u16-strlen.c: New file.
18862         * lib/unistr/u32-strlen.c: New file.
18863         * lib/unistr/u-strlen.h: New file.
18864
18865         * modules/unistr/u8-strmblen: New file.
18866         * modules/unistr/u16-strmblen: New file.
18867         * modules/unistr/u32-strmblen: New file.
18868         * lib/unistr/u8-strmblen.c: New file.
18869         * lib/unistr/u16-strmblen.c: New file.
18870         * lib/unistr/u32-strmblen.c: New file.
18871
18872         * modules/unistr/u8-strmbtouc: New file.
18873         * modules/unistr/u16-strmbtouc: New file.
18874         * modules/unistr/u32-strmbtouc: New file.
18875         * lib/unistr/u8-strmbtouc.c: New file.
18876         * lib/unistr/u16-strmbtouc.c: New file.
18877         * lib/unistr/u32-strmbtouc.c: New file.
18878
18879         * modules/unistr/u8-strncat: New file.
18880         * modules/unistr/u16-strncat: New file.
18881         * modules/unistr/u32-strncat: New file.
18882         * lib/unistr/u8-strncat.c: New file.
18883         * lib/unistr/u16-strncat.c: New file.
18884         * lib/unistr/u32-strncat.c: New file.
18885         * lib/unistr/u-strncat.h: New file.
18886
18887         * modules/unistr/u8-strncmp: New file.
18888         * modules/unistr/u16-strncmp: New file.
18889         * modules/unistr/u32-strncmp: New file.
18890         * lib/unistr/u8-strncmp.c: New file.
18891         * lib/unistr/u16-strncmp.c: New file.
18892         * lib/unistr/u32-strncmp.c: New file.
18893
18894         * modules/unistr/u8-strncpy: New file.
18895         * modules/unistr/u16-strncpy: New file.
18896         * modules/unistr/u32-strncpy: New file.
18897         * lib/unistr/u8-strncpy.c: New file.
18898         * lib/unistr/u16-strncpy.c: New file.
18899         * lib/unistr/u32-strncpy.c: New file.
18900         * lib/unistr/u-strncpy.h: New file.
18901
18902         * modules/unistr/u8-strnlen: New file.
18903         * modules/unistr/u16-strnlen: New file.
18904         * modules/unistr/u32-strnlen: New file.
18905         * lib/unistr/u8-strnlen.c: New file.
18906         * lib/unistr/u16-strnlen.c: New file.
18907         * lib/unistr/u32-strnlen.c: New file.
18908         * lib/unistr/u-strnlen.h: New file.
18909
18910         * modules/unistr/u8-strpbrk: New file.
18911         * modules/unistr/u16-strpbrk: New file.
18912         * modules/unistr/u32-strpbrk: New file.
18913         * lib/unistr/u8-strpbrk.c: New file.
18914         * lib/unistr/u16-strpbrk.c: New file.
18915         * lib/unistr/u32-strpbrk.c: New file.
18916         * lib/unistr/u-strpbrk.h: New file.
18917
18918         * modules/unistr/u8-strrchr: New file.
18919         * modules/unistr/u16-strrchr: New file.
18920         * modules/unistr/u32-strrchr: New file.
18921         * lib/unistr/u8-strrchr.c: New file.
18922         * lib/unistr/u16-strrchr.c: New file.
18923         * lib/unistr/u32-strrchr.c: New file.
18924
18925         * modules/unistr/u8-strspn: New file.
18926         * modules/unistr/u16-strspn: New file.
18927         * modules/unistr/u32-strspn: New file.
18928         * lib/unistr/u8-strspn.c: New file.
18929         * lib/unistr/u16-strspn.c: New file.
18930         * lib/unistr/u32-strspn.c: New file.
18931         * lib/unistr/u-strspn.h: New file.
18932
18933         * modules/unistr/u8-strstr: New file.
18934         * modules/unistr/u16-strstr: New file.
18935         * modules/unistr/u32-strstr: New file.
18936         * lib/unistr/u8-strstr.c: New file.
18937         * lib/unistr/u16-strstr.c: New file.
18938         * lib/unistr/u32-strstr.c: New file.
18939         * lib/unistr/u-strstr.h: New file.
18940
18941         * modules/unistr/u8-strtok: New file.
18942         * modules/unistr/u16-strtok: New file.
18943         * modules/unistr/u32-strtok: New file.
18944         * lib/unistr/u8-strtok.c: New file.
18945         * lib/unistr/u16-strtok.c: New file.
18946         * lib/unistr/u32-strtok.c: New file.
18947         * lib/unistr/u-strtok.h: New file.
18948
18949         * modules/unistr/u8-uctomb: New file.
18950         * modules/unistr/u16-uctomb: New file.
18951         * modules/unistr/u32-uctomb: New file.
18952         * lib/unistr/u8-uctomb.c: New file.
18953         * lib/unistr/u16-uctomb.c: New file.
18954         * lib/unistr/u32-uctomb.c: New file.
18955
18956         * MODULES.html.sh (Unicode string functions): Add the new modules.
18957
18958 2007-01-08  Bruno Haible  <bruno@clisp.org>
18959
18960         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
18961         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
18962         subdirectories.
18963
18964 2007-01-08  Karl Berry  <karl@gnu.org>
18965
18966         * doc/error.texi: mention that main() fns must set program_name
18967         when progname is used.
18968
18969 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
18970
18971         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
18972         WCTYPE_H is empty, for the benefit of builds from non-distclean
18973         directories.  Problem reported by Eric Blake in
18974         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
18975
18976 2007-01-08  Bruno Haible  <bruno@clisp.org>
18977
18978         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
18979         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
18980         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
18981         PROVIDE_CANONICALIZE_FILENAME_MODE.
18982         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
18983
18984 2007-01-08  Bruno Haible  <bruno@clisp.org>
18985
18986         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
18987         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
18988         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
18989         * lib/fts.c: Likewise.
18990         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
18991
18992 2006-12-25  Bruno Haible  <bruno@clisp.org>
18993
18994         * modules/utf8-ucs4-safe: New file.
18995         * lib/utf8-ucs4-safe.h: New file.
18996         * lib/unistr/utf8-ucs4-safe.c: New file.
18997
18998         * modules/utf16-ucs4-safe: New file.
18999         * lib/utf16-ucs4-safe.h: New file.
19000         * lib/unistr/utf16-ucs4-safe.c: New file.
19001
19002         * MODULES.html.sh (Unicode string functions): Add the new modules.
19003
19004 2007-01-08  Bruno Haible  <bruno@clisp.org>
19005
19006         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
19007         (Depends-on): Add unitypes.
19008         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
19009         (u8_mbtouc_aux): Move out to separate file.
19010         (u8_mbtouc): Use ucs4_t, uint8_t types.
19011         * lib/unistr/utf8-ucs4.c: New file.
19012
19013         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
19014         (Depends-on): Add unitypes.
19015         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
19016         (u16_mbtouc_aux): Move out to separate file.
19017         (u16_mbtouc): Use ucs4_t, uint16_t types.
19018         * lib/unistr/utf16-ucs4.c: New file.
19019
19020         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
19021         (Depends-on): Add unitypes.
19022         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
19023         (u8_uctomb_aux): Move out to separate file.
19024         (u8_uctomb): Use ucs4_t, uint8_t types.
19025         * lib/unistr/ucs4-utf8.c: New file.
19026
19027         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
19028         (Depends-on): Add unitypes.
19029         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
19030         (u16_uctomb_aux): Move out to separate file.
19031         (u16_uctomb): Use ucs4_t, uint16_t types.
19032         * lib/unistr/ucs4-utf16.c: New file.
19033
19034 2006-12-25  Bruno Haible  <bruno@clisp.org>
19035
19036         * modules/unitypes: New file.
19037         * lib/unitypes.h: New file.
19038         * MODULES.html.sh (func_all_modules): New section "Unicode string
19039         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
19040         this section. Add unitypes.
19041
19042 2007-01-08  Bruno Haible  <bruno@clisp.org>
19043
19044         Avoid variable names that conflict with those from libtool.
19045         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
19046         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
19047         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
19048         library_names_spec to acl_library_names_spec, hardcode_* to
19049         acl_hardcode_*.
19050         Reported by Ralf Wildenhues.
19051
19052 2007-01-08  Bruno Haible  <bruno@clisp.org>
19053
19054         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
19055         definition.
19056         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
19057         definition.
19058         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
19059         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
19060         definition.
19061         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
19062         definition.
19063         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
19064         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
19065         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
19066         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
19067         definition.
19068         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
19069         definition.
19070         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
19071         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
19072         GC_USE_<algorithm>.
19073         * lib/gc-libgcrypt.c: Likewise.
19074         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
19075         * modules/gc-arctwo (configure.ac): Likewise.
19076         * modules/gc-des (configure.ac): Likewise.
19077         * modules/gc-hmac-md5 (configure.ac): Likewise.
19078         * modules/gc-hmac-sha1 (configure.ac): Likewise.
19079         * modules/gc-md2 (configure.ac): Likewise.
19080         * modules/gc-md4 (configure.ac): Likewise.
19081         * modules/gc-md5 (configure.ac): Likewise.
19082         * modules/gc-random (configure.ac): Likewise.
19083         * modules/gc-rijndael (configure.ac): Likewise.
19084         * modules/gc-sha1 (configure.ac): Likewise.
19085
19086 2007-01-08  Bruno Haible  <bruno@clisp.org>
19087
19088         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
19089         macro definition.
19090         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
19091         definition.
19092         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
19093         definition.
19094         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
19095         * modules/fcntl-safer (configure.ac): Likewise.
19096         * modules/fopen-safer (configure.ac): Likewise.
19097         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
19098         GNULIB_FWRITEERROR macro definition.
19099
19100 2007-01-08  Bruno Haible  <bruno@clisp.org>
19101
19102         * m4/gnulib-common.m4: New file.
19103         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
19104         (func_get_filelist): Add m4/gnulib-common.m4.
19105
19106 2007-01-08  Bruno Haible  <bruno@clisp.org>
19107
19108         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
19109         command.
19110
19111 2007-01-08  Jim Meyering  <jim@meyering.net>
19112
19113         Use a more robust test for a "can't happen" condition.
19114         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
19115         narrowed the st_size value.  Presuming the "can't happen" condition
19116         is true, that narrowing could conceivably convert an invalid st_size
19117         value into a valid one.  Instead, use a change based on Matthew
19118         Woehlke's original patch.
19119
19120         Slight readability improvement: use an assert-like macro
19121         in place of literal "abort ()" uses.
19122         * lib/fts.c (fts_assert): Define.
19123         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
19124         Use this macro instead of a bare 'abort'.
19125
19126 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
19127
19128         Don't worry about using IRIX 5.3's wctype.h broken definitions;
19129         simply work around them.
19130         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
19131         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
19132         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
19133         declaring.
19134         Don't bother to define as macros, since the standard doesn't require it.
19135         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
19136         longer worry about IRIX 5.3.
19137         (HAVE_WCTYPE_CTMP_BUG): Remove.
19138
19139 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19140
19141         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
19142         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
19143         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
19144         Problems reported by Georg Schwarz for IRIX 5.3.
19145
19146         * gnulib-tool (autoconf_minversion): Take the maximum version number
19147         found, not the minimum.  Problem reported by James Youngman.
19148
19149 2007-01-03  Karl Berry  <karl@gnu.org>
19150
19151         * doc/error.texi: new file, explaining interaction with progname.
19152         * doc/gnulib.texi: include it.  Update copyright.
19153
19154 2007-01-03  Simon Josefsson  <simon@josefsson.org>
19155
19156         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
19157         AC_CANONICAL_HOST, to improve autobuild outputs.
19158
19159 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
19160             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
19161
19162         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
19163         sockets, server sockets, and other file descriptors.  Count errors
19164         to compute the return value.  Reorder the code a bit to be easier
19165         to follow.  Don't set event bits that were not requested (except
19166         POLLERR and POLLHUP).
19167
19168 2007-01-01  Bruno Haible  <bruno@clisp.org>
19169
19170         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
19171
19172 2007-01-03  Jim Meyering  <jim@meyering.net>
19173
19174         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
19175
19176 2007-01-02  Bruno Haible  <bruno@clisp.org>
19177
19178         * modules/settime (Include): Require timespec.h.
19179         * modules/nanosleep (Include): Likewise.
19180
19181 2007-01-01  Bruno Haible  <bruno@clisp.org>
19182
19183         * gnulib-tool (func_emit_copyright_notice): Bump year.
19184         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
19185
19186 2007-01-01  Bruno Haible  <bruno@clisp.org>
19187
19188         Improve support for OpenBSD.
19189         * build-aux/config.rpath (libname_spec): Export.
19190         (library_names_spec): New variable. Export.
19191         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
19192         library_names_spec from the config.rpath output. Locate shared library
19193         through the name pattern in library_names_spec.
19194
19195 2007-01-01  Eric Blake  <ebb9@byu.net>
19196
19197         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
19198
19199 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
19200
19201         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
19202         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
19203         assume the C locale, and avoid an "eval" that could cause trouble.
19204         Problem with SORT reported by Bob Proulx.
19205
19206         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
19207         Define.  Trivial patch from Henning Nielsen Lund, originally
19208         sent to bug-grep@gnu.org today.
19209
19210 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
19211
19212         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
19213         struct stat.  Problem reported by Henning Nielsen Lund.
19214         * lib/acl.c: Include acl.h first, to check interface.  Don't
19215         bother to include sys/types.h and sys/stat.h again.
19216
19217 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19218
19219         Import the following change from libc; problem reported by
19220         Sven Verdoolaege.
19221
19222         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
19223
19224         [BZ #1373]
19225         * lib/argp.h: Remove __NTH for __argp_usage inline function.
19226
19227 2006-12-28  Jim Meyering  <jim@meyering.net>
19228
19229         * build-aux/announce-gen: Do not assume that the package
19230         builds any of tar.gz, tar.bz2, and .xdelta files.
19231         Suggestion from Simon Josefsson.
19232
19233 2006-12-28  Simon Josefsson  <simon@josefsson.org>
19234
19235         * modules/announce-gen: New file.
19236
19237 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
19238
19239         * lib/mbchar.h: Just include <wctype.h>; the wctype module
19240         handles its gotchas now.
19241         * lib/mbswidth.c: Likewise.
19242         * lib/wcwidth.h: Likewise.
19243         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
19244         and iswcntrl; the wctype module does this stuff now.
19245         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19246         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
19247         * modules/mbchar (Depends-on): Add wctype.
19248         * modules/mbswidth (Depends-on): Likewise.
19249         * modules/wcwidth (Depends-on): Likewise.
19250
19251 2006-12-27  Eric Blake  <ebb9@byu.net>
19252
19253         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
19254         module uses more than what <wctype.h> is required to provide.
19255
19256 2006-12-26  Eric Blake  <ebb9@byu.net>
19257
19258         * gnulib-tool (sed_extract_prog): Avoid space-tab.
19259
19260 2006-12-26  Eric Blake  <ebb9@byu.net>
19261
19262         * modules/absolute-header: New module.
19263         * modules/fcntl (Depends-on): Depend on it.
19264         * modules/inttypes (Depends-on): Likewise.
19265         * modules/stdint (Depends-on): Likewise.
19266         * modules/sys_stat (Depends-on): Likewise.
19267         * modules/wctype (Depends-on): Likewise.
19268         * MODULES.html.sh (Support for building libraries and
19269         executables): Document it.
19270
19271 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
19272
19273         * gnulib-tool (SED): Remove, undoing previous change.
19274         The problem was that it broke coreutils on Solaris, because
19275         "sed --posix" leaked into a makefile.
19276         (sed): New alias, if 'alias' and GNU sed.
19277
19278 2006-12-24  Jim Meyering  <jim@meyering.net>
19279
19280         Work around an fchownat bug in glibc-2.4:
19281         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
19282         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
19283         in spite of the -P option.
19284         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
19285         New macros.
19286         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
19287         * modules/openat (Files): Add lib/fchownat.c.
19288         * lib/openat.c (fchownat): Don't define here.  Move to...
19289         * lib/fchownat.c: ...this new file.
19290
19291 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19292
19293         Fix bug reported by Bruno Haible in
19294         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
19295         where quotearg.c didn't compile on Mac OS X 10.2 because it
19296         lacks <wchar.h> and wint_t.
19297         * lib/wctype_.h (__wctype_wint_t): New type.
19298         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
19299         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
19300         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
19301         Arg is now of type __wctype_wint_t, not wint_t.
19302         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
19303         substitute HAVE_WINT_T.
19304         * modules/wctype (Files): Add m4/wint_t.m4.
19305         (wctype.h): Substitute HAVE_WINT_T.
19306
19307 2006-12-23  Bruno Haible  <bruno@clisp.org>
19308
19309         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
19310
19311 2006-12-23  Bruno Haible  <bruno@clisp.org>
19312
19313         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
19314         S_ISLNK.
19315         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
19316         mingw.
19317
19318 2006-12-22  Bruno Haible  <bruno@clisp.org>
19319
19320         * lib/copy-file.c: Include acl.h.
19321         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
19322         Close the file descriptors only after being done with copy_acl.
19323         * modules/copy-file (Depends-on): Add acl.
19324
19325 2006-12-22  Bruno Haible  <bruno@clisp.org>
19326
19327         * gnulib-tool (SED): New variable.
19328         Use $SED instead of sed everywhere.
19329
19330 2006-12-22  Bruno Haible  <bruno@clisp.org>
19331
19332         * modules/no-c++: New file.
19333         * m4/no-c++.m4: New file.
19334         * MODULES.html.sh (Support for building libraries and executables):
19335         Add no-c++.
19336
19337 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
19338
19339         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
19340         Include <limits.h>, and use its INT_MAX to rewrite the
19341         j loop so that it does not overflow 'int'.  Problem reported by
19342         Ralf Wildenhues in
19343         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
19344         Play it safe by shifting left by 1 rather than multiplying by 2,
19345         as GCC is less likely to optimize this away when the value
19346         is signed (when it assumes overflow leads to undefined behavior).
19347         Also, don't assume time_t uses two's complement.
19348
19349 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
19350
19351         * MODULES.html.sh: New module wctype.
19352         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
19353         * lib/fnmatch.c: Don't bother to include <wchar.h> before
19354         <wctype.h>, since the new wctype module should fix this.
19355         * lib/quotearg.c: Include <wctype.h> unconditionally, since
19356         the wctype module should arrange for it.
19357         * lib/regex_internal.h: Likewise.
19358         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
19359         since the wctype module should handle this now.
19360         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
19361         * modules/fnmatch (Depends-on): Add wctype.
19362         * modules/quotearg (Depends-on): Likewise.
19363         * modules/regex (Depends-on): Likewise.
19364
19365 2006-12-19  Bruno Haible  <bruno@clisp.org>
19366
19367         * lib/strdup.h [C++]: Wrap definitions in extern "C".
19368         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
19369
19370 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19371
19372         * modules/savewd (Depends-on): Fix dependency on fcntl.
19373
19374 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19375
19376         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
19377         conforms to C99, rather than relying on the user's environment
19378         setting of STDINT_H.
19379
19380 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19381         and Eric Blake  <ebb9@byu.net>
19382
19383         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
19384         This is more consistent with the other defines here.
19385         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
19386         Port to z/OS.  Problem reported by Paul Gilmartin.
19387         Change local vars to use gl_ prefix rather than ac_.
19388         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
19389         with other defines.
19390         * modules/double-slash-root: New module.
19391         * modules/dirname (Files): Remove m4/double-slash-root.m4.
19392         (Depends-on): Add double-slash-root.
19393         * MODULES.html.sh (File system functions): Mention new module.
19394
19395 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
19396
19397         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
19398         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
19399         This is for the benefit of gzip, which doesn't do i18n.
19400
19401 2006-12-12  Jim Meyering  <jim@meyering.net>
19402
19403         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
19404         Reported by Andreas Schwab <schwab@suse.de>.
19405
19406 2006-12-12  Bruno Haible  <bruno@clisp.org>
19407
19408         Merge these changes.
19409         2006-09-05  Bruno Haible  <bruno@clisp.org>
19410         * lib/iconvme.c (iconv_string): No need to save and restore errno when
19411         iconv_alloc succeeded.
19412         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
19413         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
19414         test for " && dest " at the end - dest is always != NULL there. Call
19415         iconv with 4xNULL arguments initially, to reset the state. Call iconv
19416         with 2xNULL arguments, also to flush the state storage. Handle the
19417         IRIX iconv behaviour. Realloc the final result, to throw away unused
19418         memory.
19419
19420 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
19421
19422         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
19423         and fchmodat unconditionally, since glibc 2.4 has them.
19424         Problem reported by Arkadiusz Miskiewicz.
19425
19426 2006-12-10  Bruno Haible  <bruno@clisp.org>
19427
19428         * gnulib-tool (func_import): Show the include files only for those
19429         modules that are copied and specified.
19430         Reported by Karl Berry.
19431
19432 2006-12-08  Jim Meyering  <jim@meyering.net>
19433
19434         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
19435         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
19436
19437         * build-aux/announce-gen: Add two new options, both optional:
19438         --bootstrap-tools=TOOL_LIST
19439               a comma-separated list of tools, e.g.,
19440               autoconf,automake,bison,gnulib
19441         --gnulib-snapshot-date=DATE
19442               if gnulib is in the bootstrap tool list,
19443               then report this as the snapshot date.
19444               If not specified, use the current date/time.
19445               If you specify a date here, be sure it's UTC.
19446
19447 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19448
19449         * tests/test-argp-2.sh: Fix test to match actual output.
19450         (func_compare): Fix sed script to be portable.
19451
19452 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
19453
19454         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
19455         workaround for this case.  It is not autoconfigured now; offhand
19456         it's hard to see how to autoconfigure it.
19457
19458 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
19459
19460         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
19461         a directory that is about to be chowned.  Such a directory's
19462         initial file permissions should permit the owner only and this
19463         should not be changed until after the chown, since the group and
19464         other bits would be incorrect if they granted permission before
19465         the chown.
19466
19467         Fix porting problem for iswctype reported by Georg Schwarz in:
19468         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
19469         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
19470         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
19471         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
19472         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19473
19474 2006-12-03  Jim Meyering  <jim@meyering.net>
19475
19476         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
19477         p->fts_statp may not yet be defined.
19478         (fts_read): Instead, set it in the caller, once p->fts_statp is
19479         sure to be defined, and corresponds to a top-level directory.
19480         This bug made du -x fail.  Here's the coreutils test case:
19481         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
19482         Reported by Mike Frysinger.
19483
19484 2006-12-01  Jim Meyering  <jim@meyering.net>
19485
19486         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
19487         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
19488         Reported by Simon Josefsson.
19489
19490 2006-11-30  Jim Meyering  <jim@meyering.net>
19491
19492         * m4/warning.m4: Use the all-permissive copyright notice
19493         recommended by RMS (rather than LGPL).
19494         * m4/vararrays.m4: Likewise.
19495         * m4/flexmember.m4: Likewise.
19496
19497 2006-11-29  Bruno Haible  <bruno@clisp.org>
19498
19499         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19500         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
19501         using +=.
19502         Reported by Simon Josefsson <simon@josefsson.org>.
19503
19504 2006-11-28  James Youngman <jay@gnu.org>
19505
19506         * README: Advise users that they might find the bug-gnulib@gnu.org
19507         and autotools-announce@gnu.org mailing lists useful.
19508
19509 2006-11-28  Bruno Haible  <bruno@clisp.org>
19510
19511         * m4/ptrdiff_max.m4: Remove file.
19512
19513 2006-11-21  Bruno Haible  <bruno@clisp.org>
19514
19515         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
19516         _AC_COMPUTE_INT.
19517         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19518         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
19519         _AC_COMPUTE_INT.
19520         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19521         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
19522         _AC_COMPUTE_INT.
19523         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19524
19525 2006-11-28  Jim Meyering  <jim@meyering.net>
19526
19527         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
19528         warning from "gcc -Wshadow" about shadowing the builtin.
19529
19530 2006-11-27  Bruno Haible  <bruno@clisp.org>
19531
19532         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
19533         _AC_COMPUTE_INT.
19534         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19535
19536 2006-11-27  Bruno Haible  <bruno@clisp.org>
19537             Paul Eggert  <eggert@cs.ucla.edu>
19538
19539         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
19540
19541 2006-11-26  Bruno Haible  <bruno@clisp.org>
19542
19543         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19544         noinst_LTLIBRARIES.
19545
19546 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19547             Bruno Haible  <bruno@clisp.org>
19548
19549         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
19550         if compiling with "gcc -ansi".
19551
19552 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19553
19554         Fix some incompatibilities with gcc -ansi -pedantic.
19555         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
19556         if compiling pedantically with GCC, unless it's C99 or later.
19557         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
19558         it mishandles gcc -ansi -pedantic as well.
19559         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
19560         if gcc -pedantic.
19561         * lib/regexec.c (check_node_accept_bytes): Don't use auto
19562         initializers for struct if -pedantic, unless it's C99 or later.
19563
19564 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
19565
19566         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
19567         Don't close an fd more than once. Identical atimes indicate
19568         success, not failure.
19569
19570 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
19571
19572         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
19573
19574 2006-11-23  Jim Meyering  <jim@meyering.net>
19575
19576         * build-aux/announce-gen: New file.  From coreutils.
19577
19578 2006-11-22  Jim Meyering  <jim@meyering.net>
19579
19580         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
19581         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
19582         (fts_read): Use a temporary to narrow the overused st_size member
19583         before using it in a switch statement.  Reported by Matthew Woehlke.
19584
19585         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
19586         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
19587
19588 2006-11-20  Bruno Haible  <bruno@clisp.org>
19589
19590         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
19591         changequote instead of pairs of brackets.
19592         Reported by Andreas Schwab <schwab@suse.de>.
19593
19594 2006-11-21  Jim Meyering  <jim@meyering.net>
19595
19596         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
19597         so as to remain compatible with older compilers.
19598         Patch from Michael Deutschmann.
19599
19600 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19601
19602         * MODULES.html.sh (File system functions): Add openat.
19603
19604         * lib/openat.h (rpl_fstatat): New macro, if
19605         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
19606         (fstatat): Define to rpl_fstatat under the same conditions,
19607         unless COMPILING_FSTATAT.
19608         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
19609         seems to have the bug.
19610         * lib/fstatat.c: New file.
19611         * modules/openat (Files): Add it.
19612
19613 2006-11-20  Bruno Haible  <bruno@clisp.org>
19614
19615         * Makefile: New file.
19616
19617 2006-11-20  Jim Meyering  <jim@meyering.net>
19618
19619         The beginnings of syntax-related checks for gnulib.
19620         * lib/Makefile: New file.
19621         * lib/t-idcache: New script.  Ensure that the two halves of
19622         idcache.c stay in sync.
19623
19624         * lib/idcache.c: Adjust comments in user- and group- portions to
19625         be more accurate, and to be consistent with one another.
19626
19627 2006-11-20  Jim Meyering  <jim@meyering.net>
19628
19629         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
19630         continue using the flexible array member (thus, this module performs
19631         half as many malloc calls), with the addition that...
19632         (getgroup, getuser): Consistently record a non-match via an empty
19633         "name" string, and map an empty string match to a NULL return value.
19634         * modules/idcache (Depends-on): Re-add flexmember.
19635
19636         * lib/idcache.c (getuser): Remove all uses of the register keyword.
19637         (getuidbyname, getgroup, getgidbyname): Likewise.
19638
19639         Use cleaner syntax: NULL rather than 0.
19640         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
19641
19642 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19643
19644         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
19645         It mishandled the case where the group was missing.
19646         Problem reported by Greg Schafer.
19647         * modules/idcache: Likewise.
19648
19649 2006-11-18  Jim Meyering  <jim@meyering.net>
19650
19651         * check-module (%exempt_header): Add exception for some
19652         conditionally-included headers.
19653
19654         * modules/i-ring (Depends-on): Add verify.
19655         (License): Change to LGPL.
19656
19657 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19658
19659         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
19660         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
19661         and inttostr.h.  Use snprintf rather than uinttostr, so that
19662         LGPLed code doesn't depend on GPLed.
19663
19664 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19665
19666         * modules/inline (License): Change from GPL to LGPL.
19667
19668 2006-11-17  Jim Meyering  <jim@meyering.net>
19669
19670         * modules/d-type (License): Switch to LGPL.
19671
19672 2006-11-15  Bruno Haible  <bruno@clisp.org>
19673
19674         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
19675
19676 2006-11-15  Eric Blake  <ebb9@byu.net>
19677
19678         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
19679         the module dependency.
19680
19681 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19682             Bruno Haible  <bruno@clisp.org>
19683
19684         * gnulib-tool (func_create_testdir): Add license consistency check.
19685
19686 2006-11-15  Eric Blake  <ebb9@byu.net>
19687
19688         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
19689         random "(cached)" in configure output.
19690
19691 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19692
19693         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
19694         test for conforming inttypes.h is both announced and cached.
19695
19696         * MODULES.html.sh (seen_modules, seen_files): New variables.
19697         (func_module): Rewrite to use a few less gnulib-tool and sed
19698         invocations.  Avoid a couple of quadratic algorithms for ...
19699         (missed_modules, missed_files): ... these, with ...
19700         (func_append, func_tmpdir): ... these new functions, from
19701         gnulib-tool.  Analogously, install traps for cleanup.
19702
19703         * tests/test-gc.c (main): Remove unused variables.
19704         * tests/test-read-file.c: Include stdlib.h, for 'free'.
19705
19706 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
19707
19708         * modules/inttostr (License): Change to LGPL.
19709
19710 2006-11-14  Eric Blake  <ebb9@byu.net>
19711
19712         * modules/tempname (License): Change to LGPL.
19713
19714 2006-11-14  Eric Blake  <ebb9@byu.net>
19715
19716         * doc/functions.texi (Function Portability): *printf functions on
19717         Cygwin now understand all POSIX size specifiers.
19718
19719 2006-11-14  Bruno Haible  <bruno@clisp.org>
19720
19721         * modules/c-ctype (License): Change to LGPL.
19722
19723 2006-11-12  Bruno Haible  <bruno@clisp.org>
19724
19725         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19726         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
19727         for GNOME libraries, for which the include files are installed in
19728         subdirectories of $prefix/include.
19729
19730 2006-11-12  Bruno Haible  <bruno@clisp.org>
19731
19732         * m4/lib-link.m4: Require at least autoconf-2.54.
19733         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
19734         name to underscores for the --with option.
19735
19736 2006-11-13  Bruno Haible  <bruno@clisp.org>
19737
19738         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
19739         the tests directory.
19740         Reported by Ralf Wildenhues.
19741
19742 2006-11-13  Bruno Haible  <bruno@clisp.org>
19743
19744         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
19745         (func_emit_initmacro_end): Undo the override here.
19746         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
19747         Works around the famous automake error in coreutils.
19748
19749 2006-11-13  Eric Blake  <ebb9@byu.net>
19750
19751         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
19752         element, not its node.
19753
19754 2006-11-12  Bruno Haible  <bruno@clisp.org>
19755
19756         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
19757         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
19758
19759 2006-11-12  Bruno Haible  <bruno@clisp.org>
19760
19761         * gnulib-tool: New option --local-symlink.
19762         (func_usage): Document it.
19763         (lsymbolic): New variable.
19764         (func_import, func_create_testdir): If --symlink was not specified,
19765         test whether --local-symlink was specified and the file comes from
19766         the local_gnulib_dir.
19767
19768 2006-11-12  Bruno Haible  <bruno@clisp.org>
19769
19770         * gnulib-tool (func_ln): New function.
19771         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
19772
19773 2006-11-12  Bruno Haible  <bruno@clisp.org>
19774
19775         Finish support for source files in subdirectories.
19776         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
19777         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
19778         AUTOMAKE_OPTIONS.
19779         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
19780
19781 2006-11-12  Bruno Haible  <bruno@clisp.org>
19782
19783         * gnulib-tool (func_get_automake_snippet): Synthesize also an
19784         EXTRA_lib_SOURCES augmentation.
19785         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
19786
19787 2006-11-12  Jim Meyering  <jim@meyering.net>
19788
19789         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
19790         file descriptors.  This also averts a failure on systems with
19791         native openat support when a traversed directory lacks "x" access.
19792         * lib/fts_.h: Include "i-ring.h"
19793         (struct FTS) [fts_fd_ring]: New member.
19794         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
19795         (FCHDIR): Add parentheses.
19796         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
19797         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
19798         When descending, rather than simply closing the previous
19799         fts_cwd_fd value, push that file descriptor onto the ring.
19800         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
19801         (fts_open): Initialize the new fd_ring member.
19802         (fts_close): Clear the ring.
19803         (fts_safe_changedir): When possible, use our new fd_ring to skip
19804         the diropen and fstat and dev/ino comparison that would normally
19805         accompany a virtual `chdir ("..")'.
19806
19807         * modules/fts (Depends-on): Add i-ring.
19808         * modules/i-ring: New module.
19809         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
19810         * m4/i-ring.m4: New file.
19811
19812 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19813
19814         * gnulib-tool (func_create_testdir): Fix replacement of
19815         `build-aux' in configure.ac.  Run autotools in gltests
19816         subdirectory.
19817         (func_create_testdir, func_create_megatestdir, test): There is
19818         no need for '--force' in most autotool invocations in a new
19819         tree.  Actually fail the whole test if any of the tools, or the
19820         configure or make stages fail.
19821
19822         Sync from Automake.
19823         * build-aux/gnupload: Revert last change.  Add pointer to upload
19824         instructions of the GNU Maintenance Instructions.
19825         Suggestion by Karl Berry.
19826
19827 2006-11-10  Jim Meyering  <jim@meyering.net>
19828
19829         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
19830
19831 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19832
19833         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
19834         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
19835         (bind_textdomain_codeset) [! ENABLE_NLS]:
19836         Evaluate all the arguments.  That way, callers get compatible behavior
19837         if the arguments have side effects.  Also, it avoids some GCC
19838         diagnostics in some cases; Joel E. Denny reported problems when Bison
19839         was configured with --enable-gcc-warnigs.
19840
19841 2006-11-10  Jim Meyering  <jim@meyering.net>
19842
19843         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
19844         relevant options in CFLAGS (like -O, -fno-inline) are taken into
19845         account.
19846
19847 2006-11-10  Jim Meyering  <jim@meyering.net>
19848
19849         * modules/inline: New file/module.
19850         * modules/xalloc (Files): Remove m4/inline.m4.
19851         (Depends-on): Add inline, instead.
19852         * modules/oset: Likewise.
19853         * modules/list: Likewise.
19854
19855 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19856
19857         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
19858         Problem reported by Matthew Woehlke.
19859
19860 2006-11-09  Bruno Haible  <bruno@clisp.org>
19861
19862         * lib/tempname.c (gen_tempname): Remove variant that invokes
19863         __gen_tempname.
19864         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
19865         __gen_tempname.
19866
19867 2006-11-08  Bruno Haible  <bruno@clisp.org>
19868
19869         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
19870         to 'yes' instead of 'cross-compiling'.
19871
19872 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
19873
19874         * lib/quotearg.h (quotearg_free): New decl.
19875         * lib/quotearg.c (quotearg_free): New function.
19876         (slot0, nslots, slotvec0, slotvec):
19877         Now file-scope so that quotearg_free can get at them.
19878
19879 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19880
19881         Sync from Automake.
19882         * build-aux/gnupload: Add missing 'gnu' to example URL.
19883         Report by Karl Berry.
19884
19885 2006-11-08  Bruno Haible  <bruno@clisp.org>
19886
19887         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
19888         Suggested by Paul Eggert.
19889
19890 2006-11-08  Jim Meyering  <jim@meyering.net>
19891
19892         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
19893         It's already included if !_LIBC.
19894         (fts_safe_changedir): Add a comment.
19895
19896 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
19897
19898         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
19899         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
19900         Matthew Woehlke.
19901
19902         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
19903         definitions up, to avoid colliding with change below.
19904         (static_inline) [HAVE_INLINE]: New macro.
19905         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
19906         Provide extern decls when !HAVE_INLINE.  Do not define unless
19907         static_inline is defined, either by us or by xmalloc.c.  Use
19908         static_inline rather than static inline.
19909         (XCALLOC): Optimize sizeof(T) = 1 case.
19910         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
19911
19912 2006-11-07  Bruno Haible  <bruno@clisp.org>
19913
19914         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
19915         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
19916         AC_C_INLINE.
19917         * modules/xalloc (Files): Add m4/inline.m4.
19918
19919 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19920
19921         * README: Fix typo.
19922         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
19923         (Miscellanous Notes): ...from this.
19924
19925 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
19926
19927         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
19928         Mention that offsetof should be used instead of sizeof.
19929         From Bruno Haible.
19930
19931 2006-11-07  Bruno Haible  <bruno@clisp.org>
19932
19933         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
19934
19935 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
19936
19937         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
19938         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
19939         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
19940         (gl_tree_add_before, gl_tree_add_after):
19941         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
19942         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
19943         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
19944         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
19945         (gl_linked_add_after, gl_linked_add_at): Likewise.
19946         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
19947         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
19948         (gl_tree_add_before, gl_tree_add_after): Likewise.
19949         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
19950         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
19951         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
19952
19953 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19954
19955         * lib/gl_oset.h: Use C comment style, not C++ comment style.
19956
19957 2006-11-06  Bruno Haible  <bruno@clisp.org>
19958
19959         * m4/inline.m4: New file.
19960         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
19961         * modules/list (Files): Add m4/inline.m4.
19962         * modules/oset (Files): Likewise.
19963
19964 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
19965
19966         * lib/idcache.c: Include <stddef.h>, for offsetof.
19967         (struct userid.name): Change from char * to a flexible array member.
19968         All uses changed.
19969         * modules/idcache (Depends-on): Add flexmember.
19970
19971         * MODULES.html.sh (Core language properties): New module flexmember.
19972         * modules/flexmember, m4/flexmember.m4: New files.
19973
19974         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
19975         inline functions that are identical with the old xnmalloc_inline,
19976         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
19977         that we can avoid some unnecessary integer multiplications and
19978         divisions in the common case where the element size is known at
19979         compile time.
19980         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
19981         needed.
19982         (xnboundedmalloc): Remove.
19983         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
19984         arguments, for consistency with rest of this header.
19985         (xcharalloc): Rewrite using XNMALLOC.
19986         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
19987         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
19988         versions have been moved to lib/xalloc.h and renamed to be the
19989         non-*_inline versions.
19990         (xmalloc, xrealloc): Implement without reference to the xnmalloc
19991         and xnrealloc functions, since those functions are now inline and
19992         now call us.
19993         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
19994         renaming described above.
19995         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
19996         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
19997         captures the dependency in AC_C_INLINE.
19998
19999         New module canonicalize-lgpl, proposed by Charles Wilson in
20000         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
20001         with a few small changes afterwards.
20002         * MODULES.html.sh (File system functions): New module
20003         canonicalize-lgpl.
20004         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
20005         and canonicalize_file_name.
20006         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
20007         * modules/canonicalize-lgpl: New files.
20008
20009 2006-11-05  Bruno Haible  <bruno@clisp.org>
20010
20011         * gnulib-tool (func_import, func_create_testdir): Create directories
20012         also for files in subdirectories of lib/.
20013
20014 2006-11-05  Bruno Haible  <bruno@clisp.org>
20015
20016         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
20017         ANSI C compliant.
20018
20019 2006-11-03  Bruno Haible  <bruno@clisp.org>
20020
20021         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
20022         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
20023         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
20024         (xnboundedmalloc): New inline function.
20025         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
20026         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
20027         xmalloc.
20028         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
20029         xmalloc.
20030         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
20031         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
20032         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
20033         xmalloc.
20034         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
20035         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
20036         xmalloc.
20037         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
20038         gl_tree_add_after): Use XMALLOC instead of xmalloc.
20039         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
20040         xmalloc.
20041         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
20042         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
20043         gl_tree_add_after): Use XMALLOC instead of xmalloc.
20044         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
20045         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
20046         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
20047         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
20048
20049 2006-11-03  Bruno Haible  <bruno@clisp.org>
20050
20051         * lib/c-ctype.h [C++]: Define functions without name mangling.
20052         * lib/fwriteerror.h [C++]: Likewise.
20053         * lib/gcd.h [C++]: Likewise.
20054         * lib/linebreak.h [C++]: Likewise.
20055
20056 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
20057
20058         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
20059         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
20060         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
20061         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
20062         Check for functions and headers just once.
20063         Check for declaration of canonicalize_file_name.
20064         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
20065
20066 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20067
20068         * gnulib-tool (func_import): Fix typo in actioncmd.
20069
20070 2006-11-02  Bruno Haible  <bruno@clisp.org>
20071
20072         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
20073         newline sequence in the Makefile.am snippet as a space, like "make"
20074         does.
20075         Reported by Roger Persson <perrog@gmail.com>.
20076
20077 2006-11-01  Bruno Haible  <bruno@clisp.org>
20078
20079         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
20080         already declared in <string.h>.
20081         * lib/strcase.h (strncasecmp): Don't declare it if yes.
20082
20083 2006-11-01  Bruno Haible  <bruno@clisp.org>
20084
20085         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
20086         * lib/strcase.h: Include <string.h>.
20087         (strcasecmp): Define to rpl_strcasecmp here.
20088
20089 2006-11-01  Bruno Haible  <bruno@clisp.org>
20090
20091         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
20092
20093 2006-11-01  Eric Blake  <ebb9@byu.net>
20094
20095         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
20096
20097         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
20098
20099 2006-10-29  Bruno Haible  <bruno@clisp.org>
20100
20101         Make it compile in C++ mode.
20102         * lib/full-write.c (full_rw): Add a cast.
20103
20104 2006-11-01  Bruno Haible  <bruno@clisp.org>
20105
20106         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
20107         be POSIX compliant.
20108         Reported by Roger Persson <perrog@gmail.com>.
20109
20110 2006-11-01  Eric Blake  <ebb9@byu.net>
20111
20112         * lib/getopt_.h: Fix comments.
20113
20114 2006-10-31  Eric Blake  <ebb9@byu.net>
20115
20116         * modules/tmpdir (Depends-on): Add sys_stat.
20117         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
20118         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
20119         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
20120         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
20121         tempname.
20122
20123 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
20124
20125         Avoid some C++ diagnostics reported by Bruno Haible.
20126         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
20127         xmalloc.
20128         (quotearg_alloc): Use xcharalloc rather than xmalloc.
20129         (struct slotvec): Move to top level.
20130         (quotearg_n_options): Rewrite to avoid xmalloc.
20131         * lib/xalloc.h (xcharalloc): New function.
20132         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
20133         [defined __cplusplus]: Add function template that provides result
20134         type propagation.  This part of the change is from Bruno Haible.
20135
20136 2006-10-29  Bruno Haible  <bruno@clisp.org>
20137
20138         Make it compile in C++ mode.
20139         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
20140         * lib/strnlen1.c (strnlen1): Cast memchr result.
20141         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
20142         * lib/clean-temp.c (string_equals, string_hash): Add casts.
20143         (create_temp_dir): Rename local variable 'template'.
20144         (compile_csharp_using_sscli): Add cast.
20145         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
20146         * lib/findprog.c (find_in_path): Likewise.
20147         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
20148         * lib/wait-process.c (register_slave_subprocess): Likewise.
20149
20150 2006-10-22  Bruno Haible  <bruno@clisp.org>
20151
20152         * modules/tsearch: New file.
20153         * lib/tsearch.h: New file.
20154         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
20155         * m4/tsearch.m4: New file.
20156         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
20157
20158 2006-10-29  Eric Blake  <ebb9@byu.net>
20159
20160         * lib/arcfour.c: Assume config.h.
20161         * lib/arctwo.c: Likewise.
20162         * lib/base64.c: Likewise.
20163         * lib/check-version.c: Likewise.
20164         * lib/crc.c: Likewise.
20165         * lib/des.c: Likewise.
20166         * lib/gc-gnulib.c: Likewise.
20167         * lib/gc-libgcrypt.c: Likewise.
20168         * lib/gc-pbkdf2-sha1.c: Likewise.
20169         * lib/getaddrinfo.c: Likewise.
20170         * lib/getdelim.c: Likewise.
20171         * lib/getline.c: Likewise.
20172         * lib/hmac-md5.c: Likewise.
20173         * lib/hmac-sha1.c: Likewise.
20174         * lib/iconvme.c: Likewise.
20175         * lib/md2.c: Likewise.
20176         * lib/md4.c: Likewise.
20177         * lib/memxor.c: Likewise.
20178         * lib/read-file.c: Likewise.
20179         * lib/readline.c: Likewise.
20180         * lib/rijndael-alg-fst.c: Likewise.
20181         * lib/rijndael-api-fst.c: Likewise.
20182         * lib/xgetdomainname.c: Likewise.
20183
20184 2006-10-28  Eric Blake  <ebb9@byu.net>
20185
20186         * lib/xstrndup.c: Assume config.h.
20187
20188 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
20189
20190         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
20191         stat-macros.h is now for our own macros, whereas stat_h is for
20192         macros in the <sys/stat.h> name space.
20193         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
20194         (STAT_MACROS_H): Remove.
20195         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
20196         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
20197         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
20198         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
20199         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
20200         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
20201         Move these macros to ...
20202         * lib/stat_.h: here.  Don't include stat-macros.h.
20203         * lib/canonicalize.c: Don't include stat-macros.h.
20204         * lib/chown.c: Likewise.
20205         * lib/euidaccess.c: Likewise.
20206         * lib/file-type.c: Likewise.
20207         * lib/filemode.c: Likewise.
20208         * lib/glob.c: Likewise.
20209         * lib/isapipe.c: Likewise.
20210         * lib/lchown.c: Likewise.
20211         * lib/lstat.c: Likewise.
20212         * lib/mkdir-p.c: Likewise.
20213         * lib/rmdir.c: Likewise.
20214         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
20215         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
20216         unless mkdir isn't declared, to speed up 'configure'.
20217         Always create sys/stat.h, since it's unlikely any real sys/stat.h
20218         would define all the S_* symbols.
20219         * modules/canonicalize (Depends-on):
20220         Depend on sys_stat, not stat-macros.
20221         * modules/chown: Likewise.
20222         * modules/euidaccess: Likewise.
20223         * modules/filemode: Likewise.
20224         * modules/file-type: Likewise.
20225         * modules/glob: Likewise.
20226         * modules/isapipe: Likewise.
20227         * modules/lchown: Likewise.
20228         * modules/lstat: Likewise.
20229         * modules/mkancesdirs: Likewise.
20230         * modules/rmdir: Likewise.
20231         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
20232         * modules/modechange: Likewise.
20233         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
20234         (configure.ac): Remove gl_STAT_MACROS.
20235         * modules/sys_stat (Depends-on): Remove stat-macros.
20236
20237 2006-10-27  Bruno Haible  <bruno@clisp.org>
20238
20239         * m4/signed.m4: Remove file.
20240         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
20241         invocation.
20242         * modules/vasnprintf (Files): Remove m4/signed.m4.
20243
20244 2006-10-27  Bruno Haible  <bruno@clisp.org>
20245
20246         Update to GNU gettext 0.16.
20247         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
20248         m4/inttypes-h.m4, m4/signed.m4.
20249         * m4/gettext.m4: Update to GNU gettext 0.16.
20250         * m4/intl.m4: New file, from GNU gettext.
20251         * m4/intldir.m4: New file, from GNU gettext.
20252         * config/srclist.txt: Update
20253
20254 2006-10-27  Eric Blake  <ebb9@byu.net>
20255
20256         * MODULES.html.sh: Document tempname.
20257         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
20258         dependencies.
20259         (Files): Move lib/tempname.c...
20260         * modules/tempname: ...to this new module.
20261         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
20262         (gl_PREREQ_TEMPNAME): Move...
20263         * m4/tempname.m4: ...to this new file.
20264         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
20265         * modules/sys_stat (Depends-on): Add stat-macros.
20266         * lib/stat_.h (includes): Pick up stat macros.
20267         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
20268         if stat macros are broken.
20269         * lib/tempname.c (includes): No need to include "stat-macros.h".
20270         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
20271         (direxists, __path_search) [!_LIBC]: Don't compile these in
20272         gnulib; the tmpdir module covers that.
20273         * lib/tempname.h: New file.
20274
20275 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
20276
20277         * COPYING: Explain how gnulib-tool converts licence headers.
20278         Almost all wording by Eric Blake.
20279
20280 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
20281
20282         * lib/mbchar.h (is_basic_table): Make read-only.
20283         * lib/mbchar.c (is_basic_table): Likewise.
20284         Reported by John Darrington.
20285
20286 2006-10-25  Bruno Haible  <bruno@clisp.org>
20287
20288         * lib/progname.h (set_program_name): Undefine before defining.
20289
20290 2006-10-25  Bruno Haible  <bruno@clisp.org>
20291
20292         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
20293         false for non-gcc C++ compilers.
20294         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
20295
20296 2006-10-24  Bruno Haible  <bruno@clisp.org>
20297
20298         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
20299         iconv implementations like Irix iconv.
20300
20301 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20302
20303         * modules/vararrays: New file.
20304         * m4/vararrays.m4: New file, taken from diffutils.
20305         * MODULES.html.sh: New module vararrays.
20306
20307 2006-10-24  Karl Berry  <karl@gnu.org>
20308
20309         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
20310         Don't call GNU Unix.
20311
20312 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20313
20314         * users.txt: Add Libtool.
20315
20316         Sync from Libtool:
20317
20318         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20319
20320         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
20321         to gnulib's policy of including config.h unconditionally.
20322
20323 2006-10-24  Bruno Haible  <bruno@clisp.org>
20324
20325         * modules/wcwidth (Files): Add m4/wint_t.m4.
20326         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
20327         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
20328
20329 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20330
20331         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
20332         to pacify GCC with some -W flags enabled.  Problem reported by
20333         Bruno Haible.
20334
20335 2006-10-24  Jim Meyering  <jim@meyering.net>
20336
20337         * MODULES.html.sh: Remove uinttostr.  It's not a module.
20338         Reported by Karl Berry.
20339
20340 2006-10-23  Bruno Haible  <bruno@clisp.org>
20341
20342         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
20343
20344 2006-10-24  Bruno Haible  <bruno@clisp.org>
20345
20346         * lib/gl_list.h: Use C comment style, not C++ comment style.
20347
20348 2006-10-23  Eric Blake  <ebb9@byu.net>
20349
20350         * lib/getaddrinfo.c (includes): Add missing include.
20351
20352 2006-10-23  Bruno Haible  <bruno@clisp.org>
20353             Paul Eggert  <eggert@cs.ucla.edu>
20354
20355         Ability to rename obstack_free.
20356         * lib/obstack.h (__obstack_free): New macro. Declare instead of
20357         obstack_free.
20358         (obstack_free): Invoke the __obstack_free macro.
20359         * lib/obstack.c (obstack_free): Use __obstack_free macro.
20360
20361 2006-10-23  Bruno Haible  <bruno@clisp.org>
20362             Paul Eggert  <eggert@cs.ucla.edu>
20363
20364         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
20365         __argc, __argv from the declaration. (They are defined as macros on
20366         mingw.)
20367
20368 2006-10-22  Bruno Haible  <bruno@clisp.org>
20369
20370         * doc/gnulib-intro.texi: New file.
20371         * doc/gnulib.texi: Include it.
20372
20373 2006-10-21  Bruno Haible  <bruno@clisp.org>
20374
20375         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
20376         "Introduction", "Miscellanous Notes", "Particular Modules".
20377
20378 2006-10-21  Bruno Haible  <bruno@clisp.org>
20379
20380         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20381         Change mostlyclean-local rule to avoid sh syntax error from bash
20382         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
20383
20384 2006-10-23  Jim Meyering  <jim@meyering.net>
20385
20386         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
20387         in place of snprintf.
20388
20389         * modules/inttostr (Files): Add lib/uinttostr.c.
20390         * lib/uinttostr.c (inttostr): New file/function.
20391         * lib/inttostr.h (uinttostr): Declare.
20392         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
20393         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
20394         Add uinttostr.
20395         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
20396
20397 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20398
20399         * lib/canonicalize.c (ELOOP): Define if not already defined.
20400         Problem reported by Bruno Haible in
20401         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
20402
20403 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20404
20405         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
20406         Problem reported by Perry Smith and Ville Laurikari.
20407
20408         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
20409         uses.
20410
20411 2006-10-19  Bruno Haible  <bruno@clisp.org>
20412
20413         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
20414         for mingw.
20415
20416 2006-10-19  Bruno Haible  <bruno@clisp.org>
20417
20418         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
20419         Needed for mingw.
20420
20421 2006-10-19  Bruno Haible  <bruno@clisp.org>
20422
20423         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
20424
20425 2006-10-19  Bruno Haible  <bruno@clisp.org>
20426
20427         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
20428         it.
20429
20430 2006-10-19  Bruno Haible  <bruno@clisp.org>
20431
20432         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
20433         invocation.
20434
20435 2006-10-19  Bruno Haible  <bruno@clisp.org>
20436
20437         * gnulib-tool (func_create_testdir): Don't include ftruncate and
20438         mountlist by default.
20439
20440 2006-10-16  Bruno Haible  <bruno@clisp.org>
20441
20442         * lib/c-strstr.c: Include c-strstr.h.
20443
20444 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20445
20446         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
20447         in a slash.
20448
20449 2006-10-18  Bruno Haible  <bruno@clisp.org>
20450
20451         * lib/lock.h [C++]: Wrap definitions in extern "C".
20452
20453 2006-10-18  Bruno Haible  <bruno@clisp.org>
20454
20455         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
20456         gl_LIBOBJS list.
20457
20458 2006-10-18  Bruno Haible  <bruno@clisp.org>
20459
20460         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
20461
20462 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
20463
20464         * lib/xstrtol.h: Include gettext.h.
20465         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
20466         Problem reported by Eric Blake.
20467         * modules/xstrtol (Depends-on): Add gettext-h.
20468
20469 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
20470
20471         * lib/strftime.c (advance): New macro.
20472         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
20473         incomplete type, so you can't add 0 to it.  Problem and patch
20474         reported by Eelco Dolstra for dietlibc.
20475
20476 2006-10-18  Jim Meyering  <jim@meyering.net>
20477
20478         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
20479         type for a local, and rename it: s/up/user_proc/.
20480
20481 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
20482
20483         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
20484         READ_UTMP_USER_PROCESS.
20485         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
20486
20487 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20488
20489         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
20490         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
20491
20492 2006-10-17  Eric Blake  <ebb9@byu.net>
20493
20494         * lib/sigprocmask.c (sigprocmask): Fix typo.
20495
20496         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
20497
20498         * modules/clean-temp (Makefile.am): Don't add to make output...
20499         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
20500         config.h.
20501
20502 2006-10-17  Bruno Haible  <bruno@clisp.org>
20503
20504         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
20505         differently if DEFAULT_TEXT_DOMAIN is set.
20506
20507 2006-10-16  Bruno Haible  <bruno@clisp.org>
20508
20509         * lib/clean-temp.c: Include fwriteerror.h.
20510
20511 2006-10-16  Bruno Haible  <bruno@clisp.org>
20512
20513         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
20514
20515 2006-10-16  Bruno Haible  <bruno@clisp.org>
20516
20517         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
20518         * lib/sigprocmask.h: Include <sys/types.h>.
20519         (sigset_t): Use the system's definition if present.
20520
20521 2006-10-17  Eric Blake  <ebb9@byu.net>
20522
20523         * lib/xvasprintf.c (includes): Assume config.h.
20524         * lib/xasprintf.c (includes): Likewise.
20525
20526 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20527
20528         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
20529         at least as wide as intmax_t.
20530
20531 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
20532
20533         (Imported from Automake.)
20534         * build-aux/gnupload: Update to version 1.1 of directive file.
20535
20536 2006-10-16  Eric Blake  <ebb9@byu.net>
20537
20538         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
20539         match Automake 1.10a.
20540
20541 2006-10-14  Bruno Haible  <bruno@clisp.org>
20542
20543         * modules/sigprocmask: New file.
20544         * lib/sigprocmask.h: New file.
20545         * lib/sigprocmask.c: New file.
20546         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
20547         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
20548         request sigprocmask.o.
20549         (gl_PREREQ_SIGPROCMASK): New macro.
20550         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
20551         (Depends-on): Add sigprocmask.
20552         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
20553         gt_SIGNALBLOCKING. Test for 'raise' only once.
20554         * lib/fatal-signal.c: Include sigprocmask.h.
20555         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
20556         unblock_fatal_signals): Define always.
20557         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20558         sigprocmask.
20559
20560 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
20561
20562         Sync from Automake.
20563         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
20564         which incorrectly sets the mode of an existing destination
20565         directory.  In some cases the unpatched install-sh could do the
20566         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
20567         system.  We hope this is rare in practice, but it's clearly worth
20568         fixing.  Problem reported by Alex Unleashed in
20569         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
20570         Also, don't bother to check for -m bugs unless we're using -m;
20571         suggested by Stepan Kasal.
20572
20573 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20574
20575         Sync from Automake.
20576         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
20577         `-c' flag, so they appear at the same position as in %FASTDEP%
20578         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
20579         which ignores unknown options only after the first non-option.
20580         Bug report against M4 by Nelson H. F. Beebe.
20581
20582 2006-10-13  Jim Meyering  <jim@meyering.net>
20583
20584         Fix a bug in yesterday's change.
20585         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
20586         p->fts_statp->st_dev would be used uninitialized.
20587         Ensures that we always call fts_stat on the very first entry.
20588         Miklos Szeredi reported that find -xdev stopped working.
20589
20590 2006-10-12  Bruno Haible  <bruno@clisp.org>
20591
20592         * gnulib-tool (func_get_automake_snippet): Append an automatically
20593         computed EXTRA_DIST augmentation.
20594         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
20595         * modules/alloca-opt (Makefile.am): Likewise.
20596         * modules/allocsa (Makefile.am): Likewise.
20597         * modules/arcfour (Makefile.am): Likewise.
20598         * modules/arctwo (Makefile.am): Likewise.
20599         * modules/argmatch (Makefile.am): Likewise.
20600         * modules/argz (Makefile.am): Likewise.
20601         * modules/atexit (Makefile.am): Likewise.
20602         * modules/backupfile (Makefile.am): Likewise.
20603         * modules/byteswap (Makefile.am): Likewise.
20604         * modules/c-strtod (Makefile.am): Likewise.
20605         * modules/c-strtold (Makefile.am): Likewise.
20606         * modules/calloc (Makefile.am): Likewise.
20607         * modules/canon-host (Makefile.am): Likewise.
20608         * modules/canonicalize (Makefile.am): Likewise.
20609         * modules/chdir-long (Makefile.am): Likewise.
20610         * modules/chdir-safer (Makefile.am): Likewise.
20611         * modules/check-version (Makefile.am): Likewise.
20612         * modules/chown (Makefile.am): Likewise.
20613         * modules/cloexec (Makefile.am): Likewise.
20614         * modules/close-stream (Makefile.am): Likewise.
20615         * modules/closeout (Makefile.am): Likewise.
20616         * modules/crc (Makefile.am): Likewise.
20617         * modules/csharpexec (Makefile.am): Likewise.
20618         * modules/cycle-check (Makefile.am): Likewise.
20619         * modules/des (Makefile.am): Likewise.
20620         * modules/dev-ino (Makefile.am): Likewise.
20621         * modules/dirfd (Makefile.am): Likewise.
20622         * modules/dirname (Makefile.am): Likewise.
20623         * modules/dup2 (Makefile.am): Likewise.
20624         * modules/eealloc (Makefile.am): Likewise.
20625         * modules/error (Makefile.am): Likewise.
20626         * modules/euidaccess (Makefile.am): Likewise.
20627         * modules/exclude (Makefile.am): Likewise.
20628         * modules/exitfail (Makefile.am): Likewise.
20629         * modules/fcntl-safer (Makefile.am): Likewise.
20630         * modules/fcntl (Makefile.am): Likewise.
20631         * modules/file-type (Makefile.am): Likewise.
20632         * modules/fileblocks (Makefile.am): Likewise.
20633         * modules/filemode (Makefile.am): Likewise.
20634         * modules/filenamecat (Makefile.am): Likewise.
20635         * modules/fnmatch (Makefile.am): Likewise.
20636         * modules/fopen-safer (Makefile.am): Likewise.
20637         * modules/fpending (Makefile.am): Likewise.
20638         * modules/fprintftime (Makefile.am): Likewise.
20639         * modules/free (Makefile.am): Likewise.
20640         * modules/fsusage (Makefile.am): Likewise.
20641         * modules/ftruncate (Makefile.am): Likewise.
20642         * modules/fts (Makefile.am): Likewise.
20643         * modules/gc-arcfour (Makefile.am): Likewise.
20644         * modules/gc-des (Makefile.am): Likewise.
20645         * modules/gc-hmac-md5 (Makefile.am): Likewise.
20646         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
20647         * modules/gc-md4 (Makefile.am): Likewise.
20648         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20649         * modules/gc-sha1 (Makefile.am): Likewise.
20650         * modules/gc (Makefile.am): Likewise.
20651         * modules/getaddrinfo (Makefile.am): Likewise.
20652         * modules/getcwd (Makefile.am): Likewise.
20653         * modules/getdelim (Makefile.am): Likewise.
20654         * modules/getdomainname (Makefile.am): Likewise.
20655         * modules/getgroups (Makefile.am): Likewise.
20656         * modules/gethostname (Makefile.am): Likewise.
20657         * modules/gethrxtime (Makefile.am): Likewise.
20658         * modules/getline (Makefile.am): Likewise.
20659         * modules/getloadavg (Makefile.am): Likewise.
20660         * modules/getlogin_r (Makefile.am): Likewise.
20661         * modules/getndelim2 (Makefile.am): Likewise.
20662         * modules/getopt (Makefile.am): Likewise.
20663         * modules/getpagesize (Makefile.am): Likewise.
20664         * modules/getpass-gnu (Makefile.am): Likewise.
20665         * modules/getpass (Makefile.am): Likewise.
20666         * modules/getsubopt (Makefile.am): Likewise.
20667         * modules/gettime (Makefile.am): Likewise.
20668         * modules/gettimeofday (Makefile.am): Likewise.
20669         * modules/getugroups (Makefile.am): Likewise.
20670         * modules/getusershell (Makefile.am): Likewise.
20671         * modules/glob (Makefile.am): Likewise.
20672         * modules/group-member (Makefile.am): Likewise.
20673         * modules/hard-locale (Makefile.am): Likewise.
20674         * modules/hash (Makefile.am): Likewise.
20675         * modules/hmac-md5 (Makefile.am): Likewise.
20676         * modules/hmac-sha1 (Makefile.am): Likewise.
20677         * modules/human (Makefile.am): Likewise.
20678         * modules/idcache (Makefile.am): Likewise.
20679         * modules/imaxabs (Makefile.am): Likewise.
20680         * modules/imaxdiv (Makefile.am): Likewise.
20681         * modules/inet_ntop (Makefile.am): Likewise.
20682         * modules/inet_pton (Makefile.am): Likewise.
20683         * modules/intprops (Makefile.am): Likewise.
20684         * modules/inttostr (Makefile.am): Likewise.
20685         * modules/inttypes (Makefile.am): Likewise.
20686         * modules/isapipe (Makefile.am): Likewise.
20687         * modules/javaversion (Makefile.am): Likewise.
20688         * modules/lchmod (Makefile.am): Likewise.
20689         * modules/lchown (Makefile.am): Likewise.
20690         * modules/localcharset (Makefile.am): Likewise.
20691         * modules/long-options (Makefile.am): Likewise.
20692         * modules/lstat (Makefile.am): Likewise.
20693         * modules/malloc (Makefile.am): Likewise.
20694         * modules/mathl (Makefile.am): Likewise.
20695         * modules/mbchar (Makefile.am): Likewise.
20696         * modules/md2 (Makefile.am): Likewise.
20697         * modules/md4 (Makefile.am): Likewise.
20698         * modules/md5 (Makefile.am): Likewise.
20699         * modules/memcasecmp (Makefile.am): Likewise.
20700         * modules/memchr (Makefile.am): Likewise.
20701         * modules/memcmp (Makefile.am): Likewise.
20702         * modules/memcoll (Makefile.am): Likewise.
20703         * modules/memcpy (Makefile.am): Likewise.
20704         * modules/memmem (Makefile.am): Likewise.
20705         * modules/memmove (Makefile.am): Likewise.
20706         * modules/mempcpy (Makefile.am): Likewise.
20707         * modules/memrchr (Makefile.am): Likewise.
20708         * modules/memset (Makefile.am): Likewise.
20709         * modules/memxor (Makefile.am): Likewise.
20710         * modules/mkancesdirs (Makefile.am): Likewise.
20711         * modules/mkdir-p (Makefile.am): Likewise.
20712         * modules/mkdir (Makefile.am): Likewise.
20713         * modules/mkdtemp (Makefile.am): Likewise.
20714         * modules/mkstemp (Makefile.am): Likewise.
20715         * modules/mktime (Makefile.am): Likewise.
20716         * modules/modechange (Makefile.am): Likewise.
20717         * modules/mountlist (Makefile.am): Likewise.
20718         * modules/nanosleep (Makefile.am): Likewise.
20719         * modules/obstack (Makefile.am): Likewise.
20720         * modules/openat (Makefile.am): Likewise.
20721         * modules/pagealign_alloc (Makefile.am): Likewise.
20722         * modules/pathmax (Makefile.am): Likewise.
20723         * modules/physmem (Makefile.am): Likewise.
20724         * modules/poll (Makefile.am): Likewise.
20725         * modules/posixtm (Makefile.am): Likewise.
20726         * modules/posixver (Makefile.am): Likewise.
20727         * modules/putenv (Makefile.am): Likewise.
20728         * modules/quote (Makefile.am): Likewise.
20729         * modules/quotearg (Makefile.am): Likewise.
20730         * modules/raise (Makefile.am): Likewise.
20731         * modules/read-file (Makefile.am): Likewise.
20732         * modules/readline (Makefile.am): Likewise.
20733         * modules/readlink (Makefile.am): Likewise.
20734         * modules/readtokens (Makefile.am): Likewise.
20735         * modules/readutmp (Makefile.am): Likewise.
20736         * modules/realloc (Makefile.am): Likewise.
20737         * modules/regex (Makefile.am): Likewise.
20738         * modules/rename-dest-slash (Makefile.am): Likewise.
20739         * modules/rename (Makefile.am): Likewise.
20740         * modules/rijndael (Makefile.am): Likewise.
20741         * modules/rmdir (Makefile.am): Likewise.
20742         * modules/rpmatch (Makefile.am): Likewise.
20743         * modules/safe-read (Makefile.am): Likewise.
20744         * modules/safe-write (Makefile.am): Likewise.
20745         * modules/same-inode (Makefile.am): Likewise.
20746         * modules/same (Makefile.am): Likewise.
20747         * modules/save-cwd (Makefile.am): Likewise.
20748         * modules/savedir (Makefile.am): Likewise.
20749         * modules/setenv (Makefile.am): Likewise.
20750         * modules/settime (Makefile.am): Likewise.
20751         * modules/sha1 (Makefile.am): Likewise.
20752         * modules/sig2str (Makefile.am): Likewise.
20753         * modules/snprintf (Makefile.am): Likewise.
20754         * modules/stat-macros (Makefile.am): Likewise.
20755         * modules/stat-time (Makefile.am): Likewise.
20756         * modules/stdbool (Makefile.am): Likewise.
20757         * modules/stdint (Makefile.am): Likewise.
20758         * modules/stdlib-safer (Makefile.am): Likewise.
20759         * modules/stpcpy (Makefile.am): Likewise.
20760         * modules/stpncpy (Makefile.am): Likewise.
20761         * modules/strcase (Makefile.am): Likewise.
20762         * modules/strcasestr (Makefile.am): Likewise.
20763         * modules/strchrnul (Makefile.am): Likewise.
20764         * modules/strcspn (Makefile.am): Likewise.
20765         * modules/strdup (Makefile.am): Likewise.
20766         * modules/strerror (Makefile.am): Likewise.
20767         * modules/strftime (Makefile.am): Likewise.
20768         * modules/strndup (Makefile.am): Likewise.
20769         * modules/strnlen (Makefile.am): Likewise.
20770         * modules/strpbrk (Makefile.am): Likewise.
20771         * modules/strsep (Makefile.am): Likewise.
20772         * modules/strstr (Makefile.am): Likewise.
20773         * modules/strtod (Makefile.am): Likewise.
20774         * modules/strtoimax (Makefile.am): Likewise.
20775         * modules/strtok_r (Makefile.am): Likewise.
20776         * modules/strtol (Makefile.am): Likewise.
20777         * modules/strtoll (Makefile.am): Likewise.
20778         * modules/strtoul (Makefile.am): Likewise.
20779         * modules/strtoull (Makefile.am): Likewise.
20780         * modules/strtoumax (Makefile.am): Likewise.
20781         * modules/strverscmp (Makefile.am): Likewise.
20782         * modules/sys_socket (Makefile.am): Likewise.
20783         * modules/sys_stat (Makefile.am): Likewise.
20784         * modules/sysexits (Makefile.am): Likewise.
20785         * modules/time_r (Makefile.am): Likewise.
20786         * modules/timegm (Makefile.am): Likewise.
20787         * modules/timespec (Makefile.am): Likewise.
20788         * modules/tmpfile-safer (Makefile.am): Likewise.
20789         * modules/trim (Makefile.am): Likewise.
20790         * modules/unistd-safer (Makefile.am): Likewise.
20791         * modules/unlinkdir (Makefile.am): Likewise.
20792         * modules/unlocked-io (Makefile.am): Likewise.
20793         * modules/userspec (Makefile.am): Likewise.
20794         * modules/utime (Makefile.am): Likewise.
20795         * modules/utimecmp (Makefile.am): Likewise.
20796         * modules/utimens (Makefile.am): Likewise.
20797         * modules/vasnprintf (Makefile.am): Likewise.
20798         * modules/vasprintf (Makefile.am): Likewise.
20799         * modules/vsnprintf (Makefile.am): Likewise.
20800         * modules/xalloc (Makefile.am): Likewise.
20801         * modules/xgetcwd (Makefile.am): Likewise.
20802         * modules/xnanosleep (Makefile.am): Likewise.
20803         * modules/xreadlink (Makefile.am): Likewise.
20804         * modules/xstrtod (Makefile.am): Likewise.
20805         * modules/xstrtol (Makefile.am): Likewise.
20806         * modules/xstrtold (Makefile.am): Likewise.
20807         * modules/yesno (Makefile.am): Likewise.
20808         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
20809
20810 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
20811
20812         * modules/error (Makefile.am): Distribute files through
20813         EXTRA_DIST, not lib_SOURCES.
20814
20815 2006-10-12  Eric Blake  <ebb9@byu.net>
20816
20817         * modules/error (Makefile.am): Distribute files in /lib.
20818         * modules/obstack (Makefile.am): Likewise.
20819
20820 2006-10-12  Bruno Haible  <bruno@clisp.org>
20821
20822         * modules/acl (Makefile.am): Distribute all files in lib/ through
20823         EXTRA_DIST.
20824         * modules/arcfour (Makefile.am): Likewise.
20825         * modules/arctwo (Makefile.am): Likewise.
20826         * modules/argmatch (Makefile.am): Likewise.
20827         * modules/argz (Makefile.am): Likewise.
20828         * modules/atexit (Makefile.am): Likewise.
20829         * modules/backupfile (Makefile.am): Likewise.
20830         * modules/c-strtod (Makefile.am): Likewise.
20831         * modules/c-strtold (Makefile.am): Likewise.
20832         * modules/calloc (Makefile.am): Likewise.
20833         * modules/canon-host (Makefile.am): Likewise.
20834         * modules/canonicalize (Makefile.am): Likewise.
20835         * modules/chdir-long (Makefile.am): Likewise.
20836         * modules/chdir-safer (Makefile.am): Likewise.
20837         * modules/check-version (Makefile.am): Likewise.
20838         * modules/chown (Makefile.am): Likewise.
20839         * modules/cloexec (Makefile.am): Likewise.
20840         * modules/close-stream (Makefile.am): Likewise.
20841         * modules/closeout (Makefile.am): Likewise.
20842         * modules/crc (Makefile.am): Likewise.
20843         * modules/cycle-check (Makefile.am): Likewise.
20844         * modules/des (Makefile.am): Likewise.
20845         * modules/dirfd (Makefile.am): Likewise.
20846         * modules/dirname (Makefile.am): Likewise.
20847         * modules/dup2 (Makefile.am): Likewise.
20848         * modules/euidaccess (Makefile.am): Likewise.
20849         * modules/exclude (Makefile.am): Likewise.
20850         * modules/exitfail (Makefile.am): Likewise.
20851         * modules/fcntl-safer (Makefile.am): Likewise.
20852         * modules/file-type (Makefile.am): Likewise.
20853         * modules/fileblocks (Makefile.am): Likewise.
20854         * modules/filemode (Makefile.am): Likewise.
20855         * modules/filenamecat (Makefile.am): Likewise.
20856         * modules/fnmatch (Makefile.am): Likewise.
20857         * modules/fopen-safer (Makefile.am): Likewise.
20858         * modules/fpending (Makefile.am): Likewise.
20859         * modules/fprintftime (Makefile.am): Likewise.
20860         * modules/free (Makefile.am): Likewise.
20861         * modules/fsusage (Makefile.am): Likewise.
20862         * modules/ftruncate (Makefile.am): Likewise.
20863         * modules/fts (Makefile.am): Likewise.
20864         * modules/gc (Makefile.am): Likewise.
20865         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20866         * modules/getaddrinfo (Makefile.am): Likewise.
20867         * modules/getcwd (Makefile.am): Likewise.
20868         * modules/getdelim (Makefile.am): Likewise.
20869         * modules/getdomainname (Makefile.am): Likewise.
20870         * modules/getgroups (Makefile.am): Likewise.
20871         * modules/gethostname (Makefile.am): Likewise.
20872         * modules/gethrxtime (Makefile.am): Likewise.
20873         * modules/getline (Makefile.am): Likewise.
20874         * modules/getloadavg (Makefile.am): Likewise.
20875         * modules/getlogin_r (Makefile.am): Likewise.
20876         * modules/getopt (Makefile.am): Likewise.
20877         * modules/getpass (Makefile.am): Likewise.
20878         * modules/getpass-gnu (Makefile.am): Likewise.
20879         * modules/getsubopt (Makefile.am): Likewise.
20880         * modules/gettime (Makefile.am): Likewise.
20881         * modules/gettimeofday (Makefile.am): Likewise.
20882         * modules/getugroups (Makefile.am): Likewise.
20883         * modules/getusershell (Makefile.am): Likewise.
20884         * modules/glob (Makefile.am): Likewise.
20885         * modules/group-member (Makefile.am): Likewise.
20886         * modules/hard-locale (Makefile.am): Likewise.
20887         * modules/hash (Makefile.am): Likewise.
20888         * modules/hmac-md5 (Makefile.am): Likewise.
20889         * modules/hmac-sha1 (Makefile.am): Likewise.
20890         * modules/human (Makefile.am): Likewise.
20891         * modules/idcache (Makefile.am): Likewise.
20892         * modules/imaxabs (Makefile.am): Likewise.
20893         * modules/imaxdiv (Makefile.am): Likewise.
20894         * modules/inet_ntop (Makefile.am): Likewise.
20895         * modules/inet_pton (Makefile.am): Likewise.
20896         * modules/inttostr (Makefile.am): Likewise.
20897         * modules/isapipe (Makefile.am): Likewise.
20898         * modules/lchown (Makefile.am): Likewise.
20899         * modules/long-options (Makefile.am): Likewise.
20900         * modules/lstat (Makefile.am): Likewise.
20901         * modules/malloc (Makefile.am): Likewise.
20902         * modules/mathl (Makefile.am): Likewise.
20903         * modules/mbchar (Makefile.am): Likewise.
20904         * modules/md2 (Makefile.am): Likewise.
20905         * modules/md4 (Makefile.am): Likewise.
20906         * modules/md5 (Makefile.am): Likewise.
20907         * modules/memcasecmp (Makefile.am): Likewise.
20908         * modules/memchr (Makefile.am): Likewise.
20909         * modules/memcmp (Makefile.am): Likewise.
20910         * modules/memcoll (Makefile.am): Likewise.
20911         * modules/memcpy (Makefile.am): Likewise.
20912         * modules/memmem (Makefile.am): Likewise.
20913         * modules/memmove (Makefile.am): Likewise.
20914         * modules/mempcpy (Makefile.am): Likewise.
20915         * modules/memrchr (Makefile.am): Likewise.
20916         * modules/memset (Makefile.am): Likewise.
20917         * modules/memxor (Makefile.am): Likewise.
20918         * modules/mkancesdirs (Makefile.am): Likewise.
20919         * modules/mkdir (Makefile.am): Likewise.
20920         * modules/mkdir-p (Makefile.am): Likewise.
20921         * modules/mkdtemp (Makefile.am): Likewise.
20922         * modules/mkstemp (Makefile.am): Likewise.
20923         * modules/mktime (Makefile.am): Likewise.
20924         * modules/modechange (Makefile.am): Likewise.
20925         * modules/mountlist (Makefile.am): Likewise.
20926         * modules/nanosleep (Makefile.am): Likewise.
20927         * modules/openat (Makefile.am): Likewise.
20928         * modules/pagealign_alloc (Makefile.am): Likewise.
20929         * modules/physmem (Makefile.am): Likewise.
20930         * modules/poll (Makefile.am): Likewise.
20931         * modules/posixtm (Makefile.am): Likewise.
20932         * modules/posixver (Makefile.am): Likewise.
20933         * modules/putenv (Makefile.am): Likewise.
20934         * modules/quote (Makefile.am): Likewise.
20935         * modules/quotearg (Makefile.am): Likewise.
20936         * modules/raise (Makefile.am): Likewise.
20937         * modules/read-file (Makefile.am): Likewise.
20938         * modules/readline (Makefile.am): Likewise.
20939         * modules/readlink (Makefile.am): Likewise.
20940         * modules/readtokens (Makefile.am): Likewise.
20941         * modules/readutmp (Makefile.am): Likewise.
20942         * modules/realloc (Makefile.am): Likewise.
20943         * modules/regex (Makefile.am): Likewise.
20944         * modules/rename (Makefile.am): Likewise.
20945         * modules/rename-dest-slash (Makefile.am): Likewise.
20946         * modules/rijndael (Makefile.am): Likewise.
20947         * modules/rmdir (Makefile.am): Likewise.
20948         * modules/rpmatch (Makefile.am): Likewise.
20949         * modules/safe-read (Makefile.am): Likewise.
20950         * modules/safe-write (Makefile.am): Likewise.
20951         * modules/same (Makefile.am): Likewise.
20952         * modules/save-cwd (Makefile.am): Likewise.
20953         * modules/savedir (Makefile.am): Likewise.
20954         * modules/setenv (Makefile.am): Likewise.
20955         * modules/settime (Makefile.am): Likewise.
20956         * modules/sha1 (Makefile.am): Likewise.
20957         * modules/sig2str (Makefile.am): Likewise.
20958         * modules/snprintf (Makefile.am): Likewise.
20959         * modules/stdlib-safer (Makefile.am): Likewise.
20960         * modules/stpcpy (Makefile.am): Likewise.
20961         * modules/stpncpy (Makefile.am): Likewise.
20962         * modules/strcase (Makefile.am): Likewise.
20963         * modules/strcasestr (Makefile.am): Likewise.
20964         * modules/strchrnul (Makefile.am): Likewise.
20965         * modules/strcspn (Makefile.am): Likewise.
20966         * modules/strdup (Makefile.am): Likewise.
20967         * modules/strerror (Makefile.am): Likewise.
20968         * modules/strftime (Makefile.am): Likewise.
20969         * modules/strndup (Makefile.am): Likewise.
20970         * modules/strnlen (Makefile.am): Likewise.
20971         * modules/strpbrk (Makefile.am): Likewise.
20972         * modules/strsep (Makefile.am): Likewise.
20973         * modules/strstr (Makefile.am): Likewise.
20974         * modules/strtod (Makefile.am): Likewise.
20975         * modules/strtoimax (Makefile.am): Likewise.
20976         * modules/strtok_r (Makefile.am): Likewise.
20977         * modules/strtol (Makefile.am): Likewise.
20978         * modules/strtoll (Makefile.am): Likewise.
20979         * modules/strtoul (Makefile.am): Likewise.
20980         * modules/strtoull (Makefile.am): Likewise.
20981         * modules/strtoumax (Makefile.am): Likewise.
20982         * modules/strverscmp (Makefile.am): Likewise.
20983         * modules/time_r (Makefile.am): Likewise.
20984         * modules/timegm (Makefile.am): Likewise.
20985         * modules/tmpfile-safer (Makefile.am): Likewise.
20986         * modules/unistd-safer (Makefile.am): Likewise.
20987         * modules/unlinkdir (Makefile.am): Likewise.
20988         * modules/userspec (Makefile.am): Likewise.
20989         * modules/utime (Makefile.am): Likewise.
20990         * modules/utimecmp (Makefile.am): Likewise.
20991         * modules/utimens (Makefile.am): Likewise.
20992         * modules/vasnprintf (Makefile.am): Likewise.
20993         * modules/vasprintf (Makefile.am): Likewise.
20994         * modules/vsnprintf (Makefile.am): Likewise.
20995         * modules/xalloc (Makefile.am): Likewise.
20996         * modules/xgetcwd (Makefile.am): Likewise.
20997         * modules/xnanosleep (Makefile.am): Likewise.
20998         * modules/xreadlink (Makefile.am): Likewise.
20999         * modules/xstrtod (Makefile.am): Likewise.
21000         * modules/xstrtol (Makefile.am): Likewise.
21001         * modules/xstrtold (Makefile.am): Likewise.
21002         * modules/yesno (Makefile.am): Likewise.
21003
21004 2006-10-12  Jim Meyering  <jim@meyering.net>
21005
21006         * m4/getloadavg.m4: Revert the change below.
21007
21008         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
21009         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
21010         fail with a symlink, which is what coreutils' ./bootstrap now
21011         creates by default.
21012
21013 2006-10-12  Bruno Haible  <bruno@clisp.org>
21014
21015         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
21016         mingw.
21017         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
21018         MSVC and mingw explicitly.
21019
21020 2006-10-11  Simon Josefsson  <jas@extundo.com>
21021             Bruno Haible  <bruno@clisp.org>
21022
21023         Add support for multiple gnulib-tool invocations in the scope of a
21024         single configure.ac file.
21025         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
21026         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
21027         with the same contents as the _LIBADD variable.
21028         (func_emit_initmacro_start, func_emit_initmacro_end,
21029         func_emit_initmacro_done): New functions.
21030         (func_import, func_create_testdir): Invoke them. Allow the identifiers
21031         gl_LIBOBJS and gl_LTLIBOBJS.
21032
21033 2006-10-11  Bruno Haible  <bruno@clisp.org>
21034
21035         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
21036         (func_create_testdir): Don't create po/Makefile.am, don't invoke
21037         autoreconf. Instead, invoke autopoint explicitly but move back the
21038         *.m4 files from gnulib.
21039
21040 2006-10-11  Bruno Haible  <bruno@clisp.org>
21041
21042         * gnulib-tool (func_usage): Make module names after --create-testdir
21043         optional.
21044         (func_create_testdir): If no module was specified, use nearly all
21045         modules.
21046
21047 2006-10-12  Jim Meyering  <jim@meyering.net>
21048
21049         Big performance improvement for fts-based tools that use FTS_NOSTAT.
21050         Avoid spurious inode-mismatch problems on non-POSIX file systems.
21051         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
21052         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
21053         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
21054         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
21055         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
21056         (fts_set_stat_required): New function.
21057         (fts_open): Defer the calls to fts_stat, if possible or requested.
21058         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
21059         into fts_stat itself.
21060         (fts_read): Perform any required (deferred) fts_stat call.
21061         (fts_build): Likewise, for the directory we're about to open and read.
21062         In the readdir loop, carefully decide whether each entry will require
21063         an eventual call to fts_stat, using dirent.d_type info if available.
21064         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
21065         a command line argument into this function.  Update all callers.
21066         Map a return value of FTS_DOT to FTS_D for a command line argument.
21067         * modules/fts (Depends-on): Add d-type.  Alphabetize.
21068         Thanks to Miklos Szeredi for his tenacity and for the initial
21069         bug report about "find" failing on a FUSE-based file system.
21070
21071         * lib/fts.c (fts_open): Use consistent indentation.
21072
21073 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
21074
21075         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
21076         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
21077         reported by Jim Meyering.  All uses of cache variables renamed
21078         to match Autoconf's.
21079         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
21080         the other one.
21081
21082         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
21083         Fix misspelling in diagnostic.
21084
21085 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21086
21087         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
21088         defined.  Problem reported by Matthew Woehlke.
21089
21090         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
21091         Add support for Tandem NonStop R series.
21092         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
21093         Use new macro.
21094
21095         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
21096         (has_trailing_slash): Omit size arg; all callers changed.
21097         Omit 'inline', since it doesn't help performance and we'd
21098         need to configure it.
21099         Don't count //, ///, etc. as having a trailing slash.
21100         As a side effect, this removes a C99ism reported by Matthew Woehlke.
21101         (rpl_rename_dest_slash): On failure, use rename's errno rather
21102         than (in some cases) an incorrect or junk errno.
21103         Simplify code by removing need to compute length; this does
21104         cause it to make two passes instead of one over the file name,
21105         but it's worth it.
21106
21107         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
21108         change, since Autoconf's version may no longer be appropriate now
21109         that we are using CVS Autoconf's version.  Add support for Tandem.
21110
21111 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21112             Bruno Haible  <bruno@clisp.org>
21113
21114         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
21115         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
21116         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
21117         gl_AC_TYPE_LONG_LONG.
21118
21119         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
21120         instead of HAVE_LONG_LONG.
21121         * lib/printf-args.c (printf_fetchargs): Likewise.
21122         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
21123         * lib/vasnprintf.c (VASNPRINTF): Likewise.
21124         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
21125         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
21126         gl_AC_TYPE_LONG_LONG.
21127
21128 2006-10-11  Bruno Haible  <bruno@clisp.org>
21129
21130         * m4/longlong.m4: Add comments.
21131         * m4/ulonglong.m4: Likewise.
21132
21133 2006-10-10  Bruno Haible  <bruno@clisp.org>
21134
21135         Make it possible to #define stpcpy, strdup to aliases.
21136         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
21137         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
21138
21139 2006-10-10  Bruno Haible  <bruno@clisp.org>
21140
21141         Make it possible to #define gcd to an alias.
21142         * lib/gcd.c: Include config.h.
21143
21144 2006-10-10  Bruno Haible  <bruno@clisp.org>
21145
21146         Make it possible to #define c_isascii to an alias.
21147         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
21148         defined. Undefine the macros before defining them, to avoid gcc
21149         warnings.
21150         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
21151         define NO_C_CTYPE_MACROS early.
21152
21153 2006-10-10  Bruno Haible  <bruno@clisp.org>
21154
21155         Make it possible to #define set_program_name to an alias.
21156         * lib/progname.c: Don't undefine set_program_name; instead, undefine
21157         ENABLE_RELOCATABLE early.
21158
21159 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21160
21161         Port to Tandem NSK OSS, which has 64-bit signed int but at most
21162         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
21163         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
21164         More generally, don't assume that 64-bit signed int is available
21165         if unsigned int is, and vice versa.
21166         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
21167         unsigned symbols, not on their signed counterparts.
21168         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
21169         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
21170         (UINT64_C, UINTMAX_C):
21171         Likewise.
21172         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
21173         unsigned counterparts.
21174         (Have_long_long, Unsigned): New macros.
21175         (Int): Renamed from INT.
21176         (strtoimax): Use the new macros.
21177         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
21178         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
21179         * modules/inttypes (inttypes.h): Substitute
21180         HAVE_UNSIGNED_LONG_LONG_INT.
21181         * modules/stdint (stdint.h): Likewise.
21182         (Files): Add m4/ulonglong.m4.
21183
21184 2006-10-10  Bruno Haible  <bruno@clisp.org>
21185
21186         Fix a gcc -Wshadow warning.
21187         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
21188         to 'bucket'.
21189         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
21190         gl_linked_indexof_from_to): Likewise.
21191         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
21192         Likewise.
21193         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
21194         Likewise.
21195         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
21196         Reported by Eric Blake.
21197
21198 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
21199
21200         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
21201         for NetBSD.  Problem reported by Bruno Haible.
21202
21203 2006-10-09  Jim Meyering  <jim@meyering.net>
21204
21205         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
21206         Patch from Bruno Haible.
21207
21208 2006-10-09  Jim Meyering  <jim@meyering.net>
21209
21210         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
21211         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
21212         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
21213
21214 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
21215
21216         Don't include <config.h> twice; this doesn't work in some cases,
21217         e.g., when config.h has "#define intmax_t long long int" and
21218         we include <config.h>, <inttypes.h>, <config.h> in that order.
21219         Problem reported by Matthew Woehlke in:
21220         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
21221         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
21222         * lib/fts-cycle.c: Don't include config.h.
21223         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
21224         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
21225         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
21226         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
21227         inttypes.h.
21228         * lib/xstrtoumax.c: Likewise.
21229         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
21230         __strtol and the like, so that this module is more like its siblings.
21231         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
21232         Remove; no longer needed now that we assume gnulib inttypes.h.
21233
21234 2006-10-08  Bruno Haible  <bruno@clisp.org>
21235
21236         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
21237         option.
21238
21239 2006-10-07  Jim Meyering  <jim@meyering.net>
21240
21241         * modules/inttypes (inttypes.h): Revert what seems to have been
21242         an inadvertent part of today's change: use "|", not "/" in the
21243         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
21244
21245 2006-10-07  Bruno Haible  <bruno@clisp.org>
21246
21247         * modules/sublist: New file.
21248
21249 2006-10-07  Bruno Haible  <bruno@clisp.org>
21250
21251         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
21252         * modules/argz (argz.h): Likewise.
21253         * modules/arpa_inet (arpa/inet.h): Likewise.
21254         * modules/byteswap (byteswap.h): Likewise.
21255         * modules/configmake (configmake.h): Likewise.
21256         * modules/fcntl (fcntl.h): Likewise.
21257         * modules/fnmatch (fnmatch.h): Likewise.
21258         * modules/getopt (getopt.h): Likewise.
21259         * modules/glob (glob.h): Likewise.
21260         * modules/inttypes (inttypes.h): Likewise.
21261         * modules/netinet_in (netinet/in.h): Likewise.
21262         * modules/poll (poll.h): Likewise.
21263         * modules/stdbool (stdbool.h): Likewise.
21264         * modules/stdint (stdint.h): Likewise.
21265         * modules/sys_select (sys/select.h): Likewise.
21266         * modules/sys_socket (sys/socket.h): Likewise.
21267         * modules/sys_stat (sys/stat.h): Likewise.
21268         * modules/sysexits (sysexits.h): Likewise.
21269         * modules/unistd (unistd.h): Likewise.
21270         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21271         Add a "DO NOT EDIT" comment to the generated file.
21272         (func_import): Likewise for gnulib-comp.m4.
21273
21274 2006-10-07  Bruno Haible  <bruno@clisp.org>
21275
21276         * lib/gl_sublist.h: New file.
21277         * lib/gl_sublist.c: New file.
21278
21279 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21280
21281         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
21282         name (relative to the original working directory) and the file
21283         name component (relative to the temporary working directory).  All
21284         callers changed.
21285         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
21286         * lib/mkdir-p.c (make_dir_parents): Likewise.
21287         * lib/mkdir-p.h (make_dir_parents): Likewise.
21288
21289 2006-10-06  Eric Blake  <ebb9@byu.net>
21290
21291         Define several macros for use by the clean-temp module.
21292         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
21293         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
21294         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
21295
21296         * lib/clean-temp.h (close_stream_temp): New declaration.
21297         * lib/clean-temp.c (includes): Pull in headers according to what
21298         other modules are in use.
21299         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
21300
21301 2006-10-06  Bruno Haible  <bruno@clisp.org>
21302
21303         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
21304         instead of fopen, fwriteerror.
21305
21306 2006-10-06  Bruno Haible  <bruno@clisp.org>
21307
21308         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
21309         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
21310         int.
21311         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
21312         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
21313         Return an error indicator.
21314         Suggested by Eric Blake.
21315
21316 2006-10-06  Bruno Haible  <bruno@clisp.org>
21317
21318         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
21319         Reported by Eric Blake.
21320
21321 2006-10-06  Bruno Haible  <bruno@clisp.org>
21322
21323         * modules/closeout (Description): Mention stderr too.
21324
21325 2006-10-06  Bruno Haible  <bruno@clisp.org>
21326         and Paul Eggert  <eggert@cs.ucla.edu>
21327
21328         * lib/closeout.c (close_stdout): Also close stderr.
21329         * lib/closeout.h: Update comment.
21330
21331 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
21332
21333         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
21334         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
21335         * lib/dirchownmod.c: Include lchown.h.
21336         * lib/lchown.c: Don't include files that lchown.h now includes.
21337         Don't declare chown, since lchown.h now does that.
21338         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
21339         (lchown): Define to rpl_chown if lchown is declared but
21340         does not exist.  Declare using a prototype if lchown is not
21341         declared.  Add a copyright notice.
21342         * lib/mkstemp.h: Include <unistd.h>.
21343         * lib/openat.c: Include lchown.h.
21344
21345         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
21346         we now test for that separately.
21347         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
21348         rather than O_NOFOLLOW, when testing whether it's possible to
21349         avoid a race condition reliably.
21350         * lib/savewd.c (savewd_chdir): Likewise.
21351
21352         Remove macros that are no longer needed now that stdint.h is
21353         reliable.
21354         * lib/fsusage.c (UINTMAX_MAX): Remove.
21355         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
21356         * lib/utimecmp.c (SIZE_MAX): Remove.
21357
21358         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
21359
21360         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
21361         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
21362         O_NOATIME works.
21363
21364 2006-10-05  Bruno Haible  <bruno@clisp.org>
21365
21366         * lib/gl_list.h (gl_sortedlist_search_from_to,
21367         gl_sortedlist_indexof_from_to): New declarations.
21368         (gl_list_implementation): New fields sortedlist_search_from_to,
21369         sortedlist_indexof_from_to.
21370         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
21371         inline functions.
21372         * lib/gl_list.c (gl_sortedlist_search_from_to,
21373         gl_sortedlist_indexof_from_to): New functions.
21374         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
21375         function.
21376         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
21377         (gl_array_sortedlist_search_from_to): New function.
21378         (gl_array_list_implementation): Update.
21379         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
21380         function.
21381         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
21382         (gl_carray_sortedlist_search_from_to): New function.
21383         (gl_carray_list_implementation): Update.
21384         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
21385         gl_linked_sortedlist_indexof_from_to): New functions.
21386         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21387         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21388         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
21389         gl_tree_sortedlist_indexof_from_to): New functions.
21390         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21391         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21392         Update.
21393         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21394         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
21395         Update.
21396
21397 2006-10-05  Bruno Haible  <bruno@clisp.org>
21398
21399         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
21400         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
21401         (struct gl_list_implementation): Add fields search_from_to,
21402         indexof_from_to. Remove fields search, indexof.
21403         (gl_list_search): Use the search_from_to method.
21404         (gl_list_search_from, gl_list_search_from_to): New functions.
21405         (gl_list_indexof): Use the indexof_from_to method.
21406         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21407         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
21408         (gl_list_search_from, gl_list_search_from_to): New functions.
21409         (gl_list_indexof): Use the indexof_from_to method.
21410         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21411         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
21412         gl_array_indexof. Add start_index, end_index arguments.
21413         (gl_array_search_from_to): Renamed from gl_array_search. Add
21414         start_index, end_index arguments.
21415         (gl_array_remove, gl_array_list_implementation): Update.
21416         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
21417         gl_carray_indexof. Add start_index, end_index arguments.
21418         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
21419         start_index, end_index arguments.
21420         (gl_carray_remove, gl_carray_list_implementation): Update.
21421         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
21422         gl_linked_search. Add start_index, end_index arguments.
21423         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
21424         start_index, end_index arguments.
21425         (gl_linked_remove): Update.
21426         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21427         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21428         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
21429         field to 'size_t'.
21430         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
21431         gl_tree_search. Add start_index, end_index arguments.
21432         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21433         start_index, end_index arguments.
21434         (gl_tree_remove): Update.
21435         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21436         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21437         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
21438         function.
21439         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
21440         gl_tree_search. Add start_index, end_index arguments.
21441         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21442         start_index, end_index arguments.
21443         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21444         Update.
21445         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
21446
21447 2006-10-05  Bruno Haible  <bruno@clisp.org>
21448
21449         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
21450
21451         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
21452         fwriteerror_temp): New declarations.
21453         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
21454         (descriptors): New variable.
21455         (cleanup): First, close the descriptors.
21456         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
21457         fclose_temp, fwriteerror_temp): New functions.
21458
21459 2006-10-04  Jim Meyering  <jim@meyering.net>
21460
21461         * lib/fts.c (fts_open): Tiny comment change.
21462
21463 2006-10-04  Bruno Haible  <bruno@clisp.org>
21464
21465         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
21466         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
21467         gl_LOCK_BODY.
21468         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
21469         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
21470         gl_LOCK_EARLY_BODY.
21471         (gl_LOCK): Require gl_LOCK_BODY.
21472
21473 2006-10-04  Bruno Haible  <bruno@clisp.org>
21474
21475         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
21476         (gl_oset_search_atleast): New declaration.
21477         (struct gl_oset_implementation): Add field 'search_atleast'.
21478         (gl_oset_search_atleast): New inline function.
21479         * lib/gl_oset.c (gl_oset_search_atleast): New function.
21480         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
21481         (gl_array_oset_implementation): Update.
21482         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
21483         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
21484         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
21485
21486 2006-10-04  Bruno Haible  <bruno@clisp.org>
21487
21488         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
21489
21490 2006-10-03  Bruno Haible  <bruno@clisp.org>
21491
21492         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
21493         from gl_avltreehash_list_implementation.
21494
21495 2006-10-03  Bruno Haible  <bruno@clisp.org>
21496
21497         * lib/gl_oset.c (gl_oset_add): Fix return type.
21498
21499 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
21500
21501         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
21502
21503 2006-10-02  Eric Blake  <ebb9@byu.net>
21504
21505         * modules/strnlen (Depends-on): Add extensions.
21506
21507 2006-10-02  Eric Blake  <ebb9@byu.net>
21508
21509         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
21510         definition in 2.60+.
21511
21512 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
21513
21514         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
21515         checks.
21516
21517 2006-10-02  Bruno Haible  <bruno@clisp.org>
21518
21519         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
21520         to the AUTOMAKE_OPTIONS.
21521         Reported by Jim Meyering.
21522
21523 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
21524
21525         Work around bug in Solaris 10 /proc file system:
21526         /proc/self/fd/NNN/.. isn't the parent directory of
21527         the directory whose file descriptor is NNN.  This needs to
21528         be worked around at run time, not compile time, since a
21529         program might be built on Solaris 8, where things work, and
21530         run on Solaris 10.
21531         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
21532         to use the following interface instead:
21533         (OPENAT_BUFFER_SIZE): New macro.
21534         (openat_proc_name): New function.
21535         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
21536         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
21537         Likewise.
21538         * lib/openat-proc.c: New file.
21539         * modules/openat (Files): Add lib/openat-proc.c.
21540         (Depends-on): Add same-inode, stdbool.
21541         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
21542
21543 2006-09-29  Bruno Haible  <bruno@clisp.org>
21544
21545         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
21546         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
21547         argument. Set stdout_closed before testing for ferror, not after.
21548         (fwriteerror, fwriteerror_no_ebadf): New functions.
21549
21550 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21551
21552         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
21553
21554 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
21555
21556         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
21557         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
21558
21559 2006-09-28  Jim Meyering  <jim@meyering.net>
21560
21561         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
21562         Include <unistd.h>.
21563
21564 2006-09-28  Bruno Haible  <bruno@clisp.org>
21565
21566         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
21567         * modules/linkedhash-list (Depends-on): Likewise.
21568         * modules/rbtreehash-list (Depends-on): Likewise.
21569
21570 2006-09-28  Bruno Haible  <bruno@clisp.org>
21571
21572         * lib/strndup.h: Simplify the redefinition of strndup.
21573         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
21574         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
21575
21576 2006-09-28  Bruno Haible  <bruno@clisp.org>
21577
21578         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
21579         * lib/gl_linkedhash_list.c: Likewise.
21580         * lib/gl_rbtreehash_list.c: Likewise.
21581
21582 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
21583
21584         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
21585         getaddrinfo.
21586
21587         * lib/__fpending.h: Don't include <stdio_ext.h> unless
21588         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
21589         it causes <stdio_ext.h> to cause a compile-time error.
21590         Problem reported by Nelson H. F. Beebe.
21591         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
21592         of HAVE_DECL___PENDING.
21593
21594         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
21595         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
21596         declaration.
21597
21598 2006-09-27  Jim Meyering  <jim@meyering.net>
21599
21600         This file could end up with a definition for a function
21601         named __strndup, rather than rpl_strndup on a system with
21602         incomplete weak_alias support.
21603         * lib/strndup.c (strndup): Rename from __strndup.
21604         Remove #defines that used to map __strndup to strndup.
21605         Don't use K&R prototypes.
21606         Remove LIBC-related code, since this file is not sync'd with glibc.
21607         * lib/strndup.h: Revamp, accordingly.
21608         * m4/strndup.m4: Modernize.
21609
21610 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
21611
21612         * modules/savewd (Depends-on): Add 'raise'.
21613         * lib/savewd.c: Include <signal.h>, for 'raise'.
21614
21615 2006-09-26  Jim Meyering  <jim@meyering.net>
21616
21617         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
21618         when we detect Darwin 8.7.0's acl_get_file bug.
21619         Rearrange to perform the new (below) run-test while $LIBS
21620         contains any acl-related library.  Set USE_ACL at the end.
21621         (gl_ACL_GET_FILE): New function.
21622
21623 2006-09-26  Eric Blake  <ebb9@byu.net>
21624
21625         * lib/verror.c: Include <config.h> unconditionally.
21626
21627 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
21628
21629         * modules/clock-time (Maintainer): Add self.
21630         * modules/getlogin_r (Depends-on): Add extensions.
21631
21632 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21633
21634         * modules/clock-time: New module.
21635         * modules/nanosleep (Depends-on): Add clock-time.
21636         * modules/gethrxtime (Depends-on): Likewise.
21637         * modules/gettime (Depends-on): Likewise.
21638         * modules/settime (Depends-on): Likewise.
21639
21640         * modules/fts-lgpl: Depend on openat.
21641         * modules/mkancesdirs: Depend on savewd.
21642         * modules/mkdir-p: Likewise.
21643
21644 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21645
21646         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
21647
21648         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
21649         `gl_have_arbitrary_file_name_length_limit' to
21650         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
21651         actually works between configure runs.
21652
21653 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21654             Bruno Haible  <bruno@clisp.org>
21655
21656         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
21657
21658 2006-09-25  Jim Meyering  <jim@meyering.net>
21659
21660         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
21661         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
21662
21663 2006-09-25  Eric Blake  <ebb9@byu.net>
21664
21665         * gnulib-tool (func_import, func_create_testdir): Fix typos in
21666         exec's in 2006-09-18 patch when shuffling fds.
21667
21668 2006-09-25  Bruno Haible  <bruno@clisp.org>
21669
21670         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
21671         Reported by Jim Meyering.
21672
21673 2006-09-24  Jim Meyering  <jim@meyering.net>
21674
21675         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
21676         compare a pointer against a literal "0".  That caused failures with
21677         at least HP-UX's hpcc.
21678
21679 2006-09-22  Simon Josefsson  <jas@extundo.com>
21680
21681         * modules/gc-sha1:
21682         * modules/gc-md4:
21683         * modules/gc-hmac-sha1:
21684         * modules/gc-hmac-md5:
21685         * modules/gc-des:
21686         * modules/gc-arcfour: Distribute more files.
21687
21688 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21689
21690         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
21691         (gl_linked_iterator_from_to): Initialize struct completely.
21692         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
21693         (gl_tree_iterator_from_to): Likewise
21694         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
21695         * lib/gl_array_list.c [lint] (gl_array_iterator)
21696         (gl_array_iterator_from_to): Likewise.
21697         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
21698         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
21699         (gl_carray_iterator_from_to): Likewise.
21700
21701         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
21702         * lib/md4.c (md4_process_block): Remove unused variable.
21703         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
21704         parentheses for clarity.
21705
21706 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21707
21708         * modules/bison-i18n (Depends-on): Add gettext.
21709
21710 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21711
21712         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
21713         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
21714         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
21715         also add missing comma that caused broken test.
21716         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
21717         stdlib.h, for `abort'.
21718         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
21719         variables.
21720         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
21721         include unistd.h if present, for `rmdir'.
21722         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
21723         variables.
21724         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
21725         in the process include standard headers for prototypes.
21726         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
21727         gets declared on GNU/Linux.
21728         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
21729         unistd.h, for `rmdir'.
21730         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
21731
21732         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
21733         always true.
21734         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
21735
21736         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
21737
21738 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21739
21740         * gnulib-tool (func_version): Create output all at once.  This
21741         may help avoid triggering unnecessary SIGPIPEs, and at any
21742         rate it doesn't hurt.
21743
21744 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21745             Bruno Haible  <bruno@clisp.org>
21746
21747         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
21748         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
21749         * m4/signed.m4 (bh_C_SIGNED): Likewise.
21750
21751         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
21752         (gl_FUNC_VASPRINTF): Invoke it.
21753
21754 2006-09-22  Bruno Haible  <bruno@clisp.org>
21755
21756         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
21757         getloadavg.c as first argument.
21758
21759 2006-09-22  Bruno Haible  <bruno@clisp.org>
21760
21761         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
21762         at the beginning of the gl_INIT macro.
21763         * modules/getloadavg (configure.ac): Pass $gl_source_base to
21764         gl_GETLOADAVG.
21765
21766 2006-09-22  Bruno Haible  <bruno@clisp.org>
21767
21768         * gnulib-tool (func_create_megatestdir): Don't include the config-h
21769         module.
21770         Suggested by Ralf Wildenhues.
21771
21772 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
21773
21774         Import this patch from libc:
21775
21776         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
21777
21778         * lib/regex_internal.c (re_string_reconstruct): Handle
21779         offset < pstr->valid_raw_len && pstr->offsets_needed case.
21780         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
21781         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
21782         re_string_context_at.
21783
21784         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
21785         now requires it.
21786         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
21787         gl_REGEX now does it for us.
21788         (gl_REGEX): Add test taken from
21789         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
21790
21791         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
21792         Check that large offsets work.  Modernize Autoconf usages.
21793         Prefer "yes" to mean a good thing rather than a bad.
21794         Don't put "#define mkstemp" in config.h, as this might interfere
21795         with standard system headers that "#define mkstemp mkstemp64".
21796
21797         * modules/mkstemp (Depends-on): Add extensions, so that
21798         mkstemp is visible on some platforms.
21799         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
21800         (Include): Change to "mkstemp.h" from <stdlib.h>.
21801         (Files): Add mkstemp.h.
21802
21803         * lib/mkstemp.h: New file, since some standard headers
21804         #define mkstemp.
21805         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
21806         Include "mkstemp.h".
21807         Make the _LIBC code resemble glibc original more,
21808         e.g., use K&R style.
21809         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
21810         (mkstemp): Remove, since mkstemp.h does this for us.
21811         * lib/stdlib--.h: Include mkstemp.h.
21812
21813         Import this patch from libc:
21814
21815         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21816
21817         * lib/tempname.c (__gen_tempname): Change attempts_min
21818         into a macro.  Use preprocessor to decide how to initialize
21819         attempts [Coverity CID 67].
21820
21821 2006-09-20  Bruno Haible  <bruno@clisp.org>
21822
21823         * lib/mkdtemp.c: Import from libc.
21824         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21825                 * sysdeps/posix/tempname.c (__gen_tempname): Change
21826                 attempts_min into a macro.  Use preprocessor to decide how to
21827                 initialize attempts [Coverity CID 67].
21828         2001-11-27  Paul Eggert  <eggert@twinsun.com>
21829                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
21830                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
21831
21832 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21833
21834         * gnulib-tool (func_exit): New function, to allow to pass the
21835         exit status portably through the trap.  Use everywhere.
21836         (--help, --version): Signal a write error.
21837         (trap): catch SIGPIPE, for write errors.
21838         Exit at the end of the trap, with the correct exit status.
21839
21840 2006-09-19  Karl Berry  <karl@gnu.org>
21841
21842         * doc/gnulib.texi: note about the license texinfo files.
21843
21844 2006-09-19  Eric Blake  <ebb9@byu.net>
21845
21846         * gnulib-tool: Avoid space-tab.
21847
21848 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21849
21850         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
21851         that prevented coreutils 6.1 from building.  Problem reported
21852         by Petter Reinholdtsen.
21853
21854 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21855
21856         * gnulib-tool (avoidlist): Fix typo that broke options like
21857         --avoid=lock that are used by coreutils bootstrap.
21858
21859 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
21860
21861         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
21862         more systematically.
21863
21864 2006-09-18  Jim Meyering  <jim@meyering.net>
21865
21866         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
21867
21868 2006-09-18  Bruno Haible  <bruno@clisp.org>
21869
21870         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
21871
21872 2006-09-18  Bruno Haible  <bruno@clisp.org>
21873
21874         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
21875         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
21876         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
21877         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
21878         * m4/gettext.m4: Require autoconf >= 2.52.
21879         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
21880         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
21881         of gl_cv_header_inttypes_h.
21882
21883 2006-09-18  Bruno Haible  <bruno@clisp.org>
21884
21885         * lib/javaversion.c: Include configmake.h.
21886
21887 2006-09-18  Bruno Haible  <bruno@clisp.org>
21888
21889         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
21890         avoid that the while loops be executed in a subshell.
21891
21892 2006-09-18  Bruno Haible  <bruno@clisp.org>
21893
21894         * MODULES.html.sh (func_module): Break long lines.
21895         Suggested by Bruce Korb <bkorb@gnu.org>.
21896
21897 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21898
21899         Speed up by a factor of 1.12.
21900         * gnulib-tool (nl): New variable.
21901         (func_import): Rewrite include directive extraction to only read each
21902         directive once.
21903
21904 2006-09-17  Bruno Haible  <bruno@clisp.org>
21905
21906         * modules/javaversion (Makefile.am): Remove DEFS setting.
21907         (Depends-on): Add configmake, for PKGDATADIR definition.
21908
21909 2006-09-17  Bruno Haible  <bruno@clisp.org>
21910
21911         * gnulib-tool (func_create_testdir): Rewrite all files at once.
21912
21913 2006-09-17  Bruno Haible  <bruno@clisp.org>
21914
21915         * gnulib-tool (func_append): New function, stolen from libtool.m4.
21916         (func_modules_transitive_closure, func_modules_add_dummy,
21917         func_modules_to_filelist, func_import, func_create_testdir,
21918         func_create_megatestdir, ...): Use it wherever possible.
21919         Suggested by Ralf Wildenhues.
21920
21921 2006-09-16  Karl Berry  <karl@gnu.org>
21922
21923         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
21924         to avoid sectioning errors.
21925         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
21926         [ifinfo]: blank line after @center-ed titles.
21927         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
21928         Spell FSF address consistently with others.
21929         (These changes approved by rms.)
21930
21931 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21932
21933         Speed up by a factor of 1.61.
21934         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
21935         already checked module names again.
21936
21937 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21938
21939         Speed up by a factor of 1.13.
21940         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
21941         for new_files, and the input to func_add_or_update.
21942
21943 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21944
21945         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
21946         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
21947
21948 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21949
21950         * modules/mkancesdirs (Depends-on): Add fcntl.
21951         * modules/savewd: New file.
21952         * MODULES.html.sh (File system functions): Add savewd.
21953
21954         * modules/configmake (Makefile.am): Add support for the
21955         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
21956
21957 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21958
21959         * m4/savewd.m4: New file.
21960
21961 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
21962
21963         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
21964         (dirchownmod): New arg FD.  All callers changed.
21965         Use FD rather than opening the directory ourself, as opening is
21966         now the caller's responsibility.
21967         * lib/dirchownmod.h: Likewise.
21968         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
21969         hosts that require <sys/types.h> before <sys/stat.h>.  Include
21970         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
21971         (test_dir): Remove.
21972         (mkancesdirs): Return length of prefix of FILE that has already
21973         been made, or -2 if there is a child doing the work.  Redo
21974         algorithm so that it is O(N) rather than O(N**2).  Optimize away
21975         ".", and treat ".." specially since it might stray back into
21976         already-created areas.  Use a subprocess if necessary.  New arg
21977         WD; all users changed.  MAKE_DIR function should now return 1
21978         if it creates a directory that is not readable.  Return -2 if
21979         a child process is spun off.
21980         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
21981         Adjust signature to match code.
21982         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
21983         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
21984         all users changed.
21985         * lib/savewd.c, lib/savewd.h: New files.
21986
21987 2006-09-15  Jim Meyering  <jim@meyering.net>
21988
21989         * modules/rename-dest-slash: New module.
21990         * MODULES.html.sh (posix_compat): Add it here.
21991
21992         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
21993
21994 2006-09-15  Jim Meyering  <jim@meyering.net>
21995
21996         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
21997         file.
21998
21999         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
22000
22001 2006-09-15  Jim Meyering  <jim@meyering.net>
22002
22003         * lib/rename-dest-slash.c (has_trailing_slash): Use
22004         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
22005         (rpl_rename_dest_slash): Perform the cheaper trailing slash
22006         test before testing whether SRC is a directory.
22007         Suggestions from Bruno Haible.
22008
22009         Avoid a warning about an unused variable.
22010         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
22011         into the #ifdef block where it's used.
22012
22013         * lib/rename-dest-slash.c: New file.
22014
22015 2006-09-14  Bruno Haible  <bruno@clisp.org>
22016
22017         * lib/allocsa.c: Include <config.h> unconditionally.
22018         * lib/asnprintf.c: Likewise.
22019         * lib/asprintf.c: Likewise.
22020         * lib/c-strcasecmp.c: Likewise.
22021         * lib/c-strcasestr.c: Likewise.
22022         * lib/c-strncasecmp.c: Likewise.
22023         * lib/c-strstr.c: Likewise.
22024         * lib/classpath.c: Likewise.
22025         * lib/clean-temp.c: Likewise.
22026         * lib/concatpath.c: Likewise.
22027         * lib/copy-file.c: Likewise.
22028         * lib/csharpcomp.c: Likewise.
22029         * lib/csharpexec.c: Likewise.
22030         * lib/execute.c: Likewise.
22031         * lib/fatal-signal.c: Likewise.
22032         * lib/findprog.c: Likewise.
22033         * lib/fwriteerror.c: Likewise.
22034         * lib/gl_array_list.c: Likewise.
22035         * lib/gl_array_oset.c: Likewise.
22036         * lib/gl_avltree_list.c: Likewise.
22037         * lib/gl_avltree_oset.c: Likewise.
22038         * lib/gl_avltreehash_list.c: Likewise.
22039         * lib/gl_carray_list.c: Likewise.
22040         * lib/gl_linked_list.c: Likewise.
22041         * lib/gl_linkedhash_list.c: Likewise.
22042         * lib/gl_list.c: Likewise.
22043         * lib/gl_oset.c: Likewise.
22044         * lib/gl_rbtree_list.c: Likewise.
22045         * lib/gl_rbtree_oset.c: Likewise.
22046         * lib/gl_rbtreehash_list.c: Likewise.
22047         * lib/imaxabs.c: Likewise.
22048         * lib/imaxdiv.c: Likewise.
22049         * lib/javacomp.c: Likewise.
22050         * lib/javaexec.c: Likewise.
22051         * lib/javaversion.c: Likewise.
22052         * lib/linebreak.c: Likewise.
22053         * lib/localcharset.c: Likewise.
22054         * lib/lock.c: Likewise.
22055         * lib/mbchar.c: Likewise.
22056         * lib/mbswidth.c: Likewise.
22057         * lib/mkdtemp.c: Likewise.
22058         * lib/pipe.c: Likewise.
22059         * lib/printf-args.c: Likewise.
22060         * lib/printf-parse.c: Likewise.
22061         * lib/progname.c: Likewise.
22062         * lib/progreloc.c: Likewise.
22063         * lib/readlink.c: Likewise.
22064         * lib/sh-quote.c: Likewise.
22065         * lib/stpcpy.c: Likewise.
22066         * lib/stpncpy.c: Likewise.
22067         * lib/strcasecmp.c: Likewise.
22068         * lib/strcasestr.c: Likewise.
22069         * lib/strcspn.c: Likewise.
22070         * lib/striconv.c: Likewise.
22071         * lib/strncasecmp.c: Likewise.
22072         * lib/strnlen1.c: Likewise.
22073         * lib/strstr.c: Likewise.
22074         * lib/strtok_r.c: Likewise.
22075         * lib/tls.c: Likewise.
22076         * lib/tmpdir.c: Likewise.
22077         * lib/unicodeio.c: Likewise.
22078         * lib/unsetenv.c: Likewise.
22079         * lib/vasnprintf.c: Likewise.
22080         * lib/vasprintf.c: Likewise.
22081         * lib/wait-process.c: Likewise.
22082         * lib/xallocsa.c: Likewise.
22083         * lib/xsetenv.c: Likewise.
22084         * lib/xstriconv.c: Likewise.
22085
22086 2006-09-13  Simon Josefsson  <jas@extundo.com>
22087
22088         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
22089         that internally, suggested by Ralf Wildenhues
22090         <Ralf.Wildenhues@gmx.de>.
22091
22092 2006-09-13  Simon Josefsson  <jas@extundo.com>
22093
22094         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
22095         @LIBOBJS@.
22096         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22097
22098 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
22099
22100         * lib/_fpending.c: Include <config.h> unconditionally, since we no
22101         longer worry about uses that don't define HAVE_CONFIG_H.
22102         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
22103         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
22104         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
22105         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
22106         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
22107         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
22108         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
22109         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
22110         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
22111         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
22112         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
22113         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
22114         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
22115         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
22116         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
22117         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
22118         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
22119         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
22120         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
22121         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
22122         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
22123         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
22124         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
22125         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
22126         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
22127         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
22128         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
22129         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
22130         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
22131         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
22132         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
22133         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
22134         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
22135         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
22136         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
22137         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
22138         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
22139         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
22140         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
22141         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
22142         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
22143         Likewise.
22144
22145 2006-09-13  Eric Blake  <ebb9@byu.net>
22146
22147         * lib/getopt.c: Fix typo in last commit.
22148
22149 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
22150
22151         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
22152         dgettext.
22153
22154 2006-09-12  Jim Meyering  <jim@meyering.net>
22155
22156         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
22157         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
22158         Reported by Nelson H. F. Beebe.
22159
22160 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
22161
22162         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
22163         program_invocation_name and program_invocation_short_name are
22164         initialized.
22165         * lib/argp-namefrob.h: Move declarations of program_invocation_name
22166         and program_invocation_short_name to argp.h, so they are visible
22167         to user programs.
22168         * lib/argp.h: Likewise
22169
22170 2006-09-10  Bruno Haible  <bruno@clisp.org>
22171
22172         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
22173         m4/inttypes_h.m4, m4/uintmax_t.m4.
22174
22175 2006-09-10  Bruno Haible  <bruno@clisp.org>
22176
22177         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
22178         gl_AC_TYPE_UINTMAX_T.
22179
22180 2006-09-10  Bruno Haible  <bruno@clisp.org>
22181
22182         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
22183
22184 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
22185
22186         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
22187         convention.  Text proposed by Bruno Haible.
22188         (struct argp_option): Document the use of N_() wrappers.
22189
22190         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
22191         '\v', and translate the two parts separately, instead of feeding
22192         the whole string to gettext.  This allows to exclude
22193         '\v' from the strings visible to the translator by writing doc
22194         strings as N_("..") "\v" N_("..").
22195
22196 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
22197
22198         * config/srclist.txt: Undo latest change; the bug was fixed.
22199
22200 2006-09-09  Bruno Haible  <bruno@clisp.org>
22201
22202         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
22203         assignments if building a library without libtool.
22204         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
22205         in func_emit_lib_Makefile_am.
22206         (func_import): When building a static library libfoo.a, arrange to
22207         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
22208         (func_create_testdir): Likewise.
22209         * modules/gc (configure.ac, Makefile.am): If building statically,
22210         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
22211         * modules/iconvme (configure.ac, Makefile.am): Likewise.
22212         * modules/striconv (configure.ac, Makefile.am): Likewise.
22213         Based on a suggestion by Ralf Wildenhues.
22214
22215 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22216
22217         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
22218         Check for unistd.h too, since Autoconf doesn't assume POSIX.
22219         Also:
22220
22221         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22222         Add year_2050_test to catch glibc bug 2821
22223         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22224
22225         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
22226         Prefer #ifdef to #if.
22227
22228         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
22229         Return from 'main' instead of calling 'exit'.
22230
22231 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22232
22233         * lib/mktime.c (guess_time_tm): Fix bug where mktime
22234         returned the maximum time_t value rather than (time_t) -1.
22235         Problem originally reported by William Bardwell
22236         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22237
22238         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22239         Moved to here ...
22240         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22241         ... from here.
22242
22243 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22244
22245         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
22246         2821 is fixed.
22247
22248 2006-09-08  Jim Meyering  <jim@meyering.net>
22249
22250         Don't make generated files read-only.  That would bother too many
22251         people.  However, do retain the ability to work when targets are
22252         read-only: remove the destination and temporary files before writing
22253         them (when generated via sed or echo), or by using the -f option for
22254         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
22255         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22256         * modules/byteswap, modules/configmake, modules/fcntl:
22257         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22258         * modules/localcharset, modules/netinet_in, modules/poll:
22259         * modules/stdbool, modules/stdint, modules/sys_select:
22260         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22261
22262 2006-09-08  Jim Meyering  <jim@meyering.net>
22263
22264         Avoid new build failure on FreeBSD 6.0.
22265         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
22266         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
22267         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
22268
22269 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22270
22271         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
22272
22273 2006-09-07  Jim Meyering  <jim@meyering.net>
22274
22275         Fix global typo in last change: use chmod u-w, not chmod u-x.
22276         Spotted by Paul Eggert and Bruce Korb.
22277         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22278         * modules/byteswap, modules/configmake, modules/fcntl:
22279         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22280         * modules/localcharset, modules/netinet_in, modules/poll:
22281         * modules/stdbool, modules/stdint, modules/sys_select:
22282         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22283
22284 2006-09-06  Jim Meyering  <jim@meyering.net>
22285
22286         Make generated files be read-only.
22287         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
22288         Ensure that each generated file is now read-only.
22289         * modules/argz: Likewise.
22290         * modules/arpa_inet: Likewise.
22291         * modules/byteswap: Likewise.
22292         * modules/configmake: Likewise.
22293         * modules/fcntl: Likewise.
22294         * modules/fnmatch: Likewise.
22295         * modules/getopt: Likewise.
22296         * modules/glob: Likewise.
22297         * modules/inttypes: Likewise.
22298         * modules/netinet_in: Likewise.
22299         * modules/poll: Likewise.
22300         * modules/stdbool: Likewise.
22301         * modules/stdint: Likewise.
22302         * modules/sys_select: Likewise.
22303         * modules/sys_socket: Likewise.
22304         * modules/sys_stat: Likewise.
22305         * modules/sysexits: Likewise.
22306         * modules/localcharset: Same as above, but continue using temporary
22307         file named "t-$@" (why different?) rather than the "$@-t" used
22308         everywhere else.
22309
22310         * modules/sysexits (Makefile.am): Replace literal occurrences
22311         of "sysexit.h" more readable, and more consistent, "$@".
22312
22313 2006-09-06  Bruno Haible  <bruno@clisp.org>
22314
22315         * modules/striconv: New file.
22316         * modules/xstriconv: New file.
22317         * MODULES.html.sh (Internationalization functions): Add striconv,
22318         xstriconv.
22319
22320 2006-09-06  Bruno Haible  <bruno@clisp.org>
22321
22322         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
22323         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
22324         not using libtool correctly.
22325
22326 2006-09-06  Bruno Haible  <bruno@clisp.org>
22327
22328         * lib/striconv.h: New file.
22329         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
22330         iconvstring.c.
22331         * lib/xstriconv.h: New file.
22332         * lib/xstriconv.c: New file.
22333
22334 2006-09-06  Bruno Haible  <bruno@clisp.org>
22335
22336         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
22337         lib_..._LDFLAGS.
22338
22339 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22340
22341         * lib/argz_.h: Sync from Libtool.
22342
22343         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
22344                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
22345
22346         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
22347
22348 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22349
22350         * modules/trim: New file.
22351
22352 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22353
22354         * lib/trim.h: New file.
22355         * lib/trim.c: New file.
22356
22357 2006-09-05  Bruno Haible  <bruno@clisp.org>
22358
22359         * MODULES.html.sh (String handling): Add trim.
22360
22361 2006-09-04  Karl Berry  <karl@gnu.org>
22362
22363         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
22364         until next release.
22365
22366 2006-09-03  Bruno Haible  <bruno@clisp.org>
22367
22368         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
22369         correctly.
22370
22371 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22372
22373         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
22374         not gl_GETLOADAVG.  Omit unneeded semicolons.
22375         Problems reported by Ralf Wildenhues in
22376         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22377         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
22378         at the end, which is the usual gnulib style.
22379
22380         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
22381         of doing all the work ourselves.
22382         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
22383         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
22384
22385 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22386
22387         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
22388         Problem reported by Ralf Wildenhues in
22389         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22390
22391         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
22392         HAVE_STRUCT_STATFS_F_FSTYPENAME.
22393
22394 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22395
22396         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
22397         yesterday's patch by changing test -n to test -z.
22398
22399 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22400
22401         * modules/getloadavg (Files): Add m4/getloadavg.m4.
22402         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
22403         the former is now obsolescent.
22404
22405         * modules/chdir-long (Depends-on): Add fcntl.
22406
22407 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22408
22409         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
22410         obsolescent, and programs should use gnulib instead.
22411         * m4/getloadavg.m4: New file, with contents taken from Autoconf
22412         but with prefixes changed.
22413
22414 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22415
22416         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
22417         or stdbool.h, because they might not exist while configuring.
22418
22419         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
22420         Don't include unistd.h or limits.h; not needed, since chdir-long.h
22421         does that for us.
22422         (O_DIRECTORY): Remove.
22423
22424 2006-08-31  Eric Blake  <ebb9@byu.net>
22425
22426         * gnulib-tool: Don't let emacs change spaces to TAB.
22427
22428 2006-08-31  Bruno Haible  <bruno@clisp.org>
22429
22430         * gnulib-tool: When calling func_import more than once, do it in a
22431         subshell.
22432         Reported by Eric Blake <ebb9@byu.net>.
22433
22434 2006-08-31  Bruno Haible  <bruno@clisp.org>
22435
22436         * gnulib-tool (nl): Remove variable.
22437         (sed_transform_lib_file): Use more robust test for config-h module.
22438         (func_import): Fix typo in 2006-08-25 patch.
22439
22440 2006-08-31  Bruno Haible  <bruno@clisp.org>
22441
22442         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
22443         specified, augment Makefile.am variables instead of assigning them.
22444
22445 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22446
22447         Work around a bug in both the Linux and SunOS 64-bit kernels:
22448         nanosleep mishandles sleeps for longer than 2**31 seconds.
22449         Problem reported by Frank v Waveren in
22450         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22451         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
22452         Check for nanosleep bug.
22453         (LIB_NANOSLEEP): Append clock_gettime library if needed.
22454
22455 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22456
22457         Work around a bug in both the Linux and SunOS 64-bit kernels:
22458         nanosleep mishandles sleeps for longer than 2**31 seconds.
22459         Problem reported by Frank v Waveren in
22460         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22461         * lib/nanosleep.c (BILLION): New constant.
22462         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
22463         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
22464         implementation.
22465
22466 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22467
22468         * modules/nanosleep (Depends-on): Add gettime.
22469
22470 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22471         and Simon Josefsson  <jas@extundo.com>
22472         and Oskar Liljeblad  <oskar@osk.mine.nu>
22473
22474         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
22475         * gnulib-tool (func_import): New license type 'unmodifiable license
22476         text'.
22477         * modules/fdl: Use it.  Longer description.
22478         * module/gpl, module/lgpl: New files.
22479
22480 2006-08-30  Jim Meyering  <jim@meyering.net>
22481
22482         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
22483         shadowing the parameter.
22484
22485 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22486
22487         Sync from Libtool:
22488
22489         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22490
22491         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
22492         sharing with gnulib.  Report by Eric Blake.
22493
22494 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22495
22496         * modules/isapipe: New file.
22497         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
22498
22499 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22500
22501         * modules/configmake (Makefile.am): Add a comment, and omit
22502         the CONFIGMAKE_ prefix from generated macro names.  Suggested
22503         by Bruno Haible.
22504
22505 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22506
22507         * m4/isapipe.m4: New file.
22508
22509 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22510
22511         * lib/isapipe.c, lib/isapipe.h: New files.
22512
22513 2006-08-29  Jim Meyering  <jim@meyering.net>
22514
22515         * modules/configmake (Makefile.am): Make configmake.h depend on
22516         Makefile.  Otherwise, a stale configmake.h could hang around.
22517
22518 2006-08-29  Eric Blake  <ebb9@byu.net>
22519
22520         * lib/error.c (error_at_line, print_errno_message): Match libc, after
22521         resolution of upstream bug 3044.
22522
22523 2006-08-29  Bruno Haible  <bruno@clisp.org>
22524
22525         * modules/localcharset (Depends-on): Add configmake.
22526         (Makefile.am): Remove setting of LIBDIR through DEFS.
22527
22528 2006-08-29  Bruno Haible  <bruno@clisp.org>
22529
22530         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
22531         defined.
22532
22533 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22534
22535         * modules/fcntl: New file.
22536         * modules/chdir-safer (Depends-on): Add fcntl.
22537         * modules/fts: Likewise.
22538         * modules/mkdir-p: Likewise.
22539
22540         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
22541         This undoes the most recent change, since we're now addressing the
22542         problem in a different way.
22543
22544         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
22545         into output, since the output might be called Makefile.am even
22546         if $makefile_name is something different.
22547         (func_import): Use $makefile_am rather than
22548         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
22549         empty.
22550
22551         * modules/inttypes (Files): Add m4/inttypes-h.m4.
22552
22553 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22554
22555         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
22556         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
22557         recent change to stdint.m4, since we're now addressing the problem in a
22558         different way.
22559
22560 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22561
22562         * m4/fcntl_h.m4: New file.
22563
22564 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22565
22566         * lib/fcntl_.h: New file.
22567         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
22568         the fcntl module.
22569         * lib/dirchownmod.c: Likewise.
22570         * lib/fts.c: Likewise.
22571
22572         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
22573         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
22574         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
22575         just before including <inttypes.h>, to avoid circular inclusion.
22576
22577 2006-08-28  Jim Meyering  <jim@meyering.net>
22578
22579         * doc/visibility.texi: Actually read and correct the grammar of the
22580         sentence affected by yesterday's change.
22581
22582 2006-08-28  Eric Blake  <ebb9@byu.net>
22583
22584         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
22585         needs wrapper.
22586
22587 2006-08-28  Eric Blake  <ebb9@byu.net>
22588
22589         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
22590
22591 2006-08-28  Eric Blake  <ebb9@byu.net>
22592
22593         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
22594
22595 2006-08-28  Bruno Haible  <bruno@clisp.org>
22596
22597         * modules/c-strstr: New file, from GNU gettext.
22598         * MODULES.html.sh (String handling): Add c-strstr.
22599
22600 2006-08-28  Bruno Haible  <bruno@clisp.org>
22601
22602         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
22603         macros.
22604         Reported by Eric Blake.
22605
22606 2006-08-28  Bruno Haible  <bruno@clisp.org>
22607
22608         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
22609         (VASNPRINTF): Return a string of length > INT_MAX without failing.
22610         * lib/vasprintf.c: Include errno.h, limits.h.
22611         (EOVERFLOW): New fallback definition.
22612         (vasprintf): Test here whether the string length is > INT_MAX.
22613         * lib/vsnprintf.c: Include errno.h, limits.h.
22614         (EOVERFLOW): New fallback definition.
22615         (vsnprintf): Fix bug when generated string was too long for the buffer.
22616         Test here whether the string length is > INT_MAX.
22617
22618 2006-08-28  Bruno Haible  <bruno@clisp.org>
22619
22620         * lib/inttypes_.h (SCNX*): Remove definitions.
22621         Reported by Eric Blake.
22622
22623 2006-08-28  Bruno Haible  <bruno@clisp.org>
22624
22625         * lib/c-strstr.h: New file, from GNU gettext.
22626         * lib/c-strstr.c: New file, from GNU gettext.
22627
22628 2006-08-28  Bruno Haible  <bruno@clisp.org>
22629
22630         * gnulib-tool: Reorder some statements.
22631
22632 2006-08-28  Bruno Haible  <bruno@clisp.org>
22633
22634         * gnulib-tool: New option --makefile-name.
22635         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
22636         $makefile_name.
22637         (func_import): Write $makefile_name to the cache file, and read it from
22638         there unless explicitly specified. Use $makefile_name as file name
22639         instead of Makefile.am. Adjust the recommendations accordingly.
22640
22641 2006-08-28  Bruno Haible  <bruno@clisp.org>
22642
22643         * gnulib-tool (func_verify_module): Check against misapplying patch.
22644
22645 2006-08-28  Bruno Haible  <bruno@clisp.org>
22646
22647         * gnulib-tool (func_relativize, func_relconcat): New functions.
22648         Give an error if --local-dir is given with --update.
22649         Remove trailing slashes from $local_gnulib_dir.
22650         (func_import): Store the relativized $local_gnulib_dir in
22651         gnulib-cache.m4, and read it from there if not specified explicitly.
22652
22653 2006-08-28  Bruno Haible  <bruno@clisp.org>
22654
22655         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
22656         is the current directory. Respect also $local_gnulib_dir.
22657
22658 2006-08-28  Bruno Haible  <bruno@clisp.org>
22659             Simon Josefsson  <jas@extundo.com>
22660
22661         BeOS portability.
22662         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
22663
22664 2006-08-27  Jim Meyering  <jim@meyering.net>
22665
22666         * doc/visibility.texi: Remove duplicate word: "pointer".
22667
22668 2006-08-26  Bruno Haible  <bruno@clisp.org>
22669
22670         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
22671         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
22672         (Makefile.am): Create inttypes.h from inttypes_.h.
22673         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
22674
22675         * modules/imaxabs: New file.
22676
22677         * modules/imaxdiv: New file.
22678
22679 2006-08-26  Bruno Haible  <bruno@clisp.org>
22680
22681         * m4/inttypes.m4: New file.
22682         * m4/_inttypes_h.m4: Remove file.
22683         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
22684         PRI_MACROS_BROKEN.
22685         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
22686
22687         * m4/imaxabs.m4: New file.
22688
22689         * m4/imaxdiv.m4: New file.
22690
22691 2006-08-26  Bruno Haible  <bruno@clisp.org>
22692
22693         * lib/inttypes_.h: New file.
22694         * lib/inttypes.h: Remove file.
22695         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
22696
22697         * lib/imaxabs.c: New file.
22698
22699         * lib/imaxdiv.c: New file.
22700
22701 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22702
22703         New config-h module, so that "make" output needn't be cluttered
22704         by -DHAVE_CONFIG_H.
22705         * MODULES.html.sh (Support for building libraries and executables):
22706         Add config-h.
22707         * modules/config-h: New file.
22708         * gnulib-tool (nl, sed_transform_lib_file): New vars.
22709         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
22710         the config-h module is used.
22711
22712         New configmake module, so that "make" output needn't be cluttered
22713         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
22714         * MODULES.html.sh (Support for building libraries and executables):
22715         Add configmake.
22716         * modules/configmake: New file.
22717
22718 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22719
22720         * m4/config-h.m4: New file.
22721
22722 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22723
22724         * config/srclist.txt: Add elisp-comp.
22725
22726 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22727
22728         * MODULES.html.sh (Support for building libraries and executables):
22729         Add elisp-comp.
22730         * build-aux/elisp-comp: New file.
22731         * modules/elisp-comp: New file.
22732
22733 2006-08-24  Bruno Haible  <bruno@clisp.org>
22734
22735         * gnulib-tool (func_create_testdir): Use non-default values of
22736         sourcebase and m4base.
22737
22738 2006-08-24  Bruno Haible  <bruno@clisp.org>
22739
22740         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
22741         HTML structure.
22742
22743 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22744
22745         * modules/openat (Depends-on): Add lchown.
22746
22747 2006-08-23  Bruno Haible  <bruno@clisp.org>
22748
22749         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
22750         of gl_LOCK_EARLY instead of gl_LOCK.
22751
22752 2006-08-23  Bruno Haible  <bruno@clisp.org>
22753
22754         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
22755         on OSF/1 to no.
22756         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
22757
22758 2006-08-23  Bruno Haible  <bruno@clisp.org>
22759
22760         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
22761         as unusable.
22762
22763         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
22764         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
22765         (gl_LOCK): New macro.
22766
22767 2006-08-22  Simon Josefsson  <jas@extundo.com>
22768
22769         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
22770         to md5 module.
22771
22772 2006-08-22  Simon Josefsson  <jas@extundo.com>
22773
22774         * MODULES.html.sh: Add "Support for maintaining and release
22775         projects".
22776
22777         * build-aux/gnupload: New file, from coreutils.
22778
22779 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22780
22781         Avoid the need for AC_LIBSOURCES in m4 macros.
22782         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
22783         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
22784         * modules/check-version (EXTRA_DIST): Add check-version.h.
22785         * modules/crc (EXTRA_DIST): Add crc.h.
22786         * modules/des (EXTRA_DIST): Add des.h.
22787         * modules/gc (EXTRA_DIST): Add gc.h.
22788         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
22789         * modules/getline (EXTRA_DIST): Add getline.h.
22790         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
22791         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
22792         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
22793         * modules/md2 (EXTRA_DIST): Add md2.h.
22794         * modules/md4 (EXTRA_DIST): Add md4.h.
22795         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
22796         * modules/read-file (EXTRA_DIST): Add read-file.h.
22797         * modules/readline (EXTRA_DIST): Add readline.h.
22798         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
22799         rijndael-api-fst.h.
22800
22801 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22802
22803         * m4/rijndael.m4 (gl_ARCFOUR):
22804         * m4/arctwo.m4 (gl_ARCTWO):
22805         * m4/check-version.m4 (gl_CHECK_VERSION):
22806         * m4/crc.m4 (gl_CRC):
22807         * m4/des.m4 (gl_DES):
22808         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
22809         * m4/gc.m4 (gl_GC):
22810         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
22811         * m4/getline.m4 (gl_FUNC_GETLINE):
22812         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
22813         * m4/hmac-md5.m4 (gl_HMAC_MD5):
22814         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
22815         * m4/md2.m4 (gl_MD2):
22816         * m4/md4.m4 (gl_MD4):
22817         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
22818         * m4/read-file.m4 (gl_FUNC_READ_FILE):
22819         * m4/readline.m4 (gl_FUNC_READLINE):
22820         * m4/rijndael.m4 (gl_RIJNDAEL):
22821         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
22822         to get the necessary .h files and whatnot.
22823
22824 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22825
22826         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
22827         gnulib rather than the other way around.
22828         * config/srclistvars.sh (COREUTILS): Remove.
22829
22830 2006-08-22  Jim Meyering  <jim@meyering.net>
22831
22832         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
22833
22834         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
22835
22836 2006-08-22  Eric Blake  <ebb9@byu.net>
22837
22838         * modules/regexprops-generic: New file.
22839         * MODULES.html.sh (Support for building documentation): List it.
22840
22841 2006-08-22  Eric Blake  <ebb9@byu.net>
22842
22843         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
22844         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
22845         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
22846         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
22847
22848 2006-08-22  Bruno Haible  <bruno@clisp.org>
22849
22850         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
22851         and lib_LTLIBRARIES like the other lib_* variables.
22852
22853 2006-08-22  Bruno Haible  <bruno@clisp.org>
22854
22855         * build-aux/x-to-1.in: New file, from GNU gettext.
22856
22857 2006-08-22  Bruno Haible  <bruno@clisp.org>
22858
22859         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
22860         <utmpx.h> exists.
22861
22862 2006-08-22  Bruno Haible  <bruno@clisp.org>
22863
22864         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
22865         <utmpx.h> exists.
22866
22867 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22868
22869         BeOS portability.
22870         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
22871         exist.
22872         Problem reported by Bruno Haible.
22873
22874 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22875
22876         Avoid the need for AC_LIBSOURCES in m4 macros.
22877         * modules/acl (EXTRA_DIST): Add acl.h.
22878         * modules/argmatch (Files): Add m4/argmatch.m4.
22879         (configure.ac): Add gl_ARGMATCH.
22880         (EXTRA_DIST): Renamed from lib_SOURCES, for
22881         consistency with the other modules.  Remove argmatch.c.
22882         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
22883         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
22884         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
22885         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
22886         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
22887         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
22888         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
22889         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
22890         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
22891         * modules/closeout (EXTRA_DIST): Add closeout.h.
22892         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
22893         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
22894         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
22895         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
22896         dirname.h; remove basename.c and stripslash.c.
22897         * modules/exclude (EXTRA_DIST): Add exclude.h.
22898         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
22899         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
22900         * modules/file-type (EXTRA_DIST): Add file-type.h.
22901         * modules/filemode (EXTRA_DIST): Add filemode.h.
22902         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
22903         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
22904         * modules/fpending (EXTRA_DIST): Add __fpending.h.
22905         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
22906         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
22907         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
22908         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
22909         * modules/getdate (EXTRA_DIST): Add getdate.c.
22910         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
22911         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
22912         * modules/getpass (EXTRA_DIST): Add getpass.h.
22913         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
22914         * modules/group-member (EXTRA_DIST): Add group-member.h.
22915         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
22916         * modules/hash (EXTRA_DIST): Add hash.h.
22917         * modules/human (EXTRA_DIST): Add human.h.
22918         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
22919         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
22920         * modules/lchown (EXTRA_DIST): Add lchown.h.
22921         * modules/long-options (EXTRA_DIST): Add long-options.h.
22922         * modules/lstat (EXTRA_DIST): Add lstat.h.
22923         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
22924         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
22925         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
22926         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
22927         * modules/memxor (EXTRA_DIST): Add memxor.h.
22928         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
22929         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
22930         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
22931         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
22932         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
22933         * modules/physmem (EXTRA_DIST): Add physmem.h.
22934         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
22935         * modules/posixver (EXTRA_DIST): Add posixver.h.
22936         * modules/quote (EXTRA_DIST): Add quote.h.
22937         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
22938         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
22939         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
22940         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
22941         regex_internal.h regexec.c.
22942         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
22943         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
22944         * modules/same (EXTRA_DIST): Add same.h.
22945         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
22946         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
22947         * modules/savedir (EXTRA_DIST): Add savedir.h.
22948         * modules/sha1 (EXTRA_DIST): Add sha1.h.
22949         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
22950         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
22951         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
22952         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
22953         * modules/strdup (EXTRA_DIST): Add strdup.h.
22954         * modules/strftime (EXTRA_DIST): Add strftime.h.
22955         * modules/strndup (EXTRA_DIST): Add strndup.h.
22956         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
22957         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
22958         * modules/time_r (EXTRA_DIST): Add time_r.h.
22959         * modules/timespec (EXTRA_DIST): Add timespec.h.
22960         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
22961         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
22962         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
22963         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
22964         * modules/userspec (EXTRA_DIST): Add userspec.h.
22965         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
22966         * modules/utimens (EXTRA_DIST): Add utimens.h.
22967         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
22968         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
22969         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
22970         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
22971         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
22972         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
22973         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
22974         * modules/yesno (EXTRA_DIST): Add yesno.h.
22975
22976 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22977
22978         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
22979
22980         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
22981         * m4/dev-ino.m4, same-inode.m4: Remove.
22982
22983         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
22984         * m4/acl.m4 (AC_FUNC_ACL):
22985         * m4/backupfile.m4 (gl_BACKUPFILE):
22986         * m4/c-strtod.m4 (gl_C99_STRTOLD):
22987         * m4/canon-host.m4 (gl_CANON_HOST):
22988         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
22989         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
22990         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
22991         * m4/cloexec.m4 (gl_CLOEXEC):
22992         * m4/close-stream.m4 (gl_CLOSE_STREAM):
22993         * m4/closeout.m4 (gl_CLOSEOUT):
22994         * m4/dirfd.m4 (gl_FUNC_DIRFD):
22995         * m4/dirname.m4 (gl_DIRNAME):
22996         * m4/exclude.m4 (gl_EXCLUDE):
22997         * m4/exitfail.m4 (gl_EXITFAIL):
22998         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
22999         * m4/file-type.m4 (gl_FILE_TYPE):
23000         * m4/filemode.m4 (gl_FILEMODE):
23001         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
23002         * m4/fpending.m4 (gl_FUNC_FPENDING):
23003         * m4/fprintftime.m4 (gl_FPRINTFTIME):
23004         * m4/fts.m4 (gl_FUNC_FTS):
23005         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
23006         * m4/getdate.m4 (gl_GETDATE):
23007         * m4/gethrxtime.m4 (gl_GETHRXTIME):
23008         * m4/getpagesize.m4 (gl_GETPAGESIZE):
23009         * m4/getpass.m4 (gl_FUNC_GETPASS):
23010         * m4/gettime.m4 (gl_GETTIME):
23011         * m4/getugroups.m4 (gl_GETUGROUPS):
23012         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
23013         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
23014         * m4/hard-locale.m4 (gl_HARD_LOCALE):
23015         * m4/hash.m4 (gl_HASH):
23016         * m4/idcache.m4 (gl_IDCACHE):
23017         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
23018         * m4/lchown.m4 (gl_FUNC_LCHOWN):
23019         * m4/long-options.m4 (gl_LONG_OPTIONS):
23020         * m4/lstat.m4 (gl_FUNC_LSTAT):
23021         * m4/md5.m4 (gl_MD5):
23022         * m4/memcasecmp.m4 (gl_MEMCASECMP):
23023         * m4/memcoll.m4 (gl_MEMCOLL):
23024         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
23025         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
23026         * m4/memxor.m4 (gl_MEMXOR):
23027         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
23028         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
23029         * m4/modechange.m4 (gl_MODECHANGE):
23030         * m4/mountlist.m4 (gl_MOUNTLIST):
23031         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
23032         * m4/openat.m4 (gl_FUNC_OPENAT):
23033         * m4/pathmax.m4 (gl_PATHMAX):
23034         * m4/physmem.m4 (gl_PHYSMEM):
23035         * m4/posixtm.m4 (gl_POSIXTM):
23036         * m4/posixver.m4 (gl_POSIXVER):
23037         * m4/quote.m4 (gl_QUOTE):
23038         * m4/quotearg.m4 (gl_QUOTEARG):
23039         * m4/readtokens.m4 (gl_READTOKENS):
23040         * m4/readutmp.m4 (gl_READUTMP):
23041         * m4/regex.m4 (gl_REGEX):
23042         * m4/safe-read.m4 (gl_SAFE_READ):
23043         * m4/safe-write.m4 (gl_SAFE_WRITE):
23044         * m4/same.m4 (gl_SAME):
23045         * m4/save-cwd.m4 (gl_SAVE_CWD):
23046         * m4/savedir.m4 (gl_SAVEDIR):
23047         * m4/settime.m4 (gl_SETTIME):
23048         * m4/sha1.m4 (gl_SHA1):
23049         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
23050         * m4/stat-macros.m4 (gl_STAT_MACROS):
23051         * m4/stat-time.m4 (gl_STAT_TIME):
23052         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
23053         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
23054         * m4/strdup.m4 (gl_FUNC_STRDUP):
23055         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
23056         * m4/strndup.m4 (gl_FUNC_STRNDUP):
23057         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
23058         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
23059         * m4/time_r.m4 (gl_TIME_R):
23060         * m4/timespec.m4 (gl_TIMESPEC):
23061         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
23062         * m4/unlinkdir.m4 (gl_UNLINKDIR):
23063         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
23064         * m4/userspec.m4 (gl_USERSPEC):
23065         * m4/utimecmp.m4 (gl_UTIMECMP):
23066         * m4/utimens.m4 (gl_UTIMENS):
23067         * m4/xalloc.m4 (gl_XALLOC):
23068         * m4/xgetcwd.m4 (gl_XGETCWD):
23069         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
23070         * m4/xreadlink.m4 (gl_XREADLINK):
23071         * m4/xstrtod.m4 (gl_XSTRTOD):
23072         * m4/yesno.m4 (gl_YESNO):
23073         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
23074         to get the necessary .h files and whatnot.
23075
23076 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
23077             Bruno Haible  <bruno@clisp.org>
23078
23079         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
23080         /bin/sh understanding of '!' conditional negation.
23081
23082 2006-08-21  Jim Meyering  <jim@meyering.net>
23083
23084         * modules/openat (Depends-on): Really alphabetize.
23085
23086         * modules/acl (Depends-on): Add error and quote.
23087
23088         * check-module (find_included_lib_files): Add at-func.c to the
23089         ok-to-include-more-than-once white list.
23090
23091         * modules/openat (Depends-on): Add lstat.  Alphabetize.
23092
23093 2006-08-21  Bruno Haible  <bruno@clisp.org>
23094
23095         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23096         Emit a pkgdata_DATA variable only if some snippets add contents to it.
23097         Reported by Martin Lambers <marlam@marlam.de>.
23098
23099 2006-08-21  Bruno Haible  <bruno@clisp.org>
23100
23101         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
23102         specify an installation location, don't emit a noinst_LIBRARIES or
23103         noinst_LTLIBRARIES assignment.
23104
23105 2006-08-21  Bruno Haible  <bruno@clisp.org>
23106
23107         BeOS portability.
23108         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
23109         BeOS has mbrtowc() but no <wctype.h>.
23110
23111 2006-08-21  Bruno Haible  <bruno@clisp.org>
23112
23113         BeOS portability.
23114         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
23115         exist.
23116
23117 2006-08-21  Bruno Haible  <bruno@clisp.org>
23118
23119         BeOS portability.
23120         * lib/mbchar.h: Include <wctype.h> only if it exists.
23121
23122 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23123
23124         Remove files that are no longer needed by their respective modules.
23125         * m4/obstack.m4: Remove.
23126         * m4/strerror_r.m4: Remove.
23127         * m4/uint32_t.m4: Remove.
23128         * m4/uintptr_t.m4: Remove.
23129         * m4/ullong_max.m4: Remove.
23130         * m4/xstrtoimax.m4: Remove.
23131         * m4/xstrtoumax.m4: Remove.
23132
23133         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
23134         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
23135         dependencies now capture this.
23136
23137         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
23138         Do not use AC_LIBSOURCES, since gnulib modules now do this.
23139         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
23140         * m4/human.m4 (gl_HUMAN): Likewise.
23141         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
23142         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
23143
23144         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
23145
23146         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
23147         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
23148         stdint.
23149         * m4/human.m4 (gl_HUMAN): Likewise.
23150         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
23151         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
23152         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23153         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23154         * m4/xstrtol (gl_XSTRTOL): Likewise.
23155
23156         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
23157         AC_TYPE_LONG_LONG_INT.
23158         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23159         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
23160         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
23161         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23162
23163         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
23164         on stdbool.
23165
23166         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
23167         (gl_PREREQ_XSTRTOUL): Remove.
23168
23169         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
23170
23171         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
23172         mode.
23173
23174 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23175
23176         Add and change modules to make it easier for coreutils to use
23177         gnulib-tool.
23178         * modules/backupfile (Files): Remove m4/d-ino.m4.
23179         (Depends-on): Add d-ino.
23180         * modules/cycle-check (Depends-on): Add stdint.
23181         (lib_SOURCES): Add cycle-check.h.
23182         * modules/d-ino: New module.
23183         * modules/d-type: New module.
23184         * modules/error (Files): Remove m4/strerror_r.m4.
23185         * modules/filemode (Files): Add m4/st_dm_mode.m4.
23186         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
23187         m4/inttypes_h.m4, m4/uintmax_t.m4.
23188         (Depends-on): Add stdint.
23189         (lib_SOURCES): Add fsusage.h.
23190         * modules/getcwd (Files): Remove d-ino.m4.
23191         (Depends-on): Add d-ino.
23192         * modules/getndelim2 (Depends-on): Add stdint.
23193         * modules/glob (Files): Remove m4/d-type.m4.
23194         (Depends-on): Add d-type.
23195         * modules/host-os: New module.
23196         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
23197         m4/inttypes_h.m4, m4/uintmax_t.m4.
23198         * Depends-on: Add stdint.
23199         (lib_SOURCES): Add human.h.
23200         * modules/inttostr (Files): Remove m4/intmax_t.m4,
23201         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
23202         m4/uintmax_t.m4, m4/ulonglong.m4.
23203         (Depends-on): Add stdint.
23204         (EXTRA_DIST): Add inttostr.h.
23205         * modules/lchmod: New module.
23206         * modules/link-follow: New module.
23207         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
23208         (Depends-on): Add lchmod.
23209         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
23210         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
23211         (Depends-on): Add stdint.
23212         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
23213         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
23214         (Depends-on): Add stdint.
23215         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
23216         * modules/perl: New module.
23217         * modules/regex (Depends-on): Add stdint.
23218         * modules/rmdir-errno: New module.
23219         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23220         m4/intmax_t.m4.
23221         (Depends-on): Add stdint.
23222         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23223         m4/uintmax_t.m4.
23224         (Depends-on): Add stdint.
23225         * modules/unlink-busy: New module.
23226         * modules/utimecmp (Depends-on): Add stdint.
23227         * modules/uptime: New module.
23228         * modules/winsz-ioctl: New module.
23229         * modules/winsz-termios: New module.
23230         * modules/xnanosleep (Depends-on): Add nanosleep.
23231         * modules/ullong_max: Remove.
23232         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
23233         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
23234         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
23235         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
23236         (Depends-on): Add inttypes.
23237         (lib_SOURCES): Add xstrtol.h.
23238         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
23239         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
23240         * MODULES.html.sh: Move 'assert' into the assert section.
23241         Move 'dummy' into the linking section.
23242         Remove ullong_max.
23243         Add section for compatibility checks for POSIX:2001 functions,
23244         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
23245         winsz-ioctl, and winsz-termios into it.
23246         Add lchmod.
23247         Add top-level Misc section and put host-os, perl, and uptime
23248         into it.
23249
23250 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23251
23252         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
23253         now assume the stdint module.  Do not include inttypes.h.
23254         * lib/fsusage.h: Likewise.
23255         * lib/getndelim2.c: Likewise.
23256         * lib/human.h: Likewise.
23257         * lib/inttostr.h: Likewise.
23258         * lib/obstack.c: Likewise.
23259         * lib/regex_internal.h: Likewise.
23260         * lib/tempname.c: Likewise.
23261         * lib/utimecmp.c: Likewise.
23262         * lib/xstrtol.h: Likewise.
23263
23264         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
23265
23266         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
23267         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
23268         * lib/xtime.h: Likewise.
23269
23270 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23271
23272         * modules/openat (Files): Add lib/fchmodat.c.
23273         Fixes problem reported by Jay Youngman.
23274
23275 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23276
23277         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
23278         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
23279
23280 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
23281             Bruno Haible  <bruno@clisp.org>
23282
23283         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
23284         and is a script that invokes bison. Tighten the code. Add comments.
23285
23286 2006-08-18  Jim Meyering  <jim@meyering.net>
23287
23288         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
23289         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
23290         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
23291         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
23292
23293 2006-08-18  Bruno Haible  <bruno@clisp.org>
23294
23295         * modules/bison-i18n: New file.
23296         * MODULES.html.sh (Internationalization functions): Add it.
23297
23298 2006-08-18  Bruno Haible  <bruno@clisp.org>
23299
23300         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
23301         sys/statvfs.h. When getmntinfo was found, check its declaration and
23302         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
23303
23304 2006-08-18  Bruno Haible  <bruno@clisp.org>
23305
23306         * m4/bison-i18n.m4: New file, from bison.
23307
23308 2006-08-18  Bruno Haible  <bruno@clisp.org>
23309
23310         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
23311         (ME_DUMMY): Treat "kernfs" as a dummy.
23312         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
23313
23314 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23315
23316         Update from coreutils.
23317
23318         2006-08-15  Jim Meyering  <jim@meyering.net>
23319
23320         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
23321
23322         2006-01-17  Jim Meyering  <jim@meyering.net>
23323
23324         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
23325
23326         2006-01-11  Jim Meyering  <jim@meyering.net>
23327
23328         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
23329         Check for the lchmod function.
23330
23331 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23332
23333         Update from coreutils.
23334
23335         * lib/__fpending.h: Add copyright notice.
23336         * lib/fprintftime.h: Likewise.
23337         * lib/savedir.c: Use (C) in copyright notice.
23338         * lib/savedir.h: Likewise.
23339
23340         2006-08-15  Jim Meyering  <jim@meyering.net>
23341
23342         * lib/at-func.c: New file, with the logic of all emulated at-functions.
23343         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
23344         in support of the EXPECTED_ERRNO macro.
23345         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
23346         definitions.  Instead, define the appropriate symbols and include
23347         "at-func.c".
23348         * lib/mkdirat.c (mkdirat): Likewise.
23349         * lib/fchmodat.c (fchmodat): Likewise.
23350         (ENOSYS): Remove definition.
23351         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
23352         it.  Don't include "unistd--.h" -- it wasn't ever used.
23353
23354         2006-01-17  Jim Meyering  <jim@meyering.net>
23355
23356         Rewrite fts.c not to change the current working directory,
23357         by using openat, fstatat, fdopendir, etc..
23358
23359         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
23360         (HAVE_OPENAT_SUPPORT): Define.
23361         [_LIBC] (fchdir): Don't undef or define; no longer used.
23362         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
23363         Now, this `function' always succeeds, and consumes its file descriptor
23364         parameter -- so callers must not close such FDs.  Update callers.
23365         (diropen_fd, opendirat, cwd_advance_fd): New functions.
23366         (diropen): Add parameter, SP.  Adjust all callers.
23367         Implement using diropen_fd, rather than open.
23368         (fts_open): Initialize new member, fts_cwd_fd.
23369         Remove fts_rft-setting code.
23370         (fts_close): Close fts_cwd_fd, if necessary.
23371         (__opendir2): Define in terms of opendir or opendirat,
23372         depending on whether the FST_NOCHDIR flag is set.
23373         (fts_build): Since fts_safe_changedir consumes its FD, and since
23374         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
23375         and close the dup'd file descriptor upon failure.
23376         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
23377         (fts_safe_changedir): Tweak semantics to reflect that this function
23378         now calls cwd_advance_fd and hence consumes its FD argument.
23379         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
23380         [struct FTS] (fts_rft): Remove now-unused member.
23381         [struct FTS] (fts_cycle.state): Improve comment.
23382
23383         * lib/openat.c (openat_needs_fchdir): New function.
23384         * lib/openat.h (openat_needs_fchdir): Declare it.
23385
23386 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
23387
23388         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
23389         Problem and fix reported by Pádraig Brady in
23390         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
23391
23392 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23393
23394         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
23395
23396 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23397
23398         * lib/memcoll.c (memcoll): Optimize for the common case where the
23399         arguments are bytewise equal.
23400
23401 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23402
23403         * doc/regexprops-generic.texi: Add a copyright notice.
23404
23405 2006-08-15  Bruno Haible  <bruno@clisp.org>
23406
23407         * modules/tmpdir (License): Change to LGPL.
23408
23409 2006-08-15  Bruno Haible  <bruno@clisp.org>
23410
23411         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
23412         module.
23413
23414 2006-08-14  Simon Josefsson  <jas@extundo.com>
23415
23416         * config/srclist.txt: Add gnupload.
23417
23418 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23419
23420         Change copyright notice from LGPL 2 to GPL 2, since that's the
23421         standard form used in the gnulib repository.
23422         * tests/test-lock.c: Likewise.
23423         * tests/test-stdint.c: Likewise.
23424         * tests/test-tls.c: Likewise.
23425
23426         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
23427         prelude-manager.  User shorter URLs for GNU projects, without '?'.
23428         Add copyright notice.
23429
23430         * check-module: Add copyright notice.  Output a copyright
23431         notice if "--version" is specified.
23432         * modules/COPYING: New file.
23433         * tests/test-getaddrinfo.c: Add copyright notice.
23434         * tests/test-verify.c: Likewise.
23435
23436 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23437
23438         Change copyright notice from LGPL 2 to GPL 2, since that's the
23439         standard form used in the gnulib repository.
23440         * lib/lock.c: LGPL -> GPL.
23441         * lib/lock.h: Likewise.
23442         * lib/strnlen1.c: Likewise.
23443         * lib/strnlen1.h: Likewise.
23444         * lib/tls.c: Likewise.
23445         * lib/tls.h: Likewise.
23446         * lib/tmpdir.c: Likewise.
23447
23448         * lib/TODO: Remove; this belongs only in coreutils.
23449
23450 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23451
23452         Add copyright notices to long-enough files that lack them, since
23453         otherwise the files aren't clearly free.  Use the same notice that
23454         getdate.texi already uses.
23455         * doc/alloca-opt.texi: Add copyright notice.
23456         * doc/alloca.texi: Likewise.
23457         * doc/ctime.texi: Likewise.
23458         * doc/functions.texi: Likewise.
23459         * doc/gcd.texi: Likewise.
23460         * doc/gnulib-tool.texi: Likewise.
23461         * doc/inet_ntoa.texi: Likewise.
23462         * doc/visibility.texi: Likewise.
23463
23464         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
23465         * doc/quote.texi: Add copyright notice.
23466
23467         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
23468         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
23469         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
23470         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
23471         is now obsolete, and give a pointer to the Sun list.
23472         Add copyright notice.
23473
23474 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23475
23476         * config/srclistvars.sh: Add copyright notice.
23477
23478 2006-08-14  Eric Blake  <ebb9@byu.net>
23479
23480         Import the following change from libc:
23481
23482         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
23483
23484         Upstream bug 2997.
23485         * lib/misc/error.c: Add space between program name and message if file
23486         name is missing.
23487
23488 2006-08-12  Karl Berry  <karl@gnu.org>
23489
23490         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
23491         remove, these originate in gnulib now.
23492
23493 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23494
23495         * doc/Makefile (standards.info standards.html standards.dvi):
23496         Also depend on make-stds.texi.
23497
23498 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
23499
23500         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
23501         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
23502
23503         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
23504         in wchar_t.  Problem reported by Eric Blake.
23505
23506         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
23507         LEN is smaller than SIZE.  Suggested by Bruno Haible.
23508         Also, help the compiler to keep LEN in a register.
23509
23510 2006-08-11  Eric Blake  <ebb9@byu.net>
23511
23512         * users.txt: Sort.  Add tar.
23513
23514 2006-08-11  Bruno Haible  <bruno@clisp.org>
23515
23516         * users.txt: New file.
23517
23518 2006-08-11  Bruno Haible  <bruno@clisp.org>
23519
23520         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
23521         before <wchar.h>. Needed for OSF/1 and BSD/OS.
23522
23523 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23524
23525         * modules/snprintf (Depends-on): Remove minmax.
23526         (Maintainer): Add self and Bruno.
23527
23528 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23529
23530         * lib/.cppi-disable: Add snprintf.h, socket_.h.
23531         * lib/snprintf.c: Include <errno.h> and <limits.h>.
23532         (EOVERFLOW): Define if the system does not.
23533         Do not include "minmax.h"; it wasn't used.
23534         (snprintf): Don't assume size_t promotes to an unsigned type.
23535         Fix bug when generated string was too long for the buffer: the
23536         buffer's contents are supposed to be the initial prefix of the
23537         output.  Don't assume vasnprintf returns EOVERFLOW if the size
23538         exceeds INT_MAX; do the check ourselves.
23539
23540         Import the following changes from libc:
23541
23542         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
23543
23544         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
23545         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
23546         set wc to the byte which couldn't be converted.
23547         (re_string_reconstruct): Don't clear valid_raw_len before calling
23548         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
23549         tip_context using re_string_context_at.
23550
23551         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
23552
23553         * lib/posix/regex.h: g++ still cannot handled [restrict].
23554
23555         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
23556
23557         * lib/posix/regex.h: Remove special handling for VMS.
23558
23559 2006-08-10  Jim Meyering  <jim@meyering.net>
23560
23561         * modules/same-inode: New module.
23562         * modules/dev-ino: New module.
23563         * modules/cycle-check: Depend on these modules, rather than simply
23564         including their .h files.
23565         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
23566         required via m4/cycle-check.m4.
23567         * modules/same: Depend on new same-inode module, rather than
23568         including same-inode.h.
23569         * modules/chdir-safer: New file.
23570
23571         * modules/chown (Depends-on): Add stat-macros.
23572
23573 2006-08-10  Jim Meyering  <jim@meyering.net>
23574
23575         * m4/cycle-check.m4: New file.
23576         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
23577         * m4/dev-ino.m4, m4/same-inode.m4: New files.
23578
23579 2006-08-10  Eric Blake  <ebb9@byu.net>
23580
23581         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
23582         in from original proposal.
23583
23584 2006-08-10  Eric Blake  <ebb9@byu.net>
23585         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
23586
23587         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
23588         namespace.
23589
23590 2006-08-10  Bruno Haible  <bruno@clisp.org>
23591
23592         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
23593         as well.
23594
23595 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23596
23597         Sync from coreutils.
23598
23599         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
23600
23601         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
23602         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
23603
23604 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23605
23606         * modules/restrict: Remove; no longer needed now that we assume
23607         Autoconf 2.59 or later.
23608         * MODULES.html.sh: Remove 'restrict'.
23609         * modules/argp (Depends-on): Remove 'restrict'.
23610         * modules/base64 (Depends-on): Likewise.
23611         * modules/gc (Depends-on): Likewise.
23612         * modules/getaddrinfo (Depends-on): Likewise.
23613         * modules/glob (Depends-on): Likewise.
23614         * modules/inet_ntop (Depends-on): Likewise.
23615         * modules/inet_pton (Depends-on): Likewise.
23616         * modules/memxor (Depends-on): Likewise.
23617         * modules/regex (Depends-on): Likewise.
23618         * modules/strtok_r (Depends-on): Likewise.
23619         * modules/time_r (Depends-on): Likewise.
23620
23621 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23622
23623         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
23624         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
23625         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
23626         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
23627         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
23628         * m4/memxor.m4 (gl_MEMXOR): Likewise.
23629         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
23630         gl_C_RESTRICT replaced by AC_C_RESTRICT.
23631
23632         Merge from coreutils.
23633         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
23634         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
23635         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
23636         * m4/time_r.m4 (gl_TIME_R): Likewise.
23637
23638 2006-08-09  Karl Berry  <karl@gnu.org>
23639
23640         * config/srclist.txt: no more gettext-tools, per Bruno.
23641
23642 2006-08-08  Eric Blake  <ebb9@byu.net>
23643
23644         * modules/verror: New module.
23645         * MODULES.html.sh: Document it.
23646
23647 2006-08-08  Eric Blake  <ebb9@byu.net>
23648
23649         * lib/verror.h, lib/verror.c: New files.
23650
23651 2006-08-08  Eric Blake  <ebb9@byu.net>
23652
23653         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
23654         verror_at_line output complies with GNU Coding Standards even when
23655         file is NULL.
23656
23657 2006-08-07  Bruno Haible  <bruno@clisp.org>
23658
23659         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
23660         versions of AIX.
23661         Reported by Ralf Wildenhues.
23662
23663 2006-08-07  Bruno Haible  <bruno@clisp.org>
23664
23665         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
23666         in an AC_DEFUN. Needed so that the autoconf snippets can use
23667         AC_REQUIRE.
23668
23669 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23670
23671         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23672         Initialize pkgdata_DATA.
23673         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
23674         overriding it.
23675
23676 2006-08-06  Eric Blake  <ebb9@byu.net>
23677
23678         * lib/error.h: Fold in some upstream changes from glibc.
23679         * lib/error.c: Likewise.
23680
23681 2006-08-04  Bruno Haible  <bruno@clisp.org>
23682
23683         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23684         Make the mostlyclean-local rule depend on mostlyclean-generic.
23685         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
23686
23687 2006-07-31  Bruno Haible  <bruno@clisp.org>
23688
23689         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
23690         <stdlib.h>, <string.h>.
23691
23692 2006-07-30  Bruno Haible  <bruno@clisp.org>
23693
23694         * modules/readlink (License): Change to LGPL.
23695
23696 2006-07-30  Bruno Haible  <bruno@clisp.org>
23697
23698         * modules/javaversion (Makefile.am): Distribute javaversion.java and
23699         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
23700         set PKGDATADIR to point to it.
23701
23702 2006-07-30  Bruno Haible  <bruno@clisp.org>
23703
23704         * modules/csharpexec (configure.ac): Comment out macro invocation.
23705         * modules/javaexec (configure.ac): Likewise.
23706         * modules/javacomp-script (configure.ac): Likewise.
23707
23708         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
23709
23710 2006-07-30  Bruno Haible  <bruno@clisp.org>
23711
23712         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
23713         linked-list.
23714
23715 2006-07-30  Bruno Haible  <bruno@clisp.org>
23716
23717         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
23718
23719 2006-07-30  Bruno Haible  <bruno@clisp.org>
23720
23721         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23722         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
23723         get removed.
23724
23725 2006-07-29  Bruno Haible  <bruno@clisp.org>
23726
23727         Make it possible for gnulib-tool to work with locally modified or
23728         augmented gnulib repositories.
23729         * gnulib-tool (func_usage): Document --local-dir option.
23730         (local_gnulib_dir): New variable.
23731         Handle --local-dir option.
23732         (func_lookup_file): New function.
23733         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
23734         (func_get_description, func_get_filelist, func_get_description,
23735         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
23736         func_get_automake_snippet, func_get_include_directive,
23737         func_get_license, func_get_maintainer): Use func_lookup_file.
23738         (func_import, func_create_testdir): Use func_lookup_file.
23739
23740 2006-07-29  Bruno Haible  <bruno@clisp.org>
23741
23742         * modules/setenv (Depends-on): Add unistd.
23743
23744 2006-07-29  Bruno Haible  <bruno@clisp.org>
23745
23746         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
23747
23748 2006-07-29  Bruno Haible  <bruno@clisp.org>
23749
23750         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
23751
23752 2006-07-29  Bruno Haible  <bruno@clisp.org>
23753
23754         * gnulib-tool (import, update): If there is no Makefile.am, look at
23755         aclocal.m4, instead of bailing out.
23756
23757 2006-07-29  Bruno Haible  <bruno@clisp.org>
23758
23759         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
23760         Categorize the options by when they are useful.
23761
23762 2006-07-29  Bruno Haible  <bruno@clisp.org>
23763
23764         * gnulib-tool (func_usage): Document option --no-libtool.
23765         Handle option --no-libtool.
23766         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
23767         for changed semantics of $libtool variable.
23768         (func_import): Likewise. If libtool is not used, show this through
23769         an option --no-libtool.
23770         (func_create_testdir): Update.
23771
23772 2006-07-29  Bruno Haible  <bruno@clisp.org>
23773
23774         * gnulib-tool (func_import): Extend error message about missing
23775         --doc-base.
23776
23777 2006-07-29  Bruno Haible  <bruno@clisp.org>
23778
23779         * gnulib-tool (func_import): Don't create the $docbase directory if
23780         there is no file to store there.
23781
23782 2006-07-29  Bruno Haible  <bruno@clisp.org>
23783
23784         * gnulib-tool (autoconf_minversion): If a --dir option is given and
23785         relevant, look for configure.ac there, not in the current directory.
23786         Also use a simple search for AC_PREREQ, not "autoconf --trace".
23787
23788 2006-07-29  Bruno Haible  <bruno@clisp.org>
23789
23790         * gnulib-tool (SORT): New variable.
23791         (func_usage): Undocument --assume-autoconf option.
23792         Remove --assume-autoconf option handling.
23793         (autoconf_minversion): Determine from the contents of configure.ac.
23794         (func_import): Remove autoconf_minversion handling.
23795         Suggested by Eric Blake.
23796
23797 2006-07-29  Bruno Haible  <bruno@clisp.org>
23798
23799         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
23800
23801 2006-07-29  Bruno Haible  <bruno@clisp.org>
23802
23803         * config/srclist.txt (*setenv.[ch]): Remove rules.
23804
23805 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23806
23807         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
23808
23809 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23810
23811         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
23812         arpa/inet.h.
23813
23814 2006-07-28  Simon Josefsson  <jas@extundo.com>
23815
23816         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
23817         * modules/inet_pton (Depends-on): Likewise.
23818
23819 2006-07-28  Simon Josefsson  <jas@extundo.com>
23820
23821         * m4/netinet_in_h.m4: New file.
23822
23823 2006-07-28  Simon Josefsson  <jas@extundo.com>
23824
23825         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
23826         #include's.
23827
23828 2006-07-28  Simon Josefsson  <jas@extundo.com>
23829
23830         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
23831         #include's.
23832
23833 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
23834
23835         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
23836         setgid on directories only if they set these bits.
23837         * lib/modechange.h: Remove obsolete comment about masks.
23838
23839 2006-07-28  Eric Blake  <ebb9@byu.net>
23840
23841         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
23842         macro expansion.
23843
23844 2006-07-28  Bruno Haible  <bruno@clisp.org>
23845
23846         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
23847
23848 2006-07-28  Bruno Haible  <bruno@clisp.org>
23849
23850         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
23851
23852 2006-07-28  Bruno Haible  <bruno@clisp.org>
23853
23854         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
23855         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
23856         Define fallbacks.
23857         Avoids link error on FreeBSD 4.x.
23858         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23859
23860         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
23861         encoding.
23862         * lib/mbswidth.c (iswcntrl): Likewise.
23863
23864 2006-07-27  Bruno Haible  <bruno@clisp.org>
23865
23866         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
23867         test.
23868
23869 2006-07-27  Bruno Haible  <bruno@clisp.org>
23870
23871         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
23872         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
23873         defined.
23874
23875 2006-07-26  Eric Blake  <ebb9@byu.net>
23876
23877         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
23878
23879 2006-07-26  Eric Blake  <ebb9@byu.net>
23880
23881         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
23882         like mingw that lack mkstemp.
23883         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
23884         avoid compilation warning on mingw.
23885
23886 2006-07-26  Bruno Haible  <bruno@clisp.org>
23887
23888         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
23889         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
23890         INT_FAST*_MIN, INTPTR_MIN.
23891
23892 2006-07-25  Bruno Haible  <bruno@clisp.org>
23893
23894         * modules/version-etc (Depends-on): Add stdarg.
23895
23896 2006-07-25  Bruno Haible  <bruno@clisp.org>
23897
23898         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
23899         complex commands.
23900
23901 2006-07-25  Bruno Haible  <bruno@clisp.org>
23902
23903         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
23904         defined in <stdarg.h> or config.h.
23905
23906 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
23907
23908         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
23909         (gl_STDIO_SAFER): Remove.
23910
23911 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
23912
23913         * MODULES.html.sh (File stream based Input/Output):
23914         Add fopen-safer, tmpfile-safer; remove stdio-safer.
23915         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
23916         * modules/fopen-safer, modules/tmpfile-safer: New files.
23917         * modules/stdio-safer: Remove.
23918
23919 2006-07-24  Bruno Haible  <bruno@clisp.org>
23920
23921         * modules/tmpdir: New file.
23922         * MODULES.html.sh (File system functions): Add it.
23923
23924 2006-07-24  Bruno Haible  <bruno@clisp.org>
23925
23926         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
23927         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
23928
23929 2006-07-24  Bruno Haible  <bruno@clisp.org>
23930
23931         * modules/clean-temp: New file.
23932
23933 2006-07-24  Bruno Haible  <bruno@clisp.org>
23934
23935         * m4/tmpdir.m4: New file, from GNU gettext.
23936
23937 2006-07-24  Bruno Haible  <bruno@clisp.org>
23938
23939         * lib/tmpdir.h: New file, from GNU gettext.
23940         * lib/tmpdir.c: New file, from GNU gettext.
23941
23942 2006-07-24  Bruno Haible  <bruno@clisp.org>
23943
23944         * lib/clean-temp.h: New file, from GNU gettext.
23945         * lib/clean-temp.c: New file, from GNU gettext.
23946
23947 2006-07-23  Eric Blake  <ebb9@byu.net>
23948
23949         * modules/stdio-safer (Files): Add tmpfile-safer.c.
23950         (Depends-on): Add binary-io.
23951
23952 2006-07-23  Eric Blake  <ebb9@byu.net>
23953
23954         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
23955
23956 2006-07-23  Eric Blake  <ebb9@byu.net>
23957
23958         * lib/tmpfile-safer.c: New file.
23959         * lib/stdio-safer.h (fopen_safer): Add prototype.
23960         * lib/stdio--.h (tmpfile): Make safer.
23961
23962 2006-07-23  Bruno Haible  <bruno@clisp.org>
23963
23964         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
23965         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
23966         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
23967         gl_linked_remove_at): Use it.
23968
23969 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23970         and Simon Josefsson <jas@extundo.com>
23971
23972         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
23973
23974         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
23975
23976 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23977
23978         * modules/close-stream: New file.
23979         * modules/closeout (Description): Make it clear that it exits
23980         with a diagnostic on error.
23981         (Depends-on): Add close-stream.  Remove fpending, stdbool.
23982         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
23983
23984 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23985
23986         * m4/close-stream.m4: New file.
23987
23988 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23989
23990         * lib/close-stream.c, lib/close-stream.h: New files.
23991
23992 2006-07-22  Bruno Haible  <bruno@clisp.org>
23993
23994         Merge from GNU gettext 0.15.
23995
23996         2006-05-01  Bruno Haible  <bruno@clisp.org>
23997
23998                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
23999
24000         2006-07-22  Bruno Haible  <bruno@clisp.org>
24001
24002                 * modules/javaversion: New file.
24003                 * MODULES.html.sh (Java): Add javaversion.
24004
24005         2006-03-12  Bruno Haible  <bruno@clisp.org>
24006
24007                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
24008
24009         2005-12-04  Bruno Haible  <bruno@clisp.org>
24010
24011                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
24012                 (untested).
24013
24014         2006-06-21  Bruno Haible  <bruno@clisp.org>
24015
24016                 Avoid warnings from recent versions of mcs.
24017                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
24018                 -o, -L, -r any more. Use options documented since mcs-1.0
24019                 instead. Similarly for -g.
24020
24021         2005-12-04  Bruno Haible  <bruno@clisp.org>
24022
24023                 * build-aux/csharpcomp.sh.in: Suffix for resources is
24024                 .resources, not .resource.
24025
24026         2005-07-09  Bruno Haible  <bruno@clisp.org>
24027
24028                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
24029                 add a .dll suffix.
24030                 Reported by Mark Junker <mjscod@gmx.de>.
24031
24032         2006-07-22  Bruno Haible  <bruno@clisp.org>
24033
24034                 * modules/gettext: Upgrade to gettext-0.15.
24035                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
24036                 m4/visibility.m4.
24037                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
24038
24039 2006-07-22  Bruno Haible  <bruno@clisp.org>
24040
24041         Merge from GNU gettext 0.15.
24042
24043         2006-03-25  Bruno Haible  <bruno@clisp.org>
24044
24045                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
24046
24047         2006-07-21  Bruno Haible  <bruno@clisp.org>
24048
24049                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
24050                 "1.1".
24051
24052         2006-05-09  Bruno Haible  <bruno@clisp.org>
24053
24054                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
24055                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
24056                 for the conftestver execution.
24057
24058         2006-05-01  Bruno Haible  <bruno@clisp.org>
24059
24060                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
24061                 optional target-version argument. Verify that the compiler
24062                 groks source of the specified source-version, or add -source
24063                 option as necessary. Verify that the compiler produces
24064                 bytecode in the specified target-version, or add -target and
24065                 -source options as necessary. Make the result of the test
24066                 available as variable CONF_JAVAC. Also log error output in
24067                 config.log.
24068
24069         2006-03-11  Bruno Haible  <bruno@clisp.org>
24070
24071                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
24072
24073         2006-05-09  Bruno Haible  <bruno@clisp.org>
24074
24075                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
24076                 CLASSPATH_SEPARATOR to a semicolon.
24077
24078         2006-03-12  Bruno Haible  <bruno@clisp.org>
24079
24080                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
24081                 available as variable CONF_JAVA, for subsequent autoconf
24082                 tests. Also log error output in config.log.
24083
24084         2006-07-19  Bruno Haible  <bruno@clisp.org>
24085
24086                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
24087                 that getline works on glibc2 systems. Needed to avoid trouble
24088                 in relocatable.c.
24089                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
24090
24091         2005-12-04  Bruno Haible  <bruno@clisp.org>
24092
24093                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
24094                 launcher (untested).
24095
24096         2005-12-04  Bruno Haible  <bruno@clisp.org>
24097
24098                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
24099
24100         2006-07-22  Bruno Haible  <bruno@clisp.org>
24101
24102                 * gettext.m4: Update from GNU gettext-0.15.
24103                 * nls.m4: Likewise.
24104                 * po.m4: Likewise.
24105                 * inttypes-pri.m4: Likewise.
24106                 * inttypes-h.m4: Renamed from inttypes.m4.
24107                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
24108
24109 2006-07-22  Bruno Haible  <bruno@clisp.org>
24110
24111         Merge from GNU gettext 0.15.
24112
24113         2005-07-05  Bruno Haible  <bruno@clisp.org>
24114
24115                 * printf-args.c (printf_fetchargs): Work around broken
24116                 definition of wint_t on mingw.
24117
24118         2005-02-12  Bruno Haible  <bruno@clisp.org>
24119
24120                 * xallocsa.h: Add extern "C" for C++.
24121
24122         2006-05-17  Bruno Haible  <bruno@clisp.org>
24123
24124                 Cygwin portability.
24125                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
24126
24127         2006-04-30  Bruno Haible  <bruno@clisp.org>
24128
24129                 * progreloc.c: Include <mach-o/dyld.h> if available.
24130                 (find_executable): Use _NSGetExecutablePath when possible.
24131
24132         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
24133
24134                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
24135                 function.
24136
24137         2005-12-29  Bruno Haible  <bruno@clisp.org>
24138
24139                 * progreloc.c (set_program_name_and_installdir): Fix
24140                 compilation error.
24141
24142         2005-12-04  Bruno Haible  <bruno@clisp.org>
24143
24144                 Cygwin portability.
24145                 * progreloc.c: Include <windows.h> also on Cygwin.
24146                 (find_executable): Add support for Cygwin.
24147                 (set_program_name_and_installdir): Handle also platforms with
24148                 nonempty EXEEXT.
24149
24150         2006-07-11  Bruno Haible  <bruno@clisp.org>
24151
24152                 * javacomp.c: Fix a comment.
24153                 Reported by Jim Meyering.
24154
24155         2006-04-30  Bruno Haible  <bruno@clisp.org>
24156
24157                 * javacomp.h (compile_java_class): Add source_version,
24158                 target_version arguments.
24159                 * javacomp.c: Rewritten to choose only a compiler that
24160                 respects the specified source_version and target_version.
24161
24162         2006-06-27  Bruno Haible  <bruno@clisp.org>
24163
24164                 Assume correct S_ISDIR macro.
24165                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
24166
24167         2006-07-22  Bruno Haible  <bruno@clisp.org>
24168
24169                 * javaversion.h: New file, from GNU gettext.
24170                 * javaversion.c: New file, from GNU gettext.
24171                 * javaversion.java: New file, from GNU gettext.
24172                 * javaversion.class: New file, from GNU gettext.
24173
24174         2006-05-17  Bruno Haible  <bruno@clisp.org>
24175
24176                 Cygwin portability.
24177                 * javaexec.c (execute_java_class): Test for jview program
24178                 also on Cygwin.
24179
24180         2006-04-09  Bruno Haible  <bruno@clisp.org>
24181
24182                 * fatal-signal.c: Don't include string.h.
24183                 (at_fatal_signal): Use a copying loop instead of memcpy.
24184
24185         2005-12-04  Bruno Haible  <bruno@clisp.org>
24186
24187                 * csharpexec.c: Add support for 'clix' launcher (untested).
24188                 (execute_csharp_using_sscli): New function.
24189                 (execute_csharp_program): Call it.
24190
24191         2006-06-21  Bruno Haible  <bruno@clisp.org>
24192
24193                 Avoid warnings from recent versions of mcs.
24194                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
24195                 -o, -L, -r any more. Use options documented since mcs-1.0
24196                 instead. Similarly for -g.
24197
24198         2005-07-09  Bruno Haible  <bruno@clisp.org>
24199
24200                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
24201                 add a .dll suffix.
24202                 Reported by Mark Junker <mjscod@gmx.de>.
24203
24204         2006-06-17  Bruno Haible  <bruno@clisp.org>
24205
24206                 * config.charset: Update for NetBSD 3.0.
24207
24208         2006-05-17  Bruno Haible  <bruno@clisp.org>
24209
24210                 Cygwin portability.
24211                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
24212
24213         2006-05-16  Bruno Haible  <bruno@clisp.org>
24214
24215                 * localcharset.c [CYGWIN]: Include <windows.h>.
24216                 (get_charset_aliases): For Cygwin, return the same CPxxx
24217                 aliases list as under WIN32.
24218                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
24219                 the environment variables. Fall back to GetACP().
24220
24221         2006-04-05  Bruno Haible  <bruno@clisp.org>
24222
24223                 * config.charset: Update Juan Manuel Guerrero's address.
24224
24225         2005-02-12  Bruno Haible  <bruno@clisp.org>
24226
24227                 * allocsa.h: Add extern "C" for C++.
24228
24229         2005-02-10  Bruno Haible  <bruno@clisp.org>
24230
24231                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
24232                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
24233
24234         2006-07-22  Bruno Haible  <bruno@clisp.org>
24235
24236                 * gettext.h: Update to GNU gettext-0.15.
24237
24238 2006-07-22  Bruno Haible  <bruno@clisp.org>
24239
24240         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
24241         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
24242         lib-prefix.m4, longdouble.m4, ssize_t.m4.
24243
24244 2006-07-21  Eric Blake  <ebb9@byu.net>
24245
24246         * modules/stdlib-safer: New file.
24247         * MODULES.html.sh (File stream based Input/Output): Add
24248         stdlib-safer.
24249
24250 2006-07-21  Eric Blake  <ebb9@byu.net>
24251
24252         * lib/stdlib-safer.h: New file from coreutils, required by
24253         stdlib--.h.
24254
24255 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
24256
24257         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
24258
24259 2006-07-20  Bruno Haible  <bruno@clisp.org>
24260
24261         * gnulib-tool: Recognize new option --assume-autoconf.
24262         (autoconf_minversion): New variable.
24263         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
24264
24265 2006-07-20  Bruno Haible  <bruno@clisp.org>
24266
24267         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
24268
24269 2006-07-19  Derek R. Price  <derek@ximbiot.com>
24270
24271         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
24272         Reindent and repaginate.
24273
24274 2006-07-19  Derek Price  <derek@ximbiot.com>
24275
24276         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
24277         Correct grammar.
24278
24279 2006-07-17  Bruno Haible  <bruno@clisp.org>
24280
24281         * modules/list: New file.
24282         * modules/array-list: New file.
24283         * modules/carray-list, modules/carray-list-tests: New files.
24284         * modules/linked-list, modules/linked-list-tests: New files.
24285         * modules/avltree-list, modules/avltree-list-tests: New files.
24286         * modules/rbtree-list, modules/rbtree-list-tests: New files.
24287         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
24288         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
24289         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
24290         * modules/oset: New file.
24291         * modules/array-oset: New file.
24292         * modules/avltree-oset, modules/avltree-oset-tests: New files.
24293         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
24294         * tests/test-carray_list.c: New file.
24295         * tests/test-linked_list.c: New file.
24296         * tests/test-avltree_list.c: New file.
24297         * tests/test-rbtree_list.c: New file.
24298         * tests/test-linkedhash_list.c: New file.
24299         * tests/test-avltreehash_list.c: New file.
24300         * tests/test-rbtreehash_list.c: New file.
24301         * tests/test-avltree_oset.c: New file.
24302         * tests/test-rbtree_oset.c: New file.
24303         * MODULES.html.sh (Container data structures): New section.
24304
24305 2006-07-17  Bruno Haible  <bruno@clisp.org>
24306
24307         * m4/gl_list.m4: New file.
24308
24309 2006-07-17  Bruno Haible  <bruno@clisp.org>
24310
24311         * lib/gl_list.h: New file.
24312         * lib/gl_list.c: New file.
24313         * lib/gl_array_list.h: New file.
24314         * lib/gl_array_list.c: New file.
24315         * lib/gl_carray_list.h: New file.
24316         * lib/gl_carray_list.c: New file.
24317         * lib/gl_linked_list.h: New file.
24318         * lib/gl_linked_list.c: New file.
24319         * lib/gl_anylinked_list1.h: New file.
24320         * lib/gl_anylinked_list2.h: New file.
24321         * lib/gl_avltree_list.h: New file.
24322         * lib/gl_avltree_list.c: New file.
24323         * lib/gl_anyavltree_list1.h: New file.
24324         * lib/gl_anyavltree_list2.h: New file.
24325         * lib/gl_rbtree_list.h: New file.
24326         * lib/gl_rbtree_list.c: New file.
24327         * lib/gl_anyrbtree_list1.h: New file.
24328         * lib/gl_anyrbtree_list2.h: New file.
24329         * lib/gl_anytree_list1.h: New file.
24330         * lib/gl_anytree_list2.h: New file.
24331         * lib/gl_linkedhash_list.h: New file.
24332         * lib/gl_linkedhash_list.c: New file.
24333         * lib/gl_anyhash_list1.h: New file.
24334         * lib/gl_anyhash_list2.h: New file.
24335         * lib/gl_avltreehash_list.h: New file.
24336         * lib/gl_avltreehash_list.c: New file.
24337         * lib/gl_rbtreehash_list.h: New file.
24338         * lib/gl_rbtreehash_list.c: New file.
24339         * lib/gl_anytreehash_list1.h: New file.
24340         * lib/gl_anytreehash_list2.h: New file.
24341
24342         * lib/gl_oset.h: New file.
24343         * lib/gl_oset.c: New file.
24344         * lib/gl_array_oset.h: New file.
24345         * lib/gl_array_oset.c: New file.
24346         * lib/gl_avltree_oset.h: New file.
24347         * lib/gl_avltree_oset.c: New file.
24348         * lib/gl_rbtree_oset.h: New file.
24349         * lib/gl_rbtree_oset.c: New file.
24350         * lib/gl_anytree_oset.h: New file.
24351
24352 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24353
24354         * m4/mkancesdirs.m4: New file.
24355         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
24356         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
24357         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
24358         it.
24359
24360 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24361
24362         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
24363         * lib/mkancesdirs.h: New files.
24364         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
24365         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
24366         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
24367         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
24368         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
24369         callers changed.  Revamp internals significantly, by not
24370         attempting to create directories that are temporarily more
24371         permissive than the final results.  Do not attempt to use
24372         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
24373         This removes some race conditions, fixes some bugs, and simplifies
24374         things.  Use new dirchownmod function to do owner and mode changes.
24375         * lib/mkdir-p.h: Likewise.
24376         * lib/modechange.c (octal_to_mode): New function.
24377         (struct mode_change): New member mentioned.
24378         (make_node_op_equals): New arg mentioned.  All callers changed.
24379         (mode_compile): Keep track of which mode bits the user has explicitly
24380         mentioned.
24381         (mode_adjust): New arg DIR, so that we implement the X op correctly.
24382         New arg PMODE_BITS, to keep track of which mode bits the user
24383         mentioned; it treats S_ISUID and S_ISGID speciall.
24384         All callers changed.
24385         * lib/modechange.h: Likewise.
24386
24387 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24388
24389         * MODULES.html.sh: Add mkancestors.
24390         * modules/mkancesdirs: New module.
24391         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
24392         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
24393         The chdir-safer and afs files are now orphans; I'll remove them
24394         unless someone speaks up.
24395         Add lib/dirchownmod.c, lib/dirchownmod.h.
24396         (Depends-on): Remove alloca, chown, save-cwd, dirname.
24397         Add lchown, mkancesdirs.
24398         (Maintainer): Add self.
24399
24400 2006-07-15  Karl Berry  <karl@gnu.org>
24401
24402         * gnulib-tool: help message wording/arrangement.
24403
24404 2006-07-14  Simon Josefsson  <jas@extundo.com>
24405
24406         * doc/gnulib.texi (Libtool and Windows): New section.
24407
24408 2006-07-12  Simon Josefsson  <jas@extundo.com>
24409
24410         * modules/gendocs (License): Fix license, approved by Karl.
24411
24412 2006-07-12  Eric Blake  <ebb9@byu.net>
24413
24414         * MODULES.html.sh: Add gendocs.
24415
24416 2006-07-11  Eric Blake  <ebb9@byu.net>
24417
24418         * modules/fdl: New module, to install doc/fdl.texi.
24419         * MODULES.html.sh: Add new section for documentation modules.
24420         * gnulib-tool: Avoid space-tab.
24421         (--doc-base): New option, to manage files from doc.
24422
24423 2006-07-11  Eric Blake  <ebb9@byu.net>
24424
24425         * m4/absolute-header.m4: Fix comments to match recent change.
24426
24427 2006-07-11  Eric Blake  <ebb9@byu.net>
24428
24429         * gnulib-tool: List --doc-base before --tests-base.
24430
24431 2006-07-11  Derek R. Price  <derek@ximbiot.com>
24432
24433         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
24434
24435 2006-07-11  Bruno Haible  <bruno@clisp.org>
24436
24437         * README: Mention where to put documentation.
24438
24439 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24440
24441         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
24442
24443 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24444
24445         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
24446         to stdint.m4.
24447
24448 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24449
24450         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
24451         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
24452         "no/such/file/stdint.h" when there is no such file, so that
24453         the resulting C code can be parsed by dodgy compilers.
24454         Problems reported by Bob Proulx.
24455
24456 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24457
24458         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
24459         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24460         macros into the GNU _D_EXACT_NAMLEN.
24461         * lib/savedir.c:  Likewise.
24462         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
24463
24464 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24465         and Paul Eggert  <eggert@cs.ucla.edu>
24466
24467         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
24468         * m4/savedir.m4:
24469         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24470         macros into the GNU _D_EXACT_NAMLEN.
24471
24472 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24473
24474         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
24475         around the absolute name, to work around a problem with the HP-UX
24476         11.23 native C compiler, reported by Bob Proulx.
24477
24478 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24479
24480         * doc/maintain.texi, make-stds.texi: Sync from
24481         <http://savannah.gnu.org/projects/gnustandards>.
24482
24483 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24484
24485         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
24486
24487 2006-07-09  Jim Meyering  <jim@meyering.net>
24488
24489         * m4/glob.m4: Remove a doubled word in a comment.
24490
24491 2006-07-09  Jim Meyering  <jim@meyering.net>
24492
24493         * lib/argp-pv.c: Remove a doubled word in a comment.
24494         * lib/check-version.c (check_version): Likewise.
24495         * lib/javacomp.c (compile_java_class): Likewise.
24496
24497 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
24498
24499         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
24500         for the benefit of people using Autoconf 2.60.  If you want to
24501         support older Autoconf versions you can copy m4/onceonly_2_57.m4
24502         (or m4/onceonly.m4, if pre-2.57) manually.
24503
24504 2006-07-08  Jim Meyering  <jim@meyering.net>
24505
24506         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
24507         comment.
24508         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
24509         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
24510         comment.
24511
24512 2006-07-08  Jim Meyering  <jim@meyering.net>
24513
24514         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
24515
24516 2006-07-07  Simon Josefsson  <jas@extundo.com>
24517
24518         * tests/test-crc.c: Change expected crc value, the test vector
24519         were probably computed using the old broken crc.c?
24520
24521 2006-07-06  Simon Josefsson  <jas@extundo.com>
24522
24523         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
24524         now the canonical place for the M4 file).
24525
24526         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
24527         from the sys_socket dependency now.
24528
24529         * modules/inet_pton (Files): Ditto.
24530
24531         * modules/inet_ntop (Files): Ditto.
24532
24533 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24534
24535         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
24536         not gl_PREREQ_GETUSERSHELL.
24537
24538 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24539
24540         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
24541         with only one argument, for Autoconf 2.60.
24542         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
24543         expand to nothing, so add a shell command to avoid syntax error.
24544         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
24545
24546 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24547
24548         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
24549
24550 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24551
24552         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
24553         no longer needed.  Check for isblank decl.
24554         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
24555         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
24556         of existence.
24557
24558 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24559
24560         * lib/getloadavg.c: Use __VMS, not VMS.
24561         * lib/getopt.c: Likewise.
24562         * lib/getpagesize.h: Likewise.
24563         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
24564         and probably does not work.
24565
24566 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24567
24568         * lib/.cppi-disable: Add wcwidth.
24569         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
24570         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
24571         (ISGRAPH): Remove.  All uses changed to isgraph.
24572         (FOLD) [!defined _LIBC]: Remove special case.
24573         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
24574         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
24575         HAVE_ISBLANK.
24576         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
24577         case.
24578
24579 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
24580
24581         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
24582         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
24583         brackets.  Other minor changes to suppress some compiler
24584         warnings.
24585
24586 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24587         and Paul Eggert  <eggert@cs.ucla.edu>
24588
24589         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
24590         of invoking obsolescent AC_HEADER_DIRENT macro.
24591         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
24592         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
24593         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
24594         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
24595         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
24596         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
24597         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
24598         * m4/readdir.m4: Remove; no longer needed.
24599
24600 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24601         and Paul Eggert  <eggert@cs.ucla.edu>
24602
24603         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
24604         Don't worry about this obsolete case any more.
24605         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
24606         directories.
24607         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
24608         worry about this obsolete case any more.
24609         * lib/fts.c: Likewise.
24610         * lib/getcwd.c: Likewise.
24611         * lib/glob.h: Likewise.
24612         * lib/savedir.c: Likewise.
24613
24614 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24615
24616         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
24617         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
24618         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
24619         needed.
24620         All uses removed.
24621         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24622         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24623         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
24624         needed.
24625         * m4/getdate.m4 (gl_GETDATE): Likewise.
24626         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24627         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24628         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24629         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24630         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24631         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24632         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
24633         needed.
24634
24635 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24636
24637         * lib/memcasecmp.c: Include <limits.h>.
24638         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
24639         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
24640         Don't assume isdigit succeeds only on '0' through '9'.
24641
24642 2006-07-05  Eric Blake  <ebb9@byu.net>
24643
24644         * modules/getaddrinfo (Depends-on): Add snprintf.
24645
24646 2006-07-05  Eric Blake  <ebb9@byu.net>
24647
24648         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
24649         to avoid 'header present but could not be compiled' on cygwin.
24650
24651 2006-07-05  Eric Blake  <ebb9@byu.net>
24652
24653         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
24654         missing from netdb.h.
24655         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
24656
24657 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24658
24659         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
24660         no longer needed.
24661         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
24662         * m4/getdate.m4 (gl_GETDATE): Likewise.
24663         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24664         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24665         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24666         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24667         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24668
24669 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24670
24671         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
24672         All uses of is_space replaced by isspace.
24673         * lib/exit.h: Don't talk about STDC_HEADERS.
24674         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
24675         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
24676         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
24677         replaced by isprint etc.
24678         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
24679         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24680         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
24681         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
24682         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
24683         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24684
24685 2006-07-05  Bruno Haible  <bruno@clisp.org>
24686
24687         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
24688         the function exists, before testing against AIX.
24689         Reported by Martin Lambers <marlam@marlam.de>.
24690
24691 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24692
24693         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
24694         From Mark D. Baushke.
24695
24696 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24697
24698         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
24699         to the absolute name, not just one, to bypass Sun C 5.8's
24700         "warning: #include of /usr/include/... may be non-portable".
24701
24702 2006-07-04  Eric Blake  <ebb9@byu.net>
24703
24704         * modules/dirname-tests: New test module.
24705         * tests/test-dirname.c: New file, replacing dirname.c
24706         TEST_DIRNAME section that was recently deleted.
24707
24708 2006-07-04  Bruno Haible  <bruno@clisp.org>
24709
24710         Assume ANSI C header files and <ctype.h> functions.
24711         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
24712         (mbsnwidth): Use isprint, iscntrl instead.
24713
24714 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24715
24716         Merge from coreutils.
24717         * MODULES.html.sh: Add xstrtold.
24718         * modules/xstrtold: New file.
24719         * modules/cycle-check (Files): Add lib/same-inode.h.
24720         * modules/dirname (Files): Add m4/double-slash-root.m4.
24721         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
24722         * modules/mkdir-p (Files): Add lib/same-inode.h.
24723         * modules/same (Files): Add lib/same-inode.h.
24724
24725 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24726
24727         * m4/absolute-header.m4: Renamed from full-header-path.m4.
24728         This is to keep the terminology clean; POSIX talks about
24729         "absolute pathnames", not "full pathnames", but the GNU
24730         Coding Standards say to use "path" for something else;
24731         so use "absolute" to keep both sides happy.
24732         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
24733         Set gl_absolute_header, not gl_full_header_path.
24734         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
24735         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
24736         All uses changed.
24737
24738         Merge from coreutils.
24739
24740         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24741
24742         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
24743         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
24744         want to require the building of c-strtod.o.
24745         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
24746         needs -lm directly.
24747         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
24748
24749         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
24750
24751         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
24752         --as-needed option if available.  Problem reported by Albert Chin in
24753         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
24754         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
24755         cc merely issues a bunch of annoying warnings for --as-needed
24756         (this problem was reported by Bob Proulx).  Also, try linking with
24757         -lm to detect a bug in binutils 2.16 (this problem was reported
24758         by Ralf Wildenhues).
24759
24760         2006-06-18  Jim Meyering  <jim@meyering.net>
24761
24762         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
24763         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
24764         macro.
24765         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
24766         also check for glibc-2.4's abort-inducing bug.
24767
24768         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
24769         Low-probability clean-up should be to use rmdir to get rid of
24770         the just-created directory, not unlink.
24771
24772         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
24773         configure fail, and request a bug report to inform us about it.
24774         Add a comment that, barring reports to the contrary, in 2007 we'll
24775         assume ftruncate is universally available.
24776
24777         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24778
24779         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
24780
24781         2006-03-12  Jim Meyering  <jim@meyering.net>
24782
24783         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
24784         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
24785         * m4/same.m4 (gl_SAME): Likewise.
24786         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
24787
24788         2006-03-11  Eric Blake  <ebb9@byu.net>
24789
24790         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
24791         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
24792         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
24793         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
24794
24795 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24796
24797         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
24798         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
24799         reported by Mark D. Baushke, one in
24800         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
24801
24802         Merge from coreutils.
24803
24804         * lib/.cppi-disable: Add stdint_.h.
24805         * lib/.cvsignore: Add stdint.h.
24806
24807         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24808
24809         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
24810         both double and long double versions.
24811         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
24812         * lib/xstrtold.c: New file.
24813         * lib/xstrtod.h (xstrtold): New decl.
24814
24815         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
24816
24817         * lib/filemode.c (setst): Remove.
24818         (strmode): Rewrite to avoid setst.  This makes the code shorter,
24819         (arguably) clearer, and the generated code is a bit smaller on my
24820         Debian GNU/Linux stable x86 host.
24821
24822         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24823
24824         * lib/filemode.c: Include "filemode.h" first, to test the interface.
24825         Assume that filemode.h includes sys/types.h and sys/stat.h.
24826         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
24827         (ftypelet): Reorder to put common cases first, for efficiency.
24828         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
24829         to do 'M'.
24830         (strmode): Renamed from mode_string, and now stores 12 bytes instead
24831         of 10, for compatibility with FreeBSD.  All callers changed.
24832         (filemodestring): Now stores 12 bytes instead of 10, and sets file
24833         types that can't be deduced solely from st_mode.  First arg is now a
24834         const pointer.
24835         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
24836         (strmode): Renamed from mode_string.
24837         (filemodestring): New decl.
24838         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
24839         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
24840         needed.
24841         (S_ISPORT, S_ISWHT): New macros, if not already defined.
24842
24843         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
24844
24845         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
24846         fsusage.h now does that.  Include fsusage.h first, to test interface.
24847         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
24848         at most one method (the old code could have generated decls that
24849         didn't conform to C89, not that this was ever exercised).
24850         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
24851
24852         2006-03-19  Jim Meyering  <jim@meyering.net>
24853
24854         Work even in a chroot where d_ino values for entries in "/"
24855         don't match the stat.st_ino values for the same names.
24856         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
24857         number, iterate through all entries again, using lstat instead.
24858         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
24859         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
24860
24861         * lib/getcwd.c (__getcwd): Clarify a comment.
24862         Use memcpy in place of a call to strcpy.
24863
24864         2006-03-12  Jim Meyering  <jim@meyering.net>
24865
24866         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
24867         matches that of the current directory (which we're about to chdir ".."
24868         out of), then save the dev-ino of the parent, instead.
24869
24870         * lib/same-inode.h (SAME_INODE): New file/macro.
24871         * lib/chdir-safer.c (SAME_INODE): Remove definition.
24872         Include "same-inode.h", instead.
24873         * lib/same.c: Likewise.
24874         * lib/cycle-check.h: Include "same-inode.h".
24875         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
24876         * lib/cycle-check.c (SAME_INODE): Remove definition.
24877         * lib/root-dev-ino.h: Include "same-inode.h".
24878
24879         2006-03-11  Eric Blake  <ebb9@byu.net>
24880
24881         * lib/same.c (same_name): s/base_name/last_component/
24882         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
24883         * lib/filenamecat.c (file_name_concat): Likewise.
24884
24885         2006-03-11  Eric Blake  <ebb9@byu.net>,
24886                     Paul Eggert  <eggert@cs.ucla.edu>
24887
24888         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
24889         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
24890         drive prefix.
24891         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
24892         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
24893         (last_component): New method.
24894         * lib/dirname.c (dir_len): Determine when drive letters need a
24895         subsequent slash.  Preserve // when it is special.
24896         (dir_name): Don't append dot when drive letter is absolute.
24897         [TEST_DIRNAME]: Move into a full-blown gnulib test.
24898         * lib/basename.c (base_name): New semantics - malloc the result.
24899         Preserve // when it is special.  Preserve relative files that look
24900         like drive letters.
24901         (base_len): Preserve // when it is special.
24902         (last_component): New method, similar to old base_name semantics.
24903         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
24904         base_name.  Strip redundant slashes from ///.
24905
24906 2006-07-03  Jim Meyering  <jim@meyering.net>
24907
24908         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
24909         macro is used before the first cycle_check call.
24910
24911 2006-07-03  Eric Blake  <ebb9@byu.net>
24912
24913         * modules/dirname (Depends-on): Add xstrndup.
24914
24915 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
24916
24917         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
24918         test cases, so that config.log is a bit easier to follow.
24919
24920 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
24921
24922         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
24923         both are 64 bits, since this seems to be the tradition, and this
24924         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
24925         we ever run into a host that prefers long long to long in this
24926         case, we'll need another configure-time test.  Problem reported by
24927         Jim Meyering.
24928
24929 2006-07-02  Eric Blake  <ebb9@byu.net>
24930
24931         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
24932
24933 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24934
24935         * modules/inttypes (Depends-on): No longer depends on stdint.
24936         * modules/stdint (Description): Say more about assumptions.
24937         Say that the fast types might differ.  Say macros are used.
24938         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
24939         (Makefile.am): Revise list of substituted symbols to match
24940         new stdint.m4.
24941         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
24942         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
24943         * tests/test-stdint.c (verify_same_types)
24944         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
24945         the code conforms to C99/C89.
24946         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
24947         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
24948
24949 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24950
24951         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
24952         but fix a bug, by requiring at least 64 bits.
24953         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
24954         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
24955         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
24956         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
24957
24958         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
24959         changes.  Make 2.59 a prerequisite.  Check and substitute for
24960         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
24961         inttypes.h.  Do not use special include files; just use the
24962         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
24963         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
24964         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
24965         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
24966         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
24967         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
24968         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
24969         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
24970         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
24971         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
24972         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
24973         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
24974         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
24975         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
24976         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
24977         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
24978         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
24979         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
24980         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
24981         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
24982         WINT_MAX.  Check for C99 conformance more strictly, by detecting
24983         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
24984         not check for things that C99 does not require, e.g., int8_t.  If
24985         a test isn't needed unless <stdint.h> isn't working, and is
24986         unlikely to be needed for any other reason, then don't do it
24987         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
24988         size_t, since we assume C89 freestanding at least.  Do not check
24989         for sig_atomic_t, wchar_t, or wint_t, since the code now does
24990         the right thing even if the types are not defined.  Instead use:
24991         (gl_STDINT_TYPE_PROPERTIES): New macro.
24992         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
24993         testing whether <sys/types.h> clashes, as Autoconf does this for
24994         us now.  All uses removed.
24995         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
24996         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
24997         (gl_CHECK_TYPE_SAME):
24998         Remove; no longer needed.
24999         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
25000         exists, since we'll return 0 anyway in that case.
25001         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
25002
25003 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
25004
25005         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
25006         possible collision with system files.
25007         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
25008         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
25009         WCHAR_MIN and WCHAR_MAX in this case.
25010         (<stddef.h>): Do not include; no longer needed.
25011         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
25012         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
25013         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
25014         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
25015         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
25016         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
25017         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
25018         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
25019         !defined(__c99))]: Include in this case too, since it's harmless
25020         now.
25021         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
25022         dangerous to do so.
25023         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
25024         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
25025         (_STDINT_MIN, _STDINT_MAX): New macros.
25026         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
25027         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
25028         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
25029         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
25030         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
25031         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
25032         macros, not typedefs; this simplifies things quite a bit.
25033         Use long int for all types narrower than int64_t.
25034         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
25035         Define in terms of long long int or int64_t or long int,
25036         not int64_t or int32_t.  This saves some compile-time testing.
25037         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
25038         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
25039         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
25040         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
25041         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
25042         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
25043         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
25044         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
25045         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
25046         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
25047         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
25048         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
25049         undef any previous version and define our own version, for
25050         simplicity and consistency with the new macros for types.
25051         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
25052         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
25053         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
25054         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
25055         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
25056         @WINT_T_SUFFIX@ to keep things simple here.
25057         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
25058         Simplify by assuming typical 8/16/32/64 host, since we're
25059         already doing that elsewhere anyway.
25060         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
25061         and assume long long int is 64 bits if available.  This
25062         speeds up 'configure'.
25063
25064 2006-07-01  Eric Blake  <ebb9@byu.net>
25065
25066         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
25067         Reported by Andreas Buening.
25068
25069 2006-07-01  Eric Blake  <ebb9@byu.net>
25070
25071         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
25072
25073 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
25074
25075         * lib/getaddrinfo.c: fixed typo
25076
25077 2006-06-29  Jim Meyering  <jim@meyering.net>
25078
25079         * modules/strftime (Maintainer): Add my name, since with the
25080         FPRINTFTIME changes strftime.c has forked from glibc.
25081
25082 2006-06-29  Eric Blake  <ebb9@byu.net>
25083
25084         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
25085
25086 2006-06-29  Eric Blake  <ebb9@byu.net>
25087
25088         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
25089
25090 2006-06-29  Eric Blake  <ebb9@byu.net>
25091
25092         * lib/stat_.h: New file.
25093
25094 2006-06-29  Eric Blake  <ebb9@byu.net>
25095
25096         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
25097         unused static function.
25098
25099 2006-06-29  Eric Blake  <ebb9@byu.net>
25100
25101         * doc/functions.texi (Function Portability): Document missing lstat
25102         on mingw.
25103
25104 2006-06-29  Eric Blake  <ebb9@byu.net>
25105
25106         * MODULES.html.sh: Add sys_stat.
25107         * modules/sys_stat: New module.
25108         * modules/mkstemp (Depends-on): Add sys_stat.
25109
25110 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25111
25112         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
25113
25114 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25115
25116         * m4/c-bs-a.m4: Removed.
25117
25118 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25119
25120         * lib/strftime.c: Assume strftime() exists.
25121
25122 2006-06-29  Derek Price  <derek@ximbiot.com>
25123
25124         * modules/c-bs-a: Removed - \a is C89.
25125         * MODULES.html.sh: Remove c-bs-a.
25126
25127 2006-06-29  Bruno Haible  <bruno@clisp.org>
25128
25129         * modules/wcwidth (License): Change to LGPL.
25130
25131 2006-06-28  Simon Josefsson  <jas@extundo.com>
25132
25133         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
25134         on _WIN32.
25135
25136         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
25137         getnameinfo.
25138
25139 2006-06-28  Simon Josefsson  <jas@extundo.com>
25140
25141         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
25142
25143 2006-06-28  Simon Josefsson  <jas@extundo.com>
25144
25145         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
25146         functions there.  It will succeed on Windows XP, but on Windows
25147         2000 and (presumably) earlier, it will fail, and use the internal
25148         re-implementation.
25149         (use_win32_p): New function.
25150         (getaddrinfo): Use strtoul on servname, to support numeric ports.
25151         Support AI_NUMERICSERV to disable getservbyname.
25152         (getnameinfo): New function, only supports
25153         NI_NUMERICHOST|NI_NUMERICSERV for now.
25154
25155         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
25156         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
25157         getnameinfo.
25158
25159 2006-06-28  Eric Blake  <ebb9@byu.net>
25160
25161         * modules/wcwidth: New file.
25162         * modules/mbchar (Depends-on): Add wcwidth.
25163         * modules/mbswidth (Depends-on): Add wcwidth.
25164         * MODULES.html.sh: Add wcwidth.
25165
25166 2006-06-28  Eric Blake  <ebb9@byu.net>
25167
25168         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
25169         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
25170
25171 2006-06-28  Eric Blake  <ebb9@byu.net>
25172
25173         * lib/xvasprintf.h: Fix comments.
25174
25175 2006-06-28  Eric Blake  <ebb9@byu.net>
25176
25177         * lib/mbchar.h (wcwidth): Include wcwidth.h.
25178         * lib/mbswidth.c (wcwidth): Move from here...
25179         * lib/wcwidth.h: ...to this new file.
25180
25181 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25182
25183         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
25184
25185         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
25186         it's obsolete.
25187         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
25188
25189 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25190
25191         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
25192         Autoconf 2.60 says this stuff was obsolete.
25193
25194 2006-06-28  Bruno Haible  <bruno@clisp.org>
25195
25196         * modules/wcwidth (Files): Add m4/wchar_t.m4.
25197
25198 2006-06-28  Bruno Haible  <bruno@clisp.org>
25199
25200         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
25201         gt_TYPE_WCHAR_T.
25202
25203 2006-06-28  Bruno Haible  <bruno@clisp.org>
25204
25205         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
25206         declaration for wcwidth.
25207         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
25208
25209 2006-06-28  Bruno Haible  <bruno@clisp.org>
25210
25211         * lib/mkdtemp.c [MINGW]: Include <io.h>.
25212         (mkdir): Define using _mkdir.
25213
25214 2006-06-28  Bruno Haible  <bruno@clisp.org>
25215
25216         * lib/getaddrinfo.h: Fix POSIX URL.
25217         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
25218         _WIN32.
25219         (use_win32_p): Make static.
25220         (getaddrinfo): Reject service name if it is empty or does not consist
25221         solely of decimal digits, or if its value is > 65535.
25222         (getnameinfo): Remove useless casts.
25223
25224 2006-06-27  Simon Josefsson  <jas@extundo.com>
25225
25226         * modules/sys_select: New file, suggested by Bruno Haible, Paul
25227         Eggert and Martin Lambers.
25228
25229 2006-06-27  Simon Josefsson  <jas@extundo.com>
25230
25231         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
25232         Eggert and Martin Lambers.
25233
25234 2006-06-27  Bruno Haible  <bruno@clisp.org>
25235
25236         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
25237         result to 0, not to empty.
25238         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
25239
25240 2006-06-27  Bruno Haible  <bruno@clisp.org>
25241
25242         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
25243
25244 2006-06-26  Simon Josefsson  <jas@extundo.com>
25245
25246         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
25247         present.
25248
25249 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
25250
25251         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
25252         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
25253         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
25254
25255 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
25256
25257         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
25258
25259 2006-06-26  Bruno Haible  <bruno@clisp.org>
25260
25261         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
25262
25263 2006-06-26  Bruno Haible  <bruno@clisp.org>
25264
25265         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
25266
25267 2006-06-26  Bruno Haible  <bruno@clisp.org>
25268
25269         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
25270         SGI C compiler in pre-C99 mode.
25271         Suggested by Mark D. Baushke and Larry Jones.
25272
25273 2006-06-26  Bruno Haible  <bruno@clisp.org>
25274
25275         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
25276         WCHAR_MAX.
25277         Reported by Mark D. Baushke and Larry Jones.
25278
25279 2006-06-26  Bruno Haible  <bruno@clisp.org>
25280
25281         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
25282         in pre-C99 mode.
25283         Suggested by Mark D. Baushke and Larry Jones.
25284
25285 2006-06-23  Simon Josefsson  <jas@extundo.com>
25286             Bruno Haible  <bruno@clisp.org>
25287
25288         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
25289         Emit mostlyclean-local rule.
25290         (func_emit_tests_Makefile_am): Likewise.
25291         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
25292
25293 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
25294
25295         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
25296
25297 2006-06-23  Bruno Haible  <bruno@clisp.org>
25298
25299         * tests/test-stdint.c: Update to match ISO C 99 Technical
25300         Corrigendum 1.
25301
25302 2006-06-23  Bruno Haible  <bruno@clisp.org>
25303
25304         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
25305
25306 2006-06-23  Bruno Haible  <bruno@clisp.org>
25307
25308         * lib/stdint_.h: Treat IRIX like OpenBSD.
25309
25310 2006-06-23  Bruno Haible  <bruno@clisp.org>
25311
25312         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
25313         ISO C 99 Technical Corrigendum 1.
25314
25315 2006-06-22  Simon Josefsson  <jas@extundo.com>
25316
25317         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
25318         MinGW.
25319
25320 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25321
25322         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
25323         needed.  Some compiler complained about some of them.  Problem reported
25324         by Larry Jones in
25325         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
25326
25327 2006-06-21  Simon Josefsson  <jas@extundo.com>
25328
25329         * tests/test-getaddrinfo.c: New file.
25330
25331         * modules/getaddrinfo-tests: New file.
25332
25333         * MODULES.html.sh: Add inet_pton.
25334
25335         * modules/inet_pton: New file.
25336
25337 2006-06-21  Simon Josefsson  <jas@extundo.com>
25338
25339         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
25340         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
25341         of using the (limited) gnulib implementation on Windows XP.
25342
25343         * m4/inet_pton.m4: New file.
25344
25345 2006-06-21  Simon Josefsson  <jas@extundo.com>
25346
25347         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
25348         variable.
25349
25350         * lib/socket_.h: Don't define WINVER.
25351
25352         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
25353         slightly modified to work in gnulib.
25354
25355 2006-06-21  Simon Josefsson  <jas@extundo.com>
25356
25357         * doc/gnulib.texi (Windows sockets): Add.
25358
25359 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
25360
25361         * lib/read-file.c (fread_file): Start with buffer allocation of
25362         0 bytes rather than 1 byte; this simplifies the code.
25363         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
25364         code to free buffer and save/restore errno.
25365         (internal_read_file): Remove unused local.
25366
25367 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
25368
25369         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
25370         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
25371         Problem reported by Denis Excoffier in
25372         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
25373
25374 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25375
25376         * modules/sys_socket, modules/socklen: Include sys/types since
25377         FreeBSD 4.x's sys/socket.h needs it.
25378
25379 2006-06-19  Simon Josefsson  <jas@extundo.com>
25380
25381         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
25382
25383 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
25384
25385         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
25386
25387 2006-06-19  Bruno Haible  <bruno@clisp.org>
25388
25389         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
25390         and FULL_PATH_INTTYPES_H in angle brackets.
25391         Reported by Mark D. Baushke <mdb@gnu.org>.
25392
25393 2006-06-17  Eric Blake  <ebb9@byu.net>
25394
25395         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
25396         errno.
25397
25398 2006-06-17  Bruno Haible  <bruno@clisp.org>
25399
25400         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
25401         <sys/inttypes.h>.
25402
25403 2006-06-17  Bruno Haible  <bruno@clisp.org>
25404
25405         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
25406         whether errno is declared. Assume <errno.h> declares errno.
25407
25408 2006-06-17  Bruno Haible  <bruno@clisp.org>
25409
25410         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
25411
25412 2006-06-17  Bruno Haible  <bruno@clisp.org>
25413
25414         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
25415         problem on Solaris 2.5.1.
25416
25417 2006-06-16  Eric Blake  <ebb9@byu.net>
25418
25419         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
25420         * lib/unicodeio.c [!defined errno]: Likewise.
25421         * lib/strtol.c [!defined errno]: Likewise.
25422         * lib/strtod.c [!defined errno]: Likewise.
25423
25424 2006-06-15  Eric Blake  <ebb9@byu.net>
25425
25426         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
25427
25428 2006-06-15  Eric Blake  <ebb9@byu.net>
25429
25430         * config/srclist.txt (ssize_t.m4): Lose sync.
25431
25432 2006-06-15  Bruno Haible  <bruno@clisp.org>
25433
25434         * modules/stdint (Files): Include m4/full-header-path.m4,
25435         m4/size_max.m4, m4/wchar_t.m4.
25436         (Makefile.am): Many more substitutions.
25437         * modules/stdint-tests: New file.
25438         * tests/test-stdint.c: New file.
25439
25440 2006-06-15  Bruno Haible  <bruno@clisp.org>
25441
25442         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
25443         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
25444         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
25445         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
25446         gl_CHECK_TYPE_SAME): New macros.
25447
25448 2006-06-15  Bruno Haible  <bruno@clisp.org>
25449
25450         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
25451
25452 2006-06-15  Bruno Haible  <bruno@clisp.org>
25453
25454         * lib/stdint_.h: Rewritten to be fully auto-configured.
25455         Fixes bug on HP-UX/IA64.
25456
25457 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
25458
25459         * lib/getdate.y (__attribute__): Don't define if already defined.
25460         Problem reported by Larry Jones.
25461         * lib/utimens.c (__attribute__): Likewise.
25462
25463 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
25464
25465         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
25466         reported by Andreas Schwab.
25467
25468 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25469             Bruno Haible  <bruno@clisp.org>
25470
25471         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
25472         check for the declaration of strnlen and a run test that exposes the
25473         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
25474         rpl_strndup.
25475
25476 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25477             Bruno Haible  <bruno@clisp.org>
25478
25479         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
25480
25481 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25482
25483         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
25484         compile test, for Tru64 4.0D.
25485
25486 2006-05-28  Karl Berry  <karl@gnu.org>
25487
25488         * config/srclist.txt (printf-args.c): lose sync.
25489
25490 2006-05-26  Martin Lambers  <marlam@marlam.de>
25491
25492         * lib/getpass.c: Updates the test for the native W32 API, and adds
25493         missing includes, thus fixing compilation warnings.
25494
25495 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
25496
25497         * lib/exclude.c (exclude_fnmatch): New function.
25498         (excluded_file_name): Call exclude_fnmatch.
25499         * lib/exclude.h (excluded_file_name): New prototype
25500
25501 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
25502
25503         * lib/tempname.c (small_open, large_open): New macros.
25504         (__open, __open64) [!_LIBC]: Remove.
25505         (__gen_tempname): Use small_open and large_open instead of __open
25506         and __open64.  This fixes a portability bug on HP-UX 11.11i
25507         reported by Simon Wing-Tang in
25508         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
25509
25510 2006-05-24  Bruno Haible  <bruno@clisp.org>
25511
25512         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
25513         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
25514         Reported by Thorsten Maerz <torte@netztorte.de> via
25515         Aaron Stone <aaron@serendipity.cx>.
25516
25517 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25518
25519         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
25520         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
25521         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
25522         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
25523         not really conditional on the cache.
25524         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
25525
25526 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25527
25528         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
25529         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
25530         (my_usleep): Don't mishandle maximum value.
25531
25532 2006-05-19  Jim Meyering  <jim@meyering.net>
25533
25534         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
25535
25536 2006-05-17  Bruno Haible  <bruno@clisp.org>
25537
25538         Cygwin portability.
25539         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
25540
25541 2006-05-17  Bruno Haible  <bruno@clisp.org>
25542
25543         * lib/stdint_.h: Fix recognition of Cygwin.
25544
25545 2006-05-15  Bruno Haible  <bruno@clisp.org>
25546
25547         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
25548         on libtool patch by Ralf Wildenhues.
25549
25550 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25551
25552         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
25553         test for C99 conformance; (bool) 0.5 is an integer constant
25554         expression, but (bool) -0.5 is not.  Problem reported by Fedor
25555         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
25556
25557 2006-05-11  Simon Josefsson  <jas@extundo.com>
25558
25559         * m4/xvasprintf.m4: Fix obvious typo.
25560
25561 2006-05-11  Jim Meyering  <jim@meyering.net>
25562
25563         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
25564         James Lemley.
25565
25566 2006-05-10  Simon Josefsson  <jas@extundo.com>
25567
25568         * lib/md4.c: Typo fix, update copyright years.
25569         (K1, K2): Don't use L because it turn computations into 64-bit on
25570         64-bit platforms.
25571
25572 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
25573
25574         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
25575         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
25576         unwanted sign propagation, e.g., on hosts with 64-bit int.
25577         There still are some problems with reeelly weird theoretical hosts
25578         (e.g., 33-bit int) but it's not worth worrying about now.
25579         * lib/sha1.c (rol): Likewise.
25580         (K1, K2, K3, K4): Remove unnecessary L suffix.
25581
25582 2006-05-10  Bruno Haible  <bruno@clisp.org>
25583
25584         * lib/des.c: Cast to avoid warnings.
25585
25586 2006-05-09  Bruno Haible  <bruno@clisp.org>
25587
25588         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
25589         (Depends-on): Depend also on xsize, stdarg.
25590         (configure.ac): Add gl_XVASPRINTF.
25591
25592 2006-05-09  Bruno Haible  <bruno@clisp.org>
25593
25594         * m4/xvasprintf.m4: New file.
25595
25596 2006-05-09  Bruno Haible  <bruno@clisp.org>
25597
25598         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
25599         (EOVERFLOW): Define fallback value.
25600         (xstrcat): New function.
25601         (xvasprintf): Recognize the special case of a string concatenation.
25602
25603 2006-05-08  Eric Blake  <ebb9@byu.net>
25604
25605         * gnulib-tool (func_version): Base copyright year on CVS date.
25606         (func_emit_copyright_notice): New function.
25607         (func_emit_lib_Makefile_am): Use it.
25608         (func_emit_tests_Makefile_am): Likewise.
25609         (func_import): Likewise.
25610
25611 2006-05-08  Bruno Haible  <bruno@clisp.org>
25612
25613         * modules/stdarg: New file.
25614         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
25615
25616 2006-05-08  Bruno Haible  <bruno@clisp.org>
25617
25618         * m4/stdarg.m4: New file, from GNU gettext.
25619
25620 2006-05-08  Bruno Haible  <bruno@clisp.org>
25621
25622         * config/srclist.txt (build-aux/config.rpath): different from latest
25623         release.
25624
25625 2006-05-08  Bruno Haible  <bruno@clisp.org>
25626
25627         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
25628
25629 2006-05-05  Jim Meyering  <jim@meyering.net>
25630
25631         * m4/warning.m4: New file, derived from bison's file by the same name.
25632
25633 2006-05-03  Bruno Haible  <bruno@clisp.org>
25634
25635         * lib/stdint_.h: Shorter URL.
25636         * lib/inttypes.h: Likewise.
25637
25638 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25639
25640         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
25641
25642 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25643
25644         * lib/verify.h: Document the internals better.  Most of this change
25645         was written by Bruno Haible.
25646
25647 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25648
25649         * doc/verify.texi: New file, partly based on a proposal by
25650         Bruno Haible.
25651
25652 2006-05-02  Bruno Haible  <bruno@clisp.org>
25653
25654         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
25655         test from here...
25656         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
25657
25658 2006-04-29  Bruno Haible  <bruno@clisp.org>
25659
25660         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
25661         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
25662
25663 2006-04-29  Bruno Haible  <bruno@clisp.org>
25664
25665         * gnulib-tool: Make --update option actually work.
25666
25667 2006-04-29  Bruno Haible  <bruno@clisp.org>
25668
25669         * doc/gcd.texi: New file.
25670         * doc/gnulib.texi: Include it.
25671
25672 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
25673
25674         * lib/getdate.y (get_date): When adding relative date, start with the
25675         initial time, not with the result of the first mktime call.
25676
25677 2006-04-25  Bruno Haible  <bruno@clisp.org>
25678
25679         * gnulib-tool (func_import): Output the include directives in three
25680         blocks, sorted separately.
25681         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25682
25683 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25684
25685         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
25686         to define main with arguments, for C++.  Reported by Eric Blake.
25687         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
25688         Prefer 'int main ()' to 'int main (void)', for C++.
25689         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
25690         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
25691         for 'main', for C99 and C++.
25692
25693 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25694
25695         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
25696         Don't assume that exit status -1 is valid.
25697         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
25698         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25699         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
25700         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
25701         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
25702         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
25703         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
25704         functions can be used without declaring them, or that you can
25705         exit with status -1.
25706         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
25707
25708 2006-04-24  Karl Berry  <karl@gnu.org>
25709
25710         * config/srclist.txt (longdouble.m4): sync lost.
25711
25712 2006-04-24  Eric Blake  <ebb9@byu.net>
25713
25714         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
25715
25716 2006-04-24  Bruno Haible  <bruno@clisp.org>
25717
25718         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
25719         poll() implementation in AIX.
25720         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25721
25722 2006-04-24  Bruno Haible  <bruno@clisp.org>
25723
25724         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
25725         assigned exactly once.
25726
25727 2006-04-23  Claudio Fontana  <claudio@gnu.org>
25728             Bruno Haible  <bruno@clisp.org>
25729
25730         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
25731         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
25732         for AM_CPPFLAGS.
25733
25734 2006-04-23  Bruno Haible  <bruno@clisp.org>
25735
25736         * modules/copy-file: Depend on unistd.
25737         * modules/execute: Likewise.
25738         * modules/fatal-signal: Likewise.
25739         * modules/findprog: Likewise.
25740         * modules/mkdtemp : Likewise.
25741         * modules/pipe: Likewise.
25742         * modules/wait-process: Likewise.
25743
25744 2006-04-23  Bruno Haible  <bruno@clisp.org>
25745
25746         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
25747         condition was already detected.
25748         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25749
25750 2006-04-23  Bruno Haible  <bruno@clisp.org>
25751
25752         * lib/copy-file.c: Include <unistd.h> unconditionally.
25753         * lib/execute.c: Likewise.
25754         * lib/fatal-signal.c: Likewise.
25755         * lib/findprog.c: Likewise.
25756         * lib/mkdtemp.c: Likewise.
25757         * lib/pipe.h: Likewise.
25758         * lib/pipe.c: Likewise.
25759         * lib/wait-process.h: Likewise.
25760
25761 2006-04-23  Bruno Haible  <bruno@clisp.org>
25762
25763         * gnulib-tool (func_usage): Fix --import description. Document
25764         --update.
25765         (func_import): Create temporary file in a temporary directory, if
25766         --dry-run is specified. Silence errors from 'grep' when there are no
25767         m4 files in $m4dir.
25768         (func_create_testdir): Silence errors from 'grep' when there are no
25769         m4 files in $m4dir.
25770         Reported by Karl Berry <karl@freefriends.org>.
25771
25772 2006-04-20  Bruno Haible  <bruno@clisp.org>
25773
25774         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
25775         one argument, so that the code will be portable to Autoconf 2.60.
25776         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
25777         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
25778         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
25779
25780 2006-04-19  Derek Price  <derek@ximbiot.com>
25781             Eric Blake  <ebb9@byu.net>
25782
25783         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
25784         rather than "/full/path.h".  Update comment to match.  Shorten &
25785         generalize m4_translit call via AS_TR_CPP.
25786
25787 2006-04-19  Derek Price  <derek@ximbiot.com>
25788             Eric Blake  <ebb9@byu.net>
25789
25790         * lib/inttypes.h: Correct grammar in comment.
25791
25792 2006-04-18  Derek Price  <derek@ximbiot.com>
25793             Paul Eggert  <eggert@cs.ucla.edu>
25794
25795         * modules/inttypes: New file.
25796         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
25797
25798 2006-04-18  Derek Price  <derek@ximbiot.com>
25799             Paul Eggert  <eggert@cs.ucla.edu>
25800
25801         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
25802         New files.
25803
25804 2006-04-18  Derek Price  <derek@ximbiot.com>
25805             Paul Eggert  <eggert@cs.ucla.edu>
25806
25807         * lib/inttypes.h: New file.
25808         * lib/strtoimax.c: Assume <inttypes.h>.
25809
25810 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
25811
25812         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
25813         isn't mounted.  Problem reported by Kir Kolyshkin.
25814
25815 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
25816
25817         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
25818         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
25819         Derek R. Price.
25820         * lib/regex.h (RE_DUP_MAX): Update comment to match current
25821         implementation.
25822
25823 2006-04-12  Eric Blake  <ebb9@byu.net>
25824
25825         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
25826         is now done automatically by the corresponding Autoconf macro.
25827
25828 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
25829
25830         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
25831         time_r.h.
25832
25833 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25834
25835         Merge regex changes from libc, removing some of our
25836         POSIX-conformance changes that were rejected and redoing them in a
25837         less-intrusive way.
25838
25839         * lib/regcomp.c (re_compile_internal, init_dfa):
25840         Length arg is now size_t, not Idx.  All uses changed.
25841         (peek_token): Forward decl now says internal_function.
25842         (__re_error_msgid, __re_error_msgid_idx):
25843         Now static rather than extern with attribute_hidden.
25844         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
25845         For some reason libc prefers K&R style defns for external functions.
25846         (regerror) [!defined _LIBC]: Likewise.
25847         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
25848         (seek_collating_symbol_entry, lookup_collation_sequence_value):
25849         (build_range_exp, build_collating_symbol):
25850         Use K&R-style defn.
25851         (re_compile_fastmap): Use '\0' to memset, not 0.
25852         (utf8_sb_map): Make the calculations more obvious.
25853         (init_dfa, parse_bracket_exp, build_charclass_op):
25854         Call calloc and cast result, as glibc does.
25855         (init_word_char, fetch_token, peek_token, peek_token_bracket):
25856         (build_range_exp, build_collating_symbol):
25857         Now internal functions.
25858
25859         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
25860
25861         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
25862         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
25863         Don't depend on VMS; depend on __VMS instead, for POSIX
25864         namespace cleanness.
25865         (regoff_t): Define to ssize_t, not long int.
25866
25867         Remove the REG_ macros named below.  Instead, make the old names
25868         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
25869         __USE_GNU_REGEX.
25870         (REG_BACKSLASH_ESCAPE_IN_LISTS):
25871         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
25872         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
25873         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
25874         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
25875         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
25876         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
25877         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
25878         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
25879         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
25880         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
25881         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
25882         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
25883         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
25884         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
25885         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
25886         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
25887         (REG_NREGS):
25888         Remove.  All uses replaced by the old RE_* names.
25889         (RE_BACKSLASH_ESCAPE_IN_LISTS):
25890         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
25891         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
25892         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
25893         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
25894         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
25895         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
25896         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
25897         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
25898         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
25899         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
25900         Don't bother having these macros be independent of each others'
25901         values, since they no longer exist in the POSIX name space.
25902
25903         Rename the following member names back to their old names,
25904         unless !__USE_GNU_REGEX.  All uses changed back.
25905         (buffer): Renamed from re_buffer.
25906         (allocated): Renamed from re_allocated.
25907         (used): Renamed from re_used.
25908         (syntax): Renamed from re_syntax.
25909         (fastmap): Renamed from re_fastmap.
25910         (translate): Renamed from re_translate.
25911         (can_be_null): Renamed from re_can_be_null.
25912         (regs_allocated): Renamed from re_regs_allocated.
25913         (fastmap_accurate): Renamed from re_fastmap_accurate.
25914         (no_sub): Renamed from re_no_sub.
25915         (not_bol): Renamed from re_not_bol.
25916         (not_eol): Renamed from re_not_eol.
25917         (newline_anchor): Renamed from re_newline_anchor.
25918         (num_regs): Renamed from rm_num_regs.
25919         (start): Renamed from rm_start.
25920         (end): Renamed from rm_end.
25921
25922         (free_state): Move up a bit.
25923
25924         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
25925         #define to be empty.
25926         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
25927         when that is what is intended.
25928         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
25929         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
25930         (MAX): New macro.
25931         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
25932         All uses changed back to re_malloc, etc.  It's now the caller's
25933         responsibility to check for overflow; all callers changed.
25934         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
25935         (re_x2nrealloc): Remove.
25936         (free_state): Remove decl.
25937
25938         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
25939         (re_set_registers, re_exec):
25940         Use K&R-style defn.
25941
25942         2006-01-31  Roland McGrath  <roland@redhat.com>
25943
25944         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
25945         Reported by Mike Frysinger <vapier@gentoo.org>.
25946
25947         2006-01-15  Andreas Jaeger  <aj@suse.de>
25948
25949         [BZ #1950]
25950         * lib/regex_internal.c (re_string_reconstruct): Adjust for
25951         build_wcs_upper_buffer change.
25952         (build_wcs_upper_buffer): Change return type.
25953
25954         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
25955
25956         * lib/regex_internal.h: Include <stdint.h> if available.
25957
25958         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
25959
25960         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
25961
25962         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
25963
25964         * lib/regcomp.c: Adjust for changed secondary hash function.
25965
25966         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
25967
25968         * lib/regex.h: Pretty printing.
25969         Clean up namespace a bit.
25970
25971         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
25972
25973         * lib/regexec.c (update_cur_sifted_state, check_arrival,
25974         check_arrival_add_next_nodes): Avoid using uninitialized variable.
25975
25976         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25977                     Ulrich Drepper  <drepper@redhat.com>
25978
25979         [BZ #1302]
25980         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
25981         changed.
25982         (bitset_word_t): Renamed from bitset_word.  All uses changed.
25983
25984         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
25985
25986         [BZ #281]
25987         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
25988         * lib/regcomp.c: Remove unnecessary uses of
25989         unsigned RE_TRANSLATE_TYPE.
25990         * lib/regex_internal.h: Likewise.
25991         * lib/regex_internal.c: Likewise.
25992         * lib/regexec.c: Likewise.
25993         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
25994
25995         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
25996
25997         * lib/regexec.c (find_recover_state): Remove unnecessary
25998         initialization.
25999         (transit_state_bkref): Make DFA a const pointer.
26000         (get_subexp): Likewise.
26001         (check_arrival): Likewise.
26002         (update_cur_sifted_state): Likewise.
26003         (re_search_internal): Likewise.
26004         (prune_impossible_nodes): Likewise.
26005         (acquire_init_state_context): Likewise.
26006         (proceed_next_node): Likewise.
26007         (set_regs): Likewise.
26008         (free_fail_stack_return): Likewise.
26009         (check_arrival_expand_ecl): Mark DFA parameter as const.
26010         (check_arrival_expand_ecl_sub): Likewise.
26011         (check_subexp_limits): Likewise.
26012         (sub_epsilon_src_nodes):  Likewise.
26013         (add_epsilon_src_nodes):  Likewise.
26014         (merge_state_array): Likewise.
26015         (update_regs): Likewise.
26016         (build_trtable): Likewise.
26017         (sift_states_backward): Mark MCTX parameter as const.
26018         (build_sifted_states): Likewise.
26019         (update_cur_sifted_state): Likewise.
26020         (sift_states_mkref): Likewise.
26021         (check_arrival_expand_ecl): Mark eclosure as const.
26022         (check_dst_limits_calc_pos_1): Likewise.
26023         * lib/regex_internal.h (re_match_context_t): Make dfa a const
26024         pointer.
26025
26026         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
26027
26028         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
26029         (transit_state_sb): Likewise.
26030         (transit_state_mb): Likewise.
26031         (sift_states_iter_mb): Likewise.
26032         (check_arrival_add_next_nodes): Likewise.
26033         (check_node_accept_bytes): Change first parameter to pointer-to-const.
26034         [_LIBC] (re_search_2_stub): Use mempcpy.
26035
26036         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
26037         mbrtowc for very simple UTF-8 case.
26038
26039         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
26040         a pointer-to-const.
26041         (re_acquire_state_context): Likewise.
26042         * lib/regex_internal.h: Adjust prototypes.
26043
26044         * lib/regex.c: Prevent using C++ compilers.
26045
26046         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
26047         (re_acquire_state_context): Likewise.
26048
26049 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26050
26051         * modules/regex (Depends-on): Add ssize_t.
26052
26053 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26054
26055         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
26056         translation table.
26057
26058 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26059
26060         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
26061
26062 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
26063             Bruno Haible  <bruno@clisp.org>
26064
26065         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
26066         <sys/types.h> and <inttypes.h>.
26067
26068 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26069
26070         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
26071         `__error_t_defined', so argp.h will not typedef the former.
26072
26073 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
26074
26075         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
26076         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
26077         glibc names.  Even if glibc is changed to conform to POSIX, the
26078         traditional names will be available anyway, since regex depends on
26079         the extensions module.  Also, fix a longstanding typo in the
26080         implementation of Spencer ERE test #75 from grep 2.3.  Problems
26081         reported by Emanuele Giaquinta.  Also, change sense of cached
26082         variable, so that the message makes sense.
26083
26084 2006-03-24  Simon Josefsson  <jas@extundo.com>
26085
26086         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
26087         including some doc fixes.
26088         (base64_encode_alloc): Fix +1 bug on allocation failures.
26089
26090 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26091
26092         * lib/base64.c (base64_encode): Do not read past end of array with
26093         unsanitized input on systems with CHAR_BIT > 8.
26094
26095 2006-03-24  Eric Blake  <ebb9@byu.net>
26096
26097         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
26098
26099 2006-03-22  Karl Berry  <karl@gnu.org>
26100
26101         * config/srclist.txt (*setenv.[ch]): get from coreutils.
26102         * config/srclistvars.sh (COREUTILS): new var.
26103
26104 2006-03-17  Jim Meyering  <jim@meyering.net>
26105
26106         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
26107         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
26108
26109 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26110
26111         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
26112         no longer needs it.  Instead, check that regoff_t is as least
26113         as wide as ptrdiff_t.
26114
26115         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
26116         so that our regex.h stays compatible with the installed regex.
26117         This is helpful for installers who configure --without-included-regex.
26118         Problem reported by Emanuele Giaquinta.
26119
26120 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26121
26122         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
26123         Typedef to long int, not to off_, as POSIX will likely change
26124         in that direction.
26125
26126 2006-03-15  Eric Blake  <ebb9@byu.net>
26127
26128         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
26129
26130 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26131
26132         * lib/argp-help.c (validate_uparams): Fix typo
26133         * lib/argp-parse.c (argp_default_options): Consistently begin help
26134         messages with a lowercase letter.
26135
26136 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
26137
26138         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
26139         overrun buffers and shouldn't be used (much as gets shouldn't be
26140         used).
26141         * lib/time_r.c (asctime_r, ctime_r): Likewise.
26142
26143 2006-03-08  Simon Josefsson  <jas@extundo.com>
26144
26145         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
26146         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26147
26148 2006-03-08  Simon Josefsson  <jas@extundo.com>
26149
26150         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
26151         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26152
26153 2006-03-08  Simon Josefsson  <jas@extundo.com>
26154
26155         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
26156         signal that configure disabled the device.
26157
26158 2006-03-08  Simon Josefsson  <jas@extundo.com>
26159
26160         * build-aux/maint.mk: Fix refresh-po, to handle no translated
26161         languages.
26162
26163 2006-03-07  Simon Josefsson  <jas@extundo.com>
26164
26165         * modules/getopt (Depends-on): Add unistd.
26166
26167         * modules/unistd: New file.
26168
26169 2006-03-07  Simon Josefsson  <jas@extundo.com>
26170
26171         * modules/gc-random: New file.
26172
26173 2006-03-07  Simon Josefsson  <jas@extundo.com>
26174
26175         * m4/unistd_h.m4: New file.
26176
26177 2006-03-07  Simon Josefsson  <jas@extundo.com>
26178
26179         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
26180         test to be side-effect free by storing the result in the cache
26181         variable gl_cv_lib_readline, and moving the assignment of
26182         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
26183         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26184
26185 2006-03-07  Simon Josefsson  <jas@extundo.com>
26186
26187         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
26188         error on missing devices (the functions will return an error).
26189
26190         * m4/gc.m4: Move random stuff to gc-random.m4
26191
26192 2006-03-07  Simon Josefsson  <jas@extundo.com>
26193
26194         * lib/unistd_.h: New file.
26195
26196 2006-03-07  Simon Josefsson  <jas@extundo.com>
26197
26198         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
26199
26200 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26201
26202         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
26203         Problem reported by Juan Manuel Guerrero.
26204
26205 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26206
26207         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
26208         the unistd module.
26209         * lib/getlogin_r.c: Likewise.
26210         * lib/getlogin_r.h: Likewise.
26211         * lib/glob.c: Likewise.
26212         * lib/pagealign_alloc.c: Likewise.
26213         * lib/unistd_.h: Remove; no longer needed.
26214
26215 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26216
26217         * MODULES.html.sh (Support for systems lacking POSIX:2001):
26218         Add unistd.
26219         * modules/c-stack (Depends-on): Add unistd.
26220         * modules/getlogin_r: Likewise.
26221         * modules/glob: Likewise.
26222         * modules/pagealign_alloc: Likewise.
26223         * modules/unistd (Files): Remove lib/unistd_.h.
26224         (EXTRA_DIST): Remove.
26225         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
26226         need unistd_.h.
26227         (MOSTLYCLEANFILES): Remove unistd.h-t.
26228
26229 2006-03-03  Simon Josefsson  <jas@extundo.com>
26230
26231         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
26232
26233 2006-03-03  Simon Josefsson  <jas@extundo.com>
26234
26235         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
26236         libidn and bison.
26237
26238 2006-03-03  Simon Josefsson  <jas@extundo.com>
26239
26240         * build-aux/maint.mk: Add indent target.
26241
26242 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
26243
26244         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
26245         our replacement poll.h in any case, to avoid a differing
26246         declaration from a system header.  Seen on AIX.
26247
26248 2006-03-01  Simon Josefsson  <jas@extundo.com>
26249
26250         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
26251         <kasal@ucw.cz>.
26252
26253 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26254
26255         * modules/gettime (Depends-on): Add extensions module.
26256         * modules/nanosleep (Depends-on): Likewise.
26257         * modules/settime (Depends-on): Likewise.
26258
26259 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26260
26261         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
26262         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
26263         pedantically.
26264         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
26265         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
26266
26267         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
26268         not "==".  Reported by Ralf Wildenhues.
26269
26270 2006-03-01  Karl Berry  <karl@gnu.org>
26271
26272         * doc/Copyright/request-*: new files, synced from gnuorg.
26273
26274 2006-03-01  Karl Berry  <karl@gnu.org>
26275
26276         * config/srclist.txt (Copyright/*): new entries.
26277
26278 2006-02-28  Simon Josefsson  <jas@extundo.com>
26279
26280         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
26281
26282 2006-02-27  Simon Josefsson  <jas@extundo.com>
26283
26284         * lib/base64.h: Indent #define's.  From Jim Meyering
26285         <jim@meyering.net>.
26286
26287 2006-02-27  Jim Meyering  <jim@meyering.net>
26288
26289         Revert the change of 2006-02-24, so these files can continue
26290         to be sync'd from gettext.
26291         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
26292         of `config.h'.
26293
26294 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
26295
26296         * modules/intprops: New file.
26297         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
26298         Add intprops.
26299         * modules/getloadavg (Files): Remove lib/intprops.h.
26300         (Depends-on): Add intprops.
26301         * modules/human: Likewise.
26302         * modules/inttostr: Likewise.
26303         * modules/openat: Likewise.
26304         * modules/sig2str: Likewise.
26305         * modules/userspec: Likewise.
26306         * modules/utimecmp: Likewise.
26307         * modules/xnanosleep: Likewise.
26308         * modules/xstrtol: Likewise.
26309
26310 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
26311
26312         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
26313         * modules/lock-tests (TESTS): Use $(EXEEXT).
26314         * modules/tls-tests: Likewise.
26315         * modules/argp-tests: Likewise.
26316         (check_PROGRAMS): New var, replacing...
26317         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
26318
26319 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26320
26321         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
26322         `config.h'.
26323
26324 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
26325
26326         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
26327
26328 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26329
26330         Sync from coreutils.
26331         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
26332         gl_CHDIR_SAFER.
26333
26334 2006-02-22  Jim Meyering  <jim@meyering.net>
26335
26336         Sync from coreutils.
26337         * m4/chdir-safer.m4: New file.
26338
26339 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
26340
26341         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
26342         AT_FDCWD exceeds INT_MAX.
26343         * lib/openat.h (AT_FDCWD): Likewise.
26344
26345 2006-02-17  Eric Blake  <address@hidden>
26346
26347         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
26348
26349 2006-02-16  Simon Josefsson  <jas@extundo.com>
26350
26351         * modules/getaddrinfo (Depends-on): Add sys_socket.
26352
26353 2006-02-15  Simon Josefsson  <jas@extundo.com>
26354
26355         * build-aux/maint.mk: Add dsyntax-check rule.
26356
26357 2006-02-15  Eric Blake  <ebb9@byu.net>
26358
26359         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
26360         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
26361         'present but cannot compile' warnings on cygwin.
26362         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
26363         use ws2tcpip.h if sys/socket.h works.
26364         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
26365         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
26366
26367 2006-02-14  Simon Josefsson  <jas@extundo.com>
26368
26369         * modules/maintainer-makefile (Files): Rename.
26370
26371         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
26372         and (the local) Makefile.cfg to maint-cfg.mk.
26373
26374         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
26375         to the latter.
26376
26377         * modules/maintainer-makefile: New module.
26378
26379         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
26380         severaly stripped to make it possible to build it up from scratch
26381         with reliable tests.
26382
26383         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
26384         fixes to permit overriding the default actions when configure and
26385         makefile are not available.
26386
26387 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
26388
26389         Sync from coreutils.
26390         * modules/lstat (Depends-on): Don't depend on xalloc.
26391         (License): Change from GPL to LGPL, since this is now simply a
26392         replacement for a libc function.
26393
26394 2006-02-14  Jim Meyering  <jim@meyering.net>
26395
26396         Sync from coreutils.
26397
26398         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
26399         failure on deficient systems, and simplify gnulib lgpl dependencies.
26400         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
26401         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
26402
26403         * lib/xalloc-die.c: Remove unused definition of N_.
26404
26405 2006-02-14  Jim Meyering  <jim@meyering.net>
26406
26407         Sync from coreutils.
26408         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
26409         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
26410         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
26411         double-quote uses of that variable, to accommodate the rare case in
26412         which getmntent is available in none of the libraries checked.  This
26413         happens at least on FreeBSD 5.0.
26414
26415 2006-02-13  Simon Josefsson  <jas@extundo.com>
26416
26417         * gnulib-tool (Usage): Fix --import, from
26418         karl@freefriends.org (Karl Berry).
26419
26420 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26421
26422         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
26423
26424 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
26425
26426         * lib/argp-namefrob.h: Restore changes accidentally lost during the
26427         "autoupdate" on 2005-12-12.
26428
26429 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26430
26431         * modules/closeout (Depends-on): Remove atexit.
26432
26433 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26434
26435         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
26436         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
26437
26438 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
26439
26440         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
26441         __EXTENSIONS__ if this causes compilation to fail.  Problem
26442         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
26443         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
26444
26445 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
26446
26447         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
26448         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
26449         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
26450         All uses changed.
26451
26452 2006-01-26  Simon Josefsson  <jas@extundo.com>
26453
26454         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
26455         prototype is visible on mingw32.
26456
26457         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
26458         for mingw32.
26459
26460         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
26461         mingw32).
26462
26463 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
26464
26465         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
26466         attempt to open for write; this always fails, at least on POSIX
26467         hosts.  This reinstates the 2006-01-09 change, which was
26468         inadvertently removed.
26469
26470 2006-01-26  Bruno Haible  <bruno@clisp.org>
26471
26472         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
26473         Reported by Paul Eggert.
26474
26475 2006-01-26  Bruno Haible  <bruno@clisp.org>
26476             Paul Eggert  <eggert@cs.ucla.edu>
26477
26478         * lib/stdbool_.h (_Bool)
26479         [(! (defined __cplusplus || defined __BEOS__)
26480           && !defined __GNUC__
26481           && !(defined __HP_cc || defined __xlc__
26482                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
26483                || defined __sgi))]:
26484         #define to signed char in these cases too; this simplifies
26485         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
26486         etc., separately) and makes it more conservative.
26487
26488 2006-01-25  Simon Josefsson  <jas@extundo.com>
26489
26490         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
26491         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
26492         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
26493
26494 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
26495
26496         * lib/argp-namefrob.h: Bugfix. Remove stray #
26497
26498 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
26499
26500         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
26501         so that we test the test.
26502         Check for yet another HP-UX cc bug involving *bool |= bool.
26503
26504 2006-01-25  Karl Berry  <karl@gnu.org>
26505
26506         * config/srclist.txt (vasnprintf.c): sync lost.
26507
26508 2006-01-25  Jim Meyering  <jim@meyering.net>
26509
26510         Sync from the stable (b5) branch of coreutils:
26511
26512         * lib/fts.c (fts_children): Don't let close() clobber errno from
26513         failed fchdir().
26514
26515         * lib/fts.c (fts_stat): When following a symlink-to-directory,
26516         don't necessarily interpret stat-fails+lstat-succeeds as indicating
26517         a dangling symlink.  That can also happen at least for ELOOP.
26518         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
26519         FYI, this bug predates the inclusion of fts.c in coreutils.
26520
26521         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
26522         in their own block, so pre-c99 compilers don't object.
26523
26524         Avoid the double-free (first in fts_read, second in fts_close) that
26525         would occur when an `active' directory is made inaccessible (e.g.,
26526         via chmod a-x) during a traversal.
26527         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26528         before returning.  Reproduce this failure by
26529         mkdir -p a/b; cd a; chmod a-x . b
26530         Reported by Stavros Passas.
26531
26532 2006-01-25  Jim Meyering  <jim@meyering.net>
26533
26534         * lib/fileblocks.c: Remove more useless parentheses.
26535         * lib/readutmp.h: Likewise.
26536
26537 2006-01-25  Bruno Haible  <bruno@clisp.org>
26538
26539         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
26540         warnings.
26541         Reported by Paul Eggert.
26542
26543 2006-01-25  Bruno Haible  <bruno@clisp.org>
26544
26545         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
26546         rid of a trap command. For Solaris sh.
26547         Reported by Mark D. Baushke <mdb@gnu.org>.
26548
26549 2006-01-24  Simon Josefsson  <jas@extundo.com>
26550
26551         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
26552         Bruno.
26553
26554 2006-01-24  Karl Berry  <karl@gnu.org>
26555
26556         * config/srclist.txt (argp-namefrob.h): sync lost.
26557
26558 2006-01-24  Jim Meyering  <jim@meyering.net>
26559
26560         * modules/openat (Files): Add lib/intprops.h.
26561         From Mark D. Baushke.
26562
26563 2006-01-24  Jim Meyering  <jim@meyering.net>
26564
26565         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
26566         Reported by Mark D. Baushke.
26567
26568 2006-01-24  Jim Meyering  <jim@meyering.net>
26569
26570         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
26571
26572 2006-01-24  Bruno Haible  <bruno@clisp.org>
26573
26574         * modules/strnlen (Maintainer): Change from glibc to all.
26575
26576 2006-01-24  Bruno Haible  <bruno@clisp.org>
26577
26578         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
26579         Patch by Paul Eggert.
26580
26581 2006-01-24  Bruno Haible  <bruno@clisp.org>
26582
26583         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
26584         already has it.
26585         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
26586         2005-11-26.
26587
26588         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
26589         'signed char' to avoid problems with the built-in _Bool type.
26590         Reported by Paul Eggert on 2005-11-26.
26591
26592 2006-01-24  Bruno Haible  <bruno@clisp.org>
26593
26594         * gnulib-tool (func_import): Avoid constructing complicated sed
26595         expressions inside backquote.
26596         Report and solution by Mark D. Baushke <mdb@gnu.org>.
26597
26598 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
26599
26600         These changes imported from libc.
26601         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
26602         test and two separate function calls.
26603         * lib/strndup.c (__strndup): Add libc_hidden_def.
26604
26605 2006-01-23  Simon Josefsson  <jas@extundo.com>
26606
26607         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
26608         Remove the test_*_SOURCES variable: automake infers it by default.
26609         * modules/tls-tests: Likewise.
26610
26611 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26612
26613         Work around porting bugs reported by Dieter in
26614         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
26615         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
26616         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
26617         Include "getopt.h" first, to check interface.
26618         (getenv): Declare only if defined HAVE_DECL_GETENV &&
26619         !HAVE_DECL_GETENV.
26620         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
26621         (__strndup): Revert to K&R-style function dfns, the glibc style.
26622         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
26623         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
26624         Include strnlen.h first, to get prototype properly.
26625         (strnlen): Renamed from __strnlen.
26626         Remove weak alias.
26627
26628 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26629
26630         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
26631
26632 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26633
26634         * config/srclist.txt: Adjust to reflect glibc reorganization.
26635         This affects only comments.
26636
26637 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26638
26639          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
26640          Reported by Bruce Korb <bkorb@gnu.org>.
26641
26642 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
26643
26644         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
26645         to pacify gcc -Wswitch-default.
26646
26647 2006-01-22  Bruno Haible  <bruno@clisp.org>
26648
26649         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
26650         temporary buffer for sprintf, take into account the precision also
26651         for 'd', 'i', 'u', 'o', 'x', 'X'.
26652
26653 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26654
26655         * modules/argp-tests: New module
26656         * tests/test-argp.c: New file
26657         * tests/test-argp-2.sh: New file
26658
26659 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26660
26661         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
26662         (__argp_base_name): Removed
26663         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
26664         typo.
26665         (__argp_base_name): Provide macro definition or extern declaration
26666         depending on the configuration
26667
26668 2006-01-20  Simon Josefsson  <jas@extundo.com>
26669
26670         * modules/inet_ntop (Depends-on): Depend on sys_socket.
26671
26672 2006-01-20  Simon Josefsson  <jas@extundo.com>
26673
26674         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
26675
26676 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26677
26678         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
26679         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
26680         Suggested by Bruno Haible.
26681
26682 2006-01-20  Karl Berry  <karl@gnu.org>
26683
26684         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
26685         until changes propagate, I guess.
26686
26687 2006-01-19  Simon Josefsson  <jas@extundo.com>
26688
26689         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
26690
26691 2006-01-19  Simon Josefsson  <jas@extundo.com>
26692
26693         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
26694
26695 2006-01-19  Simon Josefsson  <jas@extundo.com>
26696
26697         * gnulib-tool: Set check_PROGRAMS.
26698
26699         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26700         modules/des-tests, modules/gc-arcfour-tests,
26701         modules/gc-arctwo-tests, modules/gc-des-tests,
26702         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26703         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26704         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26705         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26706         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26707         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
26708         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
26709         test_*_SOURCES.
26710
26711 2006-01-18  Simon Josefsson  <jas@extundo.com>
26712
26713         * modules/socklen (Depends-on): Depend on sys_socket.
26714
26715 2006-01-18  Simon Josefsson  <jas@extundo.com>
26716
26717         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26718         modules/des-tests, modules/gc-arcfour-tests,
26719         modules/gc-arctwo-tests, modules/gc-des-tests,
26720         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26721         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26722         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26723         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26724         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26725         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
26726         $(EXEEXT) to automake TESTS variable, for mingw32.
26727
26728 2006-01-17  Simon Josefsson  <jas@extundo.com>
26729
26730         * modules/socklen (Include): Need sys/socket.h.
26731
26732 2006-01-17  Bruno Haible  <bruno@clisp.org>
26733
26734         * modules/ssize_t (Include): Add <sys/types.h>.
26735
26736 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
26737
26738         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
26739         it's not portable and it doesn't work with cross-compiles.
26740         Problem reported by Bruno Haible.  Fix missing-$ typo in
26741         'test "gl_cv_ignore_unused_libraries" ...' that prevented
26742         -zignore from being used with Sun's C compiler.
26743
26744 2006-01-12  Simon Josefsson  <jas@extundo.com>
26745
26746         * lib/base64.c: Fix warning, reported by Bruno Haible
26747         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
26748
26749 2006-01-12  Bruno Haible  <bruno@clisp.org>
26750
26751         * modules/ldd: New file.
26752         * build-aux/ldd.sh.in: New file.
26753         * MODULES.html.sh (Support for building libraries and executables): Add
26754         ldd.
26755
26756 2006-01-12  Bruno Haible  <bruno@clisp.org>
26757
26758         * m4/ldd.m4: New file.
26759
26760 2006-01-12  Bruno Haible  <bruno@clisp.org>
26761
26762         * gnulib-tool (func_import, func_create_testdir): Don't go into an
26763         endless loop while replacing $auxdir with build-aux.
26764
26765 2006-01-11  Simon Josefsson  <jas@extundo.com>
26766
26767         * lib/stdint_.h (SIZE_MAX): Add missing (.
26768
26769 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
26770
26771         Sync from coreutils.
26772         * lib/md5.c: Fix commentary typos.
26773         (alignof, UNALIGNED_P): No need for a GCC-specific version.
26774         * lib/md5.h (__attribute__): Remove; unused.
26775         * lib/sha1.c: Fix commentary to match md5 better.
26776         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
26777         so that we don't need to worry about alignment.  All uses changed.
26778         This merges the 2005-10-28 md5 change into sha1.
26779
26780 2006-01-11  Jim Meyering  <jim@meyering.net>
26781
26782         Sync from coreutils.
26783         * lib/md5.c (OP): Fix spacing.
26784
26785 2006-01-11  Bruno Haible  <bruno@clisp.org>
26786
26787         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26788         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
26789         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
26790
26791 2006-01-11  Bruno Haible  <bruno@clisp.org>
26792
26793         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26794         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
26795         the "early" section as well.
26796
26797 2006-01-11  Bruno Haible  <bruno@clisp.org>
26798
26799         Avoid "ar: no archive members specified" error on MacOS X.
26800         * gnulib-tool (func_modules_add_dummy): New function.
26801         (func_import, func_create_testdir): Invoke it.
26802
26803 2006-01-11  Bruno Haible  <bruno@clisp.org>
26804
26805         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
26806         with $auxdir in AC_CONFIG_FILES statements.
26807
26808 2006-01-11  Bruno Haible  <bruno@clisp.org>
26809
26810         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26811         Initialize also noinst_HEADERS to empty.
26812
26813 2006-01-11  Bruno Haible  <bruno@clisp.org>
26814
26815         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
26816         variables.
26817         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
26818         autoreconf.
26819
26820 2006-01-11  Bruno Haible  <bruno@clisp.org>
26821
26822         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
26823         overridable by the user.
26824         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26825
26826 2006-01-10  Simon Josefsson  <jas@extundo.com>
26827
26828         * modules/sys_socket: New file.
26829
26830 2006-01-10  Simon Josefsson  <jas@extundo.com>
26831
26832         * m4/sys_socket_h.m4: New file.
26833
26834 2006-01-10  Simon Josefsson  <jas@extundo.com>
26835
26836         * lib/socket_.h: New file.
26837
26838 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26839
26840         * modules/readutmp (Maintainer): Add myself.
26841
26842 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26843
26844         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
26845         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
26846         People who are still concerned with buggy memcmp implementations
26847         can invoke gl_FUNC_MEMCMP themselves.
26848
26849 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26850
26851         * lib/regex_internal.h (BITSET_WORD_BITS):
26852         Work around a bug in 64-bit PGC (before version 6.1-2), where the
26853         preprocessor mishandles large unsigned values as if they were signed.
26854         Problem reported by Claudio Fontana in
26855         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
26856
26857 2006-01-10  Jim Meyering  <jim@meyering.net>
26858
26859         Avoid the double-free (first in fts_read, second in fts_close) that
26860         would occur when an `active' directory is made inaccessible (e.g.,
26861         via chmod a-x) during a traversal.
26862         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26863         before returning.  Reproduce this failure by
26864         mkdir -p a/b; cd a; chmod a-x . b
26865         Reported by Stavros Passas.
26866
26867         Sync from coreutils.
26868         * lib/sha1.c: Tweak grammar in a comment.
26869
26870 2006-01-10  Jim Meyering  <jim@meyering.net>
26871
26872         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
26873         Patch by Joerg Sonnenberger.
26874
26875 2006-01-10  Bruno Haible  <bruno@clisp.org>
26876
26877         * modules/readutmp: Depend on module free.
26878         * modules/strtok_r: Depend on module restrict.
26879
26880 2006-01-10  Bruno Haible  <bruno@clisp.org>
26881
26882         * modules/gettext (configure.ac): Add an invocation of
26883         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
26884
26885 2006-01-10  Bruno Haible  <bruno@clisp.org>
26886
26887         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
26888         Reported by Werner Lemberg <wl@gnu.org>.
26889
26890 2006-01-10  Bruno Haible  <bruno@clisp.org>
26891
26892         * lib/localcharset.c: Update from GNU gettext.
26893
26894 2006-01-10  Bruno Haible  <bruno@clisp.org>
26895
26896         * lib/argp.h (__const): Remove macro. Use const instead.
26897         * lib/argp-fmtstream.h (__const): Likewise.
26898         * lib/glob_.h (__const): Remove macro.
26899         * lib/glob-libc.h: Use const instead of __const.
26900
26901 2006-01-10  Bruno Haible  <bruno@clisp.org>
26902
26903         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
26904         variable.
26905         Needed to avoid an automake error regarding the 'gettext' module.
26906
26907 2006-01-09  Simon Josefsson  <jas@extundo.com>
26908
26909         * modules/inet_ntop (Depends-on): Add restrict.
26910
26911 2006-01-09  Simon Josefsson  <jas@extundo.com>
26912
26913         * modules/gc-rijndael-tests (License): Put under LGPL.
26914
26915         * modules/gc-des-tests (License): Likewise.
26916
26917         * modules/gc-arcfour-tests (License): Likewise.
26918
26919         * modules/gc-arctwo-tests (License): Likewise.
26920
26921         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
26922
26923         * modules/gc-hmac-sha1-tests (Files): Likewise.
26924
26925         * modules/gc-hmac-md5-tests (License): Likewise.
26926
26927         * modules/gc-sha1-tests (License): Likewise.
26928
26929         * modules/gc-md5-tests (License): Likewise.
26930
26931         * modules/gc-md4-tests (License): Likewise.
26932
26933         * modules/gc-md2-tests (License): Likewise.
26934
26935         * modules/gc-tests (License): Likewise.
26936
26937         * modules/des-tests (License): Likewise.
26938
26939         * modules/md4-tests (License): Likewise.
26940
26941         * modules/md2-tests (License): Likewise.
26942
26943 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26944
26945         Sync from coreutils:
26946
26947         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
26948         * modules/lib-ignore: New file.
26949         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
26950         chdir-safer.m4, lchmod.m4.
26951         * modules/openat: Add mkdirat.c, openat-priv.h.
26952
26953 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26954
26955         Sync from coreutils.
26956         * m4/lib-ignore.m4: New file.
26957         * m4/lchmod.m4: New file.
26958
26959 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
26960
26961         Sync from coreutils.
26962         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
26963         for write access: POSIX says that must fail.
26964         * lib/fts.c (diropen): Likewise.
26965         * lib/save-cwd.c (save_cwd): Likewise.
26966         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
26967         well, for minor improvements on hosts that lack O_DIRECTORY.
26968         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
26969         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
26970         Fall back on chown if open failed with EACCES.
26971
26972         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
26973         Report an error at compile-time if only a 1-second nominal clock
26974         resolution is found.
26975
26976         * lib/lchmod.h: New file.
26977         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
26978         (make_dir_parents): Use lchown rather than chown, and
26979         lchmod rather than chmod.
26980
26981         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
26982         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
26983         "proc" reported by n0dalus.
26984
26985         * lib/mountlist.c: Include <limits.h>.
26986         (dev_from_mount_options)
26987         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
26988         New function.  It no longer assumes "dev=" has the System V meaning
26989         on Linux (since it doesn't).  It also parses "dev=" more carefully.
26990         (read_file_system_list)
26991         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
26992         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
26993         dev= in that case.
26994
26995         * lib/posixtm.h (PDS_PRE_2000): New macro.
26996         * lib/posixtm.c (year): Arg is now syntax_bits rather than
26997         allow_century.  All usages changed.  Reject dates outside the range
26998         1969-1999 if PDS_PRE_2000 is used.
26999
27000 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27001
27002         Sync from coreutils.
27003         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
27004         (Time of day items): Mention the possibility of leap seconds.
27005         Problem reported by Dr. David Alan Gilbert.
27006
27007 2006-01-09  Jim Meyering  <jim@meyering.net>
27008
27009         Sync from coreutils.
27010
27011         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
27012
27013         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
27014
27015         * lib/modechange.c (mode_compile): Reject an invalid mode string
27016         that starts with an octal digit.  From Andreas Gruenbacher.
27017
27018         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
27019         and dup to open_safer and dup_safer, respectively.
27020         (openat_permissive): Fix typo in comment.
27021
27022         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
27023         "gettext.h"; either no longer needed or are guaranteed by openat.h.
27024         (_): Remove; no longer needed.
27025         (openat): Renamed from rpl_openat; no need for rpl_openat
27026         since openat.h renames openat for us.
27027         Replace most of the body with a call to openat_permissive,
27028         to avoid duplicate code.
27029         Port to (probably hypothetical) environments were mode_t is
27030         wider than int.
27031         (openat_permissive): Require mode arg, so that we can check
27032         types better.  Put it just after flags.  Change cwd failure
27033         indicator from pointer-to-bool to pointer-to-errno-value.
27034         All callers changed.
27035         Invoke openat_save_fail and/or openat_restore_fail if
27036         cwd_errno is null, so that openat can call us.
27037         (openat_permissive, fdopendir, fstatat, unlinkat):
27038         Simplify errno handling to avoid some duplicate code,
27039         as it's OK to set errno on success.
27040         * lib/openat.h: Revamp code so that function macros depend on
27041         __OPENAT_PREFIX only, not also on AT_FDCWD.
27042         (openat_ro): Remove.  Caller changed to use openat_permissive.
27043         (openat_permissive): Now a macro, if not a function.
27044         (openat_restore_fail, openat_save_fail): Now always functions,
27045         since mkdirat needs them even if __OPENAT_PREFIX is defined.
27046
27047         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
27048         and openat.c.
27049         * lib/mkdirat.c: Include openat-priv.h.
27050         Remove definitions of macros defined therein.
27051         * lib/openat.c: Likewise.
27052
27053         * lib/mkdirat.c (mkdirat): New file and function.
27054         * lib/openat.h (mkdirat): Declare.
27055
27056         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
27057
27058         * lib/openat.h (openat_permissive): Declare.
27059         (openat_ro): Define.
27060
27061         * lib/openat.c (EXPECTED_ERRNO): New macro.
27062         (openat_permissive): New function -- used in remove.c rewrite.
27063         (all functions): Set errno just before returning, only if there
27064         was an actual failure.
27065         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
27066
27067         Emulate openat-family functions using Linux's procfs, if possible.
27068         Idea and some code based on Ulrich Drepper's glibc changes.
27069
27070         * lib/openat.c: (BUILD_PROC_NAME): New macro.
27071         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
27072         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
27073         before falling back on save_cwd and restore_cwd.
27074         (fdopendir, fstatat, unlinkat): Likewise.
27075
27076         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
27077         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
27078
27079         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
27080         as second argument to va_arg.  Otherwise, some versions of gcc
27081         warn that `if this code is reached, the program will abort'.
27082
27083 2006-01-09  Jim Meyering  <jim@meyering.net>
27084
27085         Sync from coreutils.
27086         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
27087         Require openat-priv.h.
27088
27089 2006-01-09  Bruno Haible  <bruno@clisp.org>
27090
27091         * modules/strnlen (Include): Use strnlen.h.
27092
27093 2006-01-09  Bruno Haible  <bruno@clisp.org>
27094
27095         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
27096
27097 2006-01-09  Bruno Haible  <bruno@clisp.org>
27098
27099         * lib/sysexit_.h (EX_OK): New macro.
27100         Suggested by Martin Lambers <marlam@marlam.de>.
27101
27102 2006-01-09  Bruno Haible  <bruno@clisp.org>
27103
27104         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
27105         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
27106
27107 2006-01-09  Bruno Haible  <bruno@clisp.org>
27108
27109         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
27110         numbers.
27111
27112 2006-01-09  Bruno Haible  <bruno@clisp.org>
27113
27114         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
27115         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
27116         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
27117         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
27118
27119 2006-01-09  Bruno Haible  <bruno@clisp.org>
27120
27121         * build-aux/javacomp.sh.in: New file, moved from lib/.
27122         * modules/javacomp-script (Files): Update.
27123         (configure.ac): Add AC_CONFIG_FILES invocation.
27124         (EXTRA_DIST): Remove variable.
27125
27126         * build-aux/javaexec.sh.in: New file, moved from lib/.
27127         * modules/javaexec (Files): Update.
27128         (configure.ac): Add AC_CONFIG_FILES invocation.
27129         (EXTRA_DIST): Remove javaexec.sh.in.
27130
27131         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
27132         * modules/csharpcomp-script (Files): Update.
27133         (configure.ac): Add AC_CONFIG_FILES invocation.
27134         (EXTRA_DIST): Remove variable.
27135
27136         * build-aux/csharpexec.sh.in: New file, moved from lib/.
27137         * modules/csharpexec (Files): Update.
27138         (configure.ac): Add AC_CONFIG_FILES invocation.
27139         (EXTRA_DIST): Remove csharpexec.sh.in.
27140
27141 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27142
27143         Sync from coreutils.
27144
27145         Add POSIX ACL support
27146         * lib/acl.h (copy_acl, set_acl): Add declarations.
27147         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
27148         systems other than Linux.
27149         (chmod_or_fchmod): New function: use fchmod when possible,
27150         and chmod otherwise.
27151         (file_has_acl): Add a POSIX ACL implementation, with a
27152         Linux-specific subcase.
27153         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
27154         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
27155         acls are unsupported.
27156         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
27157         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
27158         are unsupported.
27159
27160 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27161
27162         Sync from coreutils.
27163         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
27164
27165 2006-01-07  Bruno Haible  <bruno@clisp.org>
27166
27167         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
27168         gl_EARLY.
27169
27170 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27171
27172         * lib/strftime.c (tzname): Don't declare if it is already #defined.
27173         Problem reported for Mingw by Mark Junker.
27174
27175 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27176
27177         * README: Gnulib normally doesn't generate a tarball.
27178
27179 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
27180
27181         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
27182         long int, not int, for nanosecond counts, so that people who are
27183         used to POSIX struct timespec won't be surprised.  Reported by Jim
27184         Meyering.
27185
27186 2005-12-28  Bruno Haible  <bruno@clisp.org>
27187
27188         * build-aux/config.rpath: Update from GNU gettext.
27189
27190 2005-12-16  Jim Meyering  <jim@meyering.net>
27191
27192         * modules/fprintftime: New module.
27193         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
27194
27195 2005-12-16  Jim Meyering  <jim@meyering.net>
27196
27197         * m4/fprintftime.m4: New file.
27198
27199 2005-12-16  Jim Meyering  <jim@meyering.net>
27200
27201         * lib/fprintftime.c, lib/fprintftime.h: New files.
27202
27203 2005-12-15  Simon Josefsson  <jas@extundo.com>
27204
27205         * modules/socklen (configure.ac): Fix M4 macro name, to align with
27206         new m4/socklen.m4.
27207
27208 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27209
27210         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
27211         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
27212
27213 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27214
27215         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
27216         * lib/argp-help.c (fill_in_uparams): Check if the constructed
27217         struct uparams is valid. Fall back to the default values if it is
27218         not.
27219
27220 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27221
27222         * modules/argp (Files): Add argp-pin.c
27223         (Depends-on): dirname
27224         (lib_SOURCES): Add argp-pin.c
27225
27226 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27227
27228         * m4/argp.m4:  Check if program_invocation_name and
27229         program_invocation_short_name are declared and define appropriate
27230         macros if they are not.
27231
27232 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27233
27234         * lib/argp-help.c (__argp_base_name): New function
27235         (__argp_short_program_name): Rewrite using __argp_base_name
27236         * lib/argp-namefrob.h: Define program_invocation_name and
27237         program_invocation_short_name if requested
27238         (__argp_base_name): Add prototype
27239         * lib/argp-parse.c (argp_def): Use gettext wrappers
27240         (argp_default_parser): Use __argp_base_name
27241         * lib/argp-pin.c: New file. Defines program_invocation_name and
27242         program_invocation_short_name on systems that lack them.
27243
27244 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27245
27246         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
27247         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27248         porting problem reported by Georg Schwarz in
27249         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27250
27251 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27252
27253         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
27254         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27255         porting problem reported by Georg Schwarz in
27256         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27257
27258 2005-12-05  Bruno Haible  <bruno@clisp.org>
27259
27260         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
27261         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
27262         Reported by Mark Junker <mjscod@gmx.de>.
27263
27264 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
27265
27266         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
27267         Use implementation from Albert Chin, with some
27268         comments/corrections by Stepan Kasal and myself.
27269
27270 2005-12-02  Bruno Haible  <bruno@clisp.org>
27271
27272         * gnulib-tool (func_import): Accept GPLed build tool modules when
27273         --lgpl is given.
27274         * modules/csharpcomp-script: New file.
27275         * modules/csharpcomp: Depend on it.
27276         * modules/javacomp-script: New file.
27277         * modules/javacomp: Depend on it.
27278         Suggested by Simon Josefsson.
27279
27280 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
27281
27282         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
27283         statement, to work around an HP-UX 10.20 compiler bug reported by
27284         Peter O'Gorman.
27285
27286 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27287
27288         * modules/savedir (Depends-on): Add openat.
27289
27290 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27291
27292         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
27293         (uintmax_t) [defined uintmax_t]: Do not declare.
27294         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
27295         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
27296         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
27297         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
27298         sake of portability to weird hosts that C allows (though we don't
27299         know of any practical examples).
27300
27301         * lib/savedir.h (fdsavedir): New decl.
27302         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
27303         contains most of the former guts of savedir.
27304         (savedir): Use savedirstream.
27305         Include "openat.h".
27306
27307 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
27308
27309         * modules/obstack (Files): Add m4/ulonglong.m4.
27310         Problem reported by Davide Angelocola.
27311
27312 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
27313
27314         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
27315         coreutils no longer futzes with rounding modes.
27316
27317 2005-11-14  Jim Meyering  <jim@meyering.net>
27318
27319         * lib/mkstemp-safer.c: Include <config.h>, required for possible
27320         replacement of mkstemp.
27321
27322 2005-11-10  Simon Josefsson  <jas@extundo.com>
27323
27324         * lib/readline.c: Remove EOL.
27325
27326 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27327
27328         * modules/gethrxtime (Depends-on): Add gettime.
27329
27330 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27331
27332         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
27333         or gettimeofday; no longer needed.
27334
27335 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27336
27337         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
27338         time business.
27339         (gethrxtime) [! (HAVE_NANOUPTIME
27340         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
27341         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
27342         our own approximation.
27343
27344 2005-11-08  Eric Blake  <ebb9@byu.net>
27345
27346         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27347
27348 2005-11-08  Eric Blake  <ebb9@byu.net>
27349
27350         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27351
27352 2005-11-04  Bruno Haible  <bruno@clisp.org>
27353
27354         * gnulib-tool: Implement --update mode.
27355
27356 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27357
27358         Fix porting problem reported by Theodoros V. Kalamatianos.
27359         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
27360         Don't assume that futimes failing means we must fail.
27361
27362 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27363
27364         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
27365         variables to suggest the intended function of the PATH_MAX check.
27366
27367 2005-10-30  Kean Johnston  <jkj@sco.com>
27368
27369         Trivial changes to support SCO systems.
27370         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
27371         as PATH_MAX.
27372         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
27373         where __ptr is null when no I/O is pending.
27374
27375 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27376
27377         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
27378         leave errno alone.  Problem reported by Dmitry V. Levin.
27379
27380 2005-10-28  Simon Josefsson  <jas@extundo.com>
27381
27382         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
27383         Test more.
27384
27385         * tests/test-gc-md2.c, tests/test-md2.c: New files.
27386
27387         * modules/md2, modules/md2-tests: New files.
27388
27389 2005-10-28  Simon Josefsson  <jas@extundo.com>
27390
27391         * m4/inet_ntop.m4: More tests.
27392
27393         * m4/gc-md2.m4, md2.m4: New file.
27394
27395 2005-10-28  Simon Josefsson  <jas@extundo.com>
27396
27397         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
27398         "restrict" keywords, as per POSIX.  Protect the function
27399         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
27400         Don't use K&R prototypes.  Check the sprintf return values.
27401         Re-define EAFNOSUPPORT if not present.  Indent.
27402
27403         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
27404         suggested by Bruno Haible <bruno@clisp.org>.
27405
27406         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
27407
27408         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
27409
27410         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
27411         libgcrypt).
27412
27413         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
27414
27415         * lib/md2.h, lib/md2.c: New files.
27416
27417 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
27418
27419         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
27420         errno alone.  Problem reported by Frederic Jolliton.
27421
27422 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
27423
27424         * modules/verify (License): Change from GPL to LGPL.  This is a
27425         tiny module and there are apparently near-equivalents that are
27426         under the BSD license.
27427
27428 2005-10-24  Simon Josefsson  <jas@extundo.com>
27429
27430         * modules/sha1: Relicense to LGPL.
27431
27432 2005-10-24  Simon Josefsson  <jas@extundo.com>
27433
27434         * lib/md4.h: Shrink buffer size, now that we changed the type.
27435
27436 2005-10-23  Simon Josefsson  <jas@extundo.com>
27437
27438         * gnulib-tool (func_import): Fix --tests-base.
27439
27440 2005-10-22  Simon Josefsson  <jas@extundo.com>
27441
27442         * modules/arcfour (Depends-on): Need stdint.
27443
27444 2005-10-22  Simon Josefsson  <jas@extundo.com>
27445
27446         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
27447         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
27448
27449 2005-10-22  Simon Josefsson  <jas@extundo.com>
27450
27451         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
27452         suggested by Bruno Haible <bruno@clisp.org>.
27453
27454 2005-10-22  Simon Josefsson  <jas@extundo.com>
27455
27456         * lib/crc.h: Include stddef.h, for size_t.
27457
27458 2005-10-22  Simon Josefsson  <jas@extundo.com>
27459
27460         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
27461         arcfour_context struct (simplify test vector testing in GNU
27462         Shishi).
27463
27464 2005-10-21  Simon Josefsson  <jas@extundo.com>
27465
27466         * modules/des, modules/des-tests: New files.
27467
27468         * modules/gc-des, modules/gc-des-tests: New files.
27469
27470         * tests/test-des.c, tests/test-gc-des.c: New file.
27471
27472 2005-10-21  Simon Josefsson  <jas@extundo.com>
27473
27474         * modules/arctwo, modules/arctwo-tests: New files.
27475
27476         * tests/test-arctwo.c: New file.
27477
27478         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
27479
27480         * tests/test-gc-arctwo.c: New file.
27481
27482 2005-10-21  Simon Josefsson  <jas@extundo.com>
27483
27484         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
27485         Bruno Haible <bruno@clisp.org>.
27486
27487         * m4/gc-des.m4: New file.
27488
27489 2005-10-21  Simon Josefsson  <jas@extundo.com>
27490
27491         * m4/arctwo.m4: New file.
27492
27493         * m4/gc-arctwo.m4: New file.
27494
27495 2005-10-21  Simon Josefsson  <jas@extundo.com>
27496
27497         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
27498         block.
27499
27500 2005-10-21  Simon Josefsson  <jas@extundo.com>
27501
27502         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
27503         <bruno@clisp.org>.
27504
27505         * lib/hmac-sha1.c (hmac_sha1): Likewise.
27506
27507         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
27508         Bruno Haible <bruno@clisp.org>.
27509
27510         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
27511         <bruno@clisp.org>.
27512
27513 2005-10-21  Simon Josefsson  <jas@extundo.com>
27514
27515         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
27516
27517 2005-10-21  Simon Josefsson  <jas@extundo.com>
27518
27519         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
27520
27521 2005-10-21  Simon Josefsson  <jas@extundo.com>
27522
27523         * lib/des.h, lib/des.c: New files.
27524
27525         * lib/gc-gnulib.c: Support DES.c
27526
27527 2005-10-21  Simon Josefsson  <jas@extundo.com>
27528
27529         * lib/arctwo.h, lib/arctwo.c: New files.
27530
27531         * lib/gc-gnulib.c: Support ARCTWO.
27532
27533 2005-10-21  Simon Josefsson  <jas@extundo.com>
27534
27535         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
27536         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27537
27538 2005-10-21  Simon Josefsson  <jas@extundo.com>
27539
27540         * gnulib-tool (func_import, func_create_testdir): Define automake
27541         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
27542         Makefile.am snippet),
27543         suggested by Bruno Haible <bruno@clisp.org>.
27544
27545         * modules/gc (Makefile.am): Use it.
27546
27547 2005-10-21  Bruno Haible  <bruno@clisp.org>
27548
27549         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
27550         patch.
27551
27552 2005-10-19  Simon Josefsson  <jas@extundo.com>
27553
27554         * tests/test-gc-rijndael.c: New file.
27555
27556         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
27557
27558 2005-10-19  Simon Josefsson  <jas@extundo.com>
27559
27560         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
27561         interface too.
27562
27563 2005-10-19  Simon Josefsson  <jas@extundo.com>
27564
27565         * tests/test-gc-arcfour.c: New file.
27566
27567         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
27568
27569 2005-10-19  Simon Josefsson  <jas@extundo.com>
27570
27571         * modules/gc-md4, modules/gc-md4-tests: New file.
27572
27573         * tests/test-gc-md4.c: New file.
27574
27575 2005-10-19  Simon Josefsson  <jas@extundo.com>
27576
27577         * m4/gc-md4.m4: New file.
27578
27579 2005-10-19  Simon Josefsson  <jas@extundo.com>
27580
27581         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
27582         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
27583         <kasal@ucw.cz>.
27584
27585 2005-10-19  Simon Josefsson  <jas@extundo.com>
27586
27587         * m4/gc-arcfour.m4: New file.
27588
27589         * m4/gc-rijndael.m4: New file.
27590
27591 2005-10-19  Simon Josefsson  <jas@extundo.com>
27592
27593         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
27594
27595 2005-10-19  Simon Josefsson  <jas@extundo.com>
27596
27597         * lib/gc-gnulib.c: Support ARCFOUR.
27598
27599 2005-10-19  Simon Josefsson  <jas@extundo.com>
27600
27601         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
27602         support.
27603
27604         * lib/gc.h: Add ECB enum type.
27605
27606         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
27607
27608 2005-10-18  Simon Josefsson  <jas@extundo.com>
27609
27610         * tests/test-md5.c: New file.
27611
27612         * modules/md5-tests: New file.
27613
27614 2005-10-18  Simon Josefsson  <jas@extundo.com>
27615
27616         * tests/test-md4.c: New file.
27617
27618         * modules/md4, modules/md4-tests: New files.
27619
27620 2005-10-18  Simon Josefsson  <jas@extundo.com>
27621
27622         * m4/md4.m4: New file.
27623
27624 2005-10-18  Simon Josefsson  <jas@extundo.com>
27625
27626         * lib/md4.h, lib/md4.c: New files, based on md5.?.
27627
27628 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
27629
27630         * gnulib-tool (func_create_testdir): Omit the second check whether
27631         BUILT_SOURCES in nonempty.
27632
27633 2005-10-17  Simon Josefsson  <jas@extundo.com>
27634
27635         * tests/test-rijndael.c: New file.
27636
27637 2005-10-17  Simon Josefsson  <jas@extundo.com>
27638
27639         * modules/sha1: Depend on stdint instead of md5.
27640
27641         * modules/md5: Depend on stdint, remove uint32_t.
27642
27643 2005-10-17  Simon Josefsson  <jas@extundo.com>
27644
27645         * modules/gc-sha1-tests: New file.
27646
27647         * tests/test-gc-sha1.c: New file.
27648
27649 2005-10-17  Simon Josefsson  <jas@extundo.com>
27650
27651         * m4/md5.m4: Remove call to uint32_t.m4.
27652
27653 2005-10-17  Simon Josefsson  <jas@extundo.com>
27654
27655         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
27656
27657         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
27658         md5.h.
27659
27660         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
27661
27662         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
27663
27664 2005-10-17  Simon Josefsson  <jas@extundo.com>
27665
27666         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
27667
27668 2005-10-17  Simon Josefsson  <jas@extundo.com>
27669
27670         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
27671
27672 2005-10-17  Simon Josefsson  <jas@extundo.com>
27673
27674         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
27675
27676         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
27677
27678 2005-10-17  Bruno Haible  <bruno@clisp.org>
27679
27680         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
27681         that it can also be used in a test.
27682
27683 2005-10-16  Bruno Haible  <bruno@clisp.org>
27684
27685         * gnulib-tool (func_emit_tests_Makefile_am): Also define
27686         TESTS_ENVIRONMENT, so that individual tests can augment it.
27687
27688         * gnulib-tool (func_create_testdir): Use an intermediate target for
27689         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
27690         macros, like $(ALLOCA_H), which cannot be passed through the command
27691         line.
27692
27693 2005-10-15  Simon Josefsson  <jas@extundo.com>
27694
27695         * modules/rijndael-tests: New file.
27696
27697         * modules/rijndael: New file.
27698
27699 2005-10-15  Simon Josefsson  <jas@extundo.com>
27700
27701         * m4/rijndael.m4: New file.
27702
27703 2005-10-15  Simon Josefsson  <jas@extundo.com>
27704
27705         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
27706
27707         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
27708
27709 2005-10-14  Simon Josefsson  <jas@extundo.com>
27710
27711         * tests/test-arcfour.c: New file.
27712
27713         * modules/arcfour, modules/arcfour-tests: New files.
27714
27715 2005-10-14  Simon Josefsson  <jas@extundo.com>
27716
27717         * m4/arcfour.m4: New file.
27718
27719 2005-10-14  Simon Josefsson  <jas@extundo.com>
27720
27721         * lib/arcfour.h, lib/arcfour.c: New files.
27722
27723 2005-10-14  Roland McGrath  <roland@redhat.com>
27724
27725         Import from libc.  [BZ #1331]
27726         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
27727         macro argument.
27728         Reported by Matej Vela <vela@debian.org>.
27729
27730 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27731
27732         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
27733         include <wchar.h>; no longer needed.
27734
27735 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27736
27737         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
27738
27739 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
27740         and  Ulrich Drepper  <drepper@redhat.com>
27741
27742         Import from libc.
27743         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
27744         instead of inline stream orientation test and two separate
27745         function calls.  Pay no attention to USE_IN_LIBIO.
27746
27747 2005-10-13  Simon Josefsson  <jas@extundo.com>
27748
27749         * modules/gc-hmac-md5-tests: New file.
27750
27751         * tests/test-gc-hmac-sha1.c: New file.
27752
27753         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
27754
27755         * modules/gc-hmac-md5-tests: New file.
27756
27757         * tests/test-gc-md5.c: New file.
27758
27759         * modules/gc-md5-tests: New file.
27760
27761 2005-10-13  Simon Josefsson  <jas@extundo.com>
27762
27763         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
27764         Move memory allocation outside of loop.
27765
27766 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
27767
27768         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
27769         intermediate directory is in a read-only file system.  Problem
27770         reported by Eric Blake.
27771
27772 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
27773
27774         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
27775
27776 2005-10-12  Simon Josefsson  <jas@extundo.com>
27777
27778         * tests/test-hmac-sha1.c: New file.
27779
27780         * modules/hmac-sha1-tests: New file.
27781
27782         * modules/hmac-sha1: New file.
27783
27784 2005-10-12  Simon Josefsson  <jas@extundo.com>
27785
27786         * modules/gc-sha1: New file.
27787
27788 2005-10-12  Simon Josefsson  <jas@extundo.com>
27789
27790         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
27791
27792         * tests/test-gc-pbkdf2-sha1.c: New file.
27793
27794 2005-10-12  Simon Josefsson  <jas@extundo.com>
27795
27796         * modules/gc-md5, modules/gc-hmac-md5: New files.
27797
27798         * modules/gc (Files): Remove md5, memxor and hmac files.
27799
27800 2005-10-12  Simon Josefsson  <jas@extundo.com>
27801
27802         * m4/gc-pbkdf2-sha1.m4: New file.
27803
27804         * m4/gc-hmac-sha1.m4: New file.
27805
27806         * m4/gc-sha1: New file.
27807
27808         * m4/hmac-sha1.m4: New file.
27809
27810 2005-10-12  Simon Josefsson  <jas@extundo.com>
27811
27812         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
27813
27814         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
27815
27816 2005-10-12  Simon Josefsson  <jas@extundo.com>
27817
27818         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
27819         suggested by Bruno Haible <bruno@clisp.org>.
27820
27821 2005-10-12  Simon Josefsson  <jas@extundo.com>
27822
27823         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
27824
27825 2005-10-12  Simon Josefsson  <jas@extundo.com>
27826
27827         * lib/gc-pbkdf2-sha1.c: New file.
27828
27829         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
27830
27831 2005-10-12  Simon Josefsson  <jas@extundo.com>
27832
27833         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
27834
27835         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
27836
27837 2005-10-12  Simon Josefsson  <jas@extundo.com>
27838
27839         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
27840         GC_USE_HMAC_MD5, respectively.
27841
27842         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
27843         (gc_md5): Fix typo.
27844
27845         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
27846
27847         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
27848
27849         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
27850
27851 2005-10-12  Bruno Haible  <bruno@clisp.org>
27852
27853         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
27854         Reported by Stepan Kasal <kasal@ucw.cz>.
27855
27856 2005-10-11  Simon Josefsson  <jas@extundo.com>
27857
27858         * tests/test-crc.c: New file.
27859
27860         * modules/crc, modules/crc-tests: New files.
27861
27862 2005-10-11  Simon Josefsson  <jas@extundo.com>
27863
27864         * m4/crc.m4: New file.
27865
27866 2005-10-11  Simon Josefsson  <jas@extundo.com>
27867
27868         * lib/gc.h: Add gc_hash and gc_hash_buffer.
27869
27870         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
27871
27872         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
27873
27874 2005-10-11  Simon Josefsson  <jas@extundo.com>
27875
27876         * lib/crc.h, lib/crc.c: New files.
27877
27878         * lib/gc.h (gc_hash_buffer): Add doc.
27879
27880 2005-10-11  Bruno Haible  <bruno@clisp.org>
27881
27882         * modules/c-strcasestr: New file.
27883         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
27884
27885 2005-10-11  Bruno Haible  <bruno@clisp.org>
27886
27887         * modules/c-strcase: New file.
27888         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
27889
27890 2005-10-11  Bruno Haible  <bruno@clisp.org>
27891
27892         * lib/strcasecmp.c: Include limits.h.
27893         (strcasecmp): Avoid integer overflow on exotic platforms.
27894         * lib/strncasecmp.c: Include limits.h.
27895         (strncasecmp): Avoid integer overflow on exotic platforms.
27896         Reported by Paul Eggert.
27897
27898 2005-10-11  Bruno Haible  <bruno@clisp.org>
27899
27900         * lib/c-strcasestr.h: New file, from GNU gettext.
27901         * lib/c-strcasestr.c: New file, from GNU gettext.
27902
27903 2005-10-11  Bruno Haible  <bruno@clisp.org>
27904
27905         * lib/c-strcase.h: New file, from GNU gettext.
27906         * lib/c-strcasecmp.c: New file, from GNU gettext.
27907         * lib/c-strncasecmp.c: New file, from GNU gettext.
27908
27909 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
27910
27911         * modules/mempcpy (License): GPL -> LGPL.
27912         * modules/strchrnul (License): Likewise.
27913         * modules/sysexits (License): Likewise.
27914
27915 2005-10-08  Simon Josefsson  <jas@extundo.com>
27916
27917         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
27918
27919 2005-10-07  Simon Josefsson  <jas@extundo.com>
27920
27921         * m4/memxor.m4: Remove gl_C_RESTRICT call.
27922
27923 2005-10-06  Simon Josefsson  <jas@extundo.com>
27924
27925         * tests/test-hmac-md5.c: New file.
27926
27927         * modules/hmac-md5-tests: New file.
27928
27929         * modules/hmac-md5: New file.
27930
27931 2005-10-06  Simon Josefsson  <jas@extundo.com>
27932
27933         * m4/hmac-md5.m4: New file.
27934
27935         * m4/memxor.m4: Require gl_C_RESTRICT.
27936
27937 2005-10-06  Simon Josefsson  <jas@extundo.com>
27938
27939         * lib/memxor.c (memxor): Avoid casts and warnings.
27940
27941 2005-10-06  Simon Josefsson  <jas@extundo.com>
27942
27943         * lib/hmac-md5.c: New file.
27944
27945         * lib/hmac.h: New file.
27946
27947 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
27948
27949         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
27950         promotes to int, not unsigned int, to catch the AIX 5.3
27951         compiler bug.
27952
27953 2005-10-05  Simon Josefsson  <jas@extundo.com>
27954
27955         * modules/memxor: New file.
27956
27957         * modules/iconv (Files): Move config.rpath to havelib, it is used
27958         there.
27959
27960         * modules/havelib (Files): Add config.rpath.
27961
27962 2005-10-05  Simon Josefsson  <jas@extundo.com>
27963
27964         * m4/memxor.m4: New file.
27965
27966 2005-10-05  Simon Josefsson  <jas@extundo.com>
27967
27968         * lib/memxor.c (memxor): Fix compiler error.
27969
27970         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
27971         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
27972
27973         * lib/memxor.h, lib/memxor.c: New files.
27974
27975         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
27976         we assume all systems have it, suggested by Jim Meyering
27977         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
27978         any systems lack sys/socket.h; mingw32 is known to lack it, but we
27979         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
27980         same reasons.
27981
27982 2005-10-05  Simon Josefsson  <jas@extundo.com>
27983
27984         * config/srclist.txt: Add glibc bug 1423 for md5.h.
27985
27986 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
27987
27988         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
27989         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
27990         needed, since the source code now assumes these .h files.
27991
27992 2005-10-05  Derek Price  <derek@ximbiot.com>
27993
27994         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
27995
27996 2005-10-05  Bruno Haible  <bruno@clisp.org>
27997
27998         * modules/stdint (License): Change to LGPL.
27999
28000 2005-10-04  Simon Josefsson  <jas@extundo.com>
28001
28002         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
28003         D. Baushke" <mdb@gnu.org>.
28004
28005 2005-10-04  Bruno Haible  <bruno@clisp.org>
28006
28007         * lib/verify.h (verify_true): Provide alternative definition for C++.
28008
28009 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
28010
28011         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
28012         (SSIZE_MAX): New macro, if not already defined.
28013         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
28014         than 2 GiB.
28015
28016 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28017
28018         Sync from coreutils.
28019         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
28020         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
28021         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
28022         ULLONG_MAX doesn't work with 2.7.2.1.
28023
28024 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28025
28026         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
28027         From Ben Pfaff.
28028
28029         * modules/exclude (Depends-on): Depend on verify.
28030         * modules/strtoimax (Depends-on): Likewise.
28031         * modules/utimecmp (Depends-on): Likewise.
28032
28033 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28034
28035         * lib/exclude.c: Include verify.h.
28036         (verify): Remove.  All callers changed to use verify.h's version.
28037         * lib/strtoimax.c: Likewise.
28038         * lib/utimecmp.c: Likewis.e
28039
28040         Sync from coreutils.
28041         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
28042         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
28043         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
28044         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
28045         bother returning ENOSYS if settimeofday or stime fails; just let
28046         them return whatever errno they want to return.
28047         * lib/utimens.c: Include unistd.h, for dup2.
28048         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
28049         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
28050
28051 2005-10-02  Jim Meyering  <jim@meyering.net>
28052
28053         Sync from coreutils.
28054         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
28055         from glibc-2.2.5 that fails for read-only files.
28056
28057 2005-10-02  Jim Meyering  <jim@meyering.net>
28058
28059         Sync from coreutils.
28060         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
28061         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
28062         `#if HAVE_CONFIG_H'.
28063         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
28064         Remove AT_FDCWD test.
28065         Do not consume the fd unless successful.
28066         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
28067         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
28068         block, so that we don't even try to compile it if settimeofday is
28069         available.  This works around a compilation failure on OSF1 V5.1,
28070         due to stime requiring a `long int*' while tv_sec is `int'.
28071
28072 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
28073
28074         Sync from coreutils.
28075         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
28076         against `yes', rather than just testing for nonempty.
28077
28078 2005-10-01  Simon Josefsson  <jas@extundo.com>
28079
28080         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
28081         and Darwin.
28082
28083         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
28084         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
28085         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
28086         freeaddrinfo and gai_strerror are declared by the POSIX headers.
28087         Check if struct addrinfo is declared.
28088
28089 2005-10-01  Simon Josefsson  <jas@extundo.com>
28090
28091         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
28092         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
28093         AI_* and EAI_* definitions.  Protect function declarations.
28094
28095 2005-10-01  Jim Meyering  <jim@meyering.net>
28096
28097         Sync from coreutils.
28098
28099         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
28100         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
28101         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
28102         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28103         in the inet and nsl libraries.  Required on Solaris 5.7.
28104
28105 2005-10-01  Jim Meyering  <jim@meyering.net>
28106
28107         Sync from coreutils.
28108         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28109         in the inet and nsl libraries.  Required on Solaris 5.7.
28110
28111 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
28112
28113         * lib/getdelim.c (getdelim): Remove unused variables.
28114
28115 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
28116
28117         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
28118         so that the code works even with ancient cpp.  Portability problem
28119         with GCC 2.7.2.1 reported by Thomas M.Ott.
28120
28121 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
28122
28123         * modules/regex (Depends-on): Add strcase.
28124
28125         * modules/gethostname (Licence): Change from GPL to LGPL, since
28126         gethostname.c is a trivial implementation of a standard library
28127         function.
28128         * modules/poll (License): Change from GPL to LGPL, since it's
28129         derived from LGPL code.
28130
28131 2005-09-27  Jim Meyering  <jim@meyering.net>
28132
28133         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
28134         HAVE_CONFIG_H.
28135
28136         * lib/intprops.h (signed_type_or_expr__): Define.
28137         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
28138         for unsigned types.
28139
28140 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
28141
28142         * lib/verify.h (verify_expr): Remove, replacing with:
28143         (verify_true): New macro that returns true instead of void.
28144         (verify_type__): Remove.
28145         (verify): Use verify_true rather than verify_type__.
28146
28147 2005-09-26  Bruno Haible  <bruno@clisp.org>
28148
28149         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
28150         is necessary.
28151         (lib_SOURCES): Remove mbchar.c.
28152         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
28153         (Files): Add m4/mbrtowc.m4.
28154         * modules/mbiter: Likewise.
28155         * modules/mbuiter: Likewise.
28156
28157 2005-09-26  Bruno Haible  <bruno@clisp.org>
28158
28159         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
28160         compile mbchar.c if they are not both present.
28161         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
28162         * m4/mbiter.m4 (gl_MBITER): Likewise.
28163         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
28164         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
28165         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
28166
28167 2005-09-25  Jim Meyering  <jim@meyering.net>
28168
28169         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
28170         also uses socklen_t.
28171
28172 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
28173
28174         * lib/utimens.c (ENOSYS): Define if not already defined.
28175         (futimens): Support having a null PATH if the file descriptor
28176         is nonnegative.
28177
28178         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
28179         Remove.
28180         (__attribute): Define to empty unless GCC 3.1 or later.
28181         This works around a core dump on OpenBSD 3.4, which has GCC
28182         2.95.3, which dumps core when given __attribute__(()).  It also
28183         simplifies other tests, since we really don't want to bother with
28184         worrying about which ancient version of GCC supported what.
28185         Original problem reported by Yoann Vandoorselaere, with part of
28186         the fix suggested by Derek Price.
28187
28188 2005-09-24  Jim Meyering  <jim@meyering.net>
28189
28190         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
28191         so we can once again use a positive bitfield width of 1 -- now we
28192         don't have to explain why we were using a bitfield width of 2.
28193
28194 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28195
28196         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
28197         and similarly for the other external symbols.  Problem reported
28198         by James Gallager.
28199
28200         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
28201         bug reported by Jim Meyering.
28202
28203         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
28204         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
28205         not needed, since socklen is a prerequisite module.
28206
28207 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28208
28209         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
28210         Problem reported by Eric Blake.
28211         (getaddrinfo): Initialize se so that it's not garbage.
28212         Redo internal storage allocation so that it doesn't make unportable
28213         assumptions about alignment.
28214         Fix a memory leak.
28215
28216         * lib/utimens.c (futimens): Use futimesat if available.
28217         Prefer it to futimes since it doesn't have the futimes bug.
28218
28219         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
28220         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
28221         Instead, declare a function that returns a pointer to an array,
28222         and use verify_type__ to declare the size of the array.
28223         Problem and germ of a solution reported by Bruno Haible.
28224         (verify_type__): Use 2, not 1, for bitfield size, to avoid
28225         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
28226
28227 2005-09-23  Jim Meyering  <jim@meyering.net>
28228
28229         Sync from coreutils.
28230         Correct build failure (socklen_t not defined) on at least
28231         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
28232         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
28233
28234 2005-09-23  Jim Meyering  <jim@meyering.net>
28235
28236         * modules/getaddrinfo (Depends-on): Add socklen.
28237
28238 2005-09-23  Bruno Haible  <bruno@clisp.org>
28239
28240         * tests/test-verify.c: New file.
28241
28242 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28243
28244         Sync from coreutils.
28245
28246         * modules/argmatch (Depends-on): Add verify.
28247         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
28248         unistd-safer.
28249         * modules/save-cwd (Depends-on): Likewise.
28250
28251         * modules/openat (Files): Add lib/openat-die.c.
28252         (Depends-on): Remove error, exitfail.
28253         Add dirname.
28254
28255         * modules/verify: New file.
28256         * MODULES.html.sh (Diagnostics <assert.h>): New section,
28257         with "verify" module.
28258
28259 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28260
28261         Sync from coreutils.
28262
28263         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
28264         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
28265         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
28266         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
28267         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
28268         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
28269         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
28270         Don't bother checking for string.h, stdlib.h, unistd.h.
28271         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
28272         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
28273         module's job.
28274         * m4/jm-macros.m4 (gl_MACROS): Likewise.
28275         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
28276
28277         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
28278         (gl_GETDATE): Use it.
28279
28280         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
28281
28282 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28283
28284         Sync from coreutils.
28285
28286         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
28287         stat-time.h.
28288         * lib/argmatch.h: Include verify.h
28289         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
28290         (ARGMATCH_ASSERT): Remove; unused.
28291         * lib/canonicalize.c: Assume STDC_HEADERS.
28292         * lib/exclude.c: Include "strcase.h".
28293         * lib/regex_internal.h [!defined _LIBC]: Likewise.
28294         * lib/getusershell.c: Include stdio--.h rather than stdio.h
28295         and stdio-safer.h.
28296         (getusershell): Call fopen, not fopen_safer.
28297         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
28298         Do not include unistd-safer.h.
28299         (save_cwd): Don't call fd_safer; no longer needed
28300         now that we include fcntl--.h.
28301
28302         * lib/getdate.y (relative_time): New type.
28303         (RELATIVE_TIME_0): New constant.
28304         (parser_control): Use relative_time instead of doing it ourselves.
28305         (%union): Add new relative_time rel member.
28306         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
28307         Now typeless.
28308         (relunit, relunit_snumber): Now of type rel.
28309         (zone, rel, relunit, get_date): Adjust to above changes.
28310
28311         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
28312         Do not include unistd-safer.h.
28313         (getloadavg): Don't call fd_safer; no longer needed
28314         now that we include fcntl--.h.
28315
28316         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
28317         (make_dir_parents): Treat ENOSYS like EEXIST.
28318
28319         Improve quality of diagnostics on restore_cwd failure.
28320         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
28321         (make_dir_parents): Last arg is now int * (for errno), not bool *.
28322         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
28323         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
28324         each time through the loop.  Do not diagnose restore_cwd failure;
28325         that is the caller's job (and perhaps the caller does not care).
28326
28327         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
28328         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
28329         If the file already exists but is not a directory, don't bother
28330         to try to make its parents.
28331         Close potential file descriptor leak if we can't chdir("/") (!).
28332         Don't always return true if chdir($PWD) fails; return true only
28333         if the requested action was done successfully (except for the
28334         chdir($PWD)).
28335         Don't log final directory unless we actually made it.
28336         Refactor to avoid duplicate code to fix up permissions.
28337         Don't attempt to fix up parent permissions if chdir($PWD) fails.
28338
28339         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
28340         to make it a bit faster and (I hope) clearer.
28341         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
28342         Fix bug in formats like %2N.
28343
28344         * lib/verify.h: New file.
28345
28346 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28347
28348         Sync from coreutils.
28349         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
28350
28351 2005-09-22  Jim Meyering  <jim@meyering.net>
28352
28353         Sync from coreutils.
28354
28355         * m4/lstat.m4 (gl_FUNC_LSTAT):
28356         Use AC_LIBSOURCES to require lstat.c and lstat.h.
28357         Remove obsolete comment.
28358         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
28359         * m4/xstrtod.m4: Likewise.
28360
28361         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
28362
28363 2005-09-22  Jim Meyering  <jim@meyering.net>
28364
28365         Sync from coreutils.
28366
28367         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
28368
28369         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
28370         the .tm_year member, since otherwise gcc-4.0 would now warn about
28371         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
28372
28373         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
28374         order to avoid an unsuppressible warning from gcc on 64-bit systems.
28375
28376         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
28377         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
28378         when run in a time zone for which daylight savings time is in effect
28379         for the starting date.
28380
28381         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
28382         stop us from restricting permissions of just-created absolute-named
28383         directories.
28384         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
28385         to restore initial working directory.
28386         * lib/mkdir-p.c (make_dir_parents): New parameter:
28387         different_working_dir, to tell caller if/when we change the working
28388         directory and are unable to return to the initial one.
28389         * lib/mkdir-p.h (make_dir_parents): Update prototype.
28390         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
28391         `return false'.  This fixes a bug introduced on 2004-07-30.
28392
28393         * lib/openat.c (fdopendir): Be sure to close the supplied
28394         file descriptor before returning.  This makes our replacement
28395         implementation a little closer to Solaris's, where fdopendir
28396         ties the file descriptor to the returned DIR* pointer.
28397         * lib/openat.c (unlinkat): New function.
28398         * lib/openat.h (unlinkat): Add prototype.
28399         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
28400         (openat_restore_fail): Rename from openat_restore_die.
28401         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
28402
28403         Provide an alternative to exiting immediately upon save_cwd or
28404         restore_cwd failure.  Now, an application can arrange e.g.,
28405         to perform a longjump in that case.
28406         * lib/openat.c: Include dirname.h.
28407         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
28408         (rpl_openat, fdopendir, fstatat): Call openat_save_die
28409         and openat_restore_die rather than calling error directly.
28410         Don't include "error.h" or "exitfail.h"; they're no longer needed.
28411
28412         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
28413         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
28414         define.
28415
28416         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
28417         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
28418                             int utc, int nanoseconds);
28419         Background:
28420         date should not have to allocate a megabyte of virtual memory to
28421         handle a format argument like +%1048575T.  When implemented with
28422         strftime, it must allocate such a buffer, use strftime to fill it
28423         in, print it, then free it.
28424         With fprintftime, it simply prints everything and exits.
28425         With no need for memory allocation, that's one fewer way to fail.
28426         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
28427         optional field width, not before, so we accept %9:z, not %:9z.
28428         (my_strftime): Be sure to use L_('x') for literals.
28429
28430         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
28431         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
28432         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
28433         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
28434         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
28435         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
28436         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
28437         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
28438         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
28439         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
28440         * lib/xgethostname.c, lib/xreadlink.c:
28441         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
28442
28443         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
28444         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
28445         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
28446         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
28447         and don't include <sys/file.h>).
28448
28449 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
28450
28451         Sync from coreutils.
28452
28453         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
28454         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
28455         [!LDAV_DONE]: Avoid unused variable warning.
28456
28457 2005-09-21  Bruno Haible  <bruno@clisp.org>
28458
28459         * lib/unicodeio.h (unicode_to_mb): New declaration.
28460
28461 2005-09-20  Derek Price  <derek@ximbiot.com>
28462
28463         * lib/getaddrinfo.c: Don't include <netdb.h> included from
28464         getaddrinfo.h.
28465
28466 2005-09-20  Bruno Haible  <bruno@clisp.org>
28467
28468         * gnulib-tool: Remove trailing slashes from the values specified for
28469         --source-base, --m4-base, --tests-base, --aux-dir.
28470         Suggested by Simon Josefsson <jas@extundo.com>.
28471
28472 2005-09-20  Bruno Haible  <bruno@clisp.org>
28473
28474         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
28475         func_modules_to_filelist, func_import, func_create_testdir): Make all
28476         sorting results locale-independent, so that gnulib-cache.m4 doesn't
28477         change when gnulib-tool is invoked in a different locale.
28478
28479 2005-09-19  Simon Josefsson  <jas@extundo.com>
28480
28481         * m4/socklen.m4: Fix typo.
28482
28483 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28484
28485         Use a consistent style for including <config.h>.
28486         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
28487         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
28488         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
28489         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
28490         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
28491         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
28492         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
28493         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
28494         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
28495         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
28496         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
28497         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
28498         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
28499         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
28500         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
28501         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
28502         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
28503         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
28504         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
28505         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
28506         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
28507         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
28508         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
28509         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
28510         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
28511         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
28512         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
28513         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
28514         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
28515         lib/xstrtoumax.c, lib/yesno.c:
28516         Standardize inclusion of config.h.
28517         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
28518         lib/inttostr.h:  Removed inclusion of config.h from header files.
28519         * lib/inttostr.c:  Adjusted in-tree users.
28520         * lib/timespec.h: Remove superfluous warning to include config.h.
28521         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
28522         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
28523         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
28524         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
28525         config.h with HAVE_CONFIG_H.
28526
28527 2005-09-19  Jim Meyering  <jim@meyering.net>
28528
28529         * modules/pathmax (License): Change to LGPL.
28530
28531 2005-09-19  Derek Price  <derek@ximbiot.com>
28532
28533         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
28534
28535 2005-09-19  Bruno Haible  <bruno@clisp.org>
28536
28537         * gnulib-tool (import): Provide default for --tests-base.
28538
28539 2005-09-19  Bruno Haible  <bruno@clisp.org>
28540
28541         * doc/quote.texi: New file, extracted from gnulib.texi.
28542         * doc/ctime.texi: New file, extracted from gnulib.texi.
28543         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
28544         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
28545         * doc/gnulib.texi: Include them.
28546
28547 2005-09-18  Bruno Haible  <bruno@clisp.org>
28548
28549         Portability fix.
28550         * gnulib-tool (func_readlink): New function.
28551         (func_ln_if_changed): Use it.
28552
28553 2005-09-18  Bruno Haible  <bruno@clisp.org>
28554
28555         * gnulib-tool: Support --with-tests also with --import.
28556         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
28557         (func_import): Use variables $testsbase and $inctests. Emit a
28558         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
28559         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
28560         SUBDIRS += $testsdir.
28561         (func_create_testdir): Update.
28562
28563 2005-09-18  Bruno Haible  <bruno@clisp.org>
28564
28565         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
28566         instead of $dry_run.
28567         (func_cp_if_changed, func_mv_if_changed): Remove functions.
28568         (func_ln_if_changed): Don't handle dry-run here.
28569         (func_import): In dry-run mode, detect more precisely which actions
28570         would be performed, and don't use "...ing" verbs.
28571
28572 2005-09-18  Bruno Haible  <bruno@clisp.org>
28573
28574         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
28575         (func_import): Use join on two temporary files instead of three nested
28576         loops, in order to determine which files are new or old.
28577
28578 2005-09-18  Bruno Haible  <bruno@clisp.org>
28579
28580         * gnulib-tool (func_import): Comment out code that spits out the
28581         new files with --dry-run.
28582
28583 2005-09-18  Bruno Haible  <bruno@clisp.org>
28584
28585         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
28586
28587 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28588
28589         * lib/stat-time.h: New file.
28590         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
28591         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
28592         in a different way.
28593         (timespec_cmp): New function.
28594         * lib/utimecmp.c: Include stat-time.h.
28595         (SYSCALL_RESOLUTION): Depend on whether various struct stat
28596         members exist, not on the obsolescent ST_MTIM_NSEC.
28597         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
28598
28599 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28600
28601         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
28602
28603 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28604
28605         * MODULES.html.sh (File system functions): Add stat-time.
28606         * modules/stat-time: New file.
28607         * modules/timespec (Files): Remove m4/st_mtim.m4; this
28608         is now done in a different way, by the stat-time module.
28609         * modules/utimecmp (Depends-on): Add stat-time.
28610
28611 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
28612
28613         * m4/st_mtim.m4: Remove.  Superseded by...
28614         * m4/stat-time.m4: New file.
28615         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
28616         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
28617
28618 2005-09-15  Derek Price  <derek@ximbiot.com>
28619
28620         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
28621
28622 2005-09-15  Derek Price  <derek@ximbiot.com>
28623
28624         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
28625         * lib/regex_internal.c: Ditto, using this...
28626         (__GNUC_PREREQ): ...new macro.
28627         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
28628         using...
28629         (__GNUC_PREREQ): ...this new macro.
28630
28631         * lib/strstr.h: Include string.h. Define strstr as a macro here.
28632
28633 2005-09-15  Derek Price  <derek@ximbiot.com>
28634             Paul Eggert  <eggert@cs.ucla.edu>
28635
28636         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
28637         changes, consolidating in...
28638         * lib/regex_internal.h: ...this file.
28639
28640 2005-09-13  Jim Meyering  <jim@meyering.net>
28641
28642         * lib/canon-host.c: Filter through gnu indent and reword comments
28643         slightly.
28644         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
28645
28646 2005-09-13  Derek Price  <derek@ximbiot.com>
28647
28648         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
28649         failure.
28650         Reported by Jim Meyering  <jim@meyering.net>.
28651
28652 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
28653
28654         * lib/base64.c: Typo.
28655         (base64_encode): Put b64str in initialized data section.
28656
28657 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
28658
28659         Merge glibc and coreutils changes into gnulib, plus a few
28660         extra fixes.
28661         * lib/md5.c: Use #error rather than a string.
28662         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
28663         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
28664         (__attribute__): Define to empty for non recent-GCC.
28665         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
28666         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
28667         Renamed from their non-__ counterparts, with new macros replacing
28668         them if not _LIBC.  Add __THROW attribute.
28669         (rol): Remove.
28670         (struct md5_ctx): Align buffer if using GCC.
28671         * lib/sha1.h (struct sha1_ctx): Likewise.
28672         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
28673         The old name was backwards.
28674         (NOTSWAP): Remove; not used.
28675         (rol): New macro, moved here from md5.h.
28676         (sha1_process_block): Remove a FIXME that doesn't make sense.
28677
28678 2005-09-12  Derek Price  <derek@ximbiot.com>
28679
28680         Return usable errors from canon-host.
28681         * lib/canon-host.h: New file.
28682         * lib/canon-host.c (canon_host): Wrap...
28683         (canon_host_r): ...this new function, which now relies exclusively on
28684         getaddrinfo.
28685         (ch_strerror): New function.
28686         (last_cherror): New global.
28687         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
28688         interface.
28689         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
28690         void *.
28691         (freeaddrinfo): Free ai->ai_canonname when set.
28692
28693 2005-09-12  Derek Price  <derek@ximbiot.com>
28694
28695         Make canon-host require getaddrinfo.
28696         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
28697         AC_LIBSOURCE canon-host.h.  Call...
28698         (gl_PREREQ_CANON_HOST): ...this new function, which requires
28699         gl_GETADDRINFO.
28700         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
28701
28702 2005-09-12  Derek Price  <derek@ximbiot.com>
28703
28704         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
28705         LGPL.
28706         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
28707
28708 2005-09-12  Derek Price  <derek@ximbiot.com>
28709
28710         * lib/gai_strerror.c: Include config.h when available.  Include
28711         getaddrinfo.h before other headers to test interface.
28712         Reported by Larry Jones <lawrence.jones@ugs.com>.
28713
28714 2005-09-12  Derek Price  <derek@ximbiot.com>
28715             Paul Eggert  <eggert@cs.ucla.edu>
28716
28717         * modules/glob (Files): Add glob-libc.h.
28718
28719 2005-09-12  Derek Price  <derek@ximbiot.com>
28720             Paul Eggert  <eggert@cs.ucla.edu>
28721
28722         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
28723         glob_.h, glob-libc.h.
28724         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
28725
28726 2005-09-12  Derek Price  <derek@ximbiot.com>
28727             Paul Eggert  <eggert@cs.ucla.edu>
28728
28729         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
28730         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
28731         protecting things that should be done only in gnulib contexts.
28732         * lib/glob_.h: New file, containing only the glob things needed for
28733         gnulib.
28734         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
28735         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
28736         (glob, globfree, glob_pattern_p): Now defined simply in terms of
28737         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
28738         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
28739         and to respect the namespace rules better.
28740
28741 2005-09-08  Simon Josefsson  <jas@extundo.com>
28742
28743         * modules/socklen: New file.
28744
28745 2005-09-08  Simon Josefsson  <jas@extundo.com>
28746
28747         * m4/socklen.m4: New file.
28748
28749 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28750
28751         * modules/utimens (Files): Add m4/utimbuf.m4, since
28752         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
28753         Reported by Sergey Poznyakoff.
28754
28755 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28756
28757         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
28758         definitions, since that's the preferred style in glibc.
28759         Fix a minor spacing issue, and update copyright notice to match
28760         glibc's.
28761
28762 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28763
28764         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
28765
28766 2005-09-06  Simon Josefsson  <jas@extundo.com>
28767
28768         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
28769         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
28770
28771 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28772
28773         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
28774         warning.
28775
28776 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28777
28778         * config/srclist.txt: Add glibc bug 1302.
28779
28780 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
28781
28782         Change bitset word type from unsigned int to unsigned long int,
28783         as this has better performance on typical 64-bit hosts.
28784         Port bitset code to hosts with unusual word sizes.
28785         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
28786         (build_collating_symbol):
28787         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
28788         argument is a bitset.  This is merely a style issue, but it makes
28789         it clearer that an entire array is expected.
28790         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
28791         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
28792         Port to the case where bitset_word is not the same as unsigned int.
28793         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
28794         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
28795         Likewise.
28796         * lib/regexec.c (check_dst_limits_calc_pos_1,
28797         check_subexp_matching_top):
28798         (build_trtable, group_nodes_into_DFAstates):
28799         Likewise.
28800         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
28801         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
28802         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
28803         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
28804         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
28805         * lib/regcomp.c (optimize_subexps, lower_subexp):
28806         Work even if bitset_word has holes in its bitwise representation.
28807         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
28808         * lib/regexec.c (check_dst_limits_calc_pos_1,
28809         check_subexp_matching_top):
28810         Likewise.
28811         * lib/regex_internal.c (re_string_reconstruct):
28812         Don't assume UCHAR_MAX == 255.
28813         * lib/regex_internal.h (bitset_set_all): Likewise.
28814         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
28815         All uses changed.
28816         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
28817         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
28818         All uses changed.
28819         (BITSET_WORD_MAX): New macro.
28820         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
28821         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
28822         (bitset_empty, bitset_copy):
28823         Prefer sizeof (bitset) to multiplying it out ourselves.
28824         (bitset_not_merge): Remove; unused.
28825         (bitset_contain): Return bool, not unsigned int with one bit on.
28826         All callers changed.
28827         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
28828         alignment than re_node_set; do this by defining a new internal
28829         type struct dests_alloc and using it to allocate memory.
28830
28831 2005-09-05  Bruno Haible  <bruno@clisp.org>
28832
28833         * gnulib-tool (func_import): Fix comparison in handling of symbolic
28834         links.
28835
28836 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
28837
28838         * modules/size_max (Makefile.am): Add size_max.h
28839
28840 2005-09-04  Derek Price  <derek@ximbiot.com>
28841
28842         * gnulib-tool (func_import): Fix reversed $symbolic logic.
28843
28844 2005-09-03  Simon Josefsson  <jas@extundo.com>
28845
28846         * gnulib-tool: Fix typo.
28847
28848 2005-09-03  Simon Josefsson  <jas@extundo.com>
28849
28850         * config/srclist.txt: Add glibc bug 1293.
28851
28852 2005-09-03  Derek Price  <derek@ximbiot.com>
28853
28854         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
28855         From Larry Jones <lawrence.jones@ugs.com>.
28856
28857 2005-09-02  Simon Josefsson  <jas@extundo.com>
28858
28859         * modules/socklen: New file.
28860
28861 2005-09-02  Simon Josefsson  <jas@extundo.com>
28862
28863         * modules/havelib: New module.
28864
28865         * modules/gettext, modules/iconv, modules/lock, modules/readline:
28866         Use havelib.
28867
28868 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
28869
28870         Check for arithmetic overflow when calculating sizes, to prevent
28871         some buffer-overflow issues.  These patches are conservative, in the
28872         sense that when I couldn't determine whether an overflow was possible,
28873         I inserted a run-time check.
28874         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
28875         macros.
28876         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
28877         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
28878         (re_xnrealloc, re_x2nrealloc): New inline functions.
28879         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
28880         parse_bracket_exp):
28881         (build_equiv_class, build_charclass): Check for arithmetic overflow
28882         in size expression calculations.
28883         * lib/regex_internal.c (re_string_realloc_buffers):
28884         (build_wcs_upper_buffer, re_node_set_add_intersect):
28885         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
28886         (re_dfa_add_node, register_state): Likewise.
28887         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
28888         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
28889         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
28890         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
28891
28892 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
28893
28894         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
28895         m4/ulonglong.m4.  Problem reported by Martin Lambers.
28896
28897 2005-09-02  Bruno Haible  <bruno@clisp.org>
28898
28899         Support for lib vs. lib64 distinction on biarch platforms.
28900         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
28901         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
28902         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
28903
28904 2005-09-02  Bruno Haible  <bruno@clisp.org>
28905
28906         * gnulib-tool (import): In the other first-use case, provide defaults
28907         as well.
28908
28909 2005-09-02  Bruno Haible  <bruno@clisp.org>
28910
28911         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
28912         patches not yet found in the latest gettext release.
28913
28914 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
28915
28916         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
28917         to avoid a collision with bits/local_lim.h in glibc.
28918         All uses changed.  Problem reported by Dmitry V. Levin in
28919         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
28920
28921         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
28922         bugs in int versus size_t comparisons.
28923         (re_string_context_at): Fix bug where the code assumed that
28924         Idx is signed.
28925
28926         Use bool where appropriate.
28927         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
28928         All callers changed.
28929         (calc_eclosure_iter): Likewise, for ROOT arg.
28930         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
28931         (build_charclass_op): Likewise, for NON_MATCH arg.
28932         * lib/regex_internal.c (re_string_allocate, re_string_construct):
28933         (re_string_construct_common): Likewise, for ICASE arg.
28934         * lib/regexec.c (re_search_2_stub, re_search_stub):
28935         Likewise, for RET_LEN arg.
28936         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
28937         (set_regs): Likewise, for FL_BACKTRACK arg.
28938         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
28939         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
28940         (calc_eclosure_iter, parse_bracket_exp):
28941         Use bool for internal variables that are booleans.
28942         * lib/regexec.c (re_search_internal, check_matching,
28943         proceed_next_node):
28944         (set_regs, build_sifted_states, sift_states_bkref):
28945         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
28946         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
28947         (find_collation_sequence_value):
28948         Likewise.
28949         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
28950         (re_node_set_compare):
28951         Return bool, not int. All callers changed.
28952         * lib/regexec.c (check_halt_node_context, check_dst_limits):
28953         (build_trtable, check_node_accept): Likewise.
28954         * lib/regex_internal.h: Include stdbool.h.
28955
28956         Fix bugs uncovered when converting to bool.
28957         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
28958         failure instead of charging ahead blindly.
28959         * lib/regex_internal.c (register_state): Likewise.
28960         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
28961         for freeing internal storage.
28962         (group_nodes_into_DFA_states): Use unsigned int, not int, for
28963         bitset pieces used as boolean, to avoid undefined behavior
28964         on hosts that do int overflow checking.
28965
28966 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
28967
28968         * config/srclist.txt: Add glibc bugs 1285-1287.
28969
28970 2005-09-01  Jim Meyering  <jim@meyering.net>
28971
28972         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
28973         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
28974         Require gl_STAT_MACROS, too.
28975
28976 2005-09-01  Bruno Haible  <bruno@clisp.org>
28977
28978         * gnulib-tool (import): In the first-use case, provide defaults.
28979
28980 2005-09-01  Bruno Haible  <bruno@clisp.org>
28981
28982         * gnulib-tool (func_import): Remove the .tmp files.
28983
28984 2005-09-01  Bruno Haible  <bruno@clisp.org>
28985
28986         * gnulib-tool (func_import): Fix handling of symbolic links.
28987
28988 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
28989
28990         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
28991         old glibc regex code mishandles strings longer than 2**31 bytes.
28992         This patch fixes this when the regex code is used in gnulib
28993         (i.e., outside glibc).
28994
28995         This patch should not affect the use of the regex code inside
28996         glibc.  No doubt this problem also needs to be handled for glibc
28997         as well, but the result will be an incompatible change to the
28998         glibc ABI, and the old ABI will have to be supported too.  That
28999         can be the the subject for another patch.
29000
29001         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
29002         governing whether the rest of this patch is active.  By default,
29003         the macro is disabled and the patch has no effect.
29004         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
29005         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
29006         (struct re_pattern_buffer, re_search, re_search_2, re_match):
29007         (re_match_2, re_set_registers): Use the new types.
29008         * lib/regex_internal.h (Idx, re_hashval_t): New types.
29009         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
29010         New macros.
29011         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
29012         (re_string_context_at, bin_tree_t, re_dfastate_t):
29013         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
29014         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
29015         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
29016         (re_string_char_size_at, re_string_wchar_at):
29017         (re_string_elem_size_at):
29018         Use the new types and macros to port to 64-bit hosts.
29019         Use unsigned types for internal values, so that the code
29020         mostly works even for arrays larger than SSIZE_MAX.
29021         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
29022         (search_duplicated_node, calc_eclosure_iter, fetch_number):
29023         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
29024         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
29025         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
29026         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
29027         (calc_inveclosure, parse_dup_op, build_range_exp):
29028         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
29029         (fetch_number, create_token_tree, mark_opt_subexp):
29030         Likewise.
29031         * lib/regex_internal.c (re_string_construct_common,
29032         create_ci_newstate):
29033         (create_cd_newstate, re_string_allocate, re_string_construct):
29034         (re_string_realloc_buffers, build_wcs_upper_buffer):
29035         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
29036         (re_string_reconstruct, re_string_peek_byte_case):
29037         (re_string_fetch_byte_case, re_string_context_at):
29038         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
29039         (re_node_set_init_copy, re_node_set_add_intersect):
29040         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29041         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29042         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
29043         (re_acquire_state, re_acquire_state_context, register_state):
29044         Likewise.
29045         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
29046         search_cur_bkref_entry):
29047         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
29048         (re_search_internal, re_search_2_stub, re_search_stub)
29049         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
29050         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
29051         (update_cur_sifted_state, check_dst_limits):
29052         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
29053         (check_subexp_limits, sift_states_bkref, merge_state_array):
29054         (check_subexp_matching_top, get_subexp, get_subexp_sub):
29055         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
29056         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
29057         (expand_bkref_cache, check_node_accept_bytes):
29058         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
29059         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
29060         (acquire_init_state_context, check_halt_node_context):
29061         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
29062         (sift_states_backward, clean_state_log_if_needed):
29063         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
29064         (find_recover_state, transit_state_sb, transit_state_mb):
29065         (transit_state_bkref, build_trtable, match_ctx_clean):
29066         Likewise.
29067         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
29068         to work around an assumption that REG_MISSING is negative.
29069
29070         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
29071         (seek_collating_symbol_entry) [defined _LIBC]:
29072         (lookup_collation_sequence_value) [defined _LIBC]:
29073         (build_range_exp, build_collating_symbol) [defined _LIBC]:
29074         Use prototypes rather than old-style function definitions.
29075         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
29076         (transit_state_sb) [0]:
29077         (find_collation_sequence_value) [defined _LIBC]: Likewise.
29078
29079         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
29080         rm_eo.
29081
29082         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
29083         (optimize_subexps, lower_subexp):
29084         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
29085         since the signed shift might overflow.  Use 1u<<31 instead.
29086         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
29087         Likewise.
29088         * lib/regexec.c (check_dst_limits_calc_pos_1,
29089         check_subexp_matching_top): Likewise.
29090
29091         * lib/regcomp.c (optimize_subexps, lower_subexp):
29092         Use CHAR_BIT rather than 8, for clarity.
29093         * lib/regexec.c (check_dst_limits_calc_pos_1):
29094         (check_subexp_matching_top): Likewise.
29095         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
29096         have to worry about portability issues when shifting it left.
29097         Remove no-longer-needed test for table_size > 0.
29098         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
29099         in a word, as the resulting behavior is undefined.
29100         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
29101         in one case, a <= should have been an <, and in another case the
29102         whole test was missing.
29103         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
29104         the standard name CHAR_BIT.
29105         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
29106         this is not true on one's complement and signed-magnitude hosts.
29107
29108         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
29109         next_last_offset.
29110         (struct re_dfa_t): Remove unused member states_alloc.
29111         * lib/regcomp.c (init_dfa): Don't initialize unused members.
29112
29113 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29114
29115         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
29116         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
29117         and large-file glibc and in 32-bit large-file Solaris.
29118
29119 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29120
29121         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
29122         lengths fit in regoff_t; this isn't true if regoff_t is the same
29123         width as size_t.
29124         * lib/regex.c (re_search_internal): 5th arg is LAST_START
29125         (= START + RANGE) instead of RANGE.  This avoids overflow
29126         problems when regoff_t is the same width as size_t.
29127         All callers changed.
29128         (re_search_2_stub): Check for overflow when adding the
29129         sizes of the two strings.
29130         (re_search_stub): Check for overflow when adding START
29131         to RANGE; if it occurs, substitute the extreme value.
29132
29133 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29134
29135         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
29136
29137 2005-08-31  Jim Meyering  <jim@meyering.net>
29138
29139         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
29140         a pointer-to-const.
29141         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
29142         (register_state): Likewise.
29143         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
29144         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
29145         (group_nodes_into_DFAstates): Likewise.
29146
29147 2005-08-31  Jim Meyering  <jim@meyering.net>
29148
29149         * check-module: Add a FIXME comment.
29150
29151 2005-08-31  Eric Blake  <ebb9@byu.net>
29152
29153         * modules/unistd-safer (Files): Add unistd--.h.
29154         * modules/stdio-safer (Files): Add stdio--.h.
29155
29156 2005-08-31  Derek Price  <derek@ximbiot.com>
29157
29158         * lib/getdelim.c (getdelim): Return EOF on EOF.
29159         Reported by Larry Jones <lawrence.jones@ugs.com>.
29160
29161 2005-08-31  Bruno Haible  <bruno@clisp.org>
29162
29163         Avoid unnecessary diffs in the generated lib/Makefile.am.
29164         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
29165         the generated files.
29166         (func_import): Don't set cmd.
29167
29168 2005-08-31  Bruno Haible  <bruno@clisp.org>
29169
29170         * lib/strstr.c: Include <stddef.h>, for NULL.
29171         * lib/strcasestr.c: Likewise.
29172         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
29173
29174 2005-08-31  Bruno Haible  <bruno@clisp.org>
29175
29176         * gnulib-tool: New option --macro-prefix.
29177         (func_import): Use macro_prefix.
29178         (import): Handle option --macro-prefix.
29179
29180 2005-08-31  Bruno Haible  <bruno@clisp.org>
29181
29182         * gnulib-tool (import): Rename most ac_* variables to cached_*.
29183         Also use new variables cached_lgpl, cached_libtool.
29184
29185 2005-08-31  Bruno Haible  <bruno@clisp.org>
29186
29187         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
29188         always instantiating them.
29189
29190 2005-08-31  Bruno Haible  <bruno@clisp.org>
29191
29192         * gnulib-tool (func_import): Read the previous cached settings
29193         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
29194         earlier added by gnulib but are now dropped. Warn when a gnulib file
29195         overwrites a non-gnulib file.
29196
29197 2005-08-31  Bruno Haible  <bruno@clisp.org>
29198
29199         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
29200         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
29201         projects that don't keep autogenerated files in CVS. Put into
29202         actioncmd only the specified modules, not the transitive closure.
29203
29204 2005-08-31  Bruno Haible  <bruno@clisp.org>
29205
29206         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
29207         Create directories that shall be filled.
29208         (import): Don't look for gl_* macros in configure.ac. Recurse across
29209         all directories containing a gnulib-cache.m4 files, if meaningful.
29210
29211 2005-08-31  Bruno Haible  <bruno@clisp.org>
29212
29213         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
29214         (import): Set seen_libtool when we see gl_LIBTOOL.
29215
29216 2005-08-31  Bruno Haible  <bruno@clisp.org>
29217
29218         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
29219         declaration macro definitions from generated gnulib.m4.
29220
29221 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
29222
29223         * lib/iconvme.h: Add prototype for iconv_alloc.
29224
29225 2005-08-29  Simon Josefsson  <jas@extundo.com>
29226
29227         * lib/iconvme.c: Fix errno.
29228
29229 2005-08-29  Bruno Haible  <bruno@clisp.org>
29230
29231         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
29232         that it works when the directory contains spaces.
29233
29234 2005-08-29  Bruno Haible  <bruno@clisp.org>
29235
29236         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
29237
29238 2005-08-29  Bruno Haible  <bruno@clisp.org>
29239
29240         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
29241         Emit more advice.
29242
29243 2005-08-29  Bruno Haible  <bruno@clisp.org>
29244         and Stepan Kasal  <kasal@ucw.cz>
29245
29246         * check-module: If more parameters are given, check each of them
29247         separately; add more exceptions, as noted by Jim Meyering.
29248         (check_module): New procedure.
29249         (%exempt_header): Now contains all exceptions.
29250
29251 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
29252
29253         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
29254
29255 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
29256
29257         * lib/iconvme.c: Split iconv_string into iconv_alloc.
29258
29259 2005-08-28  Bruno Haible  <bruno@clisp.org>
29260
29261         * m4/gnulib-tool.m4: New file.
29262
29263 2005-08-27  Jim Meyering  <jim@meyering.net>
29264
29265         * modules/unistd-safer (Files): Add pipe-safer.c.
29266         * modules/fcntl-safer (Files): Add creat-safer.c.
29267
29268 2005-08-27  Jim Meyering  <jim@meyering.net>
29269
29270         * m4/stdlib-safer.m4: New file.  From coreutils.
29271         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
29272         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
29273         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
29274         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
29275         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
29276
29277 2005-08-27  Jim Meyering  <jim@meyering.net>
29278
29279         * lib/fopen-safer.c: Merge minor changes from coreutils.
29280         * lib/dup-safer.c: Likewise.
29281         * lib/fd-safer.c: Likewise.
29282
29283         Merge from coreutils.
29284         * lib/stdio--.h: New file.
29285         * lib/stdlib--.h: New file.
29286         * lib/mkstemp-safer.c: New file.
29287
29288         GNU tar needs these.
29289         * lib/pipe-safer.c: New file.
29290         * lib/creat-safer.c: New file.
29291         * lib/fcntl--.h (creat): Define to creat_safer.
29292         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
29293         * lib/unistd--.h (pipe): Define to pipe_safer.
29294         * lib/unistd-safer.h: Declare pipe_safer.
29295
29296 2005-08-26  Simon Josefsson  <jas@extundo.com>
29297
29298         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
29299         Haible <bruno@clisp.org>.
29300
29301 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
29302
29303         * lib/regex_internal.h: Remove all references to
29304         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
29305         or better.
29306         (bitset_not, bitset_merge, bitset_not_merge):
29307         (bitset_mask, re_string_allocate, re_string_construct):
29308         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
29309         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
29310         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
29311         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
29312         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29313         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29314         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
29315         (re_acquire_state_context):
29316         Remove unnecessary forward decls.
29317         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
29318         Put __attribute at function definition,
29319         now that the function decl has been removed.
29320         * lib/regex_internal.c (re_string_peek_byte_case):
29321         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
29322         Likewise.
29323
29324 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
29325
29326         * m4/regex.m4: Add AC_PREREQ(2.50).
29327         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
29328
29329 2005-08-25  Simon Josefsson  <jas@extundo.com>
29330
29331         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
29332         __fsetlocking.
29333
29334 2005-08-25  Simon Josefsson  <jas@extundo.com>
29335
29336         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
29337         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
29338         GLIBC specific code.
29339
29340 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29341
29342         Make regex safe for g++.  This fixes one real bug (an "err"
29343         that should have been "*err").  g++ problem reported by
29344         Sam Steingold.
29345         * lib/regex_internal.h (re_calloc): New macro, consistent with
29346         re_malloc etc.  All callers of calloc changed to use re_calloc.
29347         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
29348         not int.  All callers changed.
29349         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
29350         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
29351         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
29352         (find_recover_state): Change "err" to "*err"; this fixes what
29353         appears to be a real bug.
29354         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
29355         versus int.
29356
29357 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29358
29359         * modules/regex (Depends-on): Add malloc, since the code
29360         assumes that !malloc(0) means failure.
29361
29362 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29363
29364         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
29365
29366         alloca modernization/simplification for regex.
29367         * lib/regex.c: Remove portability cruft for alloca.  This no longer
29368         needs to be at the start of the file, and can be moved into
29369         regex_internal.h and simplified.
29370         * lib/regex_internal.h: Include <alloca.h>.
29371         (__libc_use_alloca) [!defined _LIBC]: New macro.
29372         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
29373         now works outside glibc.
29374
29375 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29376
29377         * config/srclist.txt: Add glibc bugs 1241, 1245.
29378
29379 2005-08-25  Jim Meyering  <jim@meyering.net>
29380
29381         * lib/open-safer.c: Include <config.h>.
29382         Otherwise, we'd lose LARGEFILE support in any file using
29383         e.g. "fcntl--.h"
29384
29385 2005-08-25  Bruno Haible  <bruno@clisp.org>
29386
29387         * m4/minmax.m4: Require autoconf 2.52.
29388         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
29389         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
29390         alternatives of translit over the alphabet.
29391         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
29392
29393 2005-08-24  Simon Josefsson  <jas@extundo.com>
29394
29395         * tests/test-getpass.c: New file.
29396
29397 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29398
29399         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
29400         for GNU regex features.
29401
29402 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29403
29404         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
29405         * lib/regex.h (regerror): Likewise.
29406
29407         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
29408         requires this.  (The code never needed it.)
29409
29410         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
29411         All uses of recently-renamed identifiers changed to use the new,
29412         POSIX-compliant names.  The code will build and run just fine
29413         without these changes, but it's better to eat our own dog food
29414         and use the standard-conforming names.
29415
29416         * lib/regex.h: Fix a multitude of POSIX name space violations.
29417         These changes have an effect only for programs that define
29418         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
29419         do not change anything for programs compiled in the normal way.
29420         Also, there is no effect on the ABI.
29421
29422         (_REGEX_SOURCE): New macro.
29423         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
29424         defined and _GNU_SOURCE is not; this fixes a name space violation.
29425
29426         Rename the following macros to obey POSIX requirements.
29427         The old names are still visible as macros if _REGEX_SOURCE is defined.
29428         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
29429         RE_BACKSLASH_ESCAPE_IN_LISTS.
29430         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
29431         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
29432         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
29433         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
29434         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
29435         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
29436         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
29437         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
29438         (REG_INTERVALS): renamed from RE_INTERVALS.
29439         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
29440         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
29441         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
29442         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
29443         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
29444         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
29445         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
29446         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
29447         RE_UNMATCHED_RIGHT_PAREN_ORD.
29448         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
29449         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
29450         (REG_DEBUG): renamed from RE_DEBUG.
29451         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
29452         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
29453         unusual, since we can't clash with the POSIX REG_ICASE.
29454         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
29455         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
29456         (REG_NO_SUB): renamed from RE_NO_SUB.
29457         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
29458         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
29459         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
29460         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
29461         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
29462         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
29463         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
29464         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
29465         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
29466         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
29467         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
29468         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
29469         RE_SYNTAX_POSIX_MINIMAL_BASIC.
29470         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
29471         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
29472         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
29473         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
29474         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
29475         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
29476         (REG_FIXED): Renamed from REGS_FIXED.
29477         (REG_NREGS): Renamed from RE_NREGS.
29478
29479         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
29480         of other REG_* macros, since POSIX says the user is allowed to
29481         #undef these macros selectively.
29482
29483         (reg_errcode_t): Update comment stating what other tables need
29484         to be consistent.
29485
29486         Rename the following enum values to obey POSIX requirements.
29487         The old names are still visible as macros.
29488         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
29489         is not defined, since GNU is supposed to be a superset of POSIX as
29490         much as possible, and since we want reg_errcode_t to be a signed
29491         type for implementation consistency.
29492         (_REG_NOERROR): Renamed from REG_NOERROR.
29493         (_REG_NOMATCH): Renamed from REG_NOMATCH.
29494         (_REG_BADPAT): Renamed from REG_BADPAT.
29495         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
29496         (_REG_ECTYPE): Renamed from REG_ECTYPE.
29497         (_REG_EESCAPE): Renamed from REG_EESCAPE.
29498         (_REG_ESUBREG): Renamed from REG_ESUBREG.
29499         (_REG_EBRACK): Renamed from REG_EBRACK.
29500         (_REG_EPAREN): Renamed from REG_EPAREN.
29501         (_REG_EBRACE): Renamed from REG_EBRACE.
29502         (_REG_BADBR): Renamed from REG_BADBR.
29503         (_REG_ERANGE): Renamed from REG_ERANGE.
29504         (_REG_ESPACE): Renamed from REG_ESPACE.
29505         (_REG_BADRPT): Renamed from REG_BADRPT.
29506         (_REG_EEND): Renamed from REG_EEND.
29507         (_REG_ESIZE): Renamed from REG_ESIZE.
29508         (_REG_ERPAREN): Renamed from REG_ERPAREN.
29509         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
29510         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
29511         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
29512         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
29513
29514         (_REG_RE_NAME, _REG_RM_NAME): New macros.
29515         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
29516         changed.  But support the old name if the new one is not defined
29517         and if _REGEX_SOURCE.
29518
29519         Change the following member names in struct re_pattern_buffer.
29520         The old names are still supported if !_REGEX_SOURCE.
29521         The new names are always supported, regardless of _REGEX_SOURCE.
29522         (re_buffer): Renamed from buffer.
29523         (re_allocated): Renamed from allocated.
29524         (re_used): Renamed from used.
29525         (re_syntax): Renamed from syntax.
29526         (re_fastmap): Renamed from fastmap.
29527         (re_translate): Renamed from translate.
29528         (re_can_be_null): Renamed from can_be_null.
29529         (re_regs_allocated): Renamed from regs_allocated.
29530         (re_fastmap_accurate): Renamed from fastmap_accurate.
29531         (re_no_sub): Renamed from no_sub.
29532         (re_not_bol): Renamed from not_bol.
29533         (re_not_eol): Renamed from not_eol.
29534         (re_newline_anchor): Renamed from newline_anchor.
29535
29536         Change the following member names in struct re_registers.
29537         The old names are still supported if !_REGEX_SOURCE.
29538         The new names are always supported, regardless of _REGEX_SOURCE.
29539         (rm_num_regs): Renamed from num_regs.
29540         (rm_start): Renamed from start.
29541         (rm_end): Renamed from end.
29542
29543         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
29544         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
29545         Prepend __ to parameter names.
29546
29547         Undo yesterday's changes.
29548
29549 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29550
29551         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
29552         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
29553         lib/regex.c.
29554
29555 2005-08-24  Jim Meyering  <jim@meyering.net>
29556
29557         Sync from coreutils.
29558         * m4/fcntl-safer.m4: New file.
29559
29560         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
29561         and object files for this module.
29562
29563 2005-08-24  Jim Meyering  <jim@meyering.net>
29564
29565         Sync from coreutils.
29566         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
29567
29568 2005-08-24  Jim Meyering  <jim@meyering.net>
29569
29570         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
29571         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
29572
29573 2005-08-24  Jim Meyering  <jim@meyering.net>
29574
29575         * modules/fcntl-safer: New module.
29576         * modules/fts (Depends-on): Add fcntl-safer.
29577         * MODULES.html.sh (File descriptor based Input/Output):
29578         Add fcntl-safer.
29579
29580 2005-08-24  Bruno Haible  <bruno@clisp.org>
29581
29582         Support for unit test modules.
29583         * modules/README: Mention tests modules.
29584         * modules/TEMPLATE-TESTS: New file.
29585         * gnulib-tool: New options --extract-tests-module, --with-tests and
29586         --tests-base (unused for the moment).
29587         (testsbase, inctests): New variables.
29588         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
29589         (func_verify_module): Exclude TEMPLATE-TESTS.
29590         (func_verify_nontests_module, func_verify_tests_module): New functions.
29591         (func_get_dependencies): Add implicit dependency for tests modules.
29592         (func_get_tests_module): New function.
29593         (func_modules_transitive_closure): When --with-tests was specified,
29594         include the unit tests as well, unless explicitly avoided.
29595         (func_emit_lib_Makefile_am): Ignore the tests modules here.
29596         (func_emit_tests_Makefile_am): New function.
29597         (func_create_testdir): When --with-tests was specified, emit a
29598         tests/ directory.
29599         * MODULES.html.sh (Future developments): Update.
29600
29601 2005-08-24  Bruno Haible  <bruno@clisp.org>
29602
29603         * modules/tls-tests: New file.
29604         * tests/test-tls.c: New file, from GNU gettext.
29605
29606 2005-08-24  Bruno Haible  <bruno@clisp.org>
29607
29608         * modules/lock-tests: New file.
29609         * tests/test-lock.c: New file, from GNU gettext.
29610
29611 2005-08-24  Bruno Haible  <bruno@clisp.org>
29612
29613         * lib/lock.h: Add multiple inclusion guard.
29614         * lib/tls.h: Add multiple inclusion guard.
29615
29616 2005-08-24  Bruno Haible  <bruno@clisp.org>
29617
29618         * gnulib-tool: Add support for the --aux-dir option to
29619         --create-testdir, --create-megatestdir, --test, --megatest.
29620         (func_create_testdir, func_create_megatestdir): Optionally emit a
29621         AC_CONFIG_AUX_DIR directive.
29622         (create-testdir, create-megatestdir, test, megatest): Provide a
29623         default value for $auxdir.
29624
29625 2005-08-24  Bruno Haible  <bruno@clisp.org>
29626
29627         * gnulib-tool (import): Use compound statement instead of subshell
29628         where possible.
29629
29630 2005-08-24  Bruno Haible  <bruno@clisp.org>
29631
29632         * gnulib-tool (import): Change --aux-dir default to "build-aux".
29633
29634 2005-08-24  Bruno Haible  <bruno@clisp.org>
29635
29636         * gnulib-tool (func_version): Update.
29637
29638 2005-08-24  Bruno Haible  <bruno@clisp.org>
29639
29640         * gnulib-tool (func_import, func_create_testdir,
29641         func_create_megatestdir): Quote all autoconf macro arguments.
29642
29643 2005-08-24  Bruno Haible  <bruno@clisp.org>
29644
29645         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
29646         option --force, because --force causes the aclocal.m4 of each
29647         subdirectory to be newer than the corresponding config.h.in.
29648
29649 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29650
29651         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
29652         All contents moved to gl_REGEX.
29653         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
29654         assume that it does.
29655
29656 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29657
29658         * lib/regex.h (REG_NOSYS)
29659         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
29660         Define, since POSIX requires it as of 2001.
29661         (_REG_ENOSYS)
29662         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
29663         New private symbol, used to keep the enum signed in all cases.
29664         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
29665         Youngman in
29666         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
29667
29668         * lib/regex_internal.c (re_string_skip_chars, register_state):
29669         (calc_state_hash):
29670         Remove forward decls; no longer needed now that we use prototypes.
29671         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
29672         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
29673         (clean_state_log_if_needed): Likewise.
29674
29675 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29676
29677         * config/srclist.txt: Add glibc bugs 1231-1233.
29678
29679 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29680
29681         Fix problems reported by Sam Steingold in
29682         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
29683         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
29684         assumed that reg_errcode_t is a signed type, which is not
29685         necessarily true if _XOPEN_SOURCE is not defined.
29686         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
29687         since some compilers warn about it otherwise.
29688
29689 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29690
29691         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
29692         (init_word_char, create_initial_state, duplicate_node_closure):
29693         (fetch_token, peek_token_bracket, build_range_exp):
29694         (build_collating_symbol): Remove forward decls; no longer needed
29695         now that we use prototypes.
29696
29697         * lib/regcomp.c:
29698         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
29699         (re_compile_fastmap_iter, regcomp, regerror, regfree):
29700         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
29701         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
29702         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
29703         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
29704         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
29705         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
29706         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
29707         (build_range_exp, build_collating_symbol, parse_bracket_exp):
29708         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
29709         (build_charclass, build_charclass_op, fetch_number, create_tree):
29710         (create_token_tree, mark_opt_subexp, duplicate_tree):
29711         Use prototypes rather than old-style definitions.
29712
29713         * lib/regex_internal.c:
29714         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
29715         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
29716         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
29717         (re_string_reconstruct, re_string_peek_byte_case):
29718         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
29719         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
29720         (re_node_set_init_copy, re_node_set_add_intersect):
29721         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29722         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29723         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
29724         (re_acquire_state, re_acquire_state_context, register_state):
29725         (create_ci_newstate, create_cd_newstate, free_state):
29726         Likewise.
29727         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
29728         re_search_2):
29729         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
29730         (re_search_internal, prune_impossible_nodes):
29731         (acquire_init_state_context, check_matching, static):
29732         (check_halt_node_context, check_halt_state_context, proceed_next_node):
29733         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
29734         (update_regs, sift_states_backward, build_sifted_states):
29735         (clean_state_log_if_needed, merge_state_array):
29736         (update_cur_sifted_state, add_epsilon_src_nodes):
29737         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
29738         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
29739         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
29740         (find_recover_state, check_subexp_matching_top, transit_state_mb):
29741         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
29742         (check_arrival, check_arrival_add_next_nodes):
29743         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
29744         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
29745         (check_node_accept_bytes, check_node_accept, extend_buffers):
29746         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
29747         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
29748         (sift_ctx_init):
29749         Likewise.
29750
29751         * lib/regex_internal.h:
29752         (re_string_allocate, re_string_construct, re_string_reconstruct):
29753         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
29754         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
29755         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
29756         (re_string_context_at, re_string_peek_byte_case):
29757         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
29758         is defined, since we now use prototypes always.
29759
29760         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
29761         C89 or better.  All uses removed.
29762
29763 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29764
29765         * config/srclist.txt: Add glibc bugs 1220-1227.
29766
29767 2005-08-20  Jim Meyering  <jim@meyering.net>
29768
29769         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
29770         of unused local, dfa.
29771
29772 2005-08-20  Bruno Haible  <bruno@clisp.org>
29773
29774         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
29775
29776 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
29779         (re_node_set_insert_last, re_dfa_add_node):
29780         Rename local variables to avoid GCC shadowing warnings.
29781
29782 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29783
29784         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
29785         [defined lint]: Suppress bogus uninitialized-variable warnings.
29786
29787         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
29788         and let the caller return REG_ESPACE if out of space.  This
29789         removes an uninitialied-variable warning with GCC 4.0.1, and also
29790         avoids taking the address of a local variable.  All callers
29791         changed.
29792
29793 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29794
29795         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
29796         $LIBCSRC/posix/regexec.c.
29797         Add glibc bug 1217 for regcomp.c.
29798
29799 2005-08-19  Jim Meyering  <jim@meyering.net>
29800
29801         * lib/regexec.c (proceed_next_node): Redo local variables to
29802         avoid GCC shadowing warnings.
29803
29804 2005-08-18  Bruno Haible  <bruno@clisp.org>
29805
29806         * lib/strstr.c (strstr): Fix return value in multibyte case.
29807         * lib/strcasestr.c (strcasestr): Likewise.
29808
29809 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
29810
29811         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
29812
29813 2005-08-17  Jim Meyering  <jim@meyering.net>
29814
29815         Make the %s format (seconds since the epoch) work for a negative
29816         number and when used with a zero-padded field width, e.g. %015s.
29817
29818         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
29819         label so that it precedes the code to set `digits'.  Otherwise,
29820         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
29821         print `00-22'.  Now, it prints `-0022', as it should.
29822
29823 2005-08-17  Bruno Haible  <bruno@clisp.org>
29824
29825         * modules/strstr (Files): Add m4/mbrtowc.m4.
29826         (Depends-on): Add mbuiter.
29827
29828 2005-08-17  Bruno Haible  <bruno@clisp.org>
29829
29830         * modules/strcasestr: New file.
29831         * MODULES.html.sh (String handling, based on ANSI C 89): Add
29832         strcasestr.
29833
29834 2005-08-17  Bruno Haible  <bruno@clisp.org>
29835
29836         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
29837
29838 2005-08-17  Bruno Haible  <bruno@clisp.org>
29839
29840         * modules/mbuiter: New file.
29841         * MODULES.html.sh (Extended multibyte and wide character utilities):
29842         Add mbuiter.
29843
29844 2005-08-17  Bruno Haible  <bruno@clisp.org>
29845
29846         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
29847         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
29848
29849 2005-08-17  Bruno Haible  <bruno@clisp.org>
29850
29851         * m4/strcasestr.m4: New file.
29852
29853 2005-08-17  Bruno Haible  <bruno@clisp.org>
29854
29855         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
29856         * lib/strstr.c: Completely rewritten, with multibyte locale support.
29857
29858 2005-08-17  Bruno Haible  <bruno@clisp.org>
29859
29860         * lib/strcasestr.h: New file.
29861         * lib/strcasestr.c: New file.
29862
29863 2005-08-17  Bruno Haible  <bruno@clisp.org>
29864
29865         * lib/strcasecmp.c: Use mbuiter.h.
29866
29867 2005-08-17  Bruno Haible  <bruno@clisp.org>
29868
29869         * lib/mbuiter.h: New file.
29870
29871 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
29872
29873         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
29874         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
29875         and gl_GETOPT are both invoked via different paths (as happens
29876         with GNU tar CVS because it uses both argp and getopt), the former
29877         wins.
29878
29879 2005-08-16  Bruno Haible  <bruno@clisp.org>
29880
29881         * modules/tls: New file.
29882         * MODULES.html.sh (Multithreading): Add tls.
29883
29884 2005-08-16  Bruno Haible  <bruno@clisp.org>
29885
29886         * modules/strnlen1: New file.
29887         * MODULES.html.sh (String handling): Add strnlen1.
29888
29889 2005-08-16  Bruno Haible  <bruno@clisp.org>
29890
29891         * modules/strcase (Files): Add m4/mbrtowc.m4.
29892         (Depends-on): Add strnlen1, mbchar.
29893
29894 2005-08-16  Bruno Haible  <bruno@clisp.org>
29895
29896         * modules/mbiter: New file.
29897         * MODULES.html.sh (Extended multibyte and wide character utilities):
29898         Add mbiter.
29899
29900 2005-08-16  Bruno Haible  <bruno@clisp.org>
29901
29902         * modules/mbfile: New file.
29903         * MODULES.html.sh (Extended multibyte and wide character utilities):
29904         Add mbfile.
29905
29906 2005-08-16  Bruno Haible  <bruno@clisp.org>
29907
29908         * modules/mbchar: New file.
29909         * MODULES.html.sh (Extended multibyte and wide character utilities):
29910         New section.
29911
29912 2005-08-16  Bruno Haible  <bruno@clisp.org>
29913
29914         * m4/tls.m4: New file, from GNU gettext.
29915
29916 2005-08-16  Bruno Haible  <bruno@clisp.org>
29917
29918         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
29919         always.
29920         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
29921
29922 2005-08-16  Bruno Haible  <bruno@clisp.org>
29923
29924         * m4/mbiter.m4: New file.
29925
29926 2005-08-16  Bruno Haible  <bruno@clisp.org>
29927
29928         * m4/mbfile.m4: New file.
29929
29930 2005-08-16  Bruno Haible  <bruno@clisp.org>
29931
29932         * m4/mbchar.m4: New file.
29933
29934 2005-08-16  Bruno Haible  <bruno@clisp.org>
29935
29936         * lib/tls.h: New file, from GNU gettext.
29937         * lib/tls.c: New file, from GNU gettext.
29938
29939 2005-08-16  Bruno Haible  <bruno@clisp.org>
29940
29941         * lib/strnlen1.h: New file.
29942         * lib/strnlen1.c: New file.
29943
29944 2005-08-16  Bruno Haible  <bruno@clisp.org>
29945
29946         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
29947         (mbi_init): Update.
29948         (mbi_avail, mbi_advance): Let the iteration end before the terminating
29949         NUL byte, not after it.
29950
29951 2005-08-16  Bruno Haible  <bruno@clisp.org>
29952
29953         * lib/strcase.h (strcasecmp): Add note in comments.
29954         * lib/strncasecmp.c: Use code from strcasecmp.c.
29955         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
29956         (strcasecmp): Work correctly in multibyte locales.
29957
29958 2005-08-16  Bruno Haible  <bruno@clisp.org>
29959
29960         * lib/mbiter.h: New file.
29961
29962 2005-08-16  Bruno Haible  <bruno@clisp.org>
29963
29964         * lib/mbfile.h: New file.
29965
29966 2005-08-16  Bruno Haible  <bruno@clisp.org>
29967
29968         * lib/mbchar.h: New file.
29969         * lib/mbchar.c: New file.
29970
29971 2005-08-16  Bruno Haible  <bruno@clisp.org>
29972
29973         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
29974         the valid ones. Makes the comparison operations transitive:
29975         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
29976         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
29977
29978 2005-08-15  Simon Josefsson  <jas@extundo.com>
29979
29980         * modules/ssize_t (License): Change to 'unlimited'.
29981
29982         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
29983
29984 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
29985
29986         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
29987         Add comments for each pending glibc patch.
29988
29989 2005-08-15  Bruno Haible  <bruno@clisp.org>
29990
29991         * lib/regex.h (__restrict_arr): Don't define to __restrict if
29992         __cplusplus is defined.
29993
29994 2005-08-14  Jim Meyering  <jim@meyering.net>
29995
29996         Sync from coreutils.
29997
29998         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
29999         Use the hash-table-based cycle-detection code not just when
30000         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
30001         Reported by James Youngman in
30002         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
30003         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
30004         FTS_TIGHT_CYCLE_CHECK.
30005         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
30006         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
30007         once again.
30008         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
30009         * lib/fts.c (fd_safer): Remove decl.
30010         Include fcntl--.h rather than unistd-safer.h
30011         (fts_safe_changedir): Don't call fd_safer; no longer needed
30012         now that we include fcntl--.h.
30013
30014 2005-08-12  Simon Josefsson  <jas@extundo.com>
30015
30016         * modules/getndelim2: Use ssize_t module.
30017         * modules/getnline: Likewise.
30018         * modules/safe-read: Likewise.
30019         * modules/xreadlink: Likewise.
30020
30021         * modules/ssize_t: New file.
30022
30023 2005-08-12  Simon Josefsson  <jas@extundo.com>
30024
30025         * m4/readline.m4: Look for termcap, curses or ncurses if required.
30026
30027 2005-08-12  Simon Josefsson  <jas@extundo.com>
30028
30029         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
30030         ssize_t.
30031
30032 2005-08-12  Simon Josefsson  <jas@extundo.com>
30033
30034         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
30035         readline, getdelim and check_version.
30036         (Support for systems lacking ISO C 99: Sizes of integer types):
30037         Add size_max.
30038
30039 2005-08-12  Bruno Haible  <bruno@clisp.org>
30040
30041         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
30042
30043 2005-08-11  Simon Josefsson  <jas@extundo.com>
30044
30045         * modules/readline: New file.
30046
30047         * modules/strnlen (Files): Add strnlen.h.
30048
30049 2005-08-11  Simon Josefsson  <jas@extundo.com>
30050
30051         * m4/readline.m4: New file.
30052
30053 2005-08-11  Simon Josefsson  <jas@extundo.com>
30054
30055         * lib/readline.h, readline.c: New file.
30056
30057 2005-08-11  Simon Josefsson  <jas@extundo.com>
30058
30059         * doc/gnulib.texi (Initial import, Finishing touches): Mention
30060         gl_AVOID.
30061
30062 2005-08-11  Bruno Haible  <bruno@clisp.org>
30063
30064         * lib/strnlen.h (strnlen): Change parameter name to match comment.
30065
30066 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
30067
30068         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
30069
30070 2005-08-10  Simon Josefsson  <jas@extundo.com>
30071
30072         * tests/test-iconvme.c: New file.
30073
30074 2005-08-10  Simon Josefsson  <jas@extundo.com>
30075
30076         * m4/strnlen.m4: New file.
30077
30078         * m4/strndup.m4: Don't check for strnlen declaration, done in
30079         strnlen.m4.
30080
30081 2005-08-10  Simon Josefsson  <jas@extundo.com>
30082
30083         * lib/strndup.c: Use strnlen.h.
30084
30085         * lib/strnlen.h: New file.
30086
30087 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
30088
30089         * README: Typos.
30090
30091 2005-08-02  Simon Josefsson  <jas@extundo.com>
30092
30093         * modules/readline: New file.
30094
30095 2005-08-02  Simon Josefsson  <jas@extundo.com>
30096
30097         * modules/getdelim: New file.
30098
30099         * modules/getline: Rewrite, don't use getndelim2.
30100
30101 2005-08-02  Simon Josefsson  <jas@extundo.com>
30102
30103         * m4/getline.m4: Separate out getdelim stuff into separate module.
30104
30105         * m4/getdelim.m4: New file.
30106
30107 2005-08-02  Simon Josefsson  <jas@extundo.com>
30108
30109         * lib/getline.h, getline.c: Rewrite.
30110
30111         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
30112
30113 2005-07-31  Bruno Haible  <bruno@clisp.org>
30114
30115         * lib/lock.h (gl_lock_initializer): New macro.
30116         (gl_lock_define_initialized): Use it.
30117         (gl_rwlock_initializer): New macro.
30118         (gl_rwlock_define_initialized): Use it.
30119         (gl_recursive_lock_initializer): New macro.
30120         (gl_recursive_lock_define_initialized): Use it.
30121
30122 2005-07-30  Karl Berry  <karl@gnu.org>
30123
30124         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
30125         Report from Ben Pfaff, regarding getopt.
30126
30127 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
30128
30129         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
30130         normal way.
30131         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
30132         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
30133         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
30134         (gl_GETOPT): Use the new macros.  Most of the implementation
30135         is moved to the new macros.  This is for programs like Emacs
30136         that don't want all the functionality of gl_GETOPT.
30137
30138 2005-07-26  Bruno Haible  <bruno@clisp.org>
30139
30140         * m4/lock.m4: Update from GNU gettext.
30141
30142 2005-07-26  Bruno Haible  <bruno@clisp.org>
30143
30144         * lib/lock.h: Update from GNU gettext.
30145         * lib/lock.c: Update from GNU gettext.
30146
30147 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
30148
30149         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
30150         obsolescent AC_TRY_RUN.  Include the default includes files, for
30151         'exit'.
30152
30153 2005-07-24  Bruno Haible  <bruno@clisp.org>
30154
30155         * modules/visibility: New file.
30156         * MODULES.html.sh (Misc): Add visibility.
30157
30158 2005-07-24  Bruno Haible  <bruno@clisp.org>
30159
30160         * m4/visibility.m4: New file.
30161
30162 2005-07-24  Bruno Haible  <bruno@clisp.org>
30163
30164         * doc/visibility.texi: New file.
30165
30166 2005-07-22  Bruno Haible  <bruno@clisp.org>
30167
30168         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
30169         $(ALLOCA_H), redundant through BUILT_SOURCES.
30170         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
30171         redundant through BUILT_SOURCES.
30172         * modules/byteswap (Makefile.am): Remove explicit dependency on
30173         $(BYTESWAP_H), redundant through BUILT_SOURCES.
30174         * modules/fnmatch (Makefile.am): Remove explicit dependency on
30175         $(FNMATCH_H), redundant through BUILT_SOURCES.
30176         * modules/getopt (Makefile.am): Remove explicit dependency on
30177         $(GETOPT_H), redundant through BUILT_SOURCES.
30178         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
30179         redundant through BUILT_SOURCES.
30180         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
30181         redundant through BUILT_SOURCES.
30182         * modules/stdbool (Makefile.am): Remove explicit dependency on
30183         $(STDBOOL_H), redundant through BUILT_SOURCES.
30184         * modules/stdint (Makefile.am): Remove explicit dependency on
30185         $(STDINT_H), redundant through BUILT_SOURCES.
30186         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
30187         Remove explicit dependency on $(SYSEXITS_H).
30188         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
30189
30190 2005-07-18  Simon Josefsson  <jas@extundo.com>
30191
30192         * lib/check-version.c (check_version): Accept identical versions too.
30193
30194 2005-07-18  Bruno Haible  <bruno@clisp.org>
30195
30196         * modules/lock: New file.
30197         * MODULES.html.sh (Multithreading): New section.
30198
30199 2005-07-18  Bruno Haible  <bruno@clisp.org>
30200
30201         * m4/lock.m4: New file, from GNU gettext.
30202
30203 2005-07-18  Bruno Haible  <bruno@clisp.org>
30204
30205         * lib/lock.h: New file, from GNU gettext.
30206         * lib/lock.c: New file, from GNU gettext.
30207
30208 2005-07-18  Bruno Haible  <bruno@clisp.org>
30209
30210         * lib/lock.h (gl_once_t): New type.
30211         (gl_once_define, gl_once): New macros.
30212         * lib/lock.c (fresh_once): New variable.
30213         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
30214         functions.
30215
30216 2005-07-16  Simon Josefsson  <jas@extundo.com>
30217
30218         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
30219         workaround, suggested by Bruno.
30220
30221 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30222
30223         * modules/xalloc (Depends-on): Add xalloc-die.
30224         * modules/xvasprintf (Depends-on): Add xalloc-die.
30225
30226 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30227
30228         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
30229         with a minor change.
30230
30231 2005-07-15  Bruno Haible  <bruno@clisp.org>
30232
30233         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
30234         When using lib/poll.c, define poll as rpl_poll.
30235
30236 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
30237
30238         * modules/argp (Depends-on): Remove unlocked-io.
30239
30240 2005-07-14  Derek Price  <derek@ximbiot.com>
30241
30242         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
30243         for glob symlink bug.
30244
30245 2005-07-14  Bruno Haible  <bruno@clisp.org>
30246
30247         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
30248         Instead, test for *_unlocked function declarations directly.
30249
30250 2005-07-11  Simon Josefsson  <jas@extundo.com>
30251
30252         * modules/size_max: New file.
30253
30254         * modules/xsize: Depend on size_max module for size_max.m4.
30255
30256 2005-07-11  Simon Josefsson  <jas@extundo.com>
30257
30258         * lib/size_max.h: New file.
30259
30260 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
30261
30262         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
30263         copyright symbol and the year.
30264         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
30265         (version_etc_va): Use parameterized copyright notice.
30266         Reword to conform to the current GNU coding standards.
30267
30268 2005-07-11  Karl Berry  <karl@gnu.org>
30269
30270         * doc/gnulib.texi (Quoting): new node.
30271         (Initial import): more info, from Patrice.
30272
30273 2005-07-11  Bruno Haible  <bruno@clisp.org>
30274
30275         * gnulib-tool (func_usage): Document option --avoid.
30276         (Command line options): Handle --avoid.
30277         (func_acceptable): New function.
30278         (func_modules_transitive_closure): Use it.
30279
30280 2005-07-11  Bruno Haible  <bruno@clisp.org>
30281
30282         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
30283         Reported by Jim Meyering.
30284
30285 2005-07-10  Bruno Haible  <bruno@clisp.org>
30286
30287         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
30288         Needed when size_t is smaller than 'unsigned int'.
30289         Reported by Paul Eggert.
30290
30291 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30292
30293         * modules/argp (Depends-on): Add unlocked-io
30294
30295 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30296
30297         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
30298         block of defines.
30299
30300 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
30301
30302         * config/srclist.txt: Comment out regcomp.c, since we have a porting
30303         fix now.
30304
30305 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
30306         and Paul Eggert  <eggert@cs.ucla.edu>
30307
30308         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
30309         in wint_t, not wchar_t.  Remove now-unnecessary cast.
30310
30311 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30312
30313         * modules/regex (Files): Add lib/regex_internal.c,
30314         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
30315         (Depends-on): Add extensions.
30316         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
30317
30318 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30319
30320         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
30321         pathconf.
30322         * m4/same.m4 (gl_SAME): Likewise.
30323         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
30324
30325         * m4/regex.m4: Adjust to new libc regex implementation.
30326         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
30327         all the .c and .h parts of (the new) regex.
30328         Quote the m4 stuff better.
30329         Check for RE_ICASE bug of old gnulib.
30330         Check for REG_STARTEND of recent libc.
30331         Rename local variables from jm_* to gl_*.
30332         Quote operand of "test -f".
30333         Say "recent enough" version of libc, not "version 2".
30334         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
30335         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
30336         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
30337         Remove check for btowc, isascii.
30338         Require AM_LANGINFO_CODESET.
30339
30340 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30341
30342         * lib/regex.c, regex.h: Sync from libc.
30343         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
30344         * lib/regexec.c:
30345         New files, synced from libc, except that regex_internal.h
30346         currently has a small porting fix.
30347
30348 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30349
30350         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
30351         regex_internal.c, regexec.c.
30352         Add regex_internal.h too, but as a comment, since the libc version
30353         is currently broken in gnulib mode.
30354
30355 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
30356
30357         Support programs like Emacs that use gnulib but not gettext.
30358         * MODULES.html.sh (Internationalization functions): Add gettext-h.
30359         * modules/gettext-h: New file.
30360         * modules/gettext (Files): Remove lib/gettext.h.
30361         (Depends-on): Add gettext-h.
30362         (Makefile.am): Remove lib_SOURCES.
30363         * modules/argmatch, modules/c-stack, modules/closeout:
30364         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
30365         * modules/execute, modules/file-type, modules/getaddrinfo:
30366         * modules/getopt, modules/human, modules/javacomp:
30367         * modules/javaexec, modules/mkdir-p, modules/obstack:
30368         * modules/openat, modules/pagealign_alloc, modules/pipe:
30369         * modules/quotearg, modules/regex, modules/rpmatch:
30370         * modules/unicodeio, modules/userspec, modules/version-etc:
30371         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
30372         * modules/xsetenv:
30373         Depend on gettext-h, not gettext.
30374
30375 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
30376
30377         * gnulib-tool (func_import): Add support for 'public domain' license.
30378         * modules/alloca, modules/atexit, modules/memmove:
30379         Now public domain, not GPL.
30380         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
30381         * modules/realloc, modules/strerror, modules/strtod:
30382         Now LGPL, not GPL.
30383
30384 2005-07-05  Bruno Haible  <bruno@clisp.org>
30385
30386         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
30387         autoconf CVS. Needed for mingw.
30388
30389 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30390
30391         Remove the dependency of the strftime module on the tzset module.
30392         * modules/strftime (Depends-on): Remove dependency on tzset.
30393
30394 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30395
30396         Remove the dependency of the strftime module on the tzset module.
30397         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
30398         gl_FUNC_TZSET_CLOBBER.
30399
30400 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30401
30402         Remove the dependency of the strftime module on the tzset module.
30403         * lib/strftime.c (my_strftime)
30404         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
30405         Copy the input structure, to work around some of the bug with
30406         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
30407         Solaris releases, you should also use the tzset module, but we won't
30408         require it as a dependency any more since we don't want LGPLed code
30409         to depend on GPLed code.
30410
30411 2005-07-02  Jim Meyering  <jim@meyering.net>
30412
30413         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
30414         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
30415         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
30416         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
30417
30418 2005-07-02  Jim Meyering  <jim@meyering.net>
30419
30420         * lib/backupfile.c (backup_args): Change a `0' to NULL.
30421
30422 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
30423
30424         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
30425         declares only 'struct timespec;' (!).
30426
30427 2005-07-01  Jim Meyering  <jim@meyering.net>
30428
30429         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
30430         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
30431         * lib/save-cwd.c, tempname.c:
30432         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
30433         and don't include <sys/file.h>).
30434
30435 2005-06-29  Jim Meyering  <jim@meyering.net>
30436
30437         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
30438         type name.  Use the variable name instead.
30439         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
30440         Likewise.
30441
30442 2005-06-28  Simon Josefsson  <jas@extundo.com>
30443
30444         * modules/check-version (Files): Add check-version.m4.
30445
30446 2005-06-28  Simon Josefsson  <jas@extundo.com>
30447
30448         * m4/check-version.m4: New file, suggested by Jim Meyering
30449         <jim@meyering.net>.
30450
30451 2005-06-28  Simon Josefsson  <jas@extundo.com>
30452
30453         * lib/check-version.h, lib/check-version.c: New files.
30454
30455 2005-06-28  Simon Josefsson  <jas@extundo.com>
30456
30457         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
30458         collision with global variable.  Better indentation.  Don't
30459         increment buffer pointer beyond buffer end.  Based on comments
30460         from Paul Eggert <eggert@cs.ucla.edu>.
30461
30462         * lib/base64.h: Indent.
30463
30464 2005-06-28  Simon Josefsson  <jas@extundo.com>
30465
30466         * doc/gnulib.texi (Library version handling): New section.
30467
30468 2005-06-28  Jim Meyering  <jim@meyering.net>
30469
30470         * check-module (find_included_lib_files): Hard-code another
30471         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
30472         but modules/fts-lgpl (correctly) does not list those files.
30473
30474         * modules/canonicalize (Files): Add lib/pathmax.h.
30475
30476 2005-06-25  Simon Josefsson  <jas@extundo.com>
30477
30478         * modules/check-version: New file.
30479
30480 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
30481
30482         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
30483         initializer of struct addrinfo, as an indication that we don't
30484         care how many members the structure has.
30485
30486 2005-06-24  Derek Price  <derek@ximbiot.com>
30487         and Bruno Haible  <bruno@clisp.org>
30488
30489         Remove stat module & update lstat.
30490         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
30491         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30492         * m4/stat.m4: Remove this file.
30493
30494 2005-06-24  Derek Price  <derek@ximbiot.com>
30495         and Bruno Haible  <bruno@clisp.org>
30496
30497         Remove stat module & update lstat.
30498         * lib/stat.c: Remove this file...
30499         (slash_aware_lstat): ...moving this content and its support...
30500         * lib/lstat.c (rpl_lstat): ...into here.
30501         * lib/lstat.h: New file.
30502
30503 2005-06-24  Derek Price  <derek@ximbiot.com>
30504         and Bruno Haible  <bruno@clisp.org>
30505
30506         Remove stat module & update lstat.
30507         * config/srclist.txt (libc sources): Remove stat.
30508
30509 2005-06-24  Derek Price  <derek@ximbiot.com>
30510         and Bruno Haible  <bruno@clisp.org>
30511
30512         Remove stat module & update lstat.
30513         * MODULES.html.sh (stat): Remove.
30514         * MODULES.html: Regenerated.
30515         * modules/lstat (Description): Correct function name.
30516         (Files): Add "lstat.h".
30517         (Depends-on): Remove stat, add xalloc, stat-macros.
30518         * modules/stat: Remove this file.
30519         (Include): Add "lstat.h", remove <sys/stat.h>.
30520
30521 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
30522
30523         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
30524         (ranged_convert): Don't save conversion in a temporary struct.
30525         This causes a warning with GCC 4.0.0, and anyway in the typical
30526         case it's not worth the extra 100 bytes or so of code.
30527         (ranged_convert, __mktime_internal): When calling a function via a
30528         pointer P, use P () rather than (*P) (), as we now assume C89 or
30529         better.
30530
30531 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30532
30533         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
30534         "who -r" failed to give output.  Problem reported by Tim Waugh.
30535
30536         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
30537         (xcalloc): Use it to avoid needless tests.
30538         Problem reported by Jim Meyering.
30539
30540 2005-06-20  Derek Price  <derek@ximbiot.com>
30541
30542         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
30543         unnecessary for Autoconfs > 2.59c.
30544
30545 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30546
30547         * lib/argp.h (__option_is_short): Check upper limit of
30548         __key. Isprint() requires its argument to have the value
30549         of an unsigned char or EOF.
30550
30551 2005-06-16  Jim Meyering  <jim@meyering.net>
30552
30553         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
30554         when either N or S is zero.
30555
30556 2005-06-16  Derek Price  <derek@ximbiot.com>
30557
30558         * m4/bison.m4: Declare YACC & YFLAGS precious.
30559
30560 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
30561
30562         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
30563         multibyte string or pattern, fall back on unibyte matching.
30564         Problem reported by James Youngman.
30565
30566 2005-06-08  Bruno Haible  <bruno@clisp.org>
30567
30568         * modules/csharpcomp: New file.
30569         * MODULES.html.sh (C#): Add csharpcomp.
30570
30571 2005-06-08  Bruno Haible  <bruno@clisp.org>
30572
30573         * m4/csharpcomp.m4: New file, from GNU gettext.
30574
30575 2005-06-08  Bruno Haible  <bruno@clisp.org>
30576
30577         * lib/csharpcomp.h: New file, from GNU gettext.
30578         * lib/csharpcomp.c: New file, from GNU gettext.
30579         * lib/csharpcomp.sh.in: New file, from GNU gettext.
30580
30581 2005-06-08  Bruno Haible  <bruno@clisp.org>
30582
30583         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
30584         warning on mingw.
30585
30586 2005-06-07  Derek Price  <derek@ximbiot.com>
30587
30588         Sync from CVS.
30589         * lib/glob_.h: Indent nested #ifdef.
30590
30591 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30592
30593         Sync from coreutils.
30594         Use "file name" when talking about file names, instead of "filename"
30595         or "path", as per the GNU coding standards.
30596         * lib/mkdir-p.c: Renamed from makepath.c.
30597         (make_dir_parents): Renamed from make_path.  All callers changed.
30598         * lib/mkdir-p.h: Likewise.  All includers changed.
30599         * lib/filenamecat.c: Renamed from path-concat.c.
30600         (file_name_concat): Renamed from path_concat.  All callers changed.
30601         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
30602         * lib/filenamecat.h: Likewise.  All includers changed.
30603         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
30604         in comments or local variable names.
30605         * lib/basename.c: Likewise.
30606         * lib/canonicalize.c, canonicalize.h: Likewise.
30607         * lib/dirname.c, dirname.h: Likewise.
30608         * lib/euidaccess.c: Likewise.
30609         * lib/exclude.c: Likewise
30610         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
30611         * lib/fsusage.c, fsuage.h: Likewise.
30612         * lib/fts.c, fts_.h: Likewise.
30613         * lib/getcwd.c: Likewise.
30614         * lib/getloadavg.c: Likewise.
30615         * lib/mkstemp.c: Likewise.
30616         * lib/mountlist.c, mountlist.h: Likewise.
30617         * lib/openat.c, openat.h: Likewise.
30618         * lib/readlink-stub.c: Likewise.
30619         * lib/readutmp.c, readutmp.h: Likewise.
30620         * lib/rename.c: Likewise.
30621         * lib/rmdir.c: Likewise.
30622         * lib/same.c: Likewise.
30623         * lib/savedir.c: Likewise.
30624         * lib/stripslash.c: Likewise.
30625         * lib/tempname.c: Likewise.
30626         * lib/xreadlink.c: Likewise.
30627         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
30628         All uses changed.
30629         * lib/exclude.h: Likewise.
30630
30631         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
30632         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30633         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
30634         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30635         * lib/pathmax.h: Include <limits.h> unconditionally, since other
30636         files have been getting away with it for years (MORE/BSD 4.3
30637         is extinct now).
30638         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
30639         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30640
30641         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
30642         Define to 256, not 255, as per modern POSIX.
30643
30644 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30645
30646         Sync from coreutils.
30647         Use "file name" when talking about file names, instead of "filename"
30648         or "path", as per the GNU coding standards.
30649         * MODULES.html.sh: mkdir-p renamed from makepath.
30650         filenamecat renamed from path-concat.
30651         * modules/filenamecat: Renamed from modules/path-concat.
30652         (Files): filenamecat.h and filenamecat.c renamed from
30653         path-concat.h and path-concat.c.
30654         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
30655         (Include): filenamecat.h, not path-concat.h.
30656         * modules/mkdir-p: Renamed from modules/makepath.
30657         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
30658         makepath.c.
30659         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
30660         (Include): mkdir-p.h, not makepath.h.
30661
30662 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30663
30664         Sync from coreutils.
30665         * m4/mkdir-p.m4: Renamed from makepath.m4.
30666         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
30667         Rename files from makepath.c to mkdir-p.c, and from
30668         makepath.h to mkdir-p.h.
30669         * m4/filenamecat.m4: Renamed from path-concat.m4.
30670         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
30671         Rename files from path-concat.c to filenamecat.c,
30672         and from path-concat.h to filenamecat.h.
30673         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
30674         "file name" in local variables or comments.
30675         * m4/rename.m4: Likewise.
30676
30677 2005-06-01  Bruno Haible  <bruno@clisp.org>
30678
30679         * modules/csharpexec: New file.
30680         * MODULES.html.sh (C#): New section.
30681
30682 2005-06-01  Bruno Haible  <bruno@clisp.org>
30683
30684         * m4/csharp.m4: New file, from GNU gettext.
30685         * m4/csharpexec.m4: New file, from GNU gettext.
30686
30687 2005-06-01  Bruno Haible  <bruno@clisp.org>
30688
30689         * lib/csharpexec.h: New file, from GNU gettext.
30690         * lib/csharpexec.c: New file, from GNU gettext.
30691         * lib/csharpexec.sh.in: New file, from GNU gettext.
30692
30693 2005-05-31  Derek Price  <derek@ximbiot.com>
30694             Paul Eggert  <eggert@cs.ucla.edu>
30695
30696         Sync from cvs.
30697         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30698
30699 2005-05-31  Derek Price  <derek@ximbiot.com>
30700             Paul Eggert  <eggert@cs.ucla.edu>
30701
30702         Sync from cvs.
30703         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30704
30705 2005-05-29  Derek Price  <derek@ximbiot.com>
30706
30707         * config/srclist.txt (glob_.h, glob.c): Add these files.
30708
30709 2005-05-29  Derek Price  <derek@ximbiot.com>
30710
30711         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
30712         * modules/glob: New file.
30713         * modules/getlogin_r: Add link to POSIX spec in description.
30714
30715 2005-05-29  Derek Price  <derek@ximbiot.com>
30716             Paul Eggert  <eggert@cs.ucla.edu>
30717
30718         * m4/glob.m4: New file.
30719
30720 2005-05-29  Derek Price  <derek@ximbiot.com>
30721             Paul Eggert  <eggert@cs.ucla.edu>
30722
30723         * lib/glob_.h, lib/glob.c: New files.
30724
30725 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30726
30727         * modules/fts (Files): Remove m4/inttypes-pri.m4.
30728         * modules/fts-lgpl (Depends-on): Remove gettext.
30729
30730 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30731
30732         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
30733         and don't require gt_INTTYPES_PRI.
30734
30735 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30736
30737         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
30738
30739         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
30740         the configuration hassle isn't worth it.
30741         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
30742         (LONGEST_MODIFIER, PRIuMAX): Remove.
30743
30744 2005-05-27  Bruno Haible  <bruno@clisp.org>
30745
30746         * lib/getlogin_r.h: Remove second include of <stddef.h>.
30747
30748 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
30749
30750         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
30751         _POSIX_PTHREAD_SEMANTICS for Solaris.
30752
30753 2005-05-25  Derek Price  <derek@ximbiot.com>
30754
30755         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
30756
30757 2005-05-25  Derek Price  <derek@ximbiot.com>
30758             Paul Eggert  <eggert@cs.ucla.edu>
30759
30760         * modules/getlogin_r, m4/getlogin_r.m4: New files.
30761         * lib/getlogin_r.c, getlogin_r.h: New files.
30762
30763 2005-05-25  Bruno Haible  <bruno@clisp.org>
30764             Derek Price  <derek@ximbiot.com>
30765
30766         * lib/getlogin_r.h: Simplify API documentation.
30767
30768 2005-05-23  Derek Price  <derek@ximbiot.com>
30769
30770         * modules/minmax (Files): Add m4/minmax.m4.
30771         (configure.ac): Add gl_MINMAX.
30772
30773 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
30774
30775         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
30776         so that unistd-safer.h (GPL'ed code) need not be included.
30777
30778 2005-05-22  Bruno Haible  <bruno@clisp.org>
30779
30780         * m4/minmax.m4: New file.
30781         Based on a patch by Derek Price <derek@ximbiot.com>.
30782
30783 2005-05-22  Bruno Haible  <bruno@clisp.org>
30784
30785         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
30786         (INT64_MIN): Fix definition.
30787         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
30788
30789         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
30790         NEED_SIGNED_INT_TYPES.
30791
30792         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
30793         HAVE_SYSTEM_INTTYPES.
30794
30795 2005-05-22  Bruno Haible  <bruno@clisp.org>
30796
30797         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
30798         Also include <sys/param.h> if it defines MIN, MAX.
30799         Based on a patch by Derek Price <derek@ximbiot.com>.
30800
30801 2005-05-21  Jim Meyering  <jim@meyering.net>
30802
30803         * modules/fts (Files): Add m4/inttypes-pri.m4.
30804         (Depends-on): Add lstat and remove gettext.  Alphabetize.
30805
30806 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30807
30808         New fts module.
30809         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
30810         (setup_dir, free_dir): New functions.
30811         (enter_dir, leave_dir): Define trivial
30812         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
30813         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
30814         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
30815         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
30816         Move to fts-cycle.c.
30817         (fts_open): Use setup_dir.
30818         (fts_close): Use free_dir.
30819         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
30820         This adds a label and some gotos, but the alternatives were messier.
30821         Check for memory allocation failure when entering a dir.
30822         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
30823         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
30824         (FTS): New member fts_cycle, that is a union that contains the
30825         old active_dir_ht and cycle_state.  All uses changed to mention
30826         fts_cycle.ht and fts_cycle.state.
30827         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
30828         fts.c, with the following changes:
30829         (setup_dir, free_dir): New functions.
30830         (enter_dir): Now returns bool.  Return true if successful, false
30831         if memory exhausted.  All callers changed.
30832         Do not bother partly cleaning up on
30833         memory allocation failure; that is free_dir's job.
30834         However, free ad if hash_insert fails, to avoid memory leak.
30835         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
30836         fts->fts_options to see which union member to use.
30837
30838 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30839
30840         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
30841         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
30842
30843 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30844
30845         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
30846
30847 2005-05-20  Jim Meyering  <jim@meyering.net>
30848
30849         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
30850         Now a macro, to pacify GCC.
30851
30852 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30853
30854         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
30855         of -1.
30856
30857 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30858
30859         * lib/chown.c (rpl_chown): Return -1 on failure.
30860
30861 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
30862
30863         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
30864         Don't check for stddef.h.
30865         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
30866         don't use its results.
30867         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
30868         since we include them unconditionally.  Don't require
30869         AM_STDBOOL_H, since stdbool is a prerequisite.
30870         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
30871         since we assume C89 or better.
30872         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
30873         as we don't use their results.
30874         Don't check for fchdir, memmove, memset, strrchr, as we use
30875         them unconditionally.
30876         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
30877         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
30878
30879 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
30880
30881         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
30882         Include <stddef.h> unconditionally, since we assume C89 now.
30883         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
30884         * lib/fts.c: Include fts_.h first, to check interface.
30885         Do not include intprops.h; no longer needed.
30886         Include cycle-check.h and hash.h, since fts_.h no longer does.
30887         Remove unnecessary casts of closedir to void.
30888         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
30889         decide whether to decrement nlinks.
30890         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
30891         (FTS): Use struct hash_table * instead of Hash_table, so that
30892         we no longer need to include hash.h here.
30893
30894 2005-05-18  Jim Meyering  <jim@meyering.net>
30895
30896         * modules/dirfd (License): Change to LGPL.  Most of the code
30897         is already in the public domain.
30898
30899 2005-05-18  Jim Meyering  <jim@meyering.net>
30900
30901         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
30902         Reported by Yoann Vandoorselaere.
30903
30904 2005-05-17  Jim Meyering  <jim@meyering.net>
30905
30906         * m4/fts.m4: New file, from coreutils.
30907
30908 2005-05-17  Jim Meyering  <jim@meyering.net>
30909
30910         * lib/fts.c, lib/fts_.h: New files, from coreutils.
30911
30912 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30913
30914         Sync from coreutils.
30915         * m4/unlinkdir.m4: New file.
30916
30917 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30918
30919         Sync from coreutils.
30920         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
30921         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
30922         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
30923         White space changes only.
30924         * lib/makepath.c (make_path): Port to hosts where leading "//" is
30925         special.
30926         * lib/yesno.c: Include getline.h, not ctype.h.
30927         (yesno): Don't remove leading white space; POSIX doesn't allow it.
30928         Use getline to remove arbitrary restriction on response length.
30929
30930 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
30931
30932         * config/srclist-update: Spell out "Street" in FSF postal
30933         mail address; this is the style the FSF seems to prefer.
30934
30935         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
30936         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
30937         this updates FSF postal mail address.
30938
30939         Sync from coreutils.
30940         * modules/unlinkdir: New file.
30941         * modules/yesno (Depends-on): Add getline.
30942         * MODULES.html.sh (File system functions): Add unlinkdir.
30943
30944 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30945
30946         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
30947         lib/strsep.h:
30948         Change the initial comment to refer to GPL, not LGPL.
30949         gnulib-tool will change it to LGPL as needed.
30950
30951         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
30952         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
30953         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
30954         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
30955         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
30956         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
30957         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
30958         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
30959         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
30960         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
30961         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
30962         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
30963         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
30964         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
30965         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
30966         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
30967         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
30968         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
30969         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
30970         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
30971         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
30972         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
30973         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
30974         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
30975         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
30976         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
30977         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
30978         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
30979         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
30980         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
30981         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
30982         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
30983         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
30984         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
30985         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
30986         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
30987         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
30988         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
30989         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
30990         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
30991         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
30992         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
30993         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
30994         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
30995         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
30996         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
30997         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
30998         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
30999         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
31000         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
31001         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
31002         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
31003         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
31004         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
31005         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
31006         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
31007         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
31008         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
31009         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
31010         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
31011         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
31012         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
31013         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
31014         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
31015         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
31016         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
31017         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
31018         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
31019         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
31020         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
31021         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
31022         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
31023         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
31024         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
31025         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
31026         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
31027         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
31028         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
31029         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
31030         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
31031         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
31032         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
31033         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
31034         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
31035         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
31036         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
31037         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
31038         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
31039         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
31040         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
31041         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
31042         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
31043         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
31044         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
31045         lib/yesno.c, lib/yesno.h:
31046         Update FSF postal mail address.
31047
31048 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
31049
31050         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
31051         tests/test-memmem.c, tests/test-stpncpy.c:
31052         Update FSF postal mail address.
31053
31054 2005-05-13  Bruno Haible  <bruno@clisp.org>
31055
31056         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
31057         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
31058         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
31059         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
31060         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
31061         Add support for 64-bit integers in the MSVC compiler.
31062
31063 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31064
31065         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
31066
31067 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
31068
31069         * gnulib-tool (func_import): Sort and uniquify recommended includes.
31070
31071 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
31072
31073         * doc/getdate.texi (General date syntax): Don't say that date
31074         date --iso-8601=ns generates acceptable dates; it doesn't yet.
31075         Problem reported by Nic Ferrier.
31076
31077 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31078
31079         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
31080         specified in ai_socktype. Fix invalid ai_protocol
31081         check. ai_protocol is usually set to 0 or depending on
31082         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
31083         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
31084         ai_socktype / ai_protocol in the returned addrinfo structure.
31085
31086 2005-05-10  Simon Josefsson  <jas@extundo.com>
31087
31088         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
31089         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
31090
31091 2005-05-10  Karl Berry  <karl@gnu.org>
31092
31093         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
31094         (from http://www.gnu.org/licenses).
31095         * doc/COPYING.LIB: also rename to COPYING.LESSER.
31096         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
31097         fdl.texi suffices.
31098
31099 2005-05-10  Karl Berry  <karl@gnu.org>
31100
31101         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
31102         (COPYING.DOC): remove.
31103
31104         * config/srclist-update: new FSF address.
31105
31106 2005-05-10  Derek Price  <derek@ximbiot.com>
31107
31108         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
31109         possible.
31110
31111 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31112             Bruno Haible  <bruno@clisp.org>
31113
31114         * modules/inet_ntop: New file.
31115         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31116         inet_ntop.
31117
31118 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31119             Bruno Haible  <bruno@clisp.org>
31120
31121         * m4/inet_ntop.m4: New file.
31122
31123 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31124             Bruno Haible  <bruno@clisp.org>
31125
31126         * lib/inet_ntop.h: New file.
31127         * lib/inet_ntop.c: New file, from glibc with modifications.
31128
31129 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
31130
31131         * modules/time_r (License): Change to LGPL.
31132         * modules/extensions (License): Change to LGPL.  Actually,
31133         the license is more permissive than that, but currently gnulib-tool
31134         doesn't know how to handle more-permissive licenses.
31135
31136         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
31137         Problem reported by Dave Love.
31138
31139 2005-05-08  Jim Meyering  <jim@meyering.net>
31140
31141         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
31142         blank.
31143
31144 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
31145
31146         * modules/argmatch (Depends-on): Add stdbool.
31147         * modules/backupfile (Depends-on): Likewise.
31148         * modules/chdir-long (Depends-on): Likewise.
31149         * modules/closeout (Depends-on): Likewise.
31150         * modules/cycle-check (Depends-on): Likewise.
31151         * modules/dirname (Depends-on): Likewise.
31152         * modules/fnmatch (Depends-on): Likewise.
31153         * modules/fsusage (Depends-on): Likewise.
31154         * modules/fwriteerror (Depends-on): Likewise.
31155         * modules/getcwd (Depends-on): Likewise.
31156         * modules/getloadavg (Depends-on): Likewise.
31157         * modules/hard-locale (Depends-on): Likewise.
31158         * modules/makepath (Depends-on): Likewise.
31159         * modules/mountlist (Depends-on): Likewise.
31160         * modules/nanosleep (Depends-on): Likewise.
31161         * modules/posixtm (Depends-on): Likewise.
31162         * modules/quotearg (Depends-on): Likewise.
31163         * modules/readtokens (Depends-on): Likewise.
31164         * modules/readtokens0 (Depends-on): Likewise.
31165         * modules/readutmp (Depends-on): Likewise.
31166         * modules/save-cwd (Depends-on): Likewise.
31167         * modules/strftime (Depends-on): Likewise.
31168         * modules/userspec (Depends-on): Likewise.
31169         * modules/utimecmp (Depends-on): Likewise.
31170         * modules/xgetcwd (Depends-on): Likewise.
31171         * modules/xnanosleep (Depends-on): Likewise.
31172         * modules/xstrtod (Depends-on): Likewise.
31173         * modules/yesno (Depends-on): Likewise.
31174
31175 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
31176
31177         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
31178         needless checks.
31179
31180 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31181
31182         Merge from coreutils.  Among other things,
31183         add bulletproofing for cases where stdin, stdout, or stderr are closed.
31184         * lib/fd-safer.c: New file.
31185         * lib/fcntl-safer.h, open-safer.c: Remove.
31186         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
31187         * lib/dup-safer.c: Include unistd-safer.h first.
31188         Don't include errno.h.
31189         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
31190         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
31191         * lib/file-type.c: Rely on file-type.h change.
31192         * lib/getloadavg.c: Include unistd-safer.h.
31193         (getloadavg): Use safer open.
31194         * lib/getusershell.c: Include "stdio-safer.h".
31195         (getusershell): Use safer fopen.
31196         * lib/long-options.c (long_options): Use NULL rather than 0.
31197         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
31198         'free'.
31199         * lib/modechange.c: Likewise.
31200         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
31201         (MODE_DONE): New constant.
31202         (struct mode_change): Remove 'next' member.
31203         (make_node_op_equals): New function; like the old one of the
31204         same name, except it allocates an array.
31205         (mode_compile, mode_create_from_ref): Use it.
31206         (mode_compile): Allocate result as an array, not a linked list.
31207         Parse octal string ourself, so that we catch mistakes like "+0".
31208         (mode_adjust): Arg is an array, not a linked list.
31209         * lib/modechange.c: Include stat-macros.h, xalloc.h.
31210         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
31211         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
31212         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
31213         Remove.  This is now stat-macros.h's job.
31214         (talloc): Remove.  All callers replaced by xalloc, so that
31215         our invokers don't have to worry about reporting memory failures.
31216         (make_node_op_equals): Remove.
31217         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31218         New constants.
31219         (struct mode_change): Moved here from modechange.h.
31220         (mode_append_entry): Remove.
31221         (mode_compile): Remove MASKED_OPS arg, since it encouraged
31222         apps to have incorrect behavior.  Use simpler algorithm for head
31223         and tail.  Don't futz with umask; that's now the job of mode_adjust.
31224         Detect more invalid usages rather than having somewhat-random behavior.
31225         Don't insert an "a=" action, as that leads to incorrect behavior.
31226         (mode_compile, mode_create_from_ref): Return NULL on error instead
31227         of an enum, since now there's only one way to have an error.  All
31228         callers changed.
31229         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
31230         at the correct time.  Simplify calculation of "+u" and its ilk.
31231         Don't mishandle "+X".
31232         (mode_free): Remove "register" and localize decls.
31233         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31234         (struct mode_change): Move to modechange.c; callers don't
31235         need to see this stuff.
31236         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
31237         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
31238         (mode_change, mode_adjust): Reflect the new signatures noted above.
31239         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
31240         that might redefine system include files.
31241         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
31242         (my_usleep): Use NULL rather than (void *) 0.
31243         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
31244         Use siginterrupt to specify that system calls should be interrupted.
31245         (rpl_nanosleep): Move initialization of suspended closer to call of
31246         my_usleep.
31247         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
31248         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
31249         (desirable_utmp_entry): New function.
31250         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
31251         using x2nrealloc, to simplify logic.
31252         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
31253         size calculation.  Do not assume utmp file is a regular file.
31254         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
31255         (READ_UTMP_CHECK_PIDS): New constant.
31256         * lib/save-cwd.c: Include unistd-safer.h.
31257         (save_cwd): Use fd_safer.
31258         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
31259         [!_LIBC] Include "stat-macros.h" instead.
31260         * lib/unistd-safer.h (fd_safer): New decl.
31261
31262 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31263
31264         * modules/getloadavg (Depends-on): Add unistd-safer.
31265         * modules/getusershell (Depends-on): Add stdio-safer.
31266         * modules/lstat (Depends-on): Remove xalloc.
31267         * modules/mkstemp (Depends-on): Add stat-macros.
31268         * modules/modechange (Depends-on): Remove xstrtol.
31269         Add stat-macros, xalloc.
31270         * modules/save-cwd (Depends-on): Add unistd-safer.
31271         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
31272         * modules/unistd-safer (Files): Add lib/fd-safer.c
31273         (Makefile.am): Remove lib_SOURCES.
31274
31275         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
31276         Remove fcntl-safer; unistd-safer supersedes it.
31277
31278 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31279
31280         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
31281         AC_HEADER_STAT.
31282         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
31283         (gl_PREREQ_CHOWN): Remove.
31284         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
31285         it.  Don't require AC_HEADER_STAT.
31286         (gl_PREREQ_LSTAT): Remove.
31287         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
31288         Don't require AC_HEADER_STAT.
31289         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
31290         (gl_PREREQ_RMDIR): Remove.
31291         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
31292         mention stat-macros.h or AC_HEADER_STAT, since we'll make
31293         the stat-macros module a prerequisite.
31294         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
31295         * m4/filemode.m4 (gl_FILEMODE): Likewise.
31296         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
31297         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
31298         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
31299         variable names.
31300         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
31301         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
31302         variable prefixes.
31303         * m4/fcntl-safer.m4: Remove.
31304         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
31305         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
31306         Invoke gl_PREREQ_FD_SAFER.
31307         (gl_PREREQ_FD_SAFER): New macro.
31308         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
31309         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
31310         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
31311         Remove duplicate call to AC_LIBOBJ(readutmp).
31312         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
31313
31314         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
31315         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
31316
31317 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31318
31319         * MODULES.html.sh (Misc): Add byteswap.
31320
31321 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31322
31323         * modules/getcwd (Depends-on): Add extensions.
31324         * modules/openat (Depends-on): Likewise.
31325
31326 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31327
31328         * modules/byteswap: New file.
31329
31330 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31331
31332         * m4/byteswap.m4: New file.
31333
31334 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31335
31336         * lib/byteswap_.h: New file.
31337
31338 2005-04-25  Karl Berry  <karl@gnu.org>
31339
31340         * m4/gettext.m4: Update from GNU gettext 0.14.4.
31341
31342 2005-04-25  Albert Chin  <china@thewrittenword.com>
31343
31344         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
31345         Toolkit C bug.
31346
31347 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
31348
31349         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
31350         (func_ln_if_changed) Remove forcibly for no error message
31351         in case file does not exist.
31352
31353 2005-04-19  Simon Josefsson  <jas@extundo.com>
31354
31355         * gnulib-tool (Options): Make --symlink mean --symbolic.
31356
31357 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
31358
31359         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
31360
31361 2005-04-16  Simon Josefsson  <jas@extundo.com>
31362
31363         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
31364
31365 2005-04-15  Simon Josefsson  <jas@extundo.com>
31366
31367         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
31368
31369 2005-04-15  Simon Josefsson  <jas@extundo.com>
31370
31371         * gnulib-tool: Rename --symlink to --symbolic.
31372
31373 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
31374
31375         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
31376         symbolic links to files instead of copying/moving.  Add --aux-dir,
31377         specifying directory relative --dir where auxiliary build tools
31378         are placed.
31379
31380 2005-04-14  Bruno Haible  <bruno@clisp.org>
31381
31382         * modules/allocsa (License): Change to LGPL.
31383         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
31384
31385 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
31386
31387         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
31388         that "UTC +1 second" continues to work.  Problem reported
31389         by Dmitry V. Levin.
31390         (relunit_snumber): New rule.
31391         (relunit): Use it.
31392
31393 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
31394
31395         * lib/getdate.y (universal_time_zone_table): New constant.
31396         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
31397         universal_time_zone_table.
31398         (lookup_zone): Prefer universal_time_zone_table to
31399         local_time_zone_table, so that "GMT" time stamps are allowed in
31400         London during the summer.  Problem reported by Ian Abbott.
31401
31402 2005-04-12  Jim Meyering  <jim@meyering.net>
31403
31404         * lib/human.c (humblock): Set *options even when returning due to
31405         xstrtoumax conversion failure.  Thanks to a used-uninitialized
31406         warning from gcc-4.
31407
31408 2005-04-09  Jim Meyering  <jim@meyering.net>
31409
31410         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
31411         -Wuninitialized: initialize tm0.tm_year.
31412
31413 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
31414
31415         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
31416         count, since there's no maximum.  All uses changed.
31417         Add member dsts_seen.
31418         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
31419         not being INT_MAX.
31420         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
31421         Use pc_rels_seen to decide whther a date is absolute.
31422
31423         * lib/getdate.y (number): Don't overwrite year.
31424         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
31425         check.
31426
31427 2005-04-02  Simon Josefsson  <jas@extundo.com>
31428
31429         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
31430         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
31431
31432 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
31433
31434         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
31435         where no absolute path name can be longer than PATH_MAX.
31436
31437 2005-03-27  Jim Meyering  <jim@meyering.net>
31438
31439         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
31440
31441 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
31442
31443         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
31444         "one's complement" -> "ones' complement" in comment, as per Knuth.
31445         "value of type" -> "type or expression" in comment.
31446         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
31447
31448 2005-03-26  Jim Meyering  <jim@meyering.net>
31449
31450         Comment nits.
31451         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
31452         Correct typos: s/or/of/.
31453
31454 2005-03-26  Jim Meyering  <jim@meyering.net>
31455
31456         * modules/check-include-files: Move to ../ and rename to...
31457         * check-module: ...this.
31458
31459 2005-03-25  Jim Meyering  <jim@meyering.net>
31460
31461         * modules/xvasprintf (Files): Add xalloc.h.
31462
31463 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
31464
31465         * modules/gettext (Files): config/config.rpath ->
31466         build-aux/config.rpath
31467         * modules/iconv (Files): Likewise.
31468         Problem reported by Oskar Liljeblad.
31469
31470 2005-03-23  Jim Meyering  <jim@meyering.net>
31471
31472         * modules/check-include-files: New script to check for
31473         missing dependencies, multiple includes, etc.
31474
31475         * modules/c-strtold (Depends-on): Add xalloc.
31476         * modules/c-strtod (Depends-on): Add xalloc.
31477         * modules/hash (Depends-on): Add xalloc.
31478         (Files): Remove lib/xalloc.h.
31479
31480         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
31481         * modules/userspec (Files): Add lib/inttostr.h.
31482
31483 2005-03-23  Jim Meyering  <jim@meyering.net>
31484
31485         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
31486
31487 2005-03-22  Jim Meyering  <jim@meyering.net>
31488
31489         * modules/stat-macros: New module.
31490         * modules/canonicalize, modules/euidaccess, modules/file-type,
31491         * modules/filemode, modules/lchown, modules/makepath,
31492         * modules/rmdir, modules/stat: Depend on new stat-macros module
31493         rather than listing lib/stat-macros.h manually.
31494         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
31495
31496 2005-03-22  Jim Meyering  <jim@meyering.net>
31497
31498         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
31499
31500 2005-03-22  Bruno Haible  <bruno@clisp.org>
31501
31502         * config/srclist.txt: Replace target directory 'config' with
31503         'build-aux'.
31504         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
31505         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
31506         ../build-aux/.
31507
31508 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
31509
31510         * modules/chdir-long (Depends-on): Add mempcpy.
31511
31512         * modules/acl, modules/backupfile, modules/c-strtod,
31513         modules/c-strtold, modules/canon-host, modules/canonicalize,
31514         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
31515         modules/exclude, modules/exitfail, modules/file-type,
31516         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
31517         modules/getdate, modules/getline, modules/getpagesize,
31518         modules/getpass, modules/getugroups, modules/group-member,
31519         modules/hard-locale, modules/hash, modules/human, modules/idcache,
31520         modules/inttostr, modules/long-options, modules/makepath,
31521         modules/md5, modules/memcasecmp, modules/memcoll,
31522         modules/modechange, modules/mountlist, modules/path-concat,
31523         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
31524         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
31525         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
31526         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
31527         modules/strftime, modules/strndup, modules/strverscmp,
31528         modules/timespec, modules/unlocked-io, modules/userspec,
31529         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
31530         modules/yesno:
31531         Remove lib_SOURCES line from Makefile.am section, as this is now
31532         done automatically by the corresponding Autoconf macro.
31533
31534 2005-03-21  Jim Meyering  <jim@meyering.net>
31535
31536         Changes imported from coreutils.
31537
31538         * lib/cycle-check.c: Don't include xalloc.h.
31539
31540         * lib/path-concat.c: Don't include assert.h.
31541         (path_concat): Remove assertion that would have triggered
31542         for ABASE starting with more than one slash.
31543         Reported by Andreas Schwab.
31544
31545         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
31546         properly when ABASE is an absolute file name.
31547         Correct the description of this function.
31548         Include <assert.h>.
31549         Add an assertion and a test driver.
31550         This fixes a bug introduced on 2004-07-02.
31551         Andreas Schwab reported the resulting failure of cp --parents:
31552         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
31553
31554 2005-03-21  Jim Meyering  <jim@meyering.net>
31555
31556         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
31557         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
31558
31559 2005-03-21  Jim Meyering  <jim@meyering.net>
31560         and  Paul Eggert  <eggert@cs.ucla.edu>
31561
31562         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
31563         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
31564         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
31565         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
31566         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
31567         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
31568         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
31569         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
31570         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
31571         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
31572         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
31573         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
31574         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
31575         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
31576         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
31577         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
31578         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
31579         for these modules.
31580
31581 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
31582
31583         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
31584         (which shouldn't happen), generate nothing instead of returning 0
31585         immediately, so that nstrftime (NULL, ...) doesn't return 0.
31586
31587 2005-03-16  Bruno Haible  <bruno@clisp.org>
31588
31589         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
31590         HAVE_LONGLONG_64BIT.
31591
31592 2005-03-16  Bruno Haible  <bruno@clisp.org>
31593
31594         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
31595         HAVE_LONGLONG_64BIT.
31596
31597 2005-03-16  Bruno Haible  <bruno@clisp.org>
31598
31599         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
31600         HAVE_LONGLONG_64BIT.
31601
31602 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31603
31604         * lib/strftime.c (my_strftime): Prepend space to format so that we can
31605         reliably distinguish strftime failure from empty output on POSIX
31606         hosts.
31607
31608 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31609
31610         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
31611         (iconv_string): Don't guess a size-zero buffer, as that might cause
31612         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
31613         result would be 'too large', where 'too large' is (heuristically)
31614         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
31615         overflow concerns.  This will prevent some unwanted malloc failures
31616         when the inputs are very large.
31617
31618 2005-03-15  Karl Berry  <karl@gnu.org>
31619
31620         * config/srclist.txt (config.rpath): from gettext.
31621         * config/config.rpath: update.
31622
31623 2005-03-15  Bruno Haible  <bruno@clisp.org>
31624
31625         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
31626         to 'negate'.
31627
31628         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
31629         variable.
31630
31631         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
31632         results.
31633
31634 2005-03-14  Simon Josefsson  <jas@extundo.com>
31635
31636         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
31637         <fx@gnu.org>.
31638
31639 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
31640
31641         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
31642         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
31643         intprops.h.
31644         * lib/strtol.c: Likewise.
31645
31646 2005-03-14  Jim Meyering  <jim@meyering.net>
31647
31648         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
31649         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
31650         to be nonzero so that we (and caller) can detect the difference
31651         between a valid zero-length expansion and an error return, even
31652         when the underlying strftime fails before writing anything into
31653         that location.
31654
31655 2005-03-14  Bruno Haible  <bruno@clisp.org>
31656
31657         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
31658         Update from GNU gettext 0.14.3.
31659
31660 2005-03-10  Jim Meyering  <jim@meyering.net>
31661
31662         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
31663
31664 2005-03-10  Jim Meyering  <jim@meyering.net>
31665
31666         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
31667         so that this module works on systems without fchdir.
31668
31669 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
31670
31671         Factor int-properties macros into a single file, except for
31672         glibc-related files.
31673         * lib/intprops.h: New file.
31674         * lib/getloadavg.c: Include it instead of limits.h.
31675         (INT_STRLEN_BOUND): Remove.
31676         * lib/human.c: Include intprops.h.
31677         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
31678         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
31679         302/1000.
31680         * lib/inttostr.h: Include intprops.h instead of limits.h.
31681         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
31682         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
31683         for consistency with intprops.h.
31684         (time_t_is_integer, twos_complement_arithmetic): Use them.
31685         * lib/sig2str.h: Include <signal.h>, intprops.h.
31686         (INT_STRLEN_BOUND): Remove.
31687         * lib/strftime.c (TYPE_SIGNED): Remove.
31688         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
31689         * lib/strtol.c: Adjust comments to match intprops.h.
31690         * lib/userspec.c: Include intprops.h.
31691         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
31692         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
31693         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
31694         instead of rolling our own expressions.
31695         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
31696
31697         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
31698         instead of int.
31699         (my_strftime): Do not mishandle years close to INT_MAX, by doing
31700         the right thing even if adding 1900 would overflow.  Similarly
31701         for tm_mon + 1 and tm_yday + 1.
31702         Make %Y always equivalent to %C%y, and similarly for %G and %g.
31703         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
31704         (DO_SIGNED_NUMBER): New macro.
31705         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
31706
31707 2005-03-07  Bruno Haible  <bruno@clisp.org>
31708
31709         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
31710
31711 2005-03-07  Bruno Haible  <bruno@clisp.org>
31712
31713         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
31714
31715 2005-03-04  Derek R. Price  <derek@ximbiot.com>
31716
31717         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
31718         (func_import): Only replace files via --import when they have actually
31719         changed.
31720
31721 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31722
31723         * m4/mmap-anon.m4: New file.
31724         * m4/pagealign_alloc.m4: New file.
31725
31726 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31727             Bruno Haible  <bruno@clisp.org>
31728
31729         * modules/pagealign_alloc: New file.
31730         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
31731
31732 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31733             Bruno Haible  <bruno@clisp.org>
31734
31735         * lib/pagealign_alloc.h: New file.
31736         * lib/pagealign_alloc.c: New file.
31737
31738 2005-03-03  Bruno Haible  <bruno@clisp.org>
31739
31740         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
31741         Use an all-permissive copyright notice, recommended by RMS.
31742
31743 2005-03-02  Bruno Haible  <bruno@clisp.org>
31744
31745         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
31746         of AIX, the replacement has to be done only after <string.h> is
31747         included, therefore not in config.h. stpncpy.h does the replacement,
31748         and stpncpy.c uses it.
31749
31750 2005-03-02  Bruno Haible  <bruno@clisp.org>
31751
31752         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
31753         stpncpy.c uses it.
31754
31755 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31756
31757         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
31758         The workaround isn't strictly needed for POSIX conformance, and
31759         it's too much of a pain to configure and maintain.  We'll ask
31760         people to fix their kernels instead.
31761         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
31762         (NANOSLEEP_BUG_WORKAROUND): Remove.
31763         (xnanosleep): Remove the workaround.
31764
31765 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31766
31767         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
31768         Reported by Derek Price.
31769         (Include): Add "timespec.h".
31770
31771         * modules/xnanosleep (Depends-on): Remove gethrxtime.
31772
31773 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31774
31775         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
31776         to detect nanosleep bug.
31777
31778 2005-03-01  Bruno Haible  <bruno@clisp.org>
31779
31780         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
31781
31782 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
31783
31784         * modules/gethrxtime: New file.
31785         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
31786         (Depends-on): Add gethrxtime.
31787         (configure.ac): Add gl_XNANOSLEEP.
31788         (Makefile.am): Remove lib_SOURCES line.
31789
31790 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31791
31792         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
31793         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
31794
31795 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31796
31797         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
31798         * lib/timespec.h (gettime): Return void, since it always
31799         succeeds now.  All uses changed.
31800         * lib/gettime.c (gettime) Likewise.
31801         [HAVE_NANOTIME]: Prefer nanotime.
31802         Assume gettimeofday succeeds, as POSIX requires.
31803         Assime time () succeeds, since other code already does.
31804         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
31805         (timespec_subtract): Remove.
31806         (NANOSLEEP_BUG_WORKAROUND): New constant.
31807         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
31808         things considerably.  Use it only on GNU/Linux hosts, since the
31809         workaround shouldn't be needed elsewhere.
31810
31811 2005-02-24  Bruno Haible  <bruno@clisp.org>
31812
31813         * modules/gettext (Files): Add m4/glibc2.m4.
31814
31815 2005-02-24  Bruno Haible  <bruno@clisp.org>
31816
31817         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
31818         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
31819         * m4/progtest.m4:
31820         Update from GNU gettext 0.14.2.
31821         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
31822
31823 2005-02-24  Bruno Haible  <bruno@clisp.org>
31824
31825         * lib/localcharset.c: Update from GNU gettext 0.14.2.
31826         * lib/config.charset: Update from GNU gettext 0.14.2.
31827
31828 2005-02-24  Bruno Haible  <bruno@clisp.org>
31829
31830         * lib/gettext.h: Update from GNU gettext 0.14.2.
31831
31832 2005-02-23  Simon Josefsson  <jas@extundo.com>
31833
31834         * m4/iconvme.m4: New file.
31835
31836 2005-02-23  Jim Meyering  <jim@meyering.net>
31837
31838         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
31839         change.
31840         Thanks to Bruno Haible for catching it.
31841
31842 2005-02-22  Simon Josefsson  <jas@extundo.com>
31843
31844         * modules/iconvme: New file.
31845
31846         * MODULES.html.sh: Add iconvme.
31847
31848 2005-02-22  Simon Josefsson  <jas@extundo.com>
31849
31850         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
31851
31852 2005-02-22  Simon Josefsson  <jas@extundo.com>
31853
31854         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
31855
31856 2005-02-22  Jim Meyering  <jim@meyering.net>
31857
31858         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
31859         s/ifndef/ifdef/.
31860
31861 2005-02-20  Neil Conway  <neilc@samurai.com>
31862
31863         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
31864         returned by OSX/Darwin if the specified buffer is not large
31865         enough for the hostname.
31866
31867 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31868
31869         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
31870         pass it to _help, otherwise the latter coredumps trying to
31871         dereference state.root_argp.
31872
31873 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31874
31875         * modules/chdir-long (Depends-on): Add memrchr.
31876         * modules/memrchr (Files): Add lib/memrchr.h.
31877         (Include): "memrchr.h".
31878
31879 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31880
31881         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
31882
31883 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31884
31885         * lib/memrchr.h: New file.
31886         * lib/chdir-long.c: Include it.
31887         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
31888         Don't bother including stddef.h.
31889
31890 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
31891
31892         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
31893         inclusion.
31894         Include <sys/types.h>, for dev_t.
31895         (ME_DUMMY, ME_REMOTE): Move from here....
31896         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
31897         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
31898         Dmitry V. Levin.
31899         Include mountlist.h first, to test the interface.
31900
31901 2005-01-29  Bruno Haible  <bruno@clisp.org>
31902
31903         * lib/progname.c (program_name): Initialize.
31904         Needed when linking statically on MacOS X.
31905
31906 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
31907
31908         Sync from coreutils.
31909         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
31910         (Depends-on): Add c-strtod.
31911         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
31912
31913 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
31914
31915         Sync from coreutils.
31916         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
31917
31918         Remove files that are specific to coreutils.
31919         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
31920
31921 2005-01-28  Bruno Haible  <bruno@clisp.org>
31922
31923         * modules/javacomp: New file.
31924         * MODULES.html.sh (Java): Add javacomp.
31925
31926 2005-01-28  Bruno Haible  <bruno@clisp.org>
31927
31928         * m4/javacomp.m4: New file, from GNU gettext.
31929
31930 2005-01-28  Bruno Haible  <bruno@clisp.org>
31931
31932         * lib/javacomp.sh.in: New file, from GNU gettext.
31933         * lib/javacomp.h: New file, from GNU gettext.
31934         * lib/javacomp.c: New file, from GNU gettext.
31935
31936 2005-01-26  Simon Josefsson  <jas@extundo.com>
31937
31938         * lib/gai_strerror.c: Use GPL in header.
31939
31940 2005-01-26  Bruno Haible  <bruno@clisp.org>
31941
31942         * modules/javaexec: New file.
31943         * MODULES.html.sh (Java): Add javaexec.
31944
31945 2005-01-26  Bruno Haible  <bruno@clisp.org>
31946
31947         * m4/javaexec.m4: New file, from GNU gettext.
31948
31949 2005-01-26  Bruno Haible  <bruno@clisp.org>
31950
31951         * lib/javaexec.sh.in: New file, from GNU gettext.
31952         * lib/javaexec.h: New file, from GNU gettext.
31953         * lib/javaexec.c: New file, from GNU gettext.
31954
31955 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31956
31957         * modules/lchown (Depends-on): Remove lchown.h
31958
31959 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31960
31961         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
31962         must be defined if the header file was not found, in order
31963         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
31964
31965 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31966
31967         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
31968         initializers for struct pentry_state.
31969         (__argp_error): Check return value of __asprintf
31970         (__argp_failure): Translate error message
31971
31972         * lib/argp-parse.c: Removed braces around the expansion of N_()
31973
31974 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
31975
31976         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
31977         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
31978         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
31979         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
31980         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
31981         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
31982         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
31983         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
31984         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
31985         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
31986         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
31987         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
31988         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
31989         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
31990         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
31991         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
31992         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
31993         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
31994         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
31995         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
31996         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
31997         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
31998         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
31999         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
32000         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
32001         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
32002         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
32003         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
32004         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
32005         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
32006         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
32007         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
32008         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
32009         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
32010         xstrtol.m4, xstrtoumax.m4, yesno.m4:
32011         Use an all-permissive copyright notice, recommended by RMS.
32012
32013 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
32014
32015         * modules/chdir-long (Depends-on): Remove mempcpy.
32016
32017 2005-01-21  Jim Meyering  <jim@meyering.net>
32018
32019         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
32020         same value as for Solaris 9.
32021
32022         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
32023         component length.  This included changing the parameter to be
32024         of type `char *' rather than `char const *'.
32025         * lib/chdir-long.h (chdir_long): Update prototype.
32026
32027         * lib/openat.c (fdopendir, fstatat): New functions.
32028         * lib/openat.h: Include headers required for use of DIR and struct
32029         stat.
32030         [AT_SYMLINK_NOFOLLOW]: Define.
32031         (fdopendir, fstatat): Add prototypes.
32032
32033 2005-01-21  Bruno Haible  <bruno@clisp.org>
32034
32035         * modules/classpath: New file.
32036         * MODULES.html.sh (Java): Add classpath.
32037
32038 2005-01-21  Bruno Haible  <bruno@clisp.org>
32039
32040         * lib/classpath.h: New file, from GNU gettext.
32041         * lib/classpath.c: New file, from GNU gettext.
32042
32043 2005-01-20  Simon Josefsson  <jas@extundo.com>
32044
32045         * modules/version-etc-fsf: New file.
32046
32047 2005-01-20  Simon Josefsson  <jas@extundo.com>
32048
32049         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
32050         * lib/version-etc.c: Remove version_etc_copyright.
32051         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
32052         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
32053
32054 2005-01-20  Simon Josefsson  <jas@extundo.com>
32055
32056         * lib/base64.h (isbase64): Add.
32057
32058         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
32059         using a unsigned prototype, don't inline.
32060         (base64_decode): Use it.
32061
32062 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32063
32064         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
32065         it.
32066
32067 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32068
32069         * lib/save-cwd.c (save_cwd): Remove code to support the case
32070         where fchdir is missing or flaky.
32071
32072 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32073
32074         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
32075
32076 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32077
32078         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
32079         AC_LIBSOURCES now does this.
32080         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
32081         with new ullong_max module.
32082
32083 2005-01-19  Bruno Haible  <bruno@clisp.org>
32084
32085         * modules/sh-quote: New file.
32086         * MODULES.html.sh (Executing programs): Add sh-quote.
32087
32088 2005-01-19  Bruno Haible  <bruno@clisp.org>
32089
32090         * lib/sh-quote.h: New file, from GNU gettext.
32091         * lib/sh-quote.c: New file, from GNU gettext.
32092
32093 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32094
32095         Merge from coreutils.
32096         * m4/ullong_max.m4: New file.
32097         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
32098         (gl_MACROS): Assume localeconv exists.
32099
32100 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32101
32102         Merge changes from coreutils, as described below in several
32103         changelogs dated today.
32104
32105         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
32106         (O_DIRECTORY): Remove; not needed here, since "." must be
32107         a directory.  All uses removed.
32108         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
32109         universal on Suns, and we also need to test for IRIX.
32110         Revamp code to use 'if' rather than '#if'.
32111         Avoid unnecessary comparison of cwd->desc to 0.
32112
32113         * lib/utimens.c (futimens): Robustify the previous patch, by checking
32114         for known valid error numbers rather than observed invalid ones.
32115
32116 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32117
32118         * modules/ullong_max: New file.
32119
32120         * modules/chdir-long, modules/openat: New files.
32121         * modules/save-cwd (Depends-on): Depend on chdir-long.
32122         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
32123
32124 2005-01-18  Jim Meyering  <jim@meyering.net>
32125
32126         Merge from coreutils.
32127         * m4/chdir-long.m4, m4/openat.m4: New files.
32128         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
32129         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
32130         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
32131         is sane and DOES follow symlinks.  Besides, testing 20 different
32132         systems found no broken chown implementations.
32133         Prompted by a change in rsync's copy of this macro.
32134         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
32135
32136         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
32137
32138         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
32139         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
32140         NULL-means-set-to-current-time semantics.
32141         Remove temporary file immediately, rather than waiting
32142         for configure's at-exit trap code to do it.
32143
32144 2005-01-18  Jim Meyering  <jim@meyering.net>
32145
32146         * lib/version-etc.c (version_etc_copyright): Update copyright date.
32147
32148         * lib/utimens.c (futimens): Account for the fact that futimes
32149         can also fail with errno == ENOSYS or errno == ENOENT.
32150         Patch from Dmitry V. Levin.
32151
32152         Change the name of the robust chdir function from chdir to chdir_long.
32153         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
32154         (restore_cwd): Use chdir_long, not chdir.
32155         * lib/chdir-long.c: Renamed from chdir.c.
32156         * lib/chdir-long.h: Renamed from chdir.h.
32157         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
32158         Hurd.
32159
32160 2005-01-18  Bruno Haible  <bruno@clisp.org>
32161
32162         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
32163         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
32164         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
32165         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
32166         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
32167         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
32168         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
32169         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
32170         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
32171         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
32172         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
32173         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
32174         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
32175         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
32176         Use an all-permissive copyright notice, recommended by RMS.
32177
32178 2005-01-18  Bob Proulx  <bob@proulx.com>
32179
32180         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
32181         simplify offsetof() macro construct to avoid compile failure with
32182         native HP-UX 11.0 ANSI C compiler.
32183
32184 2005-01-17  Bruno Haible  <bruno@clisp.org>
32185
32186         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
32187         redundant because stpncpy.m4 takes care of it.
32188
32189 2005-01-17  Bruno Haible  <bruno@clisp.org>
32190
32191         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
32192
32193 2005-01-17  Bruno Haible  <bruno@clisp.org>
32194
32195         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
32196         used.
32197
32198 2005-01-17  Bruno Haible  <bruno@clisp.org>
32199
32200         * lib/fwriteerror.h (fwriteerror): Change specification to include
32201         fclose.
32202         * lib/fwriteerror.c: Include <stdbool.h>.
32203         (fwriteerror): At the end, close the file stream. Record whether
32204         stdout was already closed.
32205
32206 2005-01-17  Bruno Haible  <bruno@clisp.org>
32207
32208         * lib/execute.c (environ): Declare if needed.
32209         * lib/pipe.c (environ): Likewise.
32210         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
32211
32212 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32213
32214         * modules/argp: Depend on vsnprintf
32215
32216 2005-01-10  Jim Meyering  <jim@meyering.net>
32217
32218         * modules/closeout (Depends-on): Add atexit.
32219
32220 2005-01-06  Bruno Haible  <bruno@clisp.org>
32221
32222         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
32223
32224 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
32225
32226         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
32227         definitions to be after all include files, to avoid collisions.
32228         Problem reported by Bob Proulx.
32229
32230 2005-01-04  Jim Meyering  <jim@meyering.net>
32231
32232         Changes imported from coreutils.
32233         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
32234         as the mkstemp template, use a temporary directory and an
32235         8.3-friendly template to avoid trouble on systems like DJGPP.
32236         Reported by Juan M. Guerrero via Stepan Kasal.
32237         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
32238         close. Remove the temporary directory right away, rather than waiting
32239         for configure's at-exit trap code to do it.
32240         Suggestion from Stepan Kasal.
32241
32242 2005-01-01  Simon Josefsson  <jas@extundo.com>
32243
32244         * gnulib-tool: Print #include directives when --import'ing.
32245
32246 2004-12-28  Simon Josefsson  <jas@extundo.com>
32247
32248         * tests/test-base64.c: Include required header files.  Remove
32249         unused variables.
32250
32251 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32252
32253         * modules/error (Depends-on): Remove gettext.
32254
32255 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32256
32257         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
32258         not needed.  This removes a dependency on the gettext module.
32259         [defined _LIBC]: Do not include <libintl.h>; not needed.
32260
32261 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32262
32263         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
32264         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
32265
32266 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32267
32268         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
32269         HAVE_DECL_STRTOLD.
32270
32271 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32272
32273         * modules/getdate (Depends-on): Remove alloca-opt.
32274
32275 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32276
32277         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
32278
32279 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32280
32281         * lib/argp-parse.c: Include <stddef.h>.
32282         (alignof, alignto): New macros.
32283         (parser_init): Don't assume that void * is aligned sufficiently
32284         for struct option.
32285
32286         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
32287         need to extend the stack.
32288         (YYINITDEPTH): New macro, so that the initial stack isn't overly
32289         large.
32290
32291 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32292
32293         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
32294
32295 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32296
32297         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
32298         (2004-10-24) change.  Apparently this was a false alarm.
32299
32300         * modules/getdate: Depend on alloca-opt, not alloca.
32301
32302 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32303
32304         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
32305         Remove now-obsolete comment about AIX.
32306         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
32307         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
32308         (YYMAXDEPTH): New macro.
32309
32310 2004-12-18  Simon Josefsson  <jas@extundo.com>
32311
32312         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
32313
32314 2004-12-18  Bruno Haible  <bruno@clisp.org>
32315
32316         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
32317
32318 2004-12-18  Bruno Haible  <bruno@clisp.org>
32319
32320         * lib/fatal-signal.c (fatal_signals): Make non-const.
32321         (init_fatal_signals): New function.
32322         (uninstall_handlers, install_handlers): Ignore signals that were set to
32323         SIG_IGN.
32324         (at_fatal_signal): Call init_fatal_signals.
32325         (init_fatal_signal_set): Likewise. Ignore signals that were set to
32326         SIG_IGN.
32327         Reported by Paul Eggert.
32328
32329 2004-12-18  Bruno Haible  <bruno@clisp.org>
32330
32331         * doc/alloca.texi: New file.
32332         * doc/alloca-opt.texi: New file.
32333
32334 2004-12-17  Jim Meyering  <jim@meyering.net>
32335
32336         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
32337         Otherwise, install-sh could exit with improper exit status when
32338         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
32339
32340 2004-12-16  Simon Josefsson  <jas@extundo.com>
32341
32342         * tests/test-base64.c: Add license.
32343
32344 2004-12-15  Stepan Kasal  <address@hidden>
32345
32346         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
32347
32348 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
32349
32350         * modules/getcwd (Files): Add m4/d-ino.m4.
32351         Suggested by Mark D. Baushke.
32352
32353 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32354
32355         * lib/getdate.y (textint): New member "negative".
32356         (time_zone_hhmm): New function.
32357         Expect 14 shift-reduce conflicts, not 13.
32358         (o_colon_minutes): New rule.
32359         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
32360         (yylex): Set the "negative" member of signed numbers.
32361
32362 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32363
32364         * doc/getdate.texi (Time of day items, Time zone items):
32365         Describe new formats +00:00, UTC+00:00.
32366
32367 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
32368
32369         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
32370         spurious "-l"s.  Problem reported by Stepan Kasal.
32371
32372 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
32373
32374         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
32375         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
32376
32377 2004-12-04  Simon Josefsson  <jas@extundo.com>
32378
32379         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
32380         Vandoorselaere <yoann@prelude-ids.org>.
32381
32382 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32383
32384         Changes imported from coreutils.
32385         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
32386         exist.
32387         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
32388
32389 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32390
32391         Changes imported from coreutils.
32392         * lib/hard-locale.c: Assume <locale.h> exists.
32393         Include "strdup.h".
32394         (GLIBC_VERSION): New macro.
32395         (hard_locale): Assume setlocale exists.
32396         Rewrite to avoid #ifdef.
32397         Use strdup rather than malloc + strcpy.
32398         * lib/human.c: Assume <locale.h> exists.
32399         (human_readable): Assume localeconv exists.
32400
32401 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32402
32403         * modules/hard-locale (Depends-on): Add strdup.
32404
32405 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32406
32407         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
32408         convert T2, not T.  (Imported from libc.)
32409
32410 2004-11-30  Simon Josefsson  <jas@extundo.com>
32411
32412         * modules/restrict (License): Change to LGPL.
32413
32414 2004-11-30  Simon Josefsson  <jas@extundo.com>
32415
32416         * m4/restrict.m4: Add copyright and copying conditions.
32417
32418 2004-11-30  Simon Josefsson  <jas@extundo.com>
32419
32420         * m4/base64.m4: New file.
32421
32422 2004-11-30  Simon Josefsson  <jas@extundo.com>
32423
32424         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
32425         base64.
32426
32427         * tests/test-base64.c: New file.
32428
32429         * modules/base64: New file.
32430
32431 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32432
32433         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
32434         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
32435
32436         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
32437
32438 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32439
32440         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
32441         (__getcwd.c): Don't restore errno; glibc doesn't.
32442         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
32443         first, falling back to our code only if its results look suspicious.
32444         Ensure that the resulting buffer is only as large as necessary.
32445
32446         * lib/readutmp.c: Include readutmp.h first.
32447         Include <errno.h>, since readutmp.h no longer does that.
32448         * lib/readutmp.h: Don't include <errno.h>,
32449         <sys/param.h>, <time.h>; not needed to establish interface.
32450         (errno): Remove decl.
32451         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
32452         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
32453         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
32454
32455 2004-11-28  Simon Josefsson  <jas@extundo.com>
32456
32457         * lib/base64.h, base64.c: New file.
32458
32459 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
32460
32461         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
32462
32463 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
32464
32465         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
32466         (Depends-on): Remove pathmax, same.  Add mempcpy.
32467         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
32468         (Makefile.am): Append getcwd.h to lib_SOURCES.
32469         (Include): Add getcwd.h.
32470         (Maintainer): Change from Jim Meyering to "all, glibc",
32471         since getdate now uses intended-for-glibc code.
32472         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
32473         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
32474
32475 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32476
32477         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
32478         HP's ANSI C compiler.
32479         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
32480         Declaring int functions causes warnings on some modern systems and
32481         shouldn't be needed to compile on ancient ones.
32482         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
32483         defined.
32484
32485         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
32486         with the following changes.
32487         (__set_errno): Parenthesize properly.
32488         Include <stdbool.h>.
32489         (MIN, MAX, MATCHING_INO): New macros.
32490         (__getcwd): Define with prototype, not K&R form.
32491         Use heuristics to allocate default buffer on stack if possible.
32492         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
32493         behavior, and to avoid the PATH_MAX limit when computing
32494         ../../../../...
32495         Use MATCHING_INO to compare inode number to file.
32496         Check for arithmetic overflow in size calculations.
32497         Fix bug in reallocation of dot array that caused getcwd to fail
32498         on directories nested deeper than 75.
32499         Be more careful about saving errno on error.
32500         Do not use realloc; use only free+malloc, as this is a bit
32501         more flexible and avoids a needless copy operation.
32502         Do not inspect st_dev and st_ino for symbolic links; POSIX
32503         doesn't specify the latter.
32504         Check for closedir errors.
32505         Avoid needless casts.
32506         Use "#ifdef weak_alias" around weak_alias, to be like other
32507         glibc code.
32508         The following changes to getcwd.c have effect only when used in
32509         gnulib; they have no effect inside glibc proper.
32510         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
32511         as alloca isn't used.
32512         (alloca, __alloca): Likewise.
32513         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
32514         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32515         unconditionally, as gnulib assumes C89 or better.
32516         Do not include <sys/param.h>.
32517         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
32518         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
32519         better.
32520         (NULL) [!defined NULL]: Remove; we assume C89 or better.
32521         Include <dirent.h> in a way that is compatible with modern Autoconf.
32522         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
32523         New macros, if not already defined.
32524         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
32525         Use "_LIBC", not "defined _LIBC", for consistency.
32526         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
32527         a mempcpy module.
32528         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
32529         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
32530         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
32531         credit only to Jim Meyering and adjust the copyright dates.
32532         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
32533         <stdlib.h>, <unistd.h>, "pathmax.h".
32534         Instead, include "xgetcwd.h" (first) and "getcwd.h".
32535         (INITIAL_BUFFER_SIZE): Remove.
32536         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
32537
32538 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32539
32540         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
32541         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
32542         Use the _ONCE methods, for efficiency.
32543         Check for fcntl.h.  In test program, include <errno.h>
32544         and <fcntl.h> if available.  Remove old K&R cruft from
32545         test program.  Check for common errors in GNU/Linux,
32546         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
32547         don't do AC_LIBOBJ, as that's getcwd.m4's job.
32548         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
32549         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
32550         name accordingly.
32551         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
32552         accommodate new getcwd.c.
32553         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
32554         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
32555         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
32556         that's all we need now.
32557
32558 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32559
32560         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
32561         argp-parse.c depends on getopt internals, that means we should
32562         always use our getopt, to be on the safe side.
32563         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
32564         order not to spoil the result of an eventual previous invocation
32565         of gl_GETOPT_SUBSTITUTE.
32566
32567 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32568
32569         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
32570         redefinition warnings. To avoid them, include the defines
32571         in `#if !defined __need_getopt ... #endif'. The only place
32572         where __getopt_argv_const is used is in definitions
32573         of getopt_long and getopt_long_only below, which are as well
32574         protected by `#ifndef __need_getopt'.
32575         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
32576         __need_getopt after including <stdio.h> and <unistd.h> These
32577         headers might have defined it.
32578
32579 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32580
32581         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
32582
32583 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32584
32585         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
32586         (futimens): New function, which uses futimes if available.
32587         (futimens, utimens): Support timespec==NULL, with same semantics
32588         as utime and utimens.
32589         * lib/utimens.h (futimens): New decl.
32590
32591 2004-11-23  Jim Meyering  <jim@meyering.net>
32592
32593         * lib/getopt_.h: Remove trailing blanks.
32594
32595 2004-11-23  Jim Meyering  <jim@meyering.net>
32596
32597         * lib/__fpending.c: Add comment.
32598
32599 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
32600
32601         * modules/canonicalize (Depends-on): Add xreadlink.
32602         Problem reported by James Youngman.
32603
32604 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
32605
32606         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
32607         New macros.
32608         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
32609         optopt): Use them instead of invoking ## directly; otherwise, the
32610         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
32611
32612 2004-11-19  Bruno Haible  <bruno@clisp.org>
32613
32614         * lib/strtok_r.c: Move comments from here...
32615         * lib/strtok_r.h: ... to here.
32616
32617 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32618
32619         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
32620         implementations that mishandle size_t overflow.
32621
32622 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32623
32624         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
32625         might fail.  Problem reported by Yoann Vandoorselaere.
32626         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
32627         implementations that mishandle size_t overflow.
32628
32629 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32630
32631         * modules/canon-host (Depends-on): Add strdup.
32632
32633 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32634
32635         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
32636
32637 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32638
32639         * lib/canon-host.c: Include "strdup.h".
32640         (canon_host): Use getaddrinfo if available, so that IPv6 works.
32641         Use strdup instead of malloc/strcpy to duplicate strings.
32642
32643         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
32644         (human_space_before_unit): New constant.
32645         * lib/human.c (human_readable): Support it.
32646
32647         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
32648         (xgetcwd): Set errno correctly when failing.
32649         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
32650         the failure is actually due to a PATH_MAX problem.
32651
32652         Further getopt changes to make it more likely that glibc will
32653         buy the changes back.
32654         * lib/getopt.c (POSIXLY_CORRECT): New constant.
32655         (getopt): Use it, so to preserve glibc semantic
32656         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
32657         when compiling for libc.
32658         * lib/getopt_.h (__getopt_argv_const): Bring it back.
32659         (getopt_long, getopt_long_only): Use it.
32660
32661         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32662         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
32663         (getopt): Argv is now char * const *, as per standard.
32664         (_getopt_internal_r, _getopt_internal): Argv is now char **,
32665         not char *__getopt_argv_const *.
32666         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32667         _getopt_long_only_r): Likewise.
32668         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
32669         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32670         _getopt_long_r, _getopt_long_only_r): Likewise.
32671         * lib/getopt_.h (__getopt_argv_const): Remove.
32672         (getopt): Argv is now char * const *, as per standard.
32673
32674         * lib/getdate.y (tORDINAL): New token.
32675         (day, relunit): Allow it for relative times.
32676         (relative_time_table): Use tORDINAL for ordinals.
32677
32678 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32679
32680         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
32681         Document that "second" isn't allowed as an ordinal number.
32682
32683 2004-11-16  Jim Meyering  <jim@meyering.net>
32684
32685         * modules/closeout (Depends-on): Add fpending.
32686
32687 2004-11-15  Jim Meyering  <jim@meyering.net>
32688
32689         * lib/closeout.c: Include "__fpending.h" once again.
32690         Include <stdbool.h>.
32691         (close_stdout): Don't fail just because stdout was closed initially,
32692         since some programs don't write to stdout in the normal course of
32693         operation (other than --version and --help), and we don't want this
32694         function to make e.g. `touch file >&-' fail.
32695         But do fail if it was closed and someone has tried to write to it.
32696         E.g., `printf foo >&-' must fail.
32697
32698 2004-11-13  Jim Meyering  <jim@meyering.net>
32699
32700         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
32701
32702 2004-11-12  Simon Josefsson  <jas@extundo.com>
32703
32704         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
32705         small doc fix is still pending.
32706
32707 2004-11-11  Simon Josefsson  <jas@extundo.com>
32708
32709         * modules/strtok_r: New file.
32710
32711         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32712         strtok_r.
32713
32714 2004-11-11  Simon Josefsson  <jas@extundo.com>
32715
32716         * m4/strtok_r.m4: New file.
32717
32718         * m4/getopt.m4: Replace opterr.
32719
32720 2004-11-11  Simon Josefsson  <jas@extundo.com>
32721
32722         * lib/strtok_r.h, strtok_r.c: New file.
32723
32724 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32725
32726         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
32727         of replacing opterr, getopt, etc.  This should handle the
32728         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
32729
32730 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32731
32732         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
32733         we can stop lying to compilers about the constness of argv when we
32734         are compiled outside glibc.
32735         (getopt, getopt_long, getopt_long_only): Use it.
32736         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32737         _getopt_internal, getopt): Likewise.
32738         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32739         _getopt_long_only_r): Likewise.
32740         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32741         _getopt_long_r, _getopt_long_only_r): Likewise.
32742
32743         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
32744         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
32745         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
32746         the other external symbols.
32747         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
32748         declaration, since the above renaming now works around collisions.
32749
32750 2004-11-11  Jim Meyering  <jim@meyering.net>
32751
32752         * lib/linebreak.c: Remove trailing blanks.
32753         * lib/alloca_.h: Likewise.
32754         * lib/acosl.c: Likewise.
32755         * lib/euidaccess.c: Likewise.
32756         * lib/allocsa.h: Likewise.
32757
32758 2004-11-10  Simon Josefsson  <jas@extundo.com>
32759
32760         * m4/getaddrinfo.m4: New file.
32761
32762 2004-11-10  Simon Josefsson  <jas@extundo.com>
32763
32764         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
32765
32766 2004-11-10  Simon Josefsson  <jas@extundo.com>
32767
32768         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32769         getaddrinfo.
32770
32771         * modules/getaddrinfo: New file.
32772
32773 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32774
32775         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
32776
32777 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32778
32779         * lib/mktime.c (SHR): New macro, which is a portable
32780         substitute for >> that should work even on Crays.
32781         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
32782         Problem reported by Mark D. Baushke in
32783         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
32784         * lib/getdate.y (SHR): Likewise.
32785         (tm_diff): Use it.
32786         * lib/strftime.c (SHR): Likewise.
32787         (tm_diff): Use it.
32788         * lib/quotearg.c (struct quoting_options): Use unsigned int for
32789         quote_these_too, so that right shifts are well defined.  All uses
32790         changed.
32791
32792 2004-11-10  Jim Meyering  <jim@meyering.net>
32793
32794         Ensure that no close failure goes unreported.
32795         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
32796         return early when it seems there's nothing to flush.
32797         Don't include __fpending.h.
32798
32799 2004-11-10  Jim Meyering  <jim@meyering.net>
32800
32801         * modules/closeout (Depends-on): Remove fpending.
32802
32803 2004-11-10  Jim Meyering  <jim@meyering.net>
32804
32805         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
32806
32807 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32808
32809         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
32810         gl_FUNC_STRFTIME.
32811         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
32812         and AC_REQUIRE when possible, to avoid duplicate checks.
32813         Check for <wchar.h>.
32814
32815 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32816
32817         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
32818
32819 2004-11-09  Bruno Haible  <bruno@clisp.org>
32820
32821         * m4/sockpfaf.m4: New file.
32822
32823 2004-11-05  Bruno Haible  <bruno@clisp.org>
32824
32825         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
32826         Reported by Mark D. Baushke <mdb@cvshome.org>.
32827
32828 2004-11-04  Bruno Haible  <bruno@clisp.org>
32829
32830         2004-09-11  Bruno Haible  <bruno@clisp.org>
32831                 * allocsa.valgrind: New file.
32832         2004-02-06  Bruno Haible  <bruno@clisp.org>
32833                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
32834                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
32835                 Reported by Christopher Seip <chris.seip@hp.com>.
32836
32837 2004-11-04  Bruno Haible  <bruno@clisp.org>
32838
32839         * modules/allocsa (Files): Add lib/allocsa.valgrind.
32840         (Makefile.am): Distribute it.
32841
32842 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
32843
32844         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
32845         with errno == ERANGE if the buffer is too small.
32846         Problem reported by Mark D. Baushke.
32847
32848 2004-11-03  Albert Chin  <china@thewrittenword.com>
32849             Paul Eggert  <eggert@cs.ucla.edu>
32850
32851         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
32852         equivalent, substitute $ac_type for equivalent type rather than
32853         blindly using uint32_t *always* which won't work if uint32_t is not
32854         available.  Define _UINT32_T to work around typedef of uint32_t if
32855         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
32856         2.5.1.
32857
32858 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32859
32860         * m4/jm-macros.m4: Sync from coreutils.
32861         (gl_MACROS): Check for mbrlen, for pathchk.
32862         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
32863
32864 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32865
32866         * lib/xreadlink.c (MAXSIZE): New macro.
32867         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
32868         size does not exceed MAXSIZE.  Avoid cast.
32869         As suggested by Mark D. Baushke in
32870         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
32871         if readlink fails with buffer size just under MAXSIZE, try again
32872         with MAXSIZE.
32873
32874 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32875
32876         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
32877
32878 2004-11-02  Derek R. Price  <derek@ximbiot.com>
32879         and  Paul Eggert  <eggert@cs.ucla.edu>
32880
32881         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
32882         (get_date): Overparenthesize to avoid GCC warning.
32883
32884 2004-11-02  Bruno Haible  <bruno@clisp.org>
32885
32886         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
32887         returns void.
32888
32889 2004-11-02  Bruno Haible  <bruno@clisp.org>
32890
32891         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
32892         function returns void.
32893
32894 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
32895
32896         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
32897         fflush_unlocked, flockfile, funlockfile, funlockfile,
32898         fputs_unlocked, putc_unlocked.
32899
32900 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
32901
32902         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
32903         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
32904         already declared.
32905
32906 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32907
32908         * modules/getdate (Files): Add doc/getdate.texi.
32909         (Depends-on): Add setenv, xalloc.
32910
32911 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32912
32913         * lib/getdate.y: Add support for TZ="foo" within a date string.
32914         Fix some bugs near time_t boundaries.  Reject dates with
32915         out-of-range components, e.g., "Sept 31".
32916         Include <stdlib.h>, "setenv.h", "xalloc.h".
32917         (ISDIGIT_LOCALE): Remove; unused.
32918         Note that the TZ and time functions used here are not reentrant.
32919         (mktime_ok, get_tz): New functions.
32920         (TZBUFSIZE): New constant.
32921         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
32922         This requires that we sometimes generate our own TZ="XXX..." setting.
32923
32924 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
32925
32926         * doc/getdate.texi: New file, from coreutils with modifications for
32927         the new TZ parsing.
32928
32929 2004-10-27  Derek R. Price  <derek@ximbiot.com>
32930
32931         * lib/mktime.c (not_equal_tm): Remove redundant check.
32932
32933 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32934
32935         * modules/regex (lib_SOURCES): Add regex.c.
32936         Reported by James Youngman in
32937         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
32938
32939 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32940
32941         * lib/getdate.y: Use Bison 1.875 features, and some minor
32942         code cleanups.  This change does not affect semantics.
32943         Don't include <stdlib.h>; no longer needed.
32944         Don't include unlocked-io.h; only the "#if TEST" code uses
32945         stdio, and performance isn't crucial there.
32946         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
32947         Bison 1.875 features as described below.
32948         All uses of "PC." replaced by "pc->".
32949         (YYSTYPE): Add a forward declaration.
32950         (yylex, yyerror): Use full prototypes in forward decls.
32951         Use "%pure-parser" rather than obsolescent "%pure_parser".
32952         Use %parse-param and %lex-param instead of obsolescent
32953         YYPARSE_PARAM and YYLEX_PARAM.
32954         (meridian_table, month_and_day_table, time_units_table,
32955         relative_time_table, time_zone_table, military_table,
32956         lookup_zone, lookup_word, get_date):
32957         Use NULL instead of 0 where appropriate.
32958         (to_hour): Avoid abort (), to avoid a dependency on
32959         stdlib.h.
32960         (yyerror, yylex): Now accepts parser_control * arg.
32961         (main) [TEST]: Use '\0' rather than 0 for char.
32962
32963 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
32964
32965         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
32966
32967 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
32968
32969         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
32970         It's now the caller's responsibility to handle the case where
32971         !HAVE_GETPAGESIZE && !defined getpagesize.
32972
32973         * lib/mktime.c (leapyear): Arg is long int, not int.
32974
32975 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
32976
32977         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
32978
32979 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
32980
32981         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
32982         missing.  Problem reported by James Youngman.
32983
32984 2004-10-16  Simon Josefsson  <jas@extundo.com>
32985
32986         * gnulib-tool: Fix comments.  Fix parse problem.
32987         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
32988
32989 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
32990
32991         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
32992         implementation of getopt_long.  Problem reported by Alexander Taler in:
32993         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
32994
32995 2004-10-15  Bruno Haible  <bruno@clisp.org>
32996
32997         * gnulib-tool: Untabify. Initialize supplied_libname.
32998         (func_usage): More homogenous output.
32999         (func_modules_transitive_closure, func_modules_to_filelist,
33000         func_emit_lib_Makefile_am): New functions.
33001         (func_import): New function, extracted from big case statement. Use
33002         func_get_license, func_modules_transitive_closure,
33003         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
33004         opt_lgpl. Don't use test -a, as it's not portable.
33005         (func_create_testdir): Use func_modules_transitive_closure,
33006         func_modules_to_filelist, func_emit_lib_Makefile_am.
33007
33008 2004-10-15  Bruno Haible  <bruno@clisp.org>
33009
33010         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
33011
33012 2004-10-15  Bruno Haible  <bruno@clisp.org>
33013
33014         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
33015         the portions belonging to each module.
33016         Suggested by Derek Robert Price <derek@ximbiot.com>.
33017
33018 2004-10-12  Simon Josefsson  <jas@extundo.com>
33019
33020         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
33021         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
33022         to real functions.
33023
33024 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33025
33026         * modules/vsnprintf: New file.
33027
33028 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33029
33030         * m4/vsnprintf.m4: New file.
33031
33032 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33033
33034         * lib/vsnprintf.h: New file.
33035         * lib/vsnprintf.c: New file.
33036
33037 2004-10-11  Bruno Haible  <bruno@clisp.org>
33038
33039         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
33040         vsnprintf.
33041
33042 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
33043
33044         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
33045
33046 2004-10-07  Bruno Haible  <bruno@clisp.org>
33047
33048         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
33049         fits into the provided buffer.
33050
33051 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
33052
33053         * lib/diacrit.c, diacrit.h: Add GPL notice.
33054
33055         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
33056         notice.
33057         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
33058         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
33059         This avoids a potential constant-folding bug.
33060
33061 2004-10-05  Bruno Haible  <bruno@clisp.org>
33062
33063         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
33064         for the declaration of strsep.
33065
33066 2004-10-05  Bruno Haible  <bruno@clisp.org>
33067
33068         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
33069
33070 2004-10-04  Simon Josefsson  <jas@extundo.com>
33071
33072         * modules/memmem: New file.
33073         * tests/test-memmem.c: New file.
33074         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
33075
33076 2004-10-04  Simon Josefsson  <jas@extundo.com>
33077
33078         * m4/memmem.m4: New file.
33079
33080 2004-10-04  Simon Josefsson  <jas@extundo.com>
33081
33082         * lib/memmem.h: New file.
33083         * lib/memmem.c: New file, taken from glibc.
33084
33085 2004-10-04  Simon Josefsson  <jas@extundo.com>
33086
33087         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
33088         '#ifdef USE_UNLOCKED_IO'.
33089
33090 2004-10-04  Simon Josefsson  <jas@extundo.com>
33091
33092         * config/srclist.txt: Add memmem from glibc.
33093
33094 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33095
33096         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
33097
33098         * modules/argmatch, modules/argp, modules/closeout, modules/error,
33099         modules/exclude, modules/getdate, modules/getline,
33100         modules/getndelim2, modules/getpass, modules/getpass-gnu,
33101         modules/getusershell, modules/linebuffer, modules/md5,
33102         modules/mountlist, modules/posixtm, modules/readtokens,
33103         modules/readutmp, modules/regex, modules/sha1,
33104         modules/version-etc, modules/yesno:
33105         Remove dependency on unlocked-io.
33106
33107 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33108
33109         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
33110
33111         * m4/unlocked-io.m4: Add copyright notice.
33112         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
33113
33114 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33115
33116         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
33117         * lib/xmalloc.c (xmemdup): Likewise.
33118         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
33119         XFREE): Remove these long-obsolescent macros.
33120         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
33121         * lib/xstrdup.c: Remove.
33122
33123         * lib/regex.c (re_comp): Cast gettext return value to char *,
33124         Problem reported by Martin Neitzel via Mark D. Baushke.
33125
33126 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33127
33128         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
33129         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
33130         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
33131         regex.c, sha1.c, version-etc.c, yesno.c:
33132         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
33133         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
33134         the includer's responsibility.
33135
33136         Sync from coreutils.
33137
33138         * lib/modechange.c (mode_compile): Don't decrement a pointer that
33139         points to the start of a string, as the C Standard says the
33140         resulting behavior is undefined.
33141
33142         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
33143         simple -> simple_backups, numbered_existing ->
33144         numbered_existing_backups, numbered -> numbered_backups
33145         to avoid shadowing problems.  All uses changed.
33146         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
33147         * lib/backupfile.c (check_extension, numbered_backup):
33148         Rename locals to avoid shadowing 'basename'.
33149         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
33150         once.
33151
33152         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
33153         * lib/.cvsignore: Add getopt.h.
33154
33155 2004-10-04  Bruno Haible  <bruno@clisp.org>
33156
33157         * modules/README: New file.
33158         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
33159         not a module.
33160
33161 2004-10-02  Jim Meyering  <jim@meyering.net>
33162
33163         * lib/dirfd.h, getpagesize.h: Add copyright notice.
33164
33165 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33166
33167         * modules/strsep: New file.
33168
33169 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33170
33171         * m4/strsep.m4: New file.
33172
33173 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33174
33175         * lib/strsep.h: New file.
33176         * lib/strsep.c: New file.
33177
33178 2004-10-01  Simon Josefsson  <jas@extundo.com>
33179
33180         * lib/snprintf.c (snprintf): Handle size==0.
33181
33182 2004-10-01  Simon Josefsson  <jas@extundo.com>
33183             Bruno Haible  <bruno@clisp.org>
33184
33185         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
33186         (snprintf): Declare 'args'.
33187
33188 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
33189
33190         * lib/snprintf.c: Remove comments as to why each header is needed.
33191
33192 2004-10-01  Bruno Haible  <bruno@clisp.org>
33193
33194         * MODULES.html.sh: Add strsep.
33195
33196 2004-09-30  Simon Josefsson  <jas@extundo.com>
33197
33198         * modules/snprintf: New file.
33199
33200 2004-09-30  Simon Josefsson  <jas@extundo.com>
33201
33202         * m4/snprintf.m4: New file.
33203
33204 2004-09-30  Simon Josefsson  <jas@extundo.com>
33205
33206         * lib/snprintf.h, lib/snprintf.c: New files.
33207
33208 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
33209
33210         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
33211         (hol_entry_help): Never translate an empty string.
33212         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
33213         * lib/argp.h (OPTION_NO_TRANS): New option.
33214
33215 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33216
33217         * modules/argp (Maintainer): Replace Simon Josefsson
33218         by Sergey Poznyakoff.
33219
33220 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33221
33222         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
33223         changes merged back into glibc.
33224
33225 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33226
33227         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
33228
33229 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
33230
33231         * lib/xvasprintf.c: Include xalloc.h.
33232         (xvasprintf): Use xalloc_die, not xmalloc_die.
33233
33234 2004-09-29  Bruno Haible  <bruno@clisp.org>
33235
33236         * modules/alloca-opt: New file, derived from modules/alloca.
33237         * modules/allocsa: Depend on alloca-opt instead of alloca.
33238         * modules/setenv: Likewise.
33239         * modules/vasnprintf: Likewise.
33240         * MODULES.html.sh: Add alloca-opt.
33241
33242 2004-09-28  Simon Josefsson  <jas@extundo.com>
33243
33244         * gnulib-tool: New parameter --lgpl, to asseert that modules are
33245         LGPL, and to replace license template from GPL to LGPL.
33246
33247 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33248
33249         * modules/dummy: Change license to LGPL.
33250
33251 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33252
33253         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
33254
33255 2004-09-24  Simon Josefsson  <jas@extundo.com>
33256
33257         * modules/minmax (License): Change from GPL to LGPL.
33258
33259 2004-09-23  Simon Josefsson  <jas@extundo.com>
33260
33261         * gnulib-tool (--import): Typo.
33262
33263 2004-09-23  Simon Josefsson  <jas@extundo.com>
33264
33265         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
33266
33267 2004-09-22  Bruno Haible  <bruno@clisp.org>
33268
33269         * modules/*: Add 'License' field.
33270         * gnulib-tool: Accept --extract-license option.
33271         (func_get_license): New function.
33272
33273 2004-09-21  Bruno Haible  <bruno@clisp.org>
33274
33275         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
33276         Reported by Simon Josefsson.
33277
33278 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33279
33280         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
33281         gl_AC_TYPE_LONG_LONG.
33282
33283 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33284
33285         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
33286
33287 2004-09-18  Simon Josefsson  <jas@extundo.com>
33288         and  Paul Eggert  <eggert@cs.ucla.edu>
33289
33290         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
33291         calls with autoreconf.  Define GL_LIB.
33292
33293 2004-09-14  Karl Berry  <karl@gnu.org>
33294
33295         * config/srclist.txt: unsync setenv.c, sigh.
33296
33297 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33298
33299         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
33300         Problem reported by Bruno Haible in:
33301         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
33302
33303 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33304
33305         * config/srclist.txt: Comment out argp-pvh.c.
33306
33307 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
33308
33309         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
33310         in case some system header has #define'd it.  Problem reported by
33311         Soeren D. Schulze in
33312         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
33313
33314 2004-09-09  Karl Berry  <karl@gnu.org>
33315
33316         * regex.[ch]: delete from the root.  These were supposed to be
33317                 synced with emacs cvs, but this has not happened for about
33318                 a year, and anyway nothing else uses emacs regex.[ch].
33319                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
33320                 lib/regex[.ch] is untouched.
33321
33322 2004-09-09  Bruno Haible  <bruno@clisp.org>
33323
33324         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
33325
33326 2004-09-09  Bruno Haible  <bruno@clisp.org>
33327
33328         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
33329         modifications.
33330         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
33331
33332 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33333
33334         * modules/xvasprintf: New file.
33335         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
33336
33337 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33338
33339         * lib/xvasprintf.h: New file.
33340         * lib/xvasprintf.c: New file.
33341         * lib/xasprintf.c: New file.
33342
33343 2004-09-08  Bruno Haible  <bruno@clisp.org>
33344
33345         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
33346
33347 2004-09-08  Bruno Haible  <bruno@clisp.org>
33348
33349         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
33350         length is > INT_MAX.
33351         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
33352         more.
33353
33354 2004-09-08  Bruno Haible  <bruno@clisp.org>
33355
33356         * lib/stdint_.h: New file, taken from GNU clisp.
33357
33358 2004-09-08  Bruno Haible  <bruno@clisp.org>
33359             Oskar Liljeblad  <oskar@osk.mine.nu>
33360
33361         * modules/stdint: New file.
33362         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
33363
33364 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33365
33366         Import from coreutils.
33367         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
33368         strings on unbounded length.  alloca's performance benefits aren't
33369         that important here.
33370         (V_STRDUP): Remove.
33371         (parse_with_separator): New function, with most of the internals
33372         of the old parse_user_spec.  Allow user to omit both user and group,
33373         for compatibility with FreeBSD.
33374         Clone only the user name, not the entire spec.
33375         Do not set *uid, *gid unless entirely successful.
33376         Avoid memory leak in some failing cases.
33377         Fix regression for USER.GROUP reported by Dmitry V. Levin in
33378         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
33379         (parse_user_spec): Rewrite to use parse_with_separator.
33380
33381 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33382
33383         * modules/userspec: Don't depend on alloca.
33384
33385 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33386
33387         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
33388
33389 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
33390
33391         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
33392         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
33393         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
33394
33395 2004-08-16  Simon Josefsson  <jas@extundo.com>
33396
33397         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
33398         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
33399         Add --dry-run for --import.
33400         Let user provided command line parameters override configure.ac
33401         settings.
33402
33403 2004-08-12  Simon Josefsson  <jas@extundo.com>
33404
33405         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
33406         as discussed with Paul Eggert in threads rooted at
33407         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
33408         and
33409         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
33410         Before, the test was empty, and relied on ELIDE_CODE in source
33411         code.)
33412         (gl_PREREQ_GETOPT): New macro.
33413         (gl_GETOPT): Use them.
33414
33415 2004-08-12  Simon Josefsson  <jas@extundo.com>
33416
33417         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
33418         * lib/getopt_.h: Renamed from getopt.h.
33419
33420 2004-08-12  Simon Josefsson  <jas@extundo.com>
33421
33422         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
33423         Change default library name from libfoo to libgnu.
33424         Now, if you have a configure.ac that says:
33425                 gl_SOURCE_BASE(gl)
33426                 gl_M4_BASE(gl/m4)
33427                 gl_MODULES(error getopt etcetera)
33428                 gl_INIT
33429         you can import all you need by running:
33430                 ../gnulib/gnulib-tool --import
33431
33432         * modules/getopt (Files): Rename getopt.h to getopt_.h.
33433         (Makefile.am): Rewrite, use logic from argz.
33434         (Include): Use <getopt.h> instead of "getopt.h".
33435
33436 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33437
33438         * modules/argp (Files): Add m4/unlocked-io.m4.
33439         (Depends-on): Add extensions.
33440
33441 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33442
33443         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
33444         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
33445         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
33446         Check for program_invocation_name, program_invocation_short_name,
33447         flockfile, funlockfile, features.h, _getopt_long_only_r.
33448
33449 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33450
33451         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
33452         its complicated substitute.
33453         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
33454         and program_invocation_name.
33455         (__argp_basename) [!_LIBC]: Remove; the only use was
33456         replaced by its body.
33457         (__argp_short_program_name): Change condition from
33458         !defined __argp_short_program_name to
33459         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
33460         to match argp-namefrob.h.
33461         (__argp_failure): Don't assume strerror_r returns char *.
33462         * lib/argp-parse.c (N_): Define unconditionally.
33463         (argp_default_options): Fill out initializers with 0 to avoid
33464         gcc warnings.
33465
33466 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33467
33468         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
33469         getopt1.c.
33470
33471 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33472
33473         Merge from coreutils.
33474
33475         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
33476
33477         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
33478         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
33479
33480 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33481
33482         Merge from coreutils.
33483
33484         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
33485         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
33486         for Reliant Unix 5.43.
33487
33488         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
33489         (union fooround): Use uintmax_t, not long int.
33490         The rest is a merge from libc:
33491         [defined _LIBC]: Include <shlib-compat.h>.
33492         (_obstack) [defined _LIBC]: Remove after 2.3.4.
33493
33494         * lib/settime.c (settime): Recode to avoid warning with
33495         Sun Forte C 6U2.
33496
33497         * lib/strverscmp.c: Convert to UTF-8.
33498
33499 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33500
33501         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
33502         m4/uintmax_t.m4.
33503
33504 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33505
33506         * modules/xalloc-die: New file.
33507         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
33508
33509         * modules/md5 (Files): Add m4/uint32_t.m4.
33510         * modules/sha1: Renamed from modules/sha.
33511         (Files):
33512         Rename lib/sha.h to lib/sha1.h.
33513         Rename lib/sha.c to lib/sha1.c.
33514         Rename m4/sha.m4 to m4/sha1.m4.
33515         (lib_SOURCES): Likewise.
33516         (configure.ac): Rename gl_SHA to gl_SHA1.
33517         (Include): sha.h -> sha1.h.
33518
33519 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33520
33521         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
33522         * m4/sha1.m4: Renamed from sha.m4.
33523         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
33524
33525 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33526
33527         * lib/obstack.h (obstack_empty_p):
33528         Don't assume that chunk->contents is suitably aligned.
33529         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
33530         Likewise. Problem reported by Benno in
33531         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
33532
33533         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
33534         readable.  This could be improved further but it'd take some work.
33535
33536 2004-08-08  Simon Josefsson  <jas@extundo.com>
33537
33538         * modules/xgethostname (Depends-on): Remove exit and error (not
33539         used).
33540
33541         * modules/getpass-gnu: Add getpass.h.
33542         (Depends-on): Add stdbool.
33543         * modules/getpass: Add getpass.h.
33544
33545 2004-08-08  Simon Josefsson  <jas@extundo.com>
33546
33547         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
33548         Check getpass declaration.
33549
33550 2004-08-08  Simon Josefsson  <jas@extundo.com>
33551
33552         * lib/xgethostname.c: Don't include error.h (not used).
33553
33554         * lib/getpass.h: Add.
33555         * lib/getpass.c: Include getpass.h first.
33556
33557 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
33558
33559         * lib/xalloc-die.c: New file.
33560         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
33561         All uses removed.
33562         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
33563         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
33564         xalloc-die.c.
33565         (_, N_, xalloc_die): Move to xalloc-die.c.
33566         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
33567         so that we needn't mess with xalloc_msg_memory_exhausted.
33568
33569         * lib/sha1.h: Renamed from sha.h.
33570         (SHA1_H): Renamed from _SHA_H.
33571         (sha1_ctx): Renamed from sha_ctx.
33572         (sha1_init_ctx): Renamed from sha_init_ctx.
33573         (sha1_process_block): Renamed from sha_process_block.
33574         (sha1_process_bytes): Renamed from sha_process_bytes.
33575         (sha1_finish_ctx): Renamed from sha_finish_ctx.
33576         (sha1_read_ctx): Renamed from sha_read_ctx.
33577         (sha1_stream): Renamed from sha_stream.
33578         (sha1_buffer): Renamed from sha_buffer.
33579         * lib/sha1.c: Likewise; renamed from sha.c.
33580         Do not include <sys/types.h>.
33581         Include <stddef.h> rather than <stdlib.h>.
33582
33583 2004-08-08  Bruno Haible  <bruno@clisp.org>
33584
33585         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
33586         FILESYSTEM_PREFIX_LEN.
33587         * lib/progreloc.c: Likewise.
33588         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
33589
33590 2004-08-06  Simon Josefsson  <jas@extundo.com>
33591
33592         * modules/progname (Depends-on): Don't depend on stdbool.
33593
33594 2004-08-06  Simon Josefsson  <jas@extundo.com>
33595
33596         * modules/getsubopt: New file.
33597         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
33598         getsubopt.
33599
33600 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33601
33602         More merge from coreutils.
33603
33604         * m4/utimens.m4, m4/utimecmp.m4: New files.
33605         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
33606         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
33607         prereq.m4, sha.m4: Import changes from coreutils.
33608
33609 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33610
33611         More merge from coreutils.
33612         * modules/raise, modules/readtokens0, modules/utimens:
33613         * modules/utimecmp, module/xnanosleep: New files.
33614         * modules/strftime: Add lib/strftime.h.
33615         Change include from <time.h> to "strftime.h".
33616         * modules/yesno: Add lib/yesno.h.
33617         * modules/backupfile: Remove lib/addext.c.
33618         * modules/euidaccess: Add stat-macros.h.
33619         * modules/canonicalize, modules/euidaccess,
33620         modules/filemode, modules/lchown, modules/makepath,
33621         modules/rmdir, modules/stat: Likewise.
33622
33623 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33624
33625         Merge from tar.
33626         * lib/argp-help.c (make_hol, hol_append): Don't assume that
33627         SIZE_MAX is a valid preprocessor constant.
33628         (__argp_basename): Change from "#ifndef _LIBC"
33629         to "#ifndef __argp_short_program_name", so that
33630         we don't compile these functions for tar.
33631
33632         More merges from coreutils.
33633         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
33634         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
33635         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
33636         * lib/addext.c: Remove; no longer needed.
33637         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
33638         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
33639         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
33640         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
33641         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
33642         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
33643         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
33644         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
33645         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
33646         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
33647         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
33648         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
33649         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
33650         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
33651         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
33652         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
33653         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
33654         Import changes from coreutils.
33655
33656 2004-08-05  Simon Josefsson  <jas@extundo.com>
33657
33658         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
33659
33660 2004-08-05  Simon Josefsson  <jas@extundo.com>
33661
33662         * m4/getsubopt.m4: New file.
33663
33664 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33665
33666         Merge from coreutils.
33667
33668         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
33669         * m4/getcwd-path-max.m4: New files.
33670
33671         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
33672         FILESYSTEM_PREFIX_LEN ->
33673         FILE_SYSTEM_PREFIX_LEN.
33674         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
33675         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
33676         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
33677         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
33678
33679         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
33680         prerequisite modules now handle the DOS stuff.
33681         Don't check for unistd.h.
33682
33683 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33684
33685         Merge from coreutils.
33686
33687         * lib/.gdb-history: Remove; this doesn't belong here.
33688
33689         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
33690         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
33691         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
33692         * lib/getcwd.c: New files.
33693
33694         * lib/dirname.h: Include <stdbool.h>.
33695         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
33696         for consistency with POSIX terminology.  All uses changed.
33697         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
33698         (strip_trailing_slashes): Use bool for booleans.
33699         * lib/stripslash.c (strip_trailing_slashes): Likewise.
33700
33701         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
33702         sometimes returns a positive errno value even when it succeeds.
33703         (print_errno_message) [!LIBC]: Fall back on strerror if
33704         __strerror_r fails.
33705
33706         * lib/path-concat.c (mempcpy): Don't define if a system header defines
33707         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
33708         (longest_relative_suffix): New function.
33709         (path_concat): Use it.  Assume first argument is not NULL.
33710         Port to DOS.  Omit redundant separators.
33711         Report an error instead of returning NULL.
33712         Use mempcpy instead of memcpy.
33713         (xpath_concat): Remove: not declared or used.
33714
33715         * lib/same.h: Include <stdbool.h>
33716         (same_name): Return bool, not int.
33717         * lib/same.c (same_name): Likewise.
33718         (errno): Don't declare; we assume C89 or better now.
33719
33720         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
33721         if not already defined.
33722
33723         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
33724         * lib/dup-safer.c (errno): Likewise.
33725
33726 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33727
33728         Merge from coreutils.
33729         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
33730         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
33731         * modules/path-concat: Don't depend on strdup.
33732
33733 2004-08-03  Simon Josefsson  <jas@extundo.com>
33734
33735         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
33736         * lib/progname.h: Don't include stdbool.h.
33737
33738 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33739
33740         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
33741         * MODULES.html.sh (func_all_modules): Remove fatal.
33742
33743 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33744
33745         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
33746
33747 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33748
33749         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
33750         working.
33751
33752 2004-08-02  Simon Josefsson  <jas@extundo.com>
33753
33754         * lib/getsubopt.h: New file, with comments from Bruno Haible.
33755         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
33756         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
33757
33758 2004-08-01  Simon Josefsson  <jas@extundo.com>
33759
33760         * lib/xgetdomainname.c: Include stdlib.h, for free().
33761
33762 2004-07-19  Bruno Haible  <bruno@clisp.org>
33763
33764         * MODULES.html.sh (func_all_modules): Add dummy.
33765
33766 2004-07-16  Simon Josefsson  <jas@extundo.com>
33767
33768         * modules/dummy: New file.
33769
33770 2004-07-16  Simon Josefsson  <jas@extundo.com>
33771
33772         * lib/dummy.c: New file.
33773
33774 2004-07-16  Bruno Haible  <bruno@clisp.org>
33775
33776         * lib/backupfile.h: Add extern "C" for C++.
33777         * lib/closeout.h: Likewise.
33778         * lib/copy-file.h: Likewise.
33779         * lib/findprog.h: Likewise.
33780         * lib/full-write.h: Likewise.
33781         * lib/pathname.h: Likewise.
33782         * lib/progname.h: Likewise.
33783         * lib/stpcpy.h: Likewise.
33784         * lib/stpncpy.h: Likewise.
33785         * lib/strcase.h: Likewise.
33786         * lib/strstr.h: Likewise.
33787         * lib/xalloc.h: Likewise.
33788
33789         * lib/mbswidth.h: Add extern "C" for C++.
33790         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
33791
33792 2004-07-13  Robert Millan  <robertmh@gnu.org>
33793
33794         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
33795
33796 2004-07-09  Simon Josefsson  <jas@extundo.com>
33797
33798         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
33799         failed without this.)
33800
33801 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33802
33803         * modules/chown (Files): Add lib/fchown-stub.c, since
33804         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
33805
33806 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33807
33808         * lib/fchown-stub.c: New file.
33809
33810 2004-06-24  Jim Meyering  <jim@meyering.net>
33811
33812         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
33813
33814 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33815
33816         * modules/argz: Omit "#include".
33817
33818         * MODULES.html.sh (func_all_modules): Add calloc, to match
33819         2004-06-01 addition of calloc module.
33820
33821 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33822
33823         * m4/argz.m4: New file, which is autoupdated from libtool.
33824
33825 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33826
33827         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
33828         libtool.
33829
33830 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33831
33832         * config/srclist-update: Don't insist on "USA." before the
33833         close-comment, as libtool omits the period and puts the */ on a
33834         separate line.
33835         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
33836         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
33837
33838 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
33839
33840         * modules/argz: New file.
33841         * MODULES.html.sh (func_all_modules): Add argz.
33842
33843 2004-06-12  Jim Meyering  <jim@meyering.net>
33844         and  Paul Eggert  <eggert@cs.ucla.edu>
33845
33846         * modules/hash (Files): Add lib/xalloc.h.
33847         * modules/pipe (Depends-on): Add wait-process.
33848         * modules/stat (Depends-on): Add xalloc.
33849         * modules/userspec (Files): Add lib/userspec.h.
33850         * modules/xstrto
33851
33852         Upgrade from gettext-0.13.
33853         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
33854         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
33855         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
33856
33857 2004-06-10  Jim Meyering  <jim@meyering.net>
33858
33859         * lib/calloc.c: New file.
33860
33861 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33862
33863         * lib/getdate.y (yylex): Allow space between sign and number.
33864         Problem reported by Dan Jacobson.
33865
33866 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
33867
33868         Merge from coreutils CVS.
33869
33870         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
33871         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
33872         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
33873         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
33874         xstrtol.m4: Fix copyright date and/or serial number.
33875
33876         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
33877         See if we need an fchown replacement.
33878         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
33879         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
33880         and use the replacement function if we detect either defect.
33881
33882         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
33883         gl_UTIMECMP.
33884
33885 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
33886         and  Jim Meyering  <jim@meyering.net>
33887
33888         Merge from coreutils CVS.
33889
33890         * lib/stat-macros.h: New file, with contents from file-type.h
33891         and coreutils' system.h.
33892         * lib/file-type.c: Include "stat-macros.h".
33893         * lib/file-type.h (file_type): Move all macro definitions to new file,
33894         stat-macros.h.
33895
33896         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
33897         Wrap old code with this conditional.
33898         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
33899         function that does not dereference symlinks.
33900         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
33901
33902         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
33903         dependency problems.
33904         (xreadlink): Accept new arg SIZE, for efficiency.
33905         All decls and uses changed.
33906         * lib/xreadlink.h: Include <stddef.h>, for size_t.
33907
33908         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
33909         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
33910
33911         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
33912         sysexits.h.
33913
33914 2004-06-01  Jim Meyering  <jim@meyering.net>
33915
33916         * m4/calloc.m4: New file.
33917
33918 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
33919
33920         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
33921         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
33922         Also, fix a typo in a diagnostic.
33923
33924 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
33925
33926         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
33927         or AC_FUNC_REALLOC.
33928
33929 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
33930
33931         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
33932         macros to be defined.
33933         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
33934         the allocator returns NULL because the requested size is zero.
33935
33936 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
33937
33938         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
33939         var.  Add comment explaining why libc still defines it.  This
33940         merges the following patch from glibc:
33941         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
33942
33943 2004-05-20  Andreas Schwab  <schwab@suse.de>
33944
33945         * m4/free.m4: Replace free if it not known to work, not the other
33946         way round.
33947
33948 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
33949
33950         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
33951         present in glibc since revision 1.1 of this file.
33952         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
33953         obstack_alignment_mask, obstack_alloc, obstack_base,
33954         obstack_blank, obstack_blank_fast, obstack_chunk_size,
33955         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
33956         obstack_grow0, obstack_init, obstack_int_grow,
33957         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
33958         obstack_next_free, obstack_object_size, obstack_ptr_grow,
33959         obstack_ptr_grow_fast, obstack_room): Remove declarations of
33960         nonexistent functions.
33961
33962 2004-05-18  Karl Berry  <karl@gnu.org>
33963
33964         * config/srclist.txt: break link for vasnprintf.c.
33965
33966 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
33967
33968         Port obstack to the AS/400, where pointers are 16 bytes wide and
33969         you cannot cast an integer to a valid pointer.  This patch is
33970         currently waiting to be integrated into glibc; see
33971         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
33972
33973         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
33974         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
33975         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
33976         (struct obstack): temp member is now a union of a pointer and
33977         an integer, instead of an integer.  All integer uses changed.
33978         This does not affect the physical layout of struct obstack,
33979         except on hosts (like the AS/400) where the size or alignment of
33980         void * is greater than that of ptrdiff_t.
33981         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
33982         __STDC__)]: Store temporary in pointer member of union, not
33983         integer member.
33984         * lib/obstack.c: Include <stddef.h>, for offsetof.
33985         (struct fooalign): Remove; it doesn't need a name.
33986         (union fooround): Change double to long double, and add void *.
33987         (DEFAULT_ALIGNMENT): Use offsetof to compute.
33988         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
33989         not a macro.  Hence the values are always int; so remove all
33990         casts-to-int in uses.
33991
33992 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
33993
33994         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
33995         we can get this patch merged into glibc.
33996
33997 2004-05-17  Derek R. Price  <derek@ximbiot.com>
33998             Paul Eggert  <eggert@cs.ucla.edu>
33999
34000         * m4/argp: Depend on alloca.
34001
34002 2004-05-17  Derek R. Price  <derek@ximbiot.com>
34003             Paul Eggert  <eggert@cs.ucla.edu>
34004
34005         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
34006         freecoding.
34007
34008 2004-05-17  Bruno Haible  <bruno@clisp.org>
34009
34010         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
34011         precision that consists of a '.' followed by an empty digit string.
34012         Patch by Tor Lillqvist <tml@iki.fi>.
34013
34014 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34015
34016         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
34017         for backward compatibility with older code.  We need our own
34018         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
34019         it under some other name, and our alloca.h will define it.
34020
34021 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34022             Derek Price  <derek@ximbiot.com>
34023
34024         * lib/alloca.c: Include <alloca.h>, to get our interface.
34025         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
34026         include <alloca.h> first.  Use C89 prototype for alloca; this
34027         requires including <stddef.h> for size_t.  Use extern "C" if C++.
34028         Use #elif for simplicity, since we can assume C89 now.
34029         Don't try to source the system alloca.h since it will not be found
34030         and to prevent recursively including its replacement.
34031         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
34032         * lib/regex.c: Likewise.
34033
34034 2004-05-16  Derek Price  <derek@ximbiot.com>
34035             Paul Eggert  <eggert@cs.ucla.edu>
34036
34037         getline cleanup.  This changes the getndelim2 API: both order of
34038         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
34039         no delimiter).
34040
34041         * lib/getline.c: Don't include stddef.h or stdio.h, since our
34042         interface does that.
34043         (getline): Always use getdelim, so that we don't have two
34044         copies of this code.
34045         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
34046         if available.
34047         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
34048         (GETNDELIM2_MAXIMUM): New macro.
34049         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
34050         instead of the old practice of delim2==0.  All callers changed.
34051         Return -1 on overflow, instead of returning junk.
34052         Do not set *linesize unless allocation succeeds.
34053         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
34054         that we include sys/types.h.
34055         * lib/getnline.h: Likewise.
34056         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
34057         (getndelim2): Reorder arguments.
34058         * lib/getnline.c (getnline, getndelim):
34059         Don't discard the NMAX argument.
34060         (getnline): Invoke getndelim, to avoid code duplication.
34061         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
34062         of (size_t) -1 by callers of the getnline family.
34063
34064 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
34065
34066         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
34067         Check for gettimeofday.
34068         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
34069         Check for settimeofday, stime.
34070
34071 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
34072
34073         * lib/nanosleep.c (suspended): Change its type from int to
34074         sig_atomic_t volatile.
34075         (first_call): Make it private to rpl_nanosleep, and have it
34076         be zero initially as that's a bit faster.
34077         (my_usleep): Round up fractional times instead of truncating them,
34078         as this is the usual meaning for 'sleep'.
34079
34080         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
34081         doesn't work.
34082         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
34083         (ENOSYS): Define if not defined.
34084         (settime): Fall back on stime if it exists and settimeofday fails.
34085         But don't bother with fallbacks if a method fails with errno == EPERM.
34086
34087 2004-05-11  Jim Meyering  <jim@meyering.net>
34088
34089         Prior to this change, the save_cwd caller required read access to the
34090         current directory on most systems (ones with the fchdir function).
34091
34092         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
34093         fails, try write-only, and finally, resort to using xgetcwd.
34094
34095 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
34096
34097         * lib/obstack.c, obstack.h: Import changes from libc.
34098
34099 2004-04-28  Bruno Haible  <bruno@clisp.org>
34100
34101         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
34102         also implicitly appends .exe to executables.
34103         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
34104         accepts Windows pathnames.
34105         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34106         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34107         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34108         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34109         Reported by Derek Robert Price <derek@ximbiot.com>.
34110
34111 2004-04-21  Karl Berry  <karl@gnu.org>
34112
34113         * config/srclist.txt (localcharset.c): break sync.
34114
34115 2004-04-20  Paul Eggert  <eggert@twinsun.com>
34116
34117         * m4/host-os.m4: Add a copyright notice.
34118
34119 2004-04-20  Jim Meyering  <jim@meyering.net>
34120
34121         Change UTILS_ to gl_ in AC_DEFINE'd names.
34122         Change utils_- and jm_-prefixed variables, too.
34123         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
34124         UTILS_FUNC_MKDIR_TRAILING_SLASH.
34125         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
34126
34127         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
34128         Don't emit trailing blanks.
34129         Also rename jm_-prefixed variables to have gl_ prefix.
34130
34131         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
34132         Also rename jm_-prefixed variables to have gl_ prefix.
34133
34134         * m4/jm-macros.m4: Reflect the renamings.
34135         * m4/prereq.m4: Likewise.
34136
34137 2004-04-20  Jim Meyering  <jim@meyering.net>
34138
34139         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
34140         memory.
34141
34142 2004-04-20  Jim Meyering  <jim@meyering.net>
34143             Bruno Haible  <bruno@clisp.org>
34144
34145         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
34146         memory when realloc fails.
34147
34148 2004-04-19  Jim Meyering  <jim@meyering.net>
34149
34150         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
34151         now that readutmp.c may call `free (0)'.
34152
34153 2004-04-19  Bruno Haible  <bruno@clisp.org>
34154
34155         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
34156         * m4/inttypes_h.m4: Likewise.
34157         * m4/stdint_h.m4: Likewise.
34158         * m4/intmax_t.m4: Likewise.
34159         * m4/uintmax_t.m4: Likewise.
34160
34161 2004-04-18  Jim Meyering  <jim@meyering.net>
34162
34163         * m4/prereq.m4: Don't forbid jm_ prefix.
34164
34165         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
34166         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
34167         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
34168         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
34169         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
34170         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
34171         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
34172         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
34173         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
34174         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
34175         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
34176         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
34177         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
34178         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
34179         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
34180         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
34181         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
34182         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
34183         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
34184
34185 2004-04-18  Jim Meyering  <jim@meyering.net>
34186
34187         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
34188         failure, don't leak memory and do call END_UTMP_ENT.
34189
34190 2004-04-16  Jim Meyering  <jim@meyering.net>
34191
34192         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
34193         coreutils' stat program.
34194         (gl_PREREQ): Don't require jm_PREREQ_STAT.
34195
34196 2004-04-11  Paul Eggert  <eggert@twinsun.com>
34197
34198         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
34199         C89.
34200         (CHAR_BIT): Remove, since we assume C89.
34201         Include <stdint.h> if available, as per current Autoconf CVS advice.
34202
34203 2004-03-31  Jim Meyering  <jim@meyering.net>
34204
34205         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
34206         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
34207         * m4/xalloc.m4: Likewise.
34208
34209 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34210
34211         Merge from coreutils.
34212
34213         * m4/inttostr.m4: New file.
34214         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
34215         Require AM_STDBOOL_H and gl_TIMESPEC instead.
34216         Require gl_CLOCK_TIME.
34217         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
34218
34219 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34220
34221         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
34222         not bool, to be more consistent with Unix conventions.
34223         Suggested by Bruno Haible.
34224
34225         Merge from coreutils.
34226
34227         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
34228         * lib/umaxtostr.c: New files.
34229
34230         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
34231         the usual <time.h> dance.
34232         (get_date): Change signature to support fractional time stamps.
34233         All callers changed.
34234         * lib/getdate.y: Include "getdate.h" first, as we can now
34235         assume C89 and don't need to worry about 'const'.
34236         Similarly, include "unlocked-io.h" near start, not in middle.
34237         Include <limits.h>.
34238         (textint.value): Use long int rather than int.
34239         (textint.digits): Use size_t rather than int.
34240         (BILLION, LOG10_BILLION): New constants.
34241         (parser_control): New member rel_ns.  Members day_ordinal,
34242         time_zone, month, day, hour, minutes, rel_year, rel_month,
34243         rel_day, rel_hour, rel_minutes, rel_seconds
34244         are now long int, not int.  Member seconds is now struct timespec,
34245         not int.  New member timespec_seen.  Members dates_seen, days_seen,
34246         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
34247         not int.
34248         (%union.intval): Now long int, not int.
34249         New member timespec.
34250         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
34251         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
34252         (spec): Now is a timespec or an item list.
34253         (timespec, items): New nonterminals.
34254         (time, rel, relunit, number, get_date):
34255         Add support for fractional seconds.
34256         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
34257         (gmtime, localtime, mktime): Remove decls; not needed with C89.
34258         (to_hour): First arg is now long int, not int.
34259         (to_year): Returns long int, not int.
34260         Don't treat year -70 like 70.
34261         (tm_diff): Returns long int, not int.
34262         (lookup_word): Use bool instead of int when appropriate.
34263         (yylex): Use size_t for count, not int.
34264         Detect overflow when parsing large integer constants.
34265         Add support for fractions.
34266         (get_date): Make pointers 'const' if possible.
34267         Use more-portable code to detect integer overflow.
34268         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
34269         Don't use ctime; it's not reliable if the year has >4 digits.
34270
34271         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
34272         This is for compatibility with BSD.
34273
34274         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
34275         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
34276         From coreutils' system.h.
34277
34278         * lib/userspec.c: Don't include "posixver.h".
34279         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
34280         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
34281         compatible extension.  Simplify code by removing a boolean int
34282         that was always nonzero if a string was nonnull.
34283
34284 2004-03-30  Jim Meyering  <jim@meyering.net>
34285
34286         Merge from coreutils.
34287
34288         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
34289         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
34290         on some systems one must include <grp.h> before it.
34291         Reported by Christian Krackowizer.
34292
34293 2004-03-30  Jim Meyering  <jim@meyering.net>
34294
34295         Merge from coreutils.
34296
34297         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
34298
34299         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
34300         an empty input stream.
34301
34302         * lib/readtokens.c: Include <stdbool.h>.
34303         (readtoken): Use `size_t' rather than int/long.
34304         All callers adjusted.
34305         Use `bool' rather than `int' where appropriate.
34306         Use memset rather than an explicit loop.
34307         Use x2nrealloc rather than xrealloc.
34308         Allow the use of `\0' as a delimiter.
34309         (readtokens): Likewise.
34310         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
34311
34312 2004-03-30  Jim Meyering  <jim@meyering.net>
34313
34314         * m4/realloc.m4: Remove file, since now it does no more than
34315         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
34316         the `configure.ac' section of module/realloc.
34317         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
34318
34319 2004-03-30  Bruno Haible  <bruno@clisp.org>
34320
34321         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
34322         nonnull.
34323
34324 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34325
34326         Merge changes to getloadavg.c from coreutils and Emacs.
34327
34328         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
34329         Define to an expression, not to the empty string.
34330         Include cloexec.h and xalloc.h.
34331         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
34332         Use set_cloexec_flag rather than rolling our own.
34333         * lib/cloexec.c, lib/cloexec.h: New files.
34334
34335 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34336
34337         * m4/cloexec.m4: New file.
34338
34339 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34340
34341         * lib/getopt.h: Sync with libc CVS.
34342
34343 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34344             Bruno Haible  <bruno@clisp.org>
34345
34346         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
34347         mbswidth.
34348
34349 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34350             Bruno Haible  <bruno@clisp.org>
34351
34352         * lib/mbswidth.h: Include <wchar.h> only if
34353         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
34354         <wchar.h>.
34355         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
34356
34357 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34358
34359         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
34360         Sync with libc CVS.
34361         * lib/getopt_int.h: New file, also synced from libc.
34362
34363 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34364
34365         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
34366         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
34367         Bring back getopt.c, getopt.h, getopt1.c.
34368
34369 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34370
34371         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
34372         All uses changed.  Check for sa_sigaction member; this fixes
34373         a bug first reported by Jason Andrade in
34374         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34375
34376 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34377
34378         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
34379         '#if' expressions.  Unlike the code it replaces, it does not
34380         depend on (defined _SC_PAGESIZE).  However, it does depend on
34381         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
34382         first reported by Jason Andrade in
34383         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34384
34385 2004-02-25  Simon Josefsson  <jas@extundo.com>
34386
34387         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
34388
34389 2004-02-25  Simon Josefsson  <jas@extundo.com>
34390
34391         * lib/strdup.h: New file.
34392         * lib/strdup.c: Include it.
34393         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
34394         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
34395
34396 2004-02-23  Karl Berry  <karl@gnu.org>
34397
34398         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
34399         (from fencepost.gnu.org:/gd/gnuorg).
34400
34401 2004-02-23  Karl Berry  <karl@gnu.org>
34402
34403         * config/srclistvars.sh (GNUORG) [karl]: redefine.
34404         * config/srclist.txt: add maintain/standards documents.
34405
34406 2004-02-18  Bruno Haible  <bruno@clisp.org>
34407
34408         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
34409         Reported by Derek Robert Price <derek@ximbiot.com>.
34410
34411 2004-02-16  Karl Berry  <karl@gnu.org>
34412
34413         * config/mkinstalldirs, install-sh: update from automake.
34414
34415 2004-02-06  Karl Berry  <karl@gnu.org>
34416
34417         * m4/po.m4: update from gettext 0.14.1.
34418
34419 2004-02-06  Karl Berry  <karl@gnu.org>
34420
34421         * lib/config.charset: update from gettext 0.14.1.
34422
34423 2004-02-05  Paul Eggert  <eggert@twinsun.com>
34424
34425         Add comments and code, prompted by suggestions from Bruno Haible
34426         for sh-quote.
34427         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
34428         describing the enum quoting_style values.
34429         * lib/quotearg.c (quotearg_alloc): New function.
34430         (quotearg_buffer_restyled): Treat lone { and } as special.
34431         Treat = as special.  Work around bug with older shells
34432         that "see" a '\' that is really the 2nd byte of a multibyte char.
34433         Quote empty string with shell_quoting_style.
34434
34435 2004-02-03  Bruno Haible  <bruno@clisp.org>
34436
34437         * m4/pipe.m4: New file, from GNU gettext.
34438
34439 2004-02-03  Bruno Haible  <bruno@clisp.org>
34440
34441         * lib/pipe.h: New file, from GNU gettext.
34442         * lib/pipe.c: New file, from GNU gettext.
34443
34444 2004-01-27  Bruno Haible  <bruno@clisp.org>
34445
34446         * m4/execute.m4: New file, from GNU gettext.
34447
34448 2004-01-27  Bruno Haible  <bruno@clisp.org>
34449
34450         * lib/execute.h: New file, from GNU gettext.
34451         * lib/execute.c: New file, from GNU gettext.
34452         * lib/w32spawn.h: New file, from GNU gettext.
34453
34454 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34455
34456         Merge from diffutils.
34457
34458         * lib/file-type.c (file_type): Add typed memory objects.
34459         * lib/file-type.h (S_TYPEISTMO): New macro.
34460
34461         * lib/c-stack.h (c_stack_action): Remove argv argument.
34462         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
34463         (die): Don't calculate message unless segv_action returns.
34464         (get_stack_location, min_address_from_argv, max_address_from_argv,
34465         volatile stack_base, volatile_stack_size): Remove.
34466         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
34467         that every segmentation violation is a stack overflow.  (Ouch!)
34468         See Debian bug 136249 (still outstanding) for more info about why
34469         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
34470
34471 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34472
34473         Exit-status fix from coreutils.
34474
34475         Use exit_failure consistently in place of EXIT_FAILURE,
34476         so that program exit statuses are consistent on failure.
34477
34478         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
34479         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
34480         * lib/argmatch.h: Comment fix to match the above.
34481         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
34482         Now a macro referring to exit_failure, instead of a separate
34483         variable.  Include "exitfail.h" to get it.
34484         * lib/xstrtol.h: Include "exitfail.h".
34485         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
34486
34487         * lib/long-options.c (parse_long_options): Use prototype
34488         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
34489         for clarity.
34490
34491 2004-01-21  Jim Meyering  <jim@meyering.net>
34492
34493         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
34494         so as not to conflict with a different-sized __mktime_internal
34495         function in GNU libc.
34496         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
34497         Problem building statically-linked `ls' reported by Michael Brunnbauer.
34498
34499 2004-01-20  Karl Berry  <karl@gnu.org>
34500
34501         * config/config.guess: update from config.
34502
34503         * config/srclistvars.sh: GNUWWWLICENSES for karl.
34504
34505 2004-01-20  Bruno Haible  <bruno@clisp.org>
34506
34507         Safer stack allocation.
34508         * lib/setenv.c: Include allocsa.h.
34509         (alloca): Remove fallback definition.
34510         (freea): Remove macro.
34511         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
34512         instead of freea.
34513
34514 2004-01-20  Bruno Haible  <bruno@clisp.org>
34515
34516         * m4/eealloc.m4: New file, from GNU gettext.
34517
34518 2004-01-20  Bruno Haible  <bruno@clisp.org>
34519
34520         * m4/allocsa.m4: New file, from GNU gettext.
34521
34522 2004-01-20  Bruno Haible  <bruno@clisp.org>
34523
34524         * lib/xallocsa.h: New file, from GNU gettext.
34525         * lib/xallocsa.c: New file, from GNU gettext.
34526
34527 2004-01-20  Bruno Haible  <bruno@clisp.org>
34528
34529         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
34530
34531 2004-01-20  Bruno Haible  <bruno@clisp.org>
34532
34533         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
34534         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
34535         specially.
34536
34537 2004-01-20  Bruno Haible  <bruno@clisp.org>
34538
34539         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
34540         patch.
34541
34542 2004-01-20  Bruno Haible  <bruno@clisp.org>
34543
34544         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
34545
34546 2004-01-20  Bruno Haible  <bruno@clisp.org>
34547
34548         * lib/eealloc.h: New file.
34549
34550 2004-01-20  Bruno Haible  <bruno@clisp.org>
34551
34552         * lib/binary-io.h: Avoid warnings on Cygwin.
34553
34554 2004-01-20  Bruno Haible  <bruno@clisp.org>
34555
34556         * lib/allocsa.h: New file, from GNU gettext.
34557         * lib/allocsa.c: New file, from GNU gettext.
34558
34559 2004-01-18  Karl Berry  <karl@gnu.org>
34560
34561         * doc/gpl.texi, doc/lgpl.texi: new files.
34562
34563 2004-01-18  Karl Berry  <karl@gnu.org>
34564
34565         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
34566         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
34567
34568 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34569
34570         Merge from coreutils.
34571
34572         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
34573         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
34574         (gl_DEFAULT_POSIX2_VERSION): Move
34575         the documentation from 'configure' into 'config.hin',
34576         so that 'configure --help' isn't burdened by it and
34577         we don't have to worry about its formatting there.
34578         Reword the documentation so that it's more succinct
34579         and can be run together into a single paragraph.
34580         * m4/same.m4 (gl_SAME): Check for pathconf.
34581
34582 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34583
34584         Merge from coreutils.
34585
34586         * lib/posixver.c: Include posixver.h.
34587
34588         * lib/same.c: Include <stdbool.h>, <limits.h>.
34589         (_POSIX_NAME_MAX): Define if not defined.
34590         (MIN): New macro.
34591         (same_name): If file names are silently truncated, report
34592         that the file names are the same if they are the same after
34593         the silent truncation.
34594
34595         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
34596         conversion function.
34597         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
34598         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
34599         longer needed.
34600
34601 2004-01-15  Jim Meyering  <jim@meyering.net>
34602
34603         Merge from coreutils.
34604
34605         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
34606         if no library is required.
34607         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
34608         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
34609         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
34610         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
34611         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
34612         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
34613         value, $ac_cv_search_crypt, if it's "none required".
34614         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
34615         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
34616         not gl_FUNC_GETLOADAVG.
34617         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
34618         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
34619
34620 2004-01-15  Jim Meyering  <jim@meyering.net>
34621
34622         Merge from coreutils.
34623
34624         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
34625         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
34626         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
34627
34628         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
34629         optional configure-time default.
34630
34631         * lib/version-etc.c (version_etc_copyright): Update copyright date.
34632
34633         * lib/xreadlink.c (xreadlink): Correct outdated comment.
34634
34635 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
34636
34637         Merge from coreutils.
34638
34639         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
34640         value, $ac_cv_search_nanosleep, if it's "none required".
34641
34642 2004-01-14  Paul Eggert  <eggert@twinsun.com>
34643
34644         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
34645         with like-named macro in fnmatch.c.
34646         (EXT): Use an internal constant instead.
34647
34648         Merge fnmatch patches from glibc.
34649         * lib/fnmatch.c (mbsinit): Remove define.
34650         Add libc_hidden_ver (__fnmatch, fnmatch).
34651         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
34652         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
34653
34654 2004-01-14  Karl Berry  <karl@gnu.org>
34655
34656         * config/install-sh: update from automake.
34657
34658 2004-01-13  Karl Berry  <karl@gnu.org>
34659
34660         * config/install-sh: update from automake.
34661
34662 2004-01-09  Karl Berry  <karl@gnu.org>
34663
34664         * config/install-sh: update from automake.
34665
34666 2004-01-05  Karl Berry  <karl@gnu.org>
34667
34668         * config/config.{sub,guess}: update from config.
34669
34670 2003-12-31  Karl Berry  <karl@gnu.org>
34671
34672         * config/depcomp: update from automake.
34673
34674 2003-12-14  Karl Berry  <karl@gnu.org>
34675
34676         * lib/config.charset: update from gettext-runtime.
34677
34678 2003-12-03  Paul Eggert  <eggert@twinsun.com>
34679
34680         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
34681         Bug reported by Alfred M. Szmidt.
34682
34683 2003-12-03  Bruno Haible  <bruno@clisp.org>
34684
34685         * m4/gettext.m4: Upgrade from gettext-0.13.
34686         * m4/po.m4: Upgrade from gettext-0.13.
34687         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
34688         * m4/intmax.m4: New file, from gettext-0.13.
34689         * m4/printf-posix.m4: New file, from gettext-0.13.
34690
34691 2003-11-29  Karl Berry  <karl@gnu.org>
34692
34693         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
34694
34695 2003-11-25  Paul Eggert  <eggert@twinsun.com>
34696             Bruno Haible  <bruno@clisp.org>
34697
34698         * lib/printf-parse.h: Don't include sys/types.h.
34699         (ARG_NONE): New macro.
34700         (char_directive): Change type of *arg_index fields to size_t.
34701         * lib/printf-parse.c: Don't include sys/types.h.
34702         (SSIZE_MAX): Remove macro.
34703         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
34704         Remove unnecessary overflow check.
34705         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
34706         fields.
34707
34708 2003-11-25  Bruno Haible  <bruno@clisp.org>
34709
34710         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
34711
34712 2003-11-25  Bruno Haible  <bruno@clisp.org>
34713
34714         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
34715         gt_TYPE_SSIZE_T.
34716
34717 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34718
34719         * modules/alloca: Remove dependency on xalloc.
34720
34721 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34722
34723         * lib/alloca.c: Remove dependency on xalloc module.
34724         (xalloc_die): Remove.
34725         (memory_full) [!defined emacs]: New macro.
34726         [!defined emacs]: Don't include xalloc.h.
34727         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
34728         address arithmetic overflows.  Change datatypes a bit to avoid
34729         unnecessary casts.
34730
34731 2003-11-22  Jim Meyering  <jim@meyering.net>
34732
34733         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
34734         s/size/size_t/.
34735
34736 2003-11-21  Karl Berry  <karl@gnu.org>
34737
34738         * config/config.{sub,guess}: update from config.
34739
34740 2003-11-18  Karl Berry  <karl@gnu.org>
34741
34742         * config/config.{sub,guess}: update from config.
34743
34744         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
34745
34746 2003-11-17  Paul Eggert  <eggert@twinsun.com>
34747
34748         * README: Mention that S+T cannot overflow if S is the size of
34749         an existing object and T is sufficiently small.
34750
34751 2003-11-17  Jim Meyering  <jim@meyering.net>
34752
34753         On systems without utime and without a utimes function capable of
34754         dealing with a NULL struct utimbuf* argument, this utime replacement
34755         could -- in unusual circumstances -- leak a file descriptor.
34756         * lib/utime.c: Include <unistd.h> and <errno.h>.
34757         (utime_null): Be sure to close `fd' and to preserve errno.
34758         Reported by Geoff Collyer via Arnold Robbins.
34759
34760 2003-11-17  Bruno Haible  <bruno@clisp.org>
34761
34762         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
34763         (Depends-on): Add xsize.
34764
34765 2003-11-17  Bruno Haible  <bruno@clisp.org>
34766
34767         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
34768
34769 2003-11-17  Bruno Haible  <bruno@clisp.org>
34770
34771         * lib/vasnprintf.c (alloca): Remove fallback definition.
34772         (freea): Remove definition.
34773         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
34774         Reported by Paul Eggert.
34775
34776 2003-11-16  Paul Eggert  <eggert@twinsun.com>
34777             Bruno Haible  <bruno@clisp.org>
34778
34779         Protect against address arithmetic overflow.
34780         * lib/printf-args.h: Include stddef.h.
34781         (arguments): Change type of field 'count' to size_t.
34782         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
34783         'unsigned int' where appropriate.
34784         * lib/printf-parse.h: Include sys/types.h.
34785         (char_directive): Change type of *arg_index fields to ssize_t.
34786         (char_directives): Change type of fields 'count', max_*_length to
34787         size_t.
34788         * lib/printf-parse.c: Include sys/types.h and xsize.h.
34789         (SSIZE_MAX): Define fallback value.
34790         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
34791         instead of 'int' where appropriate. Check a_allocated, d_allocated
34792         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
34793         * lib/vasnprintf.c: Include xsize.h.
34794         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
34795         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
34796         overflow. Avoid wraparound when converting a width or precision from
34797         decimal to binary.
34798
34799 2003-11-16  Bruno Haible  <bruno@clisp.org>
34800
34801         Update from GNU gettext.
34802         * lib/printf-parse.c: Generalize to it can be compiled for wide
34803         strings.
34804         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
34805         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
34806         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
34807         SNPRINTF): New macros.
34808         Don't include <alloca.h> if the file is used inside libintl.
34809         (local_wcslen): New function, for Solaris 2.5.1.
34810         (VASNPRINTF): Use it instead of wcslen.
34811
34812 2003-11-16  Bruno Haible  <bruno@clisp.org>
34813
34814         * lib/xsize.h (xmax): New function.
34815         (xsum, xsum3, xsum4): Declare as "pure" functions.
34816
34817 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34818
34819         * modules/xalloc (Files): Undo latest change, since xalloc.h
34820         no longer needs SIZE_MAX or PTRDIFF_MAX.
34821
34822 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34823
34824         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
34825         gl_PTRDIFF_MAX.
34826
34827 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34828
34829         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
34830         "return", to pacify some unknown compiler.  Problem reported
34831         by Joerg Schilling.
34832
34833 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34834
34835         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
34836         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
34837         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
34838         heuristic is just as accurate as far as we know, and it removes a
34839         dependency on size_max.m4 and ptrdiff_max.m4.
34840
34841 2003-11-11  Bruno Haible  <bruno@clisp.org>
34842
34843         * modules/xsize (Files): Add m4/size_max.m4.
34844         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
34845
34846 2003-11-11  Bruno Haible  <bruno@clisp.org>
34847
34848         * m4/size_max.m4: New file.
34849         * m4/ptrdiff_max.m4: New file.
34850         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
34851         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
34852         (gl_XALLOC): Invoke it.
34853
34854 2003-11-11  Bruno Haible  <bruno@clisp.org>
34855
34856         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
34857         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
34858         defined.
34859
34860 2003-11-10  Paul Eggert  <eggert@twinsun.com>
34861
34862         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
34863         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
34864         rejected some allocations of exactly SIZE_MAX - 2 bytes.
34865         From Bruno Haible.
34866         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
34867         not (size_t) -1, since it's defined here.
34868
34869 2003-11-09  Karl Berry  <karl@gnu.org>
34870
34871         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
34872
34873 2003-11-06  Paul Eggert  <eggert@twinsun.com>
34874
34875         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
34876         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
34877         Reject sizes of exactly SIZE_MAX bytes.
34878         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
34879         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
34880
34881 2003-11-05  Bruno Haible  <bruno@clisp.org>
34882
34883         * lib/xsize.h: Include limits.h, to avoid a possible collision with
34884         SIZE_MAX defined in <limits.h> on Solaris.
34885
34886 2003-11-04  Jim Meyering  <jim@meyering.net>
34887
34888         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
34889         variable names, rather than @VAR@.
34890         * modules/poll: Likewise.
34891
34892 2003-11-04  Bruno Haible  <bruno@clisp.org>
34893
34894         * modules/xsize: New file.
34895         * modules/linebreak: Depend on xsize.
34896         * MODULES.html.sh (func_all_modules): Add xsize.
34897
34898 2003-11-04  Bruno Haible  <bruno@clisp.org>
34899
34900         * m4/xsize.m4: New file.
34901
34902 2003-11-04  Bruno Haible  <bruno@clisp.org>
34903
34904         * lib/xsize.h: New file.
34905         * lib/linebreak.c: Include xsize.h.
34906         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
34907         argument for overflow.
34908         Suggested by Paul Eggert.
34909
34910 2003-11-03  Karl Berry  <karl@gnu.org>
34911
34912         * config/config.{guess,sub}: update from config.
34913
34914 2003-11-03  Jim Meyering  <jim@meyering.net>
34915
34916         * modules/userspec (lib_SOURCES): Add userspec.h.
34917         (Include): Add "userspec.h".
34918         Improve description.
34919
34920 2003-11-03  Jim Meyering  <jim@meyering.net>
34921
34922         * lib/userspec.c: Include "userspec.h".
34923         * lib/userspec.h: New file.
34924
34925 2003-11-03  Bruno Haible  <bruno@clisp.org>
34926
34927         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
34928
34929 2003-11-03  Bruno Haible  <bruno@clisp.org>
34930
34931         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
34932         available, to avoid (extremely rare) race condition.
34933         Suggested by Paul Eggert.
34934
34935 2003-11-02  Karl Berry  <karl@gnu.org>
34936
34937         * config/srclist.txt (vasprintf.c): sync broken, sigh.
34938
34939 2003-10-31  Paul Eggert  <eggert@twinsun.com>
34940
34941         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
34942         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
34943         (read_filesystem_list): Set and use me_type_malloced.
34944         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
34945         whatever the type happens to be), for brevity and consistency.
34946         Check for size calculation overflow on Alphas running OSF/1.
34947
34948 2003-10-31  Jim Meyering  <jim@meyering.net>
34949
34950         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
34951
34952         * lib/linebuffer.c: Include <string.h> for declaration of memset.
34953
34954 2003-10-30  Paul Eggert  <eggert@twinsun.com>
34955             Bruno Haible  <bruno@clisp.org>
34956
34957         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
34958         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
34959
34960 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
34961
34962         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
34963         netbsd*-gnu*.  Suggested by Robert Millan.
34964
34965 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34966
34967         * modules/group-member: Depend on stdbool.
34968
34969 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34970
34971         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
34972
34973 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34974
34975         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
34976         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
34977         after the 'gnu' in these cases.  This fixes some bugs in the
34978         previous change, and is based on suggestions by Robert Millan.
34979
34980 2003-10-29  Paul Eggert  <eggert@twinsun.com>
34981
34982         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
34983         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
34984         no longer needed.
34985         * lib/quotearg.c (quotearg_n_options): Use it.
34986         * lib/group-member.c: Include <stdbool.h>.
34987         (free_group_info): Arg is now const *; don't free arg.
34988         (get_group_info): Now returns bool and accepts struct group_info *,
34989         rather than returning a malloc'ed struct group_info *.
34990         All uses changed.  Check for overflow in internal size calculation.
34991
34992         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
34993         rather than xmalloc/xrealloc.
34994         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
34995         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
34996         conformance bug: the old code used a pointer after freeing the
34997         storage that it addressed.
34998         * lib/hash.c (hash_initialize): Simplify the code by using
34999         xalloc_oversized rather than doing it by hand.
35000         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
35001         the buffer preserved.  Use free and xmalloc instead.
35002         * lib/quotearg.c (quotearg_n_options): Likewise.
35003         Use a simpler test for size overflow.  Don't use xalloc_oversized
35004         because unsigned int might be wider than size_t (!); this suggests
35005         that we should switch from unsigned int to size_t for slot numbers.
35006
35007 2003-10-28  Paul Eggert  <eggert@twinsun.com>
35008
35009         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
35010         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
35011         NetBSD kernels.  Requested by Richard Stallman.
35012
35013 2003-10-27  Paul Eggert  <eggert@twinsun.com>
35014
35015         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
35016         to allocate the returned structure.  Do not allocate a subarray,
35017         as x2nrealloc will do that.
35018         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
35019         instead of xnrealloc.
35020         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
35021
35022 2003-10-27  Bruno Haible  <bruno@clisp.org>
35023
35024         * lib/stdbool_.h: Better support for BeOS.
35025
35026 2003-10-26  Paul Eggert  <eggert@twinsun.com>
35027
35028         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
35029         now uses inline.
35030
35031 2003-10-26  Paul Eggert  <eggert@twinsun.com>
35032
35033         * lib/xalloc.h (xalloc_oversized): New static inline function, for
35034         callers that want to do their own size-overflow checking.  Include
35035         <stdbool.h>, since xalloc_oversized returns bool.
35036         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
35037         to use xalloc_oversized.
35038
35039         Add two functions x2realloc, x2nrealloc, for programs that grow
35040         arrays dynamically by doubling their sizes.
35041         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
35042         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
35043         New functions.
35044
35045         Port to C99 semantics for 'inline' of external functions.
35046         Bug reported by Bruno Haible.
35047         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
35048         with the old contents of xnmalloc.
35049         (xnmalloc, xmalloc): Use it.
35050         (xnrealloc_inline): New static inline function,
35051         with the old contents of xnrealloc.
35052         (xnrealloc, xrealloc): Use it.
35053
35054         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
35055         that.
35056
35057 2003-10-26  Karl Berry  <karl@gnu.org>
35058
35059         * config/srclist.txt (COPYING.DOC): no longer available from
35060         /gd/gnuorg; don't know where the ultimate source is.
35061
35062 2003-10-25  Paul Eggert  <eggert@twinsun.com>
35063
35064         Fix several address-calculation bugs in the hash modules,
35065         plus some minor code cleanup.
35066
35067         * lib/hash.h: Include <stdbool.h>, for bool.
35068         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
35069         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
35070         hash_get_n_entries, hash_get_max_bucket_length,
35071         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
35072         hash_rehash): Use size_t rather than unsigned.
35073         * lib/hash.c (struct hash_table, hash_get_n_buckets,
35074         hash_get_n_buckets_used, hash_get_n_entries,
35075         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
35076         hash_get_entries, hash_do_for_each, hash_string, is_prime,
35077         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
35078         Likewise.
35079         (SIZE_MAX): Define if not defined.
35080         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
35081         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
35082         hash_print):
35083         Use const * when possible.
35084         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
35085         (check_tuning): Fix bug: if tuning parameters were very close to
35086         0 or 1, rounding errors could have caused subscript violations.
35087         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
35088         (hash_initialize): Add 'fail:' label
35089         to free table and return NULL, and use it to simplify code.
35090         Use calloc rather than clearing the storage ourself.
35091         (hash_initialize, hash_rehash): Check for arithmetic overflow in
35092         buffer size calculations.
35093         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
35094         Include <stddef.h>, for size_t.
35095         * lib/hash-pjw.c (hash_pjw): Likewise.
35096         Switch to method described by Bruno Haible.
35097         Include <limits.h>, for CHAR_BIT.
35098         (SIZE_BITS): New macro.
35099
35100 2003-10-23  Paul Eggert  <eggert@twinsun.com>
35101
35102         * m4/getline.m4 (AM_FUNC_GETLINE):
35103         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
35104         hosts.  Problem reported by Derek Robert Price in
35105         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
35106         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
35107         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
35108
35109 2003-10-21  Paul Eggert  <eggert@twinsun.com>
35110
35111         * lib/getndelim2.c (getndelim2): When size calculation overflows,
35112         ceiling the allocation at NMAX bytes rather than silently
35113         discarding input bytes before NMAX is reached.  This makes
35114         a difference only if NMAX exceeds SIZE_MAX / 2.
35115
35116         * lib/obstack.c: Merge from glibc.
35117         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
35118         Add libc_hidden_def (_obstack_newchunk).
35119         (_obstack_free) [! defined _LIBC]: Remove.
35120         [defined _LIBC]: Make a strong alias from obstack_free, rather than
35121         a clone of the function body.
35122         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
35123         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
35124
35125         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
35126         glibc.
35127         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
35128         arg to memcpy.
35129
35130         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
35131         (obstack_ptr_grow_fast, obstack_int_grow_fast):
35132         Don't use lvalue casts, as GCC plans to remove support for them
35133         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
35134         was also present in the non-GCC version, indicating that this
35135         code had always been buggy and had never been widely used.
35136         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
35137         Use the fast variant of each macro, rather than copying the
35138         definiens of the fast variant; that way, we'll be more likely to
35139         catch future bugs in the fast variants.
35140
35141 2003-10-20  Bruno Haible  <bruno@clisp.org>
35142
35143         * modules/wait-process: New file.
35144         * MODULES.html.sh (func_all_modules): Add wait-process.
35145
35146 2003-10-20  Bruno Haible  <bruno@clisp.org>
35147
35148         * m4/wait-process.m4: New file.
35149
35150 2003-10-20  Bruno Haible  <bruno@clisp.org>
35151
35152         * lib/wait-process.h: New file, from GNU gettext.
35153         * lib/wait-process.c: New file, from GNU gettext.
35154
35155 2003-10-19  Jim Meyering  <jim@meyering.net>
35156
35157         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
35158         HPUX 10.20.
35159
35160 2003-10-18  Karl Berry  <karl@gnu.org>
35161
35162         * config/config.guess: update from config.
35163
35164 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35165
35166         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
35167         (getgroups): First arg is int, not size_t.
35168         Don't let 'free' mangle errno.
35169
35170 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35171
35172         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
35173
35174 2003-10-16  Karl Berry  <karl@gnu.org>
35175
35176         * config/config.{guess,sub}: update from config.
35177
35178 2003-10-16  Jim Meyering  <jim@meyering.net>
35179
35180         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
35181         memcpy.
35182
35183 2003-10-15  Paul Eggert  <eggert@twinsun.com>
35184
35185         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
35186         (SIZE_MAX): Remove.
35187         (new_exclude, add_exclude_file): Initial size no longer needs to
35188         be a power of 2.
35189         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
35190         our own address arithmetic overflow checking.
35191
35192         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
35193         (fnmatch): Do not alloca more than 2000 wide characters;
35194         instead, use malloc for large buffers.
35195         Check for address arithmetic overflow, and return -1
35196         with errno set to ENOMEM in that case.
35197         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
35198         (NEW_PATTERN): Do not alloca more than 8000 bytes;
35199         instead, return -1.  Check for address arithmetic overflow.
35200
35201 2003-10-14  Paul Eggert  <eggert@twinsun.com>
35202
35203         Handle invalid suffixes and overflow independently, so that
35204         callers can treat them independently as needed.  Fix some bugs in
35205         suffix handling, e.g., "100k@" was not diagnosed as an invalid
35206         suffix for a human-readable blocksize.  The major caller-visible
35207         change is the addition of a new
35208         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
35209         that both overflow and suffix chars were found.
35210
35211         * lib/human.c (humblock): Don't check separately for invalid suffix
35212         char; that is xstrtoumax's job (now that its bug is fixed).
35213         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
35214         INTMAX_MAX]: New macros.
35215         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
35216         TYPE_MAXIMUM): New macros.
35217         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
35218         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
35219         if overflow occurs, as it's what __strtol does and it's more useful
35220         in practice.
35221         (__xstrtol): If __strtol reports some error other than ERANGE,
35222         reflect it to the caller as LONGINT_INVALID.  If it reports
35223         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
35224         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
35225         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
35226         value.
35227         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
35228         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
35229         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
35230         [defined UINTMAX_MAX]: New macros.
35231
35232 2003-10-14  Bruno Haible  <bruno@clisp.org>
35233
35234         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
35235
35236 2003-10-14  Bruno Haible  <bruno@clisp.org>
35237
35238         * m4/sig_atomic_t: New file, from GNU gettext.
35239         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
35240
35241 2003-10-14  Bruno Haible  <bruno@clisp.org>
35242
35243         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
35244         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
35245         Also use volatile where needed.
35246
35247 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35248
35249         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
35250         Change maintainer from Bruno Haible to 'all'.
35251
35252 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35253
35254         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
35255
35256 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35257
35258         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
35259         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
35260         and define in terms of the other primitives.
35261         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
35262         (SIZE_MAX): Define if not already defined.
35263         (array_size_overflow): New function.
35264         (xalloc_die): Abort instead of exiting if 'error' returns.
35265         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
35266         (xmalloc, xrealloc): Use them.
35267         (xcalloc): Check for address arithmetic overflow.
35268         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
35269         a bit faster than strcpy.
35270
35271 2003-10-10  Simon Josefsson  <jas@extundo.com>
35272
35273         * modules/argp (Depends-on): Add restrict and strcase.
35274
35275 2003-10-10  Simon Josefsson  <jas@extundo.com>
35276
35277         * m4/argp.m4: Add AC_C_INLINE.
35278
35279 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35280
35281         Merge getpass from libc, plus a few fixes.
35282
35283         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
35284         Include <stdbool.h>.
35285         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
35286         __fsetlocking to empty.
35287         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
35288         do include <bits/libc-lock.h>.
35289         Do not include <fcntl.h>; not needed.
35290         [_LIBC]: Include <wchar.h>.
35291         (NOTCANCEL_MODE): New macro.
35292         (flockfile, funlockfile) [_LIBC]: New macros.
35293         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
35294         [!_LIBC]: New macros.
35295         (call_fclose): New function.
35296         (getpass): Use it.  Save tty stream separately; this simplifies the
35297         code and makes it more reliable if stdin happens to equal stdout.
35298         Invoke __fsetlocking on tty.
35299         Handle thread cancellation if needed.
35300         Namespace cleanup (use __tcgetattr, __getline).
35301         Use bool for Booleans.
35302         [USE_IN_LIBIO]: Handle wide streams.
35303         [!_LIBC]: Unconditionally do the fseek, since we don't know what
35304         stream might go where.
35305
35306         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
35307         doesn't have to include <stdio.h> before us.
35308         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
35309         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
35310         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
35311         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
35312         if not declared, so that we can use getpass.c code from libc without
35313         rewriting it.
35314         (flockfile, ftrylockfile, funlockfile): New macros.
35315
35316 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35317
35318         * modules/getpass: Depend on stdbool.
35319
35320 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35321
35322         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
35323
35324 2003-10-07  Karl Berry  <karl@gnu.org>
35325
35326         * config/config.{guess,sub}: update from config.
35327
35328 2003-10-06  Jim Meyering  <jim@meyering.net>
35329             Bruno Haible  <bruno@clisp.org>
35330
35331         This lets translators provide better translations for the
35332         "Written by ..." part of --version output.
35333         * lib/version-etc.h: Include stdarg.h.
35334         (version_etc_copyright): Declare as readonly.
35335         (version_etc): Make this function variadic with a NULL-terminated list
35336         of author name strings.
35337         (version_etc_va): New declaration.
35338         * lib/version-etc.c: Include stdarg.h, stdlib.h.
35339         (version_etc_copyright): Declare as readonly.
35340         (version_etc_va): New function. Provide a different translatable string
35341         for each possible number of authors < 10. Abbreviate when there are 10
35342         authors or more.
35343         (version_etc): Make this function variadic. Call version_etc_va.
35344         Suggestion from Gary V. Vaughan.
35345
35346         * lib/long-options.h (parse_long_options): Change prototype: the
35347         authors string is moved to the end and becomes variadic.
35348         * lib/long-options.c: Include stdarg.h.
35349         (parse_long_options): Make this function variadic, too.
35350         Call version_etc_va, not version_etc.
35351
35352 2003-10-06  Bruno Haible  <bruno@clisp.org>
35353
35354         * modules/version-etc-2: Remove file.
35355         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
35356
35357 2003-10-06  Bruno Haible  <bruno@clisp.org>
35358
35359         * modules/fatal-signal: New file.
35360         * MODULES.html.sh (func_all_modules): Add fatal-signal.
35361
35362 2003-10-06  Bruno Haible  <bruno@clisp.org>
35363
35364         * m4/fatal-signal.m4: New file.
35365         * m4/signalblocking.m4: New file, from GNU gettext.
35366
35367 2003-10-06  Bruno Haible  <bruno@clisp.org>
35368
35369         * lib/version-etc-2.h: Remove file.
35370         * lib/version-etc-2.c: Remove file.
35371
35372 2003-10-06  Bruno Haible  <bruno@clisp.org>
35373
35374         * lib/fatal-signal.h: New file, from GNU gettext.
35375         * lib/fatal-signal.c: New file, from GNU gettext.
35376
35377 2003-10-05  Paul Eggert  <eggert@twinsun.com>
35378
35379         * README: Rework advice for preventing empty .o files.
35380         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
35381         not <sys/types.h>.
35382
35383 2003-10-04  Karl Berry  <karl@gnu.org>
35384
35385         * lib/argp*: update from libc.
35386
35387 2003-10-04  Karl Berry  <karl@gnu.org>
35388
35389         * config/config.{guess,sub}: update from config.
35390
35391 2003-10-02  Bruno Haible  <bruno@clisp.org>
35392
35393         * modules/lchown (Include): Add lchown.h.
35394         * modules/time_r (Include): Use "..." syntax.
35395         * modules/xgetdomainname (Include): Add xgetdomainname.h.
35396
35397 2003-10-01  Simon Josefsson  <jas@extundo.com>
35398
35399         * MODULES.html.sh (func_all_modules): Move gethostname from section
35400         'based on' to section 'lacking' POSIX:2001.
35401
35402 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
35403
35404         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
35405         to output mode on the same stream.
35406
35407 2003-09-29  Paul Eggert  <eggert@twinsun.com>
35408
35409         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
35410         Fix arg typo in previous patch.
35411
35412 2003-09-28  Jim Meyering  <jim@meyering.net>
35413
35414         * lib/error.c: Correct cpp indentation.
35415
35416 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35417
35418         * modules/free: New file.
35419
35420 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35421
35422         * m4/free.m4: New file.
35423
35424 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35425
35426         * lib/minmax.h (MIN, MAX)
35427         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
35428         Omit the special code that used __typeof__, since we worry that
35429         it could be more trouble than it's worth.  See:
35430         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
35431         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
35432
35433         * lib/free.c: New file.
35434
35435 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
35436
35437         Trivial fixes to Makefile.am parts of module listings.
35438         * modules/strstr: Append strstr.h to lib_SOURCES.
35439         * modules/strcase: Likewise, for strcase.h.
35440
35441 2003-09-27  Karl Berry  <karl@gnu.org>
35442
35443         * config/mkinstalldirs: update from automake.
35444
35445 2003-09-26  Paul Eggert  <eggert@twinsun.com>
35446
35447         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
35448         (error_tail): Do not loop, reallocating temporary buffer, since
35449         the output cannot contain more wide characters than the input
35450         contains bytes, the size must be big enough already.  This avoids
35451         one potential size overflow calculation.  Check for size overflow
35452         when calculating temporary buffer size.  Free temporary buffer
35453         when done, if it was allocated with malloc; this plugs a memory
35454         leak.  Remove casts from void * to pointers, that are no longer
35455         needed now that we're assuming C89 or better.
35456
35457         Merge error changes from glibc.
35458
35459         * lib/error.c, error.h: Update copyright notice header to match glibc.
35460         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
35461         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
35462         Disable cancellation while printing error.
35463         * lib/error.h: Prepend __ to parameter names.
35464
35465 2003-09-26  Jim Meyering  <jim@meyering.net>
35466
35467         * lib/error.c (error_tail): Move some declarations
35468         into inner scope where the local variables are used.
35469
35470 2003-09-26  Bruno Haible  <bruno@clisp.org>
35471
35472         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
35473         stpncpy().
35474         Don't define stpncpy through config.h; it's now done through stpncpy.h.
35475
35476 2003-09-26  Bruno Haible  <bruno@clisp.org>
35477
35478         * lib/stpncpy.h (gnu_stpncpy): New declaration.
35479         (stpncpy): Define as alias for gnu_stpncpy.
35480         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
35481
35482 2003-09-25  Simon Josefsson  <jas@extundo.com>
35483
35484         * lib/xgetdomainname.h: New file.
35485         * lib/xgetdomainname.c: New file.
35486
35487 2003-09-25  Simon Josefsson  <jas@extundo.com>
35488             Bruno Haible  <bruno@clisp.org>
35489
35490         * modules/getdomainname: New file.
35491         * modules/xgetdomainname: New file.
35492         * MODULES.html.sh (func_all_modules): Add getdomainname,
35493         xgetdomainname.
35494
35495 2003-09-25  Simon Josefsson  <jas@extundo.com>
35496             Bruno Haible  <bruno@clisp.org>
35497
35498         * m4/getdomainname.m4: New file.
35499
35500 2003-09-25  Simon Josefsson  <jas@extundo.com>
35501             Bruno Haible  <bruno@clisp.org>
35502
35503         * lib/getdomainname.h: New file.
35504         * lib/getdomainname.c: New file.
35505
35506 2003-09-25  Karl Berry  <karl@gnu.org>
35507
35508         * lib/argp-fmtstream.c, argp-help.c: update from libc.
35509
35510 2003-09-25  Karl Berry  <karl@gnu.org>
35511
35512         * config/install-sh: update from automake.
35513
35514 2003-09-25  Bruno Haible  <bruno@clisp.org>
35515
35516         * modules/version-etc-2: New file, from modules/version-etc with
35517         modifications.
35518         * MODULES.html.sh (func_all_modules): Add version-etc-2.
35519
35520 2003-09-25  Bruno Haible  <bruno@clisp.org>
35521
35522         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
35523         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
35524
35525 2003-09-24  Simon Josefsson  <jas@extundo.com>
35526
35527         * modules/xgethostname: Add xgethostname.h.
35528
35529 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35530
35531         * lib/linebuffer.c (freebuffer): Don't free the argument, just
35532         the buffer associated with the argument.  Bug reported by
35533         Simon Josefsson.
35534
35535 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35536
35537         * README: Document assumptions that 'int' is at least 32 bits
35538         wide, that integer arithmetic is 2's complement without overflow,
35539         that there are no holes in integer values, that adding sizes of
35540         two nonoverlapping objects can't overflow, and that all-bits-zero
35541         yields scalar zero.  Fix spelling and capitalization typos.
35542
35543 2003-09-19  Karl Berry  <karl@gnu.org>
35544
35545         * lib/argp.h: update from libc.
35546
35547 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35548
35549         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
35550         to avoid spurious warnings like "AC_RUN_IFELSE was called before
35551         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
35552
35553 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35554
35555         * gnulib-tool: Use "test -h", not "test -L", for portability
35556         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
35557         (tags_regexp): Remove, since \| doesn't conform to POSIX.
35558         (sed_extract_prog): Issue s commands one-by-one, rather than
35559         using \| in one s command.
35560
35561 2003-09-16  Paul Eggert  <eggert@twinsun.com>
35562
35563         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
35564         input error, instead of returning NULL the next time we are called
35565         (and therefore losing track of errno).
35566
35567 2003-09-16  Bruno Haible  <bruno@clisp.org>
35568
35569         * gnulib-tool (func_create_testdir): Warn about duplicated
35570         dependencies.
35571
35572 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35573
35574         * modules/argmatch, modules/fatal, modules/obstack,
35575         modules/xalloc, modules/xgethostname: Sort dependencies by
35576         importance, not alphabetically.
35577
35578 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35579
35580         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
35581         fails, so that the caller gets the proper errno.
35582
35583         * lib/readutmp.c (read_utmp): Likewise.
35584         Check for fstat error.  Close stream and free storage
35585         when failing.
35586
35587 2003-09-14  Karl Berry  <karl@gnu.org>
35588
35589         * config/srclist.txt (strdup.c): disable for c89 changes.
35590
35591 2003-09-14  Jim Meyering  <jim@meyering.net>
35592
35593         * lib/getloadavg.c: Correct cpp indentation.
35594         * lib/strdup.c: Likewise.
35595         * lib/vasnprintf.c: Likewise.
35596
35597 2003-09-14  Bruno Haible  <bruno@clisp.org>
35598
35599         * modules/fwriteerror: New file.
35600         * MODULES.html.sh (func_all_modules): Add fwriteerror.
35601
35602 2003-09-14  Bruno Haible  <bruno@clisp.org>
35603
35604         * lib/fwriteerror.h: New file.
35605         * lib/fwriteerror.c: New file.
35606
35607 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35608
35609         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
35610         modules/xgethostname, modules/xalloc: Depend on exit.
35611
35612 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35613
35614         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
35615
35616         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
35617         and AC_MINIX, too, so that their extensions are available.
35618
35619         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
35620         This macro has been superseded by gl_BACKUPFILE.
35621
35622         More patches to assume C89 or better.
35623
35624         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
35625
35626         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
35627         unconditionally.
35628         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
35629         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
35630         Include <string.h>, <stdlib.h> unconditionally.
35631         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
35632         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
35633         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
35634         headers or for string.h.
35635         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
35636         or strtoul.
35637
35638         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
35639         headers.
35640         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
35641         * m4/userspec.m4 (gl_USERSPEC): Likewise.
35642         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
35643         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
35644         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35645         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
35646         memcpy, memset.
35647         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
35648         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
35649         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
35650         strtol.
35651         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
35652         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
35653         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
35654         strtoul.
35655
35656 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35657
35658         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
35659         * lib/obstack.c [!defined _LIBC]: Likewise.
35660         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
35661         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
35662         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
35663
35664         More changes to assume C89 or better.
35665
35666         * lib/error.c (error_tail): Assume vprintf.
35667
35668         * lib/argmatch.c (getenv): Remove decl.
35669         * lib/progreloc.c (get_full_program_name): Define via prototype.
35670         * lib/setenv.c (clearenv): Likewise.
35671         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
35672         needed.
35673         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
35674         (malloc, memcpy): Remove decls.
35675         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
35676         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
35677         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35678         (memcpy): Remove macro.
35679         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
35680         (__P): Remove.  All uses removed.
35681         (PTR): Remove.  All uses changed to void *.
35682         (CHAR_BIT, NULL): Remove.
35683         (spaces, zeros, memset_space, memset_zero)
35684         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
35685         Remove.
35686         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
35687         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
35688         Define with prototype.
35689         Remove now-unnecessary prototype decl.
35690         (extra_args_spec): Assume ANSI C.  All uses changed.
35691         (extra_args_spec_iso): Remove.
35692         (my_strftime, emacs_strftimeu): Define via prototype.
35693         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
35694         unconditionally.
35695         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
35696         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
35697         (strtoul, strtol): Remove decls.
35698         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
35699         LONG_MAX): Remove.
35700         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35701         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
35702         (LOCALE_PARAM_PROTO): New macro.
35703         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
35704         (INTERNAL (strtol), strtol): Define with a prototype.
35705         (PARAMS): Remove.  All uses removed.
35706         * lib/tempname.c: Include <string.h> unconditionally.
35707         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
35708         * lib/xgethostname.c (main): Define with a prototype.
35709         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
35710         Include <stdlib.h> unconditionally.
35711         (calloc, malloc, realloc, free): Remove decls.
35712         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
35713         Include <stdlib.h> unconditionally.  Sort include file names.
35714         (strtod): Remove.
35715         (xstrtod): Define with a prototype.
35716         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
35717         (strtol, strtoul): Remove decls.
35718
35719 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35720
35721         More patches to assume C89 or better.
35722         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
35723         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
35724         string.h, memchr, STDC_HEADERS.
35725
35726 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35727
35728         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
35729         Include <stdlib.h>, <string.h> unconditionally.
35730         Remove now-unnecessary cast to char *.
35731         * lib/strnlen.c: Include <string.h> unconditionally.
35732         * lib/yesno.c (yesno): Define with a prototype.
35733
35734 2003-09-11  Bruno Haible  <bruno@clisp.org>
35735
35736         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
35737
35738 2003-09-10  Jim Meyering  <jim@meyering.net>
35739
35740         * lib/error.c: Correct indentation of cpp directives.
35741
35742 2003-09-10  Bruno Haible  <bruno@clisp.org>
35743
35744         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
35745         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
35746         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
35747         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
35748         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
35749         <stdlib.h> and <string.h> checks.
35750         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
35751         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
35752
35753 2003-09-10  Bruno Haible  <bruno@clisp.org>
35754
35755         * lib/strcspn.c: Include <string.h> unconditionally.
35756         * lib/strpbrk.c: Include <string.h> unconditionally.
35757         * lib/strstr.c: Include <string.h> unconditionally.
35758         * lib/unicodeio.c: Include <string.h> unconditionally.
35759         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
35760         * lib/unsetenv.c: Likewise.
35761         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
35762         * lib/yesno.c: Include <stdlib.h> unconditionally.
35763         (rpmatch): Add prototype.
35764
35765 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35766
35767         More patches to assume C89 or better.
35768         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
35769         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
35770         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
35771         or for string.h.
35772         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
35773         stdlib.h.
35774         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
35775         C headers.
35776         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
35777         string.h.
35778         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
35779         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
35780         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
35781         or for string.h.
35782         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
35783         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
35784         C headers.
35785         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
35786         memcpy.
35787         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
35788         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
35789         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
35790         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
35791         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
35792         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
35793         string.h, free.
35794         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
35795         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
35796         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
35797         C headers, or for string.h.
35798         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
35799         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
35800         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
35801         headers, memory.h, stdlib.h, string.h, strings.h.
35802         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
35803         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
35804         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
35805         strchr.
35806         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
35807         headers, memory.h, string.h.
35808         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
35809         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
35810         free.
35811         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
35812         headers.
35813         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
35814         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
35815         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
35816         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
35817         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
35818
35819 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35820
35821         More K&R removal.
35822
35823         * lib/acosl.c (main): Use a prototype.
35824         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
35825         tanl.c: Likewise.
35826
35827         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
35828
35829         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
35830         (getopt, etopt_long, getopt_long_only, _getopt_internal)
35831         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
35832         with a prototype.
35833         * lib/getopt.c (const): Remove macro.
35834         Include <string.h> unconditionally.
35835         (my_index): Remove; all uses changed to strchr.
35836         (strlen): Remove decl.
35837         (exchange): Remove forward decl; no longer needed.
35838         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
35839         Define with prototype.
35840         * lib/getopt1.c (const): Remove macro.
35841         (getopt_long, getopt_long_only, main): Define with prototype.
35842
35843         * lib/getugroups.c: Include <string.h> unconditionally.
35844
35845         * lib/getusershell.c: Include <stdlib.h> unconditionally.
35846         (getusershell, setusershell, endusershell, readname, main):
35847         Define with prototypes.
35848
35849         * lib/group-member.c: Include group-member.h first.
35850         Include <stdlib.h> unconditionally.
35851
35852         * lib/hard-locale.c: Include hard-locale.h first.
35853         Include <stdlib.h>, <string.h> unconditionally.
35854
35855         * lib/hash.c (free, malloc): Remove decls.
35856         Include <stdlib.h> unconditionally.
35857
35858         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
35859         (getenv): Do not declare.
35860
35861         * lib/idcache.c: Include <string.h> unconditionally.
35862
35863         * lib/long-options.c: Include long-options.h first, to test interface.
35864         Include <stdlib.h> unconditionally.
35865
35866         * lib/makepath.c: Include makepath.h first, to test interface.
35867         Include <stdlib.h> and <string.h> unconditionally.
35868
35869         * lib/linebuffer.c: Include <stdlib.h>.
35870         (free): Remove decl.
35871
35872         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
35873         stddef.h. rpl_malloc returns void *, not char *.
35874         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
35875         prototype.
35876
35877         * lib/md5.h: Include <limits.h> unconditionally.
35878         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
35879         (__P): Remove; all uses removed.
35880         * lib/md5.c: Include "md5.h" first.
35881         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
35882         md5_buffer, md5_process_bytes, md5_process_block):
35883         Define with prototypes.
35884         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
35885         * lib/sha.c: Include "sha.h" first.
35886         Include <stdlib.h>, <string.h> unconditionally.
35887
35888         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
35889         * lib/memcmp.c (__ptr_t): Likewise.
35890         * lib/memrchr.c (__ptr_t): Likewise.
35891         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
35892         Include <string.h> unconditionally.
35893         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
35894         * lib/memchr.c: Include <stdlib.h> unconditionally.
35895         * lib/memchr.c (LONG_MAX): Remove.
35896         * lib/memrchr.c (LONG_MAX): Likewise.
35897         * lib/memchr.c (__memchr): Define via a prototype.
35898         * lib/memrchr.c (__memrchr): Likewise.
35899         * lib/memcmp.c (__P): Remove, and remove all uses.
35900         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
35901         Remove forward decls; no longer needed.
35902         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
35903         Use types required by C89 in prototype.
35904
35905         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
35906         * lib/savedir.c: Likewise.
35907         * lib/mkdir.c (free): Remove decl.
35908         * lib/rmdir.c (rmdir): Define with a prototype.
35909         * lib/savedir.c: Include savedir.h first, to test interface.
35910
35911         * lib/mktime.c (STDC_HEADERS): Remove.
35912         Include <stdlib.h>, <string.h> unconditionally.
35913
35914         * lib/modechange.c: Include <stdlib.h> unconditionally.
35915         (malloc): Remove decl.
35916
35917         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
35918         (free): Remove decl.
35919
35920         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
35921         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
35922         (This type really should be intptr_t, but that's a C99ism.)
35923         (_obstack_memcpy): Remove: all uses changed to memcpy.
35924         Include <string.h> unconditionally.
35925         (struct obstack): Assume __STDC__ for types of members
35926         chunkfun, freefun, extra_arg.
35927         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
35928         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
35929         obstack_begin, obstack_specify_allocation,
35930         obstack_specify_allocation_with_arg, obstack_chunkfun,
35931         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
35932         Remove unprototyped decls and the macros that use them.
35933         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
35934         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
35935         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
35936         (defined __STDC__ && __STDC__)]:
35937         Remove nonprototyped code.
35938         Include <stdlib.h> unconditionally.
35939         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
35940         _obstack_allocated_p, _obstack_free, obstack_free,
35941         _obstack_memory_used, print_and_abort):
35942         Define using prototypes.
35943         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
35944         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
35945         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
35946         obstack_next_free, obstack_object_size, obstack_room) [0]:
35947         Remove unused, unprototyped code.
35948
35949         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
35950
35951         * lib/physmem.c (physmem_total, physmem_available, main): Define
35952         with prototypes.
35953
35954         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
35955         (main): Define with a prototype.
35956
35957         * lib/posixver.c (getenv): Remove decl.
35958
35959         * lib/putenv.c (malloc): Returns void *, not char *.
35960         Include <string.h> unconditionally.
35961         (strchr, memcpy, NULL): Do not define.
35962
35963         * lib/readtokens.c: Include readtokens.h first, to test interface.
35964         Include <stdlib.h>, <string.h> unconditionally.
35965         (init_tokenbuffer): Define with a prototype.
35966
35967         * lib/regex.c (PARAMS): Remove.  All uses removed.
35968         All uses of _RE_ARGS removed, too.
35969         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
35970         unconditionally.
35971         (bzero): Assume memset exists.
35972         (memcmp, memcpy, NULL): Remove.
35973         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
35974         char, or assignments to local vars of type signed char.
35975         (init_syntax_once, PREFIX(extract_number_and_incr),
35976         PREFIX(print_partial_compiled_pattern),
35977         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
35978         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
35979         PREFIX(regex_grow_registers), PREFIX(regex_compile),
35980         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
35981         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
35982         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
35983         wcs_compile_range, byte_compile_range, truncate_wchar,
35984         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
35985         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
35986         count_mbs_length, wcs_re_match_2_internal,
35987         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
35988         PREFIX(alt_match_null_string_p),
35989         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
35990         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
35991         regfree, PREFIX(extract_number)): Define with prototype.  Remove
35992         now-unnecessary declaration, if any.
35993         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
35994         regcomp, regexec):
35995         Remove now-unnecessary casts among pointer types.
35996         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
35997
35998         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
35999         (free): Remove decl.
36000
36001         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
36002
36003         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
36004         (free): Remove decl.
36005
36006         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
36007         * lib/xgetcwd.c: Likewise.
36008
36009         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
36010         (free): Remove decl.
36011
36012         * lib/strchrnul.c (strchrnul): Define with a prototype.
36013         Fix bug: c_in was not converted to char before searching.
36014
36015         The following changes are not K&R related:
36016
36017         * lib/group-member.h: Include <sys/types.h>, so that this file is
36018         self-contained.
36019         * lib/makepath.h: Likewise.
36020
36021         * lib/getusershell.c (readname, default_index, line_size, readname):
36022         Use size_t, not int, for sizes.
36023         (readname): If the size overflows, report an error instead of
36024         looping forever.
36025
36026 2003-09-09  Paul Eggert  <eggert@twinsun.com>
36027
36028         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
36029         libc.
36030
36031 2003-09-09  Paul Eggert  <eggert@twinsun.com>
36032
36033         * README: New section: portability guidelines.
36034
36035 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
36036
36037         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
36038         C89 spec.
36039
36040 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
36041
36042         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
36043
36044 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36045
36046         Assume C89 or better; remove K&R cruft.
36047         A few of these changes were first proposed by Derek Robert Price
36048         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
36049
36050         * lib/addext.c: Include <string.h> unconditionally.
36051         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
36052         Don't declare getenv or malloc.
36053
36054         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
36055         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
36056         (NULL): Remove.
36057         (find_stack_direction, alloca): Use prototypes.
36058
36059         * lib/atexit.c (atexit): Define using a prototype.
36060
36061         * lib/basename.c, dirname.c, stripslash.c:
36062         Include <string.h> unconditionally.
36063
36064         * lib/bcopy.c: Include <stddef.h>.
36065         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
36066
36067         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
36068
36069         * lib/error.h (error, error_at_line, error_print_progname)
36070         [! (defined (__STDC__) && __STDC__)]: Remove decls.
36071         * lib/error.c: Include error.h first, to check interface.
36072         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
36073         (VA_START): Remove; all uses changeed to va_start.
36074         (exit, strerror): Remove decls.
36075         (error_print_progname): Prototype uncondionally.
36076         Don't include <errno.h>; no longer needed.
36077         (private_strerror): Remove.
36078         (error_tail): Always define.
36079         (error, error_at_line): Assume C89 or better; always use prototypes.
36080         * lib/fatal.c: Include "fatal.h" first, to test interface.
36081         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
36082         (VA_START): Remove; all uses changed to va_start.
36083         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
36084         this case.
36085         (exit): Remove decl.
36086         (fatal): Prototype unconditionally.  Assume va_start works.
36087         Abort at end, to pacify gcc.
36088
36089         * lib/euidaccess.c (main): Define with a prototype.
36090
36091         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
36092
36093         * lib/exitfail.c: Include <stdlib.h> unconditionally.
36094
36095         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
36096         prototypes.
36097         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
36098         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
36099         (getenv): Remove decl.
36100         (fnmatch): Define using a prototype.
36101         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
36102         (FCT): Define using a prototype.
36103
36104         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
36105
36106         * lib/gethostname.c: Include <stddef.h>.
36107         (gethostname): Define with prototype.  Length is size_t, not int.
36108
36109 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36110
36111         Assume C89 or better; remove K&R cruft.
36112         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
36113         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
36114         string.h, getenv, malloc.
36115         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
36116         headers.
36117         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
36118         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
36119         do not check for strerror.
36120         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
36121         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
36122         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
36123         do not check for doprnt or vprintf.
36124         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
36125         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
36126
36127 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36128
36129         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
36130         getversion.c should have been removed then, but was accidentally
36131         preserved.
36132
36133         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
36134         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
36135
36136 2003-09-08  Karl Berry  <karl@gnu.org>
36137
36138         * config/config.sub, config.guess, srclistvars.sh: update from savannah
36139                 config, forget about prep.
36140
36141         * config/depcomp, missing: update from automake.
36142
36143 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36144
36145         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
36146         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36147
36148 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36149
36150         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
36151         copy_tm_result.  Bug reported by Simon Josefsson in
36152         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36153
36154 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36155
36156         * m4/time_r.m4: New file.
36157         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
36158         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
36159         is. Check for timegm declaration.
36160         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
36161         Do not check for gmtime_r.
36162         Replace mktime if __mktime_internal does not exist and if mktime
36163         hasn't been replaced already.
36164
36165 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36166
36167         * lib/time_r.c, lib/time_r.h: New files.
36168
36169         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
36170         __localtime_r.
36171         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
36172         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
36173
36174         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
36175         __gmtime_r.
36176         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
36177         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
36178         Include <time_r.h>.
36179
36180         * lib/timegm.c: Switch to glibc implementation, with the following
36181         changes:
36182         [defined HAVE_CONFIG_H]: Include <config.h>.
36183         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
36184         (__mktime_internal) [!defined _LIBC]: New decl.
36185         (__gmtime_r) [!defined _LIBC]: New macro and function.
36186         (timegm): Use a prototype, since gnulib assumes C89.
36187         Do not bother declaring tmp to be const, as it's not really usefu.
36188         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
36189         (timegm): Declare only if HAVE_DECL_TIMEGM.
36190
36191 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36192
36193         * MODULES.html.sh (func_all_modules): Add time_r.
36194         * modules/time_r: New file.
36195         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
36196         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
36197
36198 2003-09-03  Paul Eggert  <eggert@twinsun.com>
36199
36200         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
36201         Bug reported by Lute Kamstra in
36202         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
36203
36204         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
36205         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
36206         course with correspondingly smaller numbers for tomorrow and
36207         yesterday.  From Tadayoshi Funaba.  Originally installed into
36208         sh-utils on 1999-08-07, but the patch got lost (I guess during the
36209         coreutils merge?).
36210
36211 2003-08-31  Simon Josefsson  <jas@extundo.com>
36212
36213         * modules/timegm: New file.
36214         * MODULES.html.sh (func_all_modules): Add timegm.
36215
36216 2003-08-31  Simon Josefsson  <jas@extundo.com>
36217
36218         * m4/timegm.m4: New file.
36219
36220 2003-08-31  Simon Josefsson  <jas@extundo.com>
36221
36222         * lib/timegm.h: New file.
36223         * lib/timegm.c: New file.  Based on
36224         wget-1.8.2/src/http.c:mktime_from_utc.
36225
36226 2003-08-31  Karl Berry  <karl@gnu.org>
36227
36228         * lib/argp.h: update from libc.
36229
36230 2003-08-28  Bruno Haible  <bruno@clisp.org>
36231
36232         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
36233         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
36234         followed by '#define fnmatch fnmatch_posix' gives an error.
36235
36236 2003-08-28  Bruno Haible  <bruno@clisp.org>
36237
36238         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
36239         warning on QNX, which defines O_BINARY to 000000.
36240
36241 2003-08-27  Jim Meyering  <jim@meyering.net>
36242
36243         * m4/mkstemp.m4: Require that the system mkstemp be able to create
36244         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
36245         would fail after 32.  Reported by Danny Levinson.  Details here:
36246         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
36247
36248 2003-08-24  Bruno Haible  <bruno@clisp.org>
36249
36250         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
36251         MSVC7 <stdio.h> is included later.
36252
36253 2003-08-22  Simon Josefsson  <jas@extundo.com>
36254
36255         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
36256
36257 2003-08-20  Karl Berry  <karl@gnu.org>
36258
36259         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
36260
36261 2003-08-20  Bruno Haible  <bruno@clisp.org>
36262
36263         * modules/progname: New file.
36264         * MODULES.html.sh (func_all_modules): Add progname.
36265
36266 2003-08-20  Bruno Haible  <bruno@clisp.org>
36267
36268         * lib/progname.h: New file, from GNU gettext.
36269         * lib/progname.c: New file, from GNU gettext.
36270         * lib/progreloc.c: New file, from GNU gettext.
36271
36272 2003-08-19  Jim Meyering  <jim@meyering.net>
36273
36274         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
36275         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
36276
36277 2003-08-19  Bruno Haible  <bruno@clisp.org>
36278
36279         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
36280         more.
36281
36282 2003-08-19  Bruno Haible  <bruno@clisp.org>
36283
36284         * lib/xstrdup.c: Assume <string.h> exists.
36285
36286 2003-08-18  Paul Eggert  <eggert@twinsun.com>
36287
36288         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
36289         in makefile rules.
36290
36291 2003-08-18  Jim Meyering  <jim@meyering.net>
36292
36293         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
36294         * m4/lib-ld.m4: Likewise.
36295
36296 2003-08-18  Jim Meyering  <jim@meyering.net>
36297
36298         * lib/setenv.h: Indent nested cpp directive.
36299         * lib/vasnprintf.c: Remove trailing blanks.
36300
36301 2003-08-17  Simon Josefsson  <jas@extundo.com>
36302
36303         * modules/xstrndup: New file.
36304         * MODULES.html.sh (func_all_modules): Add xstrndup.
36305
36306 2003-08-17  Simon Josefsson  <jas@extundo.com>
36307
36308         * modules/argp: Fix autoconf macro name. Add more dependencies.
36309
36310 2003-08-17  Simon Josefsson  <jas@extundo.com>
36311
36312         * m4/xstrndup.m4: New file.
36313
36314 2003-08-17  Simon Josefsson  <jas@extundo.com>
36315
36316         * m4/argp.m4: New file.
36317
36318 2003-08-17  Simon Josefsson  <jas@extundo.com>
36319             Bruno Haible  <bruno@clisp.org>
36320
36321         * lib/xstrndup.h: New file.
36322         * lib/xstrndup.c: New file.
36323
36324 2003-08-17  Bruno Haible  <bruno@clisp.org>
36325
36326         * modules/strndup (Files, Include): Add lib/strndup.h.
36327
36328 2003-08-17  Bruno Haible  <bruno@clisp.org>
36329
36330         * modules/euidaccess (Files): Add lib/euidaccess.h.
36331
36332 2003-08-17  Bruno Haible  <bruno@clisp.org>
36333
36334         * lib/strndup.h: New file.
36335
36336 2003-08-17  Bruno Haible  <bruno@clisp.org>
36337
36338         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
36339         like AC_GNU_SOURCE.
36340         * modules/extensions (configure.ac): Comment out the invocation of
36341         gl_USE_SYSTEM_EXTENSIONS.
36342
36343 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36344
36345         Merges from coreutils, etc.
36346         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
36347         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
36348         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
36349         fixing a typo.
36350         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
36351         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
36352
36353 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36354
36355         Document merge from coreutils.
36356         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
36357         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
36358         * modules/utime: Add m4/utimes-null.m4.
36359
36360 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36361
36362         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
36363         space, undoing this 2003-08-12 change:
36364         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36365
36366 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36367
36368         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
36369         strtoul.c from libc, undoing this 2003-08-12 change:
36370         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36371
36372 2003-08-16  Jim Meyering  <jim@meyering.net>
36373
36374         Merges from coreutils.
36375         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
36376         prefix.  Adjust cache variables similarly.  Create 500 rather than
36377         just 300 files, to exercise bug on Darwin6.5, too.
36378         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
36379         $missing_dir.
36380         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
36381         AM_SYS_POSIX_TERMIOS.
36382         Reported by mkc@mathdogs.com.
36383         Also change use of $am_cv_sys_posix_termios
36384         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
36385         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
36386         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
36387         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
36388         in /proc/mounts until it finds one with matching device number.  This
36389         is unnecessary when the FILE argument *is* a mount point.  No stat call
36390         is necessary in that case.  So, disable the statvfs-testing code on
36391         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
36392         as RedHat bug# 84846.
36393         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36394         to 1MB, so as not to render systems with no stack size limit (e.g.,
36395         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36396         Include <unistd.h>.  On some systems,
36397         it is required for the definition of _SC_PAGESIZE.
36398
36399 2003-08-16  Jim Meyering  <jim@meyering.net>
36400
36401         Merge from coreutils.
36402         * lib/xstrtoimax.c: #else #if -> #elif.
36403         * lib/xstrtoumax.c: Likewise.
36404
36405 2003-08-16  Jim Meyering  <jim@meyering.net>
36406
36407         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
36408         * m4/utimes.m4: Removed.
36409         * m4/utimes-null.m4: Renamed from utimes.m4.
36410
36411         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36412         to 1MB, so as not to render systems with no stack size limit (e.g.,
36413         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36414         Include <unistd.h>.  On some systems,
36415         it is required for the definition of _SC_PAGESIZE.
36416
36417 2003-08-16  Jim Meyering  <jim@meyering.net>
36418         and Paul Eggert  <eggert@cs.ucla.edu>
36419
36420         Merges from coreutils, etc.
36421
36422         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
36423         using the latest version from cvs.  This avoids problems with #line
36424         directives using a vendor (Sun) compiler.
36425         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
36426         Don't set GETGROUPS_LIB here; now it's
36427         done via getgroups.m4's wrapper function.
36428         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
36429         rather than just in sh-util/configure.in, so that the
36430         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
36431         same.
36432         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
36433         AC_FUNC_GETLOADAVG where to find getloadavg.c.
36434         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
36435         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
36436         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
36437         Remove code that is now done by the newly-required macros.
36438         Append $(EXEEXT) to DF_PROG.
36439         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
36440         Do not invoke or require the following here,
36441         since prereq.m4 or some gnulib .m4 now does this for us:
36442         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
36443         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
36444         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
36445         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
36446         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
36447         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
36448         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
36449         AC_FUNC_OBSTACK.
36450         Do not replace the following functions, as this is now the job
36451         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
36452         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
36453         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
36454         atexit getpass, strdup, getpagesize.
36455         Replace 'raise'.
36456         Do not check for the following functions, as this is now the job
36457         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
36458         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
36459         setregid.
36460         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
36461         Check for sys/sysctl.h.
36462         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
36463         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
36464         of checking for ssize_t ourselves.
36465
36466         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
36467         Require every macro that gnulib/modules/* suggests for us.
36468         (jm_PREREQ_ADDEXT): New macro.
36469         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
36470         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
36471
36472         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
36473         (gl_PHYSMEM): Use it.
36474         Also check for `table' function.
36475         Check for new headers and functions.
36476         Add check for sys/sysmp.h.
36477         With suggestions from Kaveh Ghazi.
36478         Ignore headers that are present but cannot be compiled.  This
36479         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
36480         C 5.4.
36481
36482 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36483
36484         Document merge from coreutils.
36485         * modules/userspec: Depend on posixver.
36486         * modules/strftime: Depend on tzset.
36487
36488 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36489
36490         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
36491         rather than tab, after '#' in shell-script copyright notices.
36492         Suggested by Bruno Haible.
36493
36494 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36495
36496         * config/srclist-update: Use three spaces, rather than tab, after '#'
36497         in shell-script copyright notices.  Suggested by Bruno Haible.
36498         Remove unnecessary parenthesization in regular expression.
36499
36500 2003-08-15  Jim Meyering  <jim@meyering.net>
36501
36502         Merge from coreutils.
36503         * lib/xgethostname.c: Include <stdlib.h>.
36504         (xghostname): Don't exit for anything other than memory-related
36505         failure; just return NULL.
36506         * lib/userspec.c: Include "posixver.h".
36507         (parse_user_spec): Accept `.' as a separator only
36508         in pre-POSIX-200112 mode.
36509         * lib/strtoimax.c: Use #elif rather than #else #if.
36510         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
36511         Remove function, now that we can rely on a working tzset function.
36512         [!_LIBC]: Ensure that the required autoconf test has been run.
36513         [!defined _NL_CURRENT && HAVE_STRFTIME]:
36514         Use underlying_strftime for %r.
36515         * lib/sha.c: Merge in some clean-up and optimization changes from
36516         glibc.
36517         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
36518         Ensure that it is a multiple of 64.
36519         Rearrange loop exit tests so as to avoid performing an
36520         additional fread after encountering an error or EOF.
36521         * lib/realloc.c: Update copyright date.
36522
36523 2003-08-15  Jim Meyering  <jim@meyering.net>
36524         and Paul Eggert  <eggert@twinsun.com>
36525
36526         Merge from coreutils.
36527         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
36528         member but strut utmpx does not.  Needed for AIX 4.3.3.
36529         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
36530
36531 2003-08-15  Jim Meyering  <jim@meyering.net>
36532         and Paul Eggert  <eggert@cs.ucla.edu>
36533
36534         Merges from coreutils, etc.
36535         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
36536         Require gl_FUNC_TZSET_CLOBBER.
36537         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
36538         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
36539         members.
36540
36541 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36542
36543         Help the merge from coreutils.
36544         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
36545         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
36546         * m4/tzset.m4: Use it too.
36547
36548 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36549
36550         * modules/tzset: New file.
36551
36552 2003-08-14  Jim Meyering  <jim@meyering.net>
36553
36554         Merges from coreutils.
36555         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
36556         variable names, rather than @FNMATCH_H@.
36557         * modules/alloca: Likewise for $(ALLOCA_H).
36558
36559         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
36560         the three copies of the literal target, `fnmatch.h'.
36561         * modules/alloca (alloca.h): Likewise.
36562
36563 2003-08-14  Jim Meyering  <jim@meyering.net>
36564
36565         Merge from coreutils.
36566         * m4/tzset.m4: New file.
36567         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
36568         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
36569         otherwise, AIX 5.1 systems would end up using the latter.
36570         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
36571         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
36572         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
36573         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
36574
36575 2003-08-14  Jim Meyering  <jim@meyering.net>
36576
36577         Merge from coreutils.
36578         * lib/obstack.h: Whitespace changes.
36579         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
36580         and xcalloc return values.
36581         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
36582         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
36583         hang on OSF/1 5.1 for DIR on both local and remote file systems.
36584         Reported by (and fix confirmed by) Nelson H. F. Beebe.
36585         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
36586         error from mntctl.
36587         Use mntctl's return value to drive the entry-processing loop, since
36588         we can't rely on the value of the vmt_length member in the last
36589         entry.  On some systems doing so could result in exhausting
36590         virtual memory.  Based in part on a patch from Mike Jetzer.
36591
36592 2003-08-14  Jim Meyering  <jim@meyering.net>
36593         and Paul Eggert  <eggert@twinsun.com>
36594
36595         Merges from coreutils, plus other fixes.
36596         * lib/physmem.c: Merge in portability changes from gcc/libiberty
36597         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
36598         for credits and details.  Thanks to Kaveh Ghazi for helping
36599         to keep these files in sync.
36600         (ARRAY_SIZE): Define it.
36601         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
36602         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
36603         (memcasecmp): Don't assume size_t fits in unsigned int.
36604         Remove casts and duplicate code.
36605         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
36606         (memcpy): Remove definition.
36607         Merge in some clean-up and optimization changes from glibc.
36608         [BLOCKSIZE]: Move definition to top of file.
36609         Ensure that it is a multiple of 64.
36610         Rearrange loop exit tests so as to avoid performing an
36611         additional fread after encountering an error or EOF.
36612         * lib/md5.h (md5_uintptr): Define.
36613         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
36614         return to the initial working directory.  Preserve errno
36615         for caller.
36616         * lib/idcache.c: Include "xalloc.h".
36617         (xmalloc, xrealloc): Remove decls.
36618         (getuser): Remove casts no longer required in C89.
36619         * lib/human.c: Include stdio.h, for sprintf.
36620         * lib/group-member.c: Include "xalloc.h".
36621         (xmalloc, xrealloc): Remove decls.
36622         (get_group_info): Remove casts no longer required in C89.
36623         * lib/getusershell.c (readname): Remove casts no longer required in
36624         C89.
36625         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
36626         * lib/getline.c: Whitespace fix, from coreutils.
36627
36628 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36629
36630         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
36631         Check for isascii.
36632
36633         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36634         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36635         Undo previous (whitespace-only) change.
36636
36637 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36638
36639         * lib/exclude.c: Include <ctype.h>
36640         (IN_CTYPE_DOMAIN): New macro.
36641         (is_space): New fn.
36642         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
36643         and empty lines.
36644
36645         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36646         Undo previous (whitespace-only) change.
36647
36648 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36649
36650         * config/srclist-update: Change update back to the old behavior,
36651         leaving whitespace alone.  Use one 'sed' command rather than a
36652         pipeline.
36653         (fixlicense): Now a variable, not a function.
36654         (remove_trailing_blanks): Remove.
36655         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
36656         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36657         Undo previous (whitespace-only) change.
36658
36659 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36660
36661         Merge from coreutils.
36662         * modules/euidaccess: Add lib_SOURCES, include for new
36663         file euidaccess.h
36664
36665 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36666
36667         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36668         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36669         Normalize leading white space and remove trailing white space.
36670
36671         Merge from coreutils
36672         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
36673
36674         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
36675         0.12.1.  These files are now being upgraded automatically by
36676         ../config/srclist-update.
36677
36678 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36679
36680         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36681         Normalize leading white space and remove trailing white space.
36682         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
36683         notice, as per ../config/srclist-update.
36684
36685         Merge from coreutils.
36686         * lib/euidaccess.h: New file.
36687         * lib/euidaccess.c: Include it.
36688         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
36689         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
36690         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
36691
36692 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36693
36694         * config/srclist-update: Add copyright notice.
36695         (remove_id_lines, remove_trailing_blanks): New constants.
36696         (fixfile): Use them to normalize spacing a bit in copied files.
36697         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36698         Normalize leading white space and remove trailing white space.
36699
36700         * config/texinfo.tex: Sync with texinfo.
36701
36702         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
36703         strtoul.c from libc, to merge coreutils whitespace changes.
36704
36705         * config/srclist.txt: Get the following m4 files from gettext:
36706         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
36707         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
36708         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
36709         wint_t.m4.
36710
36711 2003-08-12  Karl Berry  <karl@gnu.org>
36712
36713         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
36714         been made.
36715
36716 2003-08-11  Paul Eggert  <eggert@twinsun.com>
36717
36718         * modules/gnu-source, m4/gnu-source.m4:
36719         Remove; we're assuming Autoconf 2.54 or later now.
36720         Suggested by Bruno Haible.
36721         * MODULES.html.sh (func_all_modules): Remove gnu-source.
36722
36723 2003-08-11  Bruno Haible  <bruno@clisp.org>
36724
36725         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
36726
36727 2003-08-11  Bruno Haible  <bruno@clisp.org>
36728
36729         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
36730         (vasnprintf): Use it instead of wcslen.
36731
36732 2003-08-11  Bruno Haible  <bruno@clisp.org>
36733
36734         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
36735         value to ensure that _Bool promotes to int. Use #define for _Bool when
36736         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
36737
36738 2003-08-10  Karl Berry  <karl@gnu.org>
36739
36740         * lib/regex.h: update from libc (whitespace fix).
36741
36742 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36743
36744         Merge some files from coreutils.  These changes were
36745         originally made by Jim Meyering.
36746         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
36747         many older Unixes require this.
36748         * lib/alloca.c (alloca): Remove cast to argument of free;
36749         no longer needed in C89.
36750         * lib/alloca_.h, regex.h: Fix white space to match
36751         what GNU indent does.
36752
36753 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36754
36755         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
36756         apparently Emacs's Unicode mode got confused before my 2003-08-05
36757         checkin.
36758
36759 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36760
36761         * m4/extensions.m4: New file.
36762         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
36763         Require gl_USE_SYSTEM_EXTENSIONS.
36764         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
36765         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
36766
36767 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36768
36769         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
36770         * modules/extensions, modules/gnu-source: New files.
36771         * modules/timespec, modules/unlocked-io: Depend on extensions.
36772
36773 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36774
36775         * modules/restrict: New file.
36776         * MODULES.html.sh (func_all_modules): Add restrict.
36777         * modules/regex: Depend on restrict.
36778
36779 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36780
36781         * m4/restrict.m4: New file.
36782         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
36783
36784 2003-08-07  Bruno Haible  <bruno@clisp.org>
36785
36786         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
36787         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
36788
36789 2003-08-07  Bruno Haible  <bruno@clisp.org>
36790
36791         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
36792         makes the module 'getndelim2' compatible with the module 'getline'.
36793
36794 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36795
36796         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
36797         byte with "\201" to avoid glitches when editing that source file
36798         with multi-gnome-terminal.
36799
36800 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36801
36802         * lib/bumpalloc.h: Remove.
36803
36804 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36805
36806         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
36807         * modules/bumpalloc: Remove.
36808
36809 2003-08-04  Paul Eggert  <eggert@twinsun.com>
36810
36811         * lib/getloadavg.c: Change copyright notice and spacing to conform to
36812         GNU coding style.
36813
36814         Merge from coreutils.
36815         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
36816         1. From glibc.
36817         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
36818         from Karl Berry, implemented by Jim Meyering.
36819         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
36820         from Dmitry V. Levin.
36821         Remove anachronistic cast of xrealloc.
36822         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
36823         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
36824         type. Otherwise, it wouldn't compile with at least /bin/cc on
36825         ymp-cray-unicos9.0.2.X.
36826         Combine two mostly-identical uses of alloca into one.
36827         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
36828
36829 2003-08-04  Dave Love  <d.love@dl.ac.uk>
36830
36831         [From Emacs.]
36832
36833         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
36834         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
36835         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
36836         obsolete NLIST_NAME_UNION.
36837         [__GNU__]: Undef BSD and FSCALE.
36838         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
36839
36840 2003-08-03  Paul Eggert  <eggert@twinsun.com>
36841
36842         * lib/stdbool_.h (_Bool): Make it signed char, instead of
36843         an enum type, so that it's guaranteed to promote to int.  See:
36844         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
36845
36846 2003-08-03  Karl Berry  <karl@gnu.org>
36847
36848         * config/depcomp: update from automake.
36849
36850 2003-07-31  Paul Eggert  <eggert@twinsun.com>
36851
36852         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
36853         (strerror): Don't assume that a printable int fits in 14 bytes.
36854
36855 2003-07-31  Bruno Haible  <bruno@clisp.org>
36856
36857         * modules/getpass-gnu: New file.
36858         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
36859
36860 2003-07-31  Bruno Haible  <bruno@clisp.org>
36861
36862         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
36863
36864 2003-07-24  Karl Berry  <karl@gnu.org>
36865
36866         * config/missing: update from automake.
36867
36868 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
36869             Bruno Haible  <bruno@clisp.org>
36870
36871         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
36872         * lib/getline.c (getline, getdelim): Likewise.
36873         Remove _GNU_SOURCE define; now it's defined in config.h through
36874         m4/getline.m4.
36875
36876 2003-07-23  Karl Berry  <karl@gnu.org>
36877
36878         * config/config.sub: update from prep.
36879
36880 2003-07-22  Paul Eggert  <eggert@twinsun.com>
36881
36882         * modules/xalloc (Depends-on): Add exitfail.
36883         * modules/xmemcoll: Likewise.
36884
36885 2003-07-22  Paul Eggert  <eggert@twinsun.com>
36886
36887         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
36888         over-parenthesization in macros.
36889
36890         Sync with coreutils.
36891
36892         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
36893         required by C99.
36894
36895         Use `exit_failure' for xalloc and xmemcoll instead of their own
36896         private exit-failure variables.
36897         * lib/xalloc.h (xalloc_exit_failure): Remove.
36898         * lib/xmalloc.c: Likewise.  Include exitfail.h.
36899         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
36900         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
36901         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
36902         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
36903
36904 2003-07-20  Jim Meyering  <jim@meyering.net>
36905
36906         * modules/closeout (Depends-on): Add exitfail.
36907         Suggestion from Bruno Haible.
36908
36909 2003-07-19  Karl Berry  <karl@gnu.org>
36910
36911         * config/config.sub: update from prep.
36912
36913 2003-07-18  Paul Eggert  <eggert@twinsun.com>
36914
36915         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
36916         Remove.
36917         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
36918         to test that it can stand by itself.  Include "exitfail.h".
36919         Clients should set exit_failure instead.
36920         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
36921
36922 2003-07-18  Bruno Haible  <bruno@clisp.org>
36923
36924         * modules/getndelim2: New file.
36925         * modules/getline: Share files with module getndelim2.
36926         * modules/getnline: Depend on getndelim2 instead of sharing files with
36927         it. Add getnline.c to lib_SOURCES.
36928         * MODULES.html.sh (func_all_modules): Add getndelim2.
36929
36930 2003-07-18  Bruno Haible  <bruno@clisp.org>
36931
36932         * m4/getndelim2.m4: New file.
36933         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
36934         invoke gl_PREREQ_GETNDELIM2.
36935         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
36936         gl_PREREQ_GETNDELIM2.
36937         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
36938         gl_GETNDELIM2.
36939
36940 2003-07-18  Bruno Haible  <bruno@clisp.org>
36941
36942         * lib/getndelim2.h: New file.
36943         * lib/getndelim2.c: Make into a module of its own. Include config.h,
36944         getndelim2.h.
36945         (getndelim2): Make non-static. Change return type to ssize_t.
36946         * lib/getline.h: Change argument names.
36947         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
36948         * lib/getnline.c: Include getndelim2.h.
36949
36950 2003-07-18  Andreas Schwab  <schwab@suse.de>
36951
36952         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
36953
36954 2003-07-17  Karl Berry  <karl@gnu.org>
36955
36956         * config/config.sub: update from prep.
36957
36958 2003-07-17  Bruno Haible  <bruno@clisp.org>
36959
36960         * modules/getnline: New file.
36961         * modules/getline: Add lib/getndelim2.c to source file list.
36962         * MODULES.html.sh (func_all_modules): Add getnline.
36963
36964 2003-07-17  Bruno Haible  <bruno@clisp.org>
36965
36966         * m4/getnline.m4: New file.
36967
36968 2003-07-17  Bruno Haible  <bruno@clisp.org>
36969
36970         * m4/Makefile.am.in: Remove file.
36971         * m4/Makefile.am: Remove file.
36972         * m4/Makefile.in: Remove file.
36973
36974 2003-07-17  Bruno Haible  <bruno@clisp.org>
36975
36976         * lib/getnline.h: New file.
36977         * lib/getnline.c: New file.
36978         * lib/getndelim2.c: New file, extracted from getline.c.
36979         (getndelim2): Renamed from getdelim2, with added nmax argument.
36980         * lib/getline.c: Include getndelim2.c.
36981         (getdelim2): Moved out to getndelim2.c.
36982         (getline, getdelim): Update.
36983
36984 2003-07-17  Bruno Haible  <bruno@clisp.org>
36985
36986         * lib/Makefile.am: Remove file.
36987         * lib/Makefile.in: Remove file.
36988
36989 2003-07-17  Bruno Haible  <bruno@clisp.org>
36990
36991         * configure.in: Remove file.
36992         * Makefile.in: Remove file.
36993
36994 2003-07-17  Bruno Haible  <bruno@clisp.org>
36995
36996         * MODULES.html.sh: Put the </BODY> right before </HTML>.
36997
36998 2003-07-16  Karl Berry  <karl@gnu.org>
36999
37000         * config/srclist-update: was running fixlicense twice, which caused
37001                 texinfo.tex to be nullified for some reason.  Simplify,
37002                 $gplsrc is no longer needed as far as I can see?
37003
37004 2003-07-16  Jim Meyering  <jim@meyering.net>
37005
37006         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
37007
37008 2003-07-15  Paul Eggert  <eggert@twinsun.com>
37009
37010         * config/srclist.txt: Get the following files from gettext-runtime/intl
37011         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
37012         ref-del.sin.  From Bruno Haible.
37013         * config/srclist-update (fixfile): Change grep pattern again, since the
37014         previous fix didn't work (there was another trailing $).  Use
37015         '[$]' to escape the $s.
37016
37017 2003-07-15  Karl Berry  <karl@gnu.org>
37018
37019         * lib/vasnprintf.c: update from gettext.
37020
37021 2003-07-15  Karl Berry  <karl@gnu.org>
37022
37023         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
37024         gets expanded when surrounded by '$'.
37025
37026 2003-07-15  Jim Meyering  <jim@meyering.net>
37027
37028         * modules/save-cwd: Don't depend on error.  From Derek Price.
37029
37030 2003-07-15  Jim Meyering  <jim@meyering.net>
37031
37032         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
37033
37034 2003-07-14  Simon Josefsson  <jas@extundo.com>
37035
37036         * modules/mempcpy: New file.
37037         * MODULES.html.sh (func_all_modules): Add mempcpy.
37038
37039 2003-07-14  Simon Josefsson  <jas@extundo.com>
37040
37041         * m4/mempcpy.m4: New file.
37042
37043 2003-07-14  Simon Josefsson  <jas@extundo.com>
37044
37045         * lib/mempcpy.h: New file.
37046         * lib/mempcpy.c: New file.
37047
37048 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37049
37050         * modules/getdate, modules/posixtm: Depend on mktime.
37051
37052 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37053
37054         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
37055         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
37056         unicodeio.c, unicodeio.h, unlocked-io.h:
37057         Switch from LGPL to GPL.
37058
37059 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37060
37061         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
37062         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
37063         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
37064         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
37065         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
37066         updated automatically by ../config/srclist-update.  This changes
37067         their license from LPGL to GPL.
37068
37069 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37070
37071         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
37072         assumed to refer to the root of the most recent stable gettext version.
37073         * config/srclistvars.sh: Add defaults for eggert.
37074         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
37075         Match "This program" as well as "The program".  This is needed
37076         for gettext.
37077
37078 2003-07-14  Jim Meyering  <jim@meyering.net>
37079
37080         Don't emit diagnostics.  Let callers do that.
37081         * lib/save-cwd.c: Don't include "error.h".
37082         (save_cwd): Don't call error.  Ensure that errno is valid
37083         when returning nonzero.
37084
37085         * lib/save-cwd.h (restore_cwd): Update prototype.
37086         * lib/save-cwd.c (restore_cwd): Remove two parameters.
37087         Simplify.  Don't call error upon failure.  Let callers do that.
37088         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
37089         when auditing is enabled.  But don't bother updating the #if.
37090
37091 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
37092
37093         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
37094         it breaks C++ compilation.
37095         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
37096
37097 2003-07-10  Simon Josefsson  <jas@extundo.com>
37098
37099         * modules/strchrnul (Makefile.am): Add strchrnul.h.
37100
37101 2003-07-10  Jim Meyering  <jim@meyering.net>
37102
37103         * m4/clock_time.m4: Remove trailing blank.
37104         * m4/intmax_t.m4: Likewise.
37105
37106 2003-07-10  Jim Meyering  <jim@meyering.net>
37107
37108         * lib/vasnprintf.c: Remove trailing blanks.
37109         Make cpp indentation consistent.
37110
37111 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37112
37113         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
37114         posixver.c, strftime.c, strnlen.c, strverscmp.c:
37115         Switch from LGPL to GPL.
37116
37117 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37118
37119         * config/srclist.txt: Sort sublists.  Add
37120         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
37121         that differ from gnulib for one reason or another; we'd like this list
37122         to be smaller but for now let's document what we have.
37123
37124 2003-07-08  Paul Eggert  <eggert@twinsun.com>
37125
37126         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
37127         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
37128         and sweeter "eval x=$x".
37129         * config/srclist.txt: Get lib/argp* from glibc.
37130
37131 2003-07-07  Paul Eggert  <eggert@twinsun.com>
37132
37133         * lib/mktime.c: Fix some boundary cases and remove need for floating
37134         point.
37135
37136         Issue a compile-time diagnostic if time_t is floating point, or if
37137         two's complement arithmetic is not in effect, or if arithmetic
37138         right shift does not propagate the sign.  These assumptions were
37139         all in the original code but they weren't checked.
37140
37141         (TIME_T_MIDPOINT, verify): New macros.
37142         (__isleap): Remove; it has integer overflow problems.
37143         (leapyear): New function, without those problems.
37144         (ydhms_tm_diff): Remove; splitting into two parts.
37145         (ydhms_diff): New function, containing the arithmetic part of
37146         the old ydhms_tm_diff function.  Issue a compile-time
37147         diagnostic if we are not using C99 integer division.
37148         Avoid casts when possible.
37149         (guess_time_tm): New function, containing the checking part of
37150         the old ydhms_tm_diff function.  Return the new value, rather than
37151         the difference between it and the old.  Accept a new argument T
37152         so that *T specifies the old value.  Check for overflow in the result.
37153
37154         (__mktime_internal): Use a time_t offset, not a long int offset.
37155         This undoes the 2003-06-04 change, which is no longer needed now
37156         that we have better overflow checking.
37157         (localtime_offset): Likewise.
37158
37159         (__mktime_internal): Avoid harmful overflow on hosts where time_t
37160         and long are 64-bit but int is only 32-bit.
37161         (ydhms_diff): Use long int to store year1 and yday1.
37162         Issue a compile-time diagnostic if long int is not wide enough.
37163
37164         (__mktime_internal): Use long int to store adjusted year and yday.
37165         Use plain C rather than preprocessor commands, if that doesn't
37166         affect efficiency.
37167         Check for overflow (and try to repair) after each probe
37168         rather than checking only at the very end.  This avoids some bugs
37169         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
37170         does not equal GMT offset at maximum time).
37171         Use integer to check for overflow rather than floating point; this
37172         is more portable to non-IEEE hosts, and is a tad faster.
37173         When we detect that we are oscillating between two values,
37174         don't check whether tm_isdst has the requested value, since
37175         we already know the answer.  When tm_isdst has the wrong value,
37176         use a different heuristic to find the right one, based on the
37177         extreme values actually observed in practice in tz2003a,
37178         rather than the (overly optimistic) "previous 3 calendar quarters".
37179
37180         (not_equal_tm, print_tm, check_result): Use "const T" rather than
37181         "T const" to accommodate glibc style.
37182         (check_result): Use less-confusing report format.  "long" -> "long int.
37183         (main): Likewise.
37184         Don't loop if the iteration overflows time_t.
37185         Allow a negative step in the iteration.
37186
37187 2003-07-06  Karl Berry  <karl@gnu.org>
37188
37189         * config/depcomp: update from automake.
37190         * config/config.sub: update from prep.
37191
37192 2003-07-03  Karl Berry  <karl@gnu.org>
37193
37194         * config/config.guess: update from prep.
37195
37196 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37197
37198         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
37199         xreadlink.c now includes it unconditionally.
37200
37201 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37202
37203         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
37204         having it depend on HAVE_SYS_TYPES_H.
37205
37206 2003-07-01  Bruno Haible  <bruno@clisp.org>
37207
37208         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
37209         <sys/types.h> should be sufficient.
37210         Reported by Paul Eggert.
37211
37212 2003-06-26  Karl Berry  <karl@gnu.org>
37213
37214         * config/depcomp: update from automake.
37215
37216 2003-06-26  Bruno Haible  <bruno@clisp.org>
37217
37218         * modules/human: Depend on module stdbool.
37219
37220 2003-06-25  Bruno Haible  <bruno@clisp.org>
37221
37222         * modules/readlink: New file.
37223         * modules/xreadlink: Depend on it.
37224         * MODULES.html.sh (func_all_modules): Add readlink.
37225
37226 2003-06-25  Bruno Haible  <bruno@clisp.org>
37227
37228         * m4/readlink.m4: New file.
37229
37230 2003-06-25  Bruno Haible  <bruno@clisp.org>
37231
37232         * lib/readlink.c: New file.
37233
37234 2003-06-22  Karl Berry  <karl@gnu.org>
37235
37236         * config/srclist.txt: update mkinstalldirs from automake.
37237         * config/mkinstalldirs: update.
37238
37239 2003-06-22  Bruno Haible  <bruno@clisp.org>
37240
37241         Portability to mingw32.
37242         * m4/ssize_t.m4: New file, from GNU gettext.
37243         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
37244         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
37245
37246 2003-06-22  Bruno Haible  <bruno@clisp.org>
37247
37248         * modules/safe-read: Add m4/ssize_t.m4.
37249         * modules/xreadlink: Add m4/ssize_t.m4.
37250
37251 2003-06-20  Bruno Haible  <bruno@clisp.org>
37252
37253         Assume C89, so PARAMS isn't needed.
37254         * lib/unicodeio.h (PARAMS): Remove.
37255         * lib/unicodeio.c: Don't use PARAMS.
37256
37257 2003-06-18  Karl Berry  <karl@gnu.org>
37258
37259         * config/config.{guess,sub}: update from prep.
37260
37261 2003-06-18  Jim Meyering  <jim@meyering.net>
37262
37263         Merge changes from coreutils.
37264         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
37265         Remove explicit declarations of xmalloc and realloc.
37266         Include xalloc.h.
37267         (read_utmp): Remove anachronistic cast of xmalloc.
37268
37269 2003-06-17  Paul Eggert  <eggert@twinsun.com>
37270
37271         Assume C89, so PARAMS isn't needed.
37272         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
37273         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
37274         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
37275         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
37276         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
37277         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
37278         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
37279         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
37280         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
37281         lib/xstrtod.h, lib/xstrtol.h: Likewise.
37282         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
37283         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
37284         no longer needed. Anyway, config.h should always be included before any
37285         other file.
37286
37287 2003-06-11  Simon Josefsson  <jas@extundo.com>
37288
37289         * modules/sysexits: New file.
37290         * MODULES.html.sh (func_all_modules): Add sysexits.
37291
37292 2003-06-11  Simon Josefsson  <jas@extundo.com>
37293
37294         * lib/sysexit_.h: New file.
37295
37296 2003-06-11  Derek Price  <derek@ximbiot.com>
37297
37298         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
37299         necessary.
37300
37301 2003-06-11  Bruno Haible  <bruno@clisp.org>
37302
37303         * m4/sysexits.m4: New file.
37304
37305 2003-06-10  Simon Josefsson  <jas@extundo.com>
37306
37307         * lib/argp.h: New file, from glibc.
37308         * lib/argp-ba.c: New file, from glibc.
37309         * lib/argp-eexst.c: New file, from glibc.
37310         * lib/argp-fmtstream.c: New file, from glibc.
37311         * lib/argp-fmtstream.h: New file, from glibc.
37312         * lib/argp-fs-xinl.c: New file, from glibc.
37313         * lib/argp-help.c: New file, from glibc.
37314         * lib/argp-namefrob.h: New file, from glibc.
37315         * lib/argp-parse.c: New file, from glibc.
37316         * lib/argp-pv.c: New file, from glibc.
37317         * lib/argp-pvh.c: New file, from glibc.
37318         * lib/argp-xinl.c: New file, from glibc.
37319
37320 2003-06-10  Simon Josefsson  <jas@extundo.com>
37321
37322         * modules/strchrnul: New file.
37323
37324 2003-06-10  Simon Josefsson  <jas@extundo.com>
37325
37326         * modules/argp: New file.
37327
37328 2003-06-10  Simon Josefsson  <jas@extundo.com>
37329
37330         * m4/strchrnul.m4: New file.
37331
37332 2003-06-10  Simon Josefsson  <jas@extundo.com>
37333
37334         * lib/strchrnul.h: New file.
37335         * lib/strchrnul.c: New file.
37336
37337 2003-06-10  Bruno Haible  <bruno@clisp.org>
37338
37339         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
37340
37341 2003-06-07  Karl Berry  <karl@gnu.org>
37342
37343         * config/config.{guess,sub}: update from prep.
37344
37345 2003-06-07  Jim Meyering  <jim@meyering.net>
37346
37347         * modules/strtod: Use $(...) notation, not @...@ for
37348         AC_REPLACE'd variables.
37349         * modules/localcharset: Likewise.
37350
37351 2003-06-07  Jim Meyering  <jim@meyering.net>
37352
37353         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
37354         in place of my name in the copyright comment.
37355         Remove definition and uses of __P.
37356
37357         From coreutils.
37358         * lib/stat.c: Don't declare xmalloc explicitly.
37359         Instead, include "xalloc.h".
37360         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
37361         xrealloc, and xcalloc return values.
37362         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
37363         Improve comment.
37364         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
37365
37366 2003-06-07  Bruno Haible  <bruno@clisp.org>
37367
37368         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
37369         avoid AC_CONFIG_LINKS.
37370         * modules/fnmatch (Makefile.am): Use explicit creation rule for
37371         fnmatch.h, to avoid AC_CONFIG_LINKS.
37372         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
37373
37374 2003-06-07  Bruno Haible  <bruno@clisp.org>
37375
37376         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
37377         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
37378         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37379         directory.
37380         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
37381         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37382         directory.
37383
37384 2003-06-06  Jim Meyering  <jim@meyering.net>
37385
37386         Merge from coreutils.
37387         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
37388         Consolidate declarations and initializations of *_base* locals.
37389
37390         Merge from coreutils.
37391         This avoids a core dump on systems without GNU putenv,
37392         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
37393         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
37394         (unsetenv): New static function, from GNU libc.
37395         (rpl_putenv): Use it.
37396
37397         * lib/modechange.c: Remove trailing blanks.
37398
37399         Merge from coreutils.
37400         * lib/fsusage.c: Remove declaration of statfs.
37401         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
37402
37403         * lib/posixtm.c: Include <stdbool.h> unconditionally.
37404
37405 2003-06-06  Jim Meyering  <jim@meyering.net>
37406
37407         * lib/stdbool_.h: Renamed from stdbool.h.in.
37408
37409 2003-06-06  Jim Meyering  <jim@meyering.net>
37410             Bruno Haible  <bruno@clisp.org>
37411
37412         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
37413         Adjust Makefile.am snippet not to redirect directly to target.
37414         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
37415
37416 2003-06-05  Paul Eggert  <eggert@twinsun.com>
37417
37418         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
37419         mismatch, look in future quarters as well as past.  This fixes a
37420         bug when processing fall-backwards gaps immediately after a long
37421         period of daylight-saving time.
37422
37423         * lib/mktime.c: Assume freestanding C89 or better.
37424         (HAVE_LIMITS_H): Remove.  Assume it's 1.
37425         (__P): Remove; not used.
37426         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
37427         (mktime, not_equal_tm, print_tm, check_result,
37428         main): Use prototypes.  Use const * where appropriate.
37429         (main): Fix typo in testing code that uncovered by above changes.
37430         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
37431
37432 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37433
37434         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
37435         locale.h, localeconv.  This merges changes from coreutils.
37436
37437         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
37438         It can be removed after the next Autoconf is released.
37439         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
37440         needed.
37441
37442 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37443
37444         * lib/mktime.c: Fix Debian bug 177940
37445         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
37446         (localtime_offset): Now long int, not time_t, because we want it
37447         to be guaranteed to be signed.  All uses changed.
37448         (__mktime_internal): If overflow would occur when adding offset,
37449         don't add it.
37450
37451         Merge 'human' changes from coreutils.  Rewrite to support
37452         locale-specific notations like thousands separators.
37453         * lib/human.c: Simplify authorship notice.
37454         Include human.h immediately after config.h.
37455         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
37456         <limits.h>: Do not include, since human.h does.
37457         (SIZE_MAX, UINTMAX_MAX): New macros.
37458         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
37459         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
37460         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
37461         (power_letter): Renamed from suffixes.
37462         (generate_suffix_backwards): Remove.
37463         (adjust_value): Now takes int style (because of human.h changes)
37464         and long double value (for greater precision on some platforms).
37465         (group_number): New function.
37466         (human_readable): Use it.  Use integer options, not enum.
37467         Put the options before the sizes in the arg list.
37468         Support all the new options.
37469         The old human_readable function has been removed;
37470         use inttostr.h instead.
37471         (human_readable, default_block_size, humblock):
37472         Use uintmax_t, not int, for block sizes.
37473         (human_readable_inexact, block_size_types): Remove.
37474         (block_size_opts): New constant.
37475         (human_options): Renamed from human_block_size, with new signature
37476         that allows block sizes up to UINTMAX_MAX.  All callers changed.
37477         * lib/human.h: Add copyright and authorship notice.
37478         Include <limits.h> and <stdbool.h> unconditionally.
37479         (PARAMS): Remove.  All uses removed.
37480         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
37481         (enum human_inexact_style): Remove tag; now a nameless enum.
37482         (human_floor, human_ceiling, human_round_to_even): Now have
37483         values 2, 0, 1 rather than -1, 1, 0.
37484         (human_group_digits, human_suppress_point_zero, human_autoscale,
37485         human_base_1024, human_SI, human_B): New constants.
37486         (human_readable_inexact, human_block_size): Remove.
37487         (human_readable): Size args are now uintmax_t, not int.
37488         (human_options): New decl.
37489
37490         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
37491         unnecessary now that we assume C89 or better.  This change
37492         imported from coreutils.
37493
37494         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37495         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
37496         in the 2003-05-30 sync from glibc.
37497
37498         .h files should stand alone, but we shouldn't include <sys/types.h>
37499         if we can get away with just <stddef.h>.
37500
37501         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
37502         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
37503         rather than <sys/types.h>, as we merely need size_t.
37504         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
37505         to get size_t.
37506         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
37507         Include <stdio.h>, to get FILE.
37508         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
37509         memcasecmp.h has included <stddef.h> and all we need is size_t.
37510         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
37511         our interface, instead of including <sys/types.h>
37512
37513 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37514
37515         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
37516         now, as glibc mktime is buggy on non-glibc systems.
37517
37518 2003-06-03  Karl Berry  <karl@gnu.org>
37519
37520         * config/config.sub: update from prep.
37521
37522 2003-06-02  Paul Eggert  <eggert@twinsun.com>
37523
37524         [from coreutils]
37525         Fix some minor time-related bugs with POSIX time arguments.
37526         Some valid time stamps were being rejected (notably -1, and
37527         time stamps before 1900 on 64-bit hosts).  And some invalid
37528         time stamps were being accepted, e.g. September 31.
37529
37530         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
37531         that we can return (time_t) -1 successfully.
37532         * lib/posixtm.c: Likewise.
37533         [HAVE_STDBOOL_H]: Include <stdbool.h>.
37534         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
37535         (t): Remove static var.
37536         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
37537         of static var.  All uses changed.
37538         (year): Do not reject years before 1900; they can occur with
37539         64-bit time_t.
37540         (posix_time_parse): Do not check for out-of-range components;
37541         that is now the caller's responsibility, since our checks were
37542         only approximations.
37543         (posixtime): Use mktime to check for out-of-range components,
37544         since it knows them exactly.
37545         If mktime returns (time_t) -1, check whether an error actually occurred
37546         by invoking localtime on -1.
37547         (main) [TEST_POSIXTIME]: Check for input data errors, and report
37548         posixtime failures better.
37549         Improve the test data (in comments only).
37550
37551 2003-06-02  Karl Berry  <karl@gnu.org>
37552
37553         * config/mkinstalldirs (version): new variable.
37554         (--version): new option.
37555         (usage): improve message.
37556
37557 2003-05-30  Karl Berry  <karl@gnu.org>
37558
37559         * lib/mktime.c: update from libc.
37560
37561 2003-05-30  Bruno Haible  <bruno@clisp.org>
37562
37563         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
37564         * config/config.rpath: Upgrade to gettext-0.12.1.
37565
37566 2003-05-30  Bruno Haible  <bruno@clisp.org>
37567
37568         * m4/gettext.m4: Upgrade to gettext-0.12.1.
37569         * m4/nls.m4: New file, from gettext-0.12.1.
37570         * m4/po.m4: New file, from gettext-0.12.1.
37571         * m4/progtest.m4: Upgrade to gettext-0.12.1.
37572
37573 2003-05-30  Bruno Haible  <bruno@clisp.org>
37574
37575         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
37576         * lib/localcharset.h: Likewise.
37577         * lib/localcharset.c: Likewise.
37578
37579 2003-05-29  Karl Berry  <karl@gnu.org>
37580
37581         * config/config.rpath: update from gettext.
37582
37583 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37584
37585         Assume the headers required for C89 freestanding compilers.
37586         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
37587         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
37588         * m4/human.m4 (gl_HUMAN): Likewise.
37589         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
37590         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
37591         * m4/userspec.m4 (gl_USERSPEC): Likewise.
37592         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
37593         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
37594         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
37595
37596 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37597
37598         Assume the headers required for C89 freestanding compilers.
37599         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
37600         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
37601         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
37602         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
37603         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
37604         define, since <limits.h> is guaranteed to do that.
37605         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
37606         * lib/exclude.c: Include <stdbool.h> unconditionally.
37607         * lib/tempname.c: Include <stddef.h> unconditionally.
37608         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
37609         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
37610         <stddef.h> does that.
37611         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
37612         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
37613         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
37614         needed.
37615         * lib/xstrtol.c: Likewise.
37616         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
37617         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
37618
37619         * lib/addext.c (addext): Use assignment rather than cast, to avoid
37620         warnings on some platforms.
37621
37622         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37623         arbitrarily.
37624
37625 2003-05-26  Jim Meyering  <jim@meyering.net>
37626
37627         Merge in a change from coreutils:
37628         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
37629         that is guaranteed to be `no'.  Use `no_such_member' to indicate
37630         that condition, rather than `-1' which is slightly misleading.
37631         Change the name of the cache variable to have the gl_ prefix.
37632         Prompted by a patch from Richard Dawe for DJGPP.
37633
37634 2003-05-24  Karl Berry  <karl@gnu.org>
37635
37636         * config/config.guess: update from prep.
37637
37638 2003-05-22  Karl Berry  <karl@gnu.org>
37639
37640         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
37641
37642 2003-05-20  Karl Berry  <karl@gnu.org>
37643
37644         * config/config.guess: update from prep.
37645
37646 2003-05-18  Karl Berry  <karl@gnu.org>
37647
37648         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
37649         might actually be set by the user.
37650
37651         * config/depcomp, install-sh, mdate-sh: update from automake.
37652
37653 2003-05-17  Bruno Haible  <bruno@clisp.org>
37654
37655         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
37656         invalid expansion for AC_EGREP_CPP.
37657         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
37658         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
37659         Suggested by Akim Demaille <akim@epita.fr> in
37660         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
37661
37662 2003-05-12  Jim Meyering  <jim@meyering.net>
37663
37664         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
37665         the space-padded-by-default conversion specifiers, %e, %k, %l.
37666
37667 2003-05-12  Bruno Haible  <bruno@clisp.org>
37668
37669         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
37670         the string is longer than 4 KB.
37671
37672 2003-05-11  Karl Berry  <karl@gnu.org>
37673
37674         * config/config.{guess,sub}: update from prep.
37675
37676 2003-05-09  Bruno Haible  <bruno@clisp.org>
37677
37678         * modules/error: Add m4/strerror_r.m4 to file list.
37679
37680 2003-05-03  Bruno Haible  <bruno@clisp.org>
37681
37682         Upgrade to Unicode-4.0.
37683         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
37684         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
37685         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
37686         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
37687         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
37688         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
37689         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
37690         Change width of U+E0100..U+E01EF from 1 to 0.
37691
37692 2003-04-25  Jim Meyering  <jim@meyering.net>
37693
37694         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
37695         of type size_t, not int.
37696
37697 2003-04-25  Bruno Haible  <bruno@clisp.org>
37698
37699         * lib/copy-file.c: Include <stddef.h>, for size_t.
37700
37701 2003-04-21  Paul Eggert  <eggert@twinsun.com>
37702
37703         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
37704         code which expansion is under static control.  Patch imported from
37705         Akim Demaille's patch to Bison; see
37706         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
37707
37708 2003-04-14  Bruno Haible  <bruno@clisp.org>
37709
37710         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
37711
37712 2003-04-11  Jim Meyering  <jim@meyering.net>
37713
37714         Merge changes from Coreutils.
37715
37716         2003-03-22  Jim Meyering  <jim@meyering.net>
37717
37718         * lib/strftime.c (widen): Cast alloca return value to proper type.
37719
37720         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
37721
37722         From GNU libc.
37723         * lib/strftime.c (my_strftime): Handle very large width
37724         specifications for numeric values correctly.  Improve checks for
37725         overflow.
37726
37727         2003-01-19  Jim Meyering  <jim@meyering.net>
37728
37729         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
37730         definitions.
37731         (nl_get_alt_digit) [! defined my_strftime]: Define.
37732         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
37733         _nl_get_alt_digit and _nl_get_walt_digit.
37734
37735         * lib/strftime.c (my_strftime): Merge in locale-related changes from
37736         libc. These changes have no effect outside of _LIBC.
37737
37738 2003-04-10  Bruno Haible  <bruno@clisp.org>
37739
37740         * modules/findprog: New file.
37741         * MODULES.html.sh (func_all_modules): Add it.
37742
37743 2003-04-10  Bruno Haible  <bruno@clisp.org>
37744
37745         * m4/findprog.m4: New file.
37746         * m4/eaccess.m4: New file.
37747
37748 2003-04-10  Bruno Haible  <bruno@clisp.org>
37749
37750         * lib/findprog.h: New file, from GNU gettext.
37751         * lib/findprog.c: New file, from GNU gettext.
37752
37753 2003-04-05  Jim Meyering  <jim@meyering.net>
37754
37755         Merge changes from Coreutils.
37756
37757         * lib/exclude.h (PARAMS): Remove definition and uses.
37758         * lib/exclude.c: Remove uses of `PARAMS'.
37759
37760         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
37761         Add test-cases for DOS filenames. Declare program_name.
37762         (main): Set up program_name.  Patch by Rich Dawe.
37763
37764         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
37765         error from mntctl.
37766         Use mntctl's return value to drive the entry-processing loop, since
37767         we can't rely on the value of the vmt_length member in the last
37768         entry.  On some systems doing so could result in exhausting
37769         virtual memory.  Based in part on a patch from Mike Jetzer.
37770
37771 2003-04-04  Bruno Haible  <bruno@clisp.org>
37772
37773         * modules/linebreak: New file.
37774         * MODULES.html.sh (func_all_modules): Add it.
37775
37776 2003-04-04  Bruno Haible  <bruno@clisp.org>
37777
37778         * m4/linebreak.m4: New file.
37779
37780 2003-04-04  Bruno Haible  <bruno@clisp.org>
37781
37782         * lib/linebreak.h: New file, from GNU gettext.
37783         * lib/linebreak.c: New file, from GNU gettext with slight
37784         modifications.
37785         * lib/lbrkprop.h: New file, from GNU gettext.
37786
37787 2003-04-03  Bruno Haible  <bruno@clisp.org>
37788
37789         * modules/utf8-ucs4: New file.
37790         * modules/utf16-ucs4: New file.
37791         * modules/ucs4-utf8: New file.
37792         * modules/ucs4-utf16: New file.
37793         * MODULES.html.sh (func_all_modules): Add them.
37794
37795 2003-04-03  Bruno Haible  <bruno@clisp.org>
37796
37797         * m4/utf-ucs4.m4: New file.
37798         * m4/ucs4-utf.m4: New file.
37799
37800 2003-04-03  Bruno Haible  <bruno@clisp.org>
37801
37802         * lib/utf8-ucs4.h: New file, from GNU gettext.
37803         * lib/utf16-ucs4.h: New file, from GNU gettext.
37804         * lib/ucs4-utf8.h: New file, from GNU gettext.
37805         * lib/ucs4-utf16.h: New file, from GNU gettext.
37806
37807 2003-04-02  Bruno Haible  <bruno@clisp.org>
37808
37809         * modules/binary-io: New file.
37810         * MODULES.html.sh (func_all_modules): Add it.
37811
37812 2003-04-02  Bruno Haible  <bruno@clisp.org>
37813
37814         * lib/binary-io.h: New file, from GNU gettext.
37815
37816 2003-04-01  Bruno Haible  <bruno@clisp.org>
37817
37818         * modules/pathname: New file.
37819         * MODULES.html.sh (func_all_modules): Add it.
37820
37821 2003-04-01  Bruno Haible  <bruno@clisp.org>
37822
37823         * lib/pathname.h: New file, from GNU gettext.
37824         * lib/concatpath.c: New file, from GNU gettext.
37825
37826 2003-03-30  Bruno Haible  <bruno@clisp.org>
37827
37828         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
37829
37830 2003-03-30  Bruno Haible  <bruno@clisp.org>
37831
37832         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
37833         function chown() doesn't exist.
37834
37835 2003-03-28  Bruno Haible  <bruno@clisp.org>
37836
37837         * modules/copy-file: New file.
37838         * MODULES.html.sh (func_all_modules): Add it.
37839
37840 2003-03-28  Bruno Haible  <bruno@clisp.org>
37841
37842         * m4/copy-file.m4: New file.
37843
37844 2003-03-28  Bruno Haible  <bruno@clisp.org>
37845
37846         * lib/copy-file.h: New file, from GNU gettext.
37847         * lib/copy-file.c: New file, from GNU gettext.
37848
37849 2003-03-18  Jim Meyering  <jim@meyering.net>
37850
37851         * lib/quote.c (quote_n): Fix typo in comment.
37852
37853 2003-03-18  Bruno Haible  <bruno@clisp.org>
37854
37855         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
37856         checking.
37857         * m4/onceonly_2_57.m4: Likewise.
37858
37859 2003-03-17  Bruno Haible  <bruno@clisp.org>
37860
37861         * m4/onceonly.m4: Require autoconf 2.54 or newer.
37862         (m4_quote): Remove macro.
37863         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
37864
37865 2003-03-14  Jim Meyering  <jim@meyering.net>
37866
37867         Merge changes from Coreutils.
37868         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
37869         to be const, in order to avoid warnings.
37870         (obstack_room): Likewise.
37871         (obstack_empty_p): Likewise.
37872
37873 2003-03-14  Bruno Haible  <bruno@clisp.org>
37874
37875         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
37876         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
37877
37878 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37879
37880         Merge changes from Bison.
37881         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
37882         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
37883         when compiling Bison 1.875's `bitset bset = obstack_alloc
37884         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
37885         * lib/hash.c: Include <stdbool.h> unconditionally.
37886
37887 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37888
37889         * m4/onceonly.m4 (m4_quote): New macro.
37890         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
37891         Quote AC_FOREACH variable-expansions properly.
37892
37893 2003-03-13  Paul Eggert  <eggert@twinsun.com>
37894
37895         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
37896
37897 2003-03-09  Paul Eggert  <eggert@twinsun.com>
37898
37899         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
37900         Reported by Bruce Becker; see:
37901         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
37902
37903 2003-03-03  Paul Eggert  <eggert@twinsun.com>
37904             Bruno Haible  <bruno@clisp.org>
37905
37906         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
37907         Reported by John Hughes, see
37908         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
37909
37910 2003-02-20  Bruno Haible  <bruno@clisp.org>
37911
37912         * MODULES.html.sh (func_all_modules): Add poll.
37913
37914 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37915
37916         * modules/poll: New file.
37917
37918 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37919
37920         * lib/poll_.h: New file.
37921         * lib/poll.c: New file.
37922
37923 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
37924
37925         * m4/poll.m4: New file.
37926
37927 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37928
37929         * modules/mathl: New file.
37930
37931 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37932
37933         * lib/mathl.h: New file.
37934         * lib/acosl.c: New file.
37935         * lib/asinl.c: New file.
37936         * lib/atanl.c: New file.
37937         * lib/ceill.c: New file.
37938         * lib/cosl.c: New file.
37939         * lib/expl.c: New file.
37940         * lib/floorl.c: New file.
37941         * lib/frexpl.c: New file.
37942         * lib/ldexpl.c: New file.
37943         * lib/logl.c: New file.
37944         * lib/sincosl.c: New file.
37945         * lib/sinl.c: New file.
37946         * lib/sqrtl.c: New file.
37947         * lib/tanl.c: New file.
37948         * lib/trigl.c: New file.
37949         * lib/trigl.h: New file.
37950
37951 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
37952
37953         * m4/mathl.m4: New file.
37954
37955 2003-02-18  Bruno Haible  <bruno@clisp.org>
37956
37957         * MODULES.html.sh (func_all_modules): Add mathl.
37958
37959 2003-02-17  Bruno Haible  <bruno@clisp.org>
37960
37961         * modules/mkdtemp: New module.
37962         * MODULES.html.sh (func_all_modules): Add it.
37963
37964 2003-02-17  Bruno Haible  <bruno@clisp.org>
37965
37966         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
37967
37968 2003-02-17  Bruno Haible  <bruno@clisp.org>
37969
37970         * lib/mkdtemp.h: New file, from GNU gettext.
37971         * lib/mkdtemp.c: New file, from GNU gettext.
37972
37973 2003-02-02  Jim Meyering  <jim@meyering.net>
37974
37975         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
37976         e.g. glibc-2.2.93.
37977
37978 2003-01-31  Bruno Haible  <bruno@clisp.org>
37979
37980         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
37981         'rpl_rename'.
37982         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
37983         'rpl_strnlen'.
37984         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
37985         'rpl_strtod'.
37986         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
37987         'rpl_utime'.
37988
37989 2003-01-31  Bruno Haible  <bruno@clisp.org>
37990
37991         * lib/rename.c: #undef rename before defining rpl_rename.
37992         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
37993
37994 2003-01-30  Bruno Haible  <bruno@clisp.org>
37995
37996         * modules/vasnprintf, modules/vasprintf: New modules.
37997         * MODULES.html.sh (func_all_modules): Add them.
37998
37999 2003-01-30  Bruno Haible  <bruno@clisp.org>
38000
38001         * m4/signed.m4: New file, from GNU gettext.
38002         * m4/longdouble.m4: New file, from GNU gettext.
38003         * m4/wchar_t.m4: New file, from GNU gettext.
38004         * m4/wint_t.m4: New file, from GNU gettext.
38005         * m4/vasnprintf.m4: New file.
38006         * m4/vasprintf.m4: New file.
38007
38008 2003-01-30  Bruno Haible  <bruno@clisp.org>
38009
38010         * lib/printf-args.h: New file, from GNU gettext.
38011         * lib/printf-args.c: New file, from GNU gettext.
38012         * lib/printf-parse.h: New file, from GNU gettext.
38013         * lib/printf-parse.c: New file, from GNU gettext.
38014         * lib/vasnprintf.h: New file, from GNU gettext.
38015         * lib/vasnprintf.c: New file, from GNU gettext.
38016         * lib/asnprintf.c: New file, from GNU gettext.
38017         * lib/vasprintf.h: New file, from GNU gettext with modifications.
38018         * lib/vasprintf.c: New file, from GNU gettext.
38019         * lib/asprintf.c: New file, from GNU gettext.
38020
38021 2003-01-29  Bruno Haible  <bruno@clisp.org>
38022
38023         * modules/stpncpy: New module.
38024         * MODULES.html.sh (func_all_modules): Add it.
38025
38026 2003-01-29  Bruno Haible  <bruno@clisp.org>
38027
38028         * m4/stpncpy.m4: New file.
38029
38030 2003-01-29  Bruno Haible  <bruno@clisp.org>
38031
38032         * lib/stpncpy.h: New file, from GNU gettext with modifications.
38033         * lib/stpncpy.c: New file, from GNU gettext with modifications.
38034
38035 2003-01-28  Bruno Haible  <bruno@clisp.org>
38036
38037         * modules/c-ctype: New module.
38038         * MODULES.html.sh (func_all_modules): Add it.
38039
38040 2003-01-28  Bruno Haible  <bruno@clisp.org>
38041
38042         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
38043         Paul Eggert.
38044         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
38045         Paul Eggert.
38046
38047 2003-01-27  Bruno Haible  <bruno@clisp.org>
38048
38049         * modules/xsetenv: New module.
38050         * MODULES.html.sh (func_all_modules): Add it.
38051
38052 2003-01-27  Bruno Haible  <bruno@clisp.org>
38053
38054         * lib/xsetenv.h: New file, from GNU gettext.
38055         * lib/xsetenv.c: New file, from GNU gettext.
38056
38057 2003-01-23  Jim Meyering  <jim@meyering.net>
38058
38059         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
38060         from working on systems without dirfd (at least Irix and OSF1/Tru64).
38061
38062 2003-01-23  Bruno Haible  <bruno@clisp.org>
38063
38064         * modules/minmax: New module.
38065         * MODULES.html.sh (func_all_modules): Add it.
38066
38067 2003-01-23  Bruno Haible  <bruno@clisp.org>
38068
38069         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
38070         Eggert.
38071
38072 2003-01-22  Bruno Haible  <bruno@clisp.org>
38073
38074         * modules/exit: New module.
38075         * MODULES.html.sh (func_all_modules): Add it.
38076
38077 2003-01-22  Bruno Haible  <bruno@clisp.org>
38078
38079         * lib/exit.h: New file, from GNU gettext.
38080
38081 2003-01-19  Bruno Haible  <bruno@clisp.org>
38082
38083         * gnulib-tool: Recognize option --extract-maintainer.
38084         (func_get_maintainer): New function.
38085         * modules/*: Add Maintainer entry.
38086
38087 2003-01-16  Jim Meyering  <jim@meyering.net>
38088
38089         * m4/regex.m4: The `regex' struct is both input and output.
38090         Initialize it before each use.  Patch by Tim Waugh.
38091
38092 2003-01-16  Bruno Haible  <bruno@clisp.org>
38093
38094         * MODULES.html.sh: Add a table of contents. Add the module name as
38095         leftmost column. Add hyperlinks.
38096
38097 2003-01-15  Bruno Haible  <bruno@clisp.org>
38098
38099         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
38100
38101 2003-01-15  Bruno Haible  <bruno@clisp.org>
38102
38103         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
38104         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
38105         suffix.
38106
38107 2003-01-15  Bruno Haible  <bruno@clisp.org>
38108
38109         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
38110
38111 2003-01-15  Bruno Haible  <bruno@clisp.org>
38112
38113         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
38114         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
38115
38116 2003-01-14  Jim Meyering  <jim@meyering.net>
38117
38118         * lib/same.c (same_name): Tweak a comment.
38119
38120 2003-01-14  Bruno Haible  <bruno@clisp.org>
38121
38122         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
38123         when a string comparison is sufficient.
38124
38125 2003-01-14  Bruno Haible  <bruno@clisp.org>
38126
38127         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
38128         'unsigned int'.
38129
38130 2003-01-14  Bruno Haible  <bruno@clisp.org>
38131
38132         * lib/hash-pjw.c: Add comment about low quality of this function.
38133
38134 2003-01-13  Bruno Haible  <bruno@clisp.org>
38135
38136         * modules/stpcpy: Distribute lib/stpcpy.h.
38137         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
38138
38139 2003-01-13  Bruno Haible  <bruno@clisp.org>
38140
38141         * modules/*: Add a description.
38142         * modules/strpbrk: Fix Makefile.am snippet.
38143         * modules/strtoimax: Fix dependencies.
38144         * modules/strtoumax: Likewise.
38145
38146 2003-01-13  Bruno Haible  <bruno@clisp.org>
38147
38148         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
38149         * modules/alloca (Makefile.am): All object files depend on alloca.h.
38150         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
38151
38152 2003-01-13  Bruno Haible  <bruno@clisp.org>
38153
38154         * gnulib-tool (func_create_testdir): Store config/* files in the main
38155         directory.
38156         * config.rpath: Move to ...
38157         * config/config.rpath: ... here.
38158         * modules/gettext: Contains config/config.rpath, not config.rpath.
38159         * modules/iconv: Likewise.
38160
38161 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38162
38163         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38164         to avoid collisions with libcurses and libreadline.
38165
38166         * m4/getstr.m4: Remove.
38167         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
38168
38169 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38170
38171         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38172         to avoid collisions with libcurses and libreadline.
38173
38174         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
38175         * lib/getstr.h, getstr.c: Remove.
38176         * lib/getline.c: Include "getline.h", to check interface.
38177         Move body of old getstr.c here: this defines MIN_CHUNK and
38178         declares getdelim2, which is renamed from getstr.
38179         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
38180
38181         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
38182         All uses changed.
38183         * lib/linebuffer.h: Likewise.
38184         (readline): Remove backward-compatibility macro.
38185
38186 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38187
38188         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38189         to avoid collisions with libcurses and libreadline.
38190         * getstr: Remove.
38191         * MODULES.html.sh: Remove getstr.
38192         * modules/getline: Depend on unlocked-io, not getstr.
38193
38194 2003-01-12  Jim Meyering  <jim@meyering.net>
38195
38196         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
38197
38198 2003-01-10  Bruno Haible  <bruno@clisp.org>
38199
38200         * modules/alloca: Change Makefile.am requirements. Simplify Include
38201         requirements. Add lib/alloca_.h to file list.
38202
38203 2003-01-10  Bruno Haible  <bruno@clisp.org>
38204
38205         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
38206
38207 2003-01-10  Bruno Haible  <bruno@clisp.org>
38208
38209         * lib/alloca_.h: New file.
38210         * lib/getdate.y: Unconditionally include alloca.h.
38211         * lib/makepath.c: Likewise.
38212         * lib/setenv.c: Likewise.
38213         * lib/userspec.c: Likewise.
38214
38215 2003-01-09  Karl Berry  <karl@gnu.org>
38216
38217         * MODULES.html.sh: include `dirname $0` in PATH, to find
38218         gnulib-tool.
38219
38220 2003-01-09  Bruno Haible  <bruno@clisp.org>
38221
38222         * modules/stdbool: Change configure.ac, Makefile.am requirements.
38223         Simplify Include requirements. Add lib/stdbool.h.in to file list.
38224
38225 2003-01-09  Bruno Haible  <bruno@clisp.org>
38226
38227         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
38228
38229 2003-01-09  Bruno Haible  <bruno@clisp.org>
38230
38231         * lib/stdbool.h.in: New file.
38232
38233 2003-01-09  Bruno Haible  <bruno@clisp.org>
38234
38235         * gnulib-tool (func_all_modules): Ignore files ending in ~.
38236         * MODULES.html.sh: Likewise.
38237
38238 2003-01-08  Jim Meyering  <jim@meyering.net>
38239
38240         * lib/full-write.c: Undefine and define-away `const' after inclusion
38241         of errno.h, not before.  Suggestion from Bruno Haible.
38242
38243 2003-01-08  Bruno Haible  <bruno@clisp.org>
38244
38245         * modules/full-read: Depend on full-write.
38246
38247 2003-01-08  Bruno Haible  <bruno@clisp.org>
38248
38249         * lib/safe-read.c: Include specification header first, to ensure its
38250         selfcontainedness.
38251         * lib/full-write.c: Likewise.
38252
38253 2003-01-07  Jim Meyering  <jim@meyering.net>
38254
38255         * lib/full-write.c: Rework so that it may serve to define full_read,
38256         too.
38257         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
38258
38259 2003-01-07  Bruno Haible  <bruno@clisp.org>
38260
38261         * lib/strtoimax.c: Include <stdint.h> as an alternative to
38262         <inttypes.h>.
38263         * lib/xstrtol.h: Likewise.
38264         * lib/xstrtoimax.c: Likewise.
38265         * lib/xstrtoumax.c: Likewise.
38266         * lib/human.h: Likewise.
38267
38268         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
38269         on systems that have <inttypes.h> but not <stdint.h>.
38270
38271 2003-01-07  Bruno Haible  <bruno@clisp.org>
38272
38273         * MODULES.html.sh: Add copyright notice.
38274         (missed_files): Omit CVS directory entries.
38275         (func_module): Make it work with sed-3.02.
38276         * MODULES.txt: Remove file.
38277
38278 2003-01-06  Jim Meyering  <jim@meyering.net>
38279
38280         * lib/version-etc.c: Update year in translatable copyright string.
38281
38282 2003-01-03  Karl Berry  <karl@gnu.org>
38283
38284         * config/config.{guess,sub}: update from prep.
38285
38286 2003-01-02  Karl Berry  <karl@gnu.org>
38287
38288         * doc/COPYING.DOC: belatedly updated to 1.2.
38289
38290 2003-01-01  Karl Berry  <karl@gnu.org>
38291
38292         * gnulib-tool (func_verify_module): report module name $module in
38293         error message, not $1.
38294         * gnulib-tool (create-testdir): don't complain if destdir couldn't
38295         be created, only if it doesn't exist.
38296         * gnulib-tool (last_checkin_date): don't expand the $Date here.
38297
38298 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38299
38300         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
38301
38302 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38303
38304         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
38305         memcmp if strcoll doesn't work.
38306
38307 2002-12-31  Bruno Haible  <bruno@clisp.org>
38308
38309         * lib/utime.c (utime_null): No need to call ftruncate if the file was
38310         nonempty.
38311
38312 2002-12-31  Bruno Haible  <bruno@clisp.org>
38313
38314         * lib/memcoll.c (STRCOLL): New macro.
38315         (memcoll): Use it.
38316
38317 2002-12-31  Bruno Haible  <bruno@clisp.org>
38318
38319         * lib/localcharset.h: New file.
38320         * lib/localcharset.c: Include it.
38321         * lib/unicodeio.c: Likewise.
38322
38323 2002-12-31  Bruno Haible  <bruno@clisp.org>
38324
38325         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
38326         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
38327
38328 2002-12-31  Bruno Haible  <bruno@clisp.org>
38329
38330         * lib/getline.h: Include <stddef.h>, for size_t.
38331
38332         * lib/unicodeio.h: Include <stddef.h>, for size_t.
38333         * lib/unicodeio.c: Don't include <stddef.h>.
38334
38335 2002-12-31  Bruno Haible  <bruno@clisp.org>
38336
38337         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
38338         HAVE_TM_ZONE.
38339
38340 2002-12-24  Karl Berry  <karl@gnu.org>
38341
38342         * config/config.guess: update from prep.
38343
38344 2002-12-24  Bruno Haible  <bruno@clisp.org>
38345
38346         General infrasructure.
38347         * m4/README: Rewritten.
38348         * m4/onceonly.m4: New file.
38349         * m4/onceonly_2_57.m4: New file.
38350
38351         Module atexit.
38352         * m4/atexit.m4: New file.
38353
38354         Module strtod.
38355         * m4/strtod.m4: New file.
38356
38357         Module strtol.
38358         * m4/strtol.m4: New file.
38359
38360         Module strtoul.
38361         * m4/strtoul.m4: New file.
38362
38363         Module memchr.
38364         * m4/memchr.m4: New file.
38365
38366         Module memcmp.
38367         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
38368         (jm_FUNC_MEMCMP): Invoke it.
38369
38370         Module memcpy.
38371         * m4/memcpy.m4: New file.
38372
38373         Module memmove.
38374         * m4/memmove.m4: New file.
38375
38376         Module memset.
38377         * m4/memset.m4: New file.
38378
38379         Module strcspn.
38380         * m4/strcspn.m4: New file.
38381
38382         Module strpbrk.
38383         * m4/strpbrk.m4: New file.
38384
38385         Module strstr.
38386         * m4/strstr.m4: New file.
38387
38388         Module strerror.
38389         * m4/strerror.m4: New file.
38390
38391         Module mktime.
38392         * m4/mktime.m4: Renamed from jm-mktime.m4.
38393         (gl_PREREQ_MKTIME): New macro.
38394         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
38395
38396         Module malloc.
38397         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
38398         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
38399         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
38400
38401         Module realloc.
38402         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
38403         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
38404         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
38405
38406         Module strftime.
38407         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
38408         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
38409         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
38410         gl_TM_GMTOFF.
38411         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
38412
38413         Module xalloc.
38414         * m4/xalloc.m4: New file.
38415
38416         Module alloca.
38417         * m4/alloca.m4: New file.
38418
38419         Module putenv.
38420         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
38421         (jm_FUNC_PUTENV): Invoke it.
38422
38423         Module setenv.
38424         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
38425         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
38426         when invoked twice.
38427         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
38428         gt_FUNC_SETENV.
38429
38430         Module memrchr.
38431         * m4/memrchr.m4: New file.
38432
38433         Module stpcpy.
38434         * m4/stpcpy.m4: New file.
38435
38436         Module strcase.
38437         * m4/strcase.m4: New file.
38438
38439         Module strdup.
38440         * m4/strdup.m4: New file.
38441
38442         Module strnlen.
38443         * m4/strnlen.m4: New file.
38444
38445         Module strndup.
38446         * m4/strndup.m4: New file.
38447
38448         Module xstrtod.
38449         * m4/xstrtod.m4: New file.
38450
38451         Module xstrtol.
38452         * m4/xstrtol.m4: New file.
38453
38454         Module getdate.
38455         * m4/getdate.m4: New file.
38456
38457         Module unlocked-io.
38458         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
38459         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
38460         * m4/jm-glibc-io.m4n: Remove file.
38461
38462         Module long-options.
38463         * m4/long-options.m4: New file.
38464
38465         Module md5.
38466         * m4/md5.m4: New file.
38467
38468         Module sha.
38469         * m4/sha.m4: New file.
38470
38471         Module getstr.
38472         * m4/getstr.m4: New file.
38473
38474         Module getline.
38475         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
38476         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
38477         <sys/types.h>, for size_t. Use the function name gnu_getline, not
38478         simply getline. Infoke gl_PREREQ_GETLINE.
38479
38480         Module obstack.
38481         * m4/obstack.m4: New file.
38482
38483         Module hash.
38484         * m4/hash.m4: New file.
38485
38486         Module readtokens.
38487         * m4/readtokens.m4: New file.
38488
38489         Module strverscmp.
38490         * m4/strverscmp.m4: New file.
38491
38492         Module stdbool.
38493         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
38494         OSF/1.
38495
38496         Module strtoll.
38497         * m4/strtoll.m4: New file.
38498
38499         Module strtoull.
38500         * m4/strtoull.m4: New file.
38501
38502         Module strtoimax.
38503         * m4/strtoimax.m4: New file.
38504
38505         Module strtoumax.
38506         * m4/strtoumax.m4: New file.
38507
38508         Module xstrtoimax.
38509         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
38510         jm_AC_PREREQ_XSTRTOIMAX.
38511         Moved the strtol prerequisites to strtol.m4.
38512         Moved the strtoll prerequisites to strtoll.m4.
38513         Moved the strtoimax prerequisites to strtoimax.m4.
38514
38515         Module xstrtoumax.
38516         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
38517         jm_AC_PREREQ_XSTRTOUMAX.
38518         Moved the strtoul prerequisites to strtoul.m4.
38519         Moved the strtoull prerequisites to strtoull.m4.
38520         Moved the strtoumax prerequisites to strtoumax.m4.
38521
38522         Module chown.
38523         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
38524         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
38525
38526         Module dup2.
38527         * m4/dup2.m4: New file.
38528
38529         Module ftruncate.
38530         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
38531         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
38532
38533         Module getgroups.
38534         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
38535         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
38536
38537         Module gettimeofday.
38538         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
38539         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
38540         gl_PREREQ_GETTIMEOFDAY.
38541
38542         Module mkdir.
38543         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
38544         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
38545
38546         Module mkstemp.
38547         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
38548         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
38549         jm_AC_TYPE_UINTMAX_T.
38550         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
38551
38552         Module stat.
38553         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
38554         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
38555
38556         Module lstat.
38557         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
38558         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
38559
38560         Module timespec.
38561         * m4/timespec.m4 (gl_TIMESPEC): New macro.
38562         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
38563         * m4/st_mtim.m4: Indentation.
38564
38565         Module nanosleep.
38566         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
38567         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
38568         gl_PREREQ_NANOSLEEP.
38569
38570         Module regex.
38571         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
38572         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
38573         (gl_REGEX): New macro.
38574
38575         Module rename.
38576         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
38577         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
38578
38579         Module rmdir.
38580         * m4/rmdir.m4: New file.
38581
38582         Module utime.
38583         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
38584         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
38585         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
38586
38587         Module dirname.
38588         * m4/dirname.m4: New file.
38589
38590         Module getopt.
38591         * m4/getopt.m4: New file.
38592
38593         Module unistd-safer.
38594         * m4/unistd-safer.m4: New file.
38595
38596         Module fnmatch.
38597         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
38598         declaration.
38599         (gl_PREREQ_FNMATCH_EXTRA): New macro.
38600         (gl_FUNC_FNMATCH_POSIX): New macro.
38601         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
38602         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
38603         simply fnmatch.
38604
38605         Module exclude.
38606         * m4/exclude.m4: New file.
38607
38608         Module human.
38609         * m4/human.m4: New file.
38610
38611         Module acl.
38612         * m4/acl.m4: Nop.
38613
38614         Module backupfile.
38615         * m4/backupfile.m4: New file.
38616         * m4/d-ino.m4: Indentation.
38617
38618         Module fsusage.
38619         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
38620         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
38621         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
38622
38623         Module dirfd.
38624         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
38625         requirements.
38626
38627         Module euidaccess.
38628         * m4/euidaccess.m4: New file.
38629
38630         Module file-type.
38631         * m4/file-type.m4: New file.
38632
38633         Module fileblocks.
38634         * m4/fileblocks.m4: New file.
38635
38636         Module filemode.
38637         * m4/filemode.m4: New file.
38638
38639         Module isdir.
38640         * m4/isdir.m4: New file.
38641
38642         Module lchown.
38643         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
38644         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
38645
38646         Module makepath.
38647         * m4/makepath.m4: New file.
38648
38649         Module modechange.
38650         * m4/modechange.m4: New file.
38651
38652         Module mountlist.
38653         * m4/mountlist.m4: New file.
38654         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
38655         Indentation.
38656
38657         Module path-concat.
38658         * m4/path-concat.m4: New file.
38659
38660         Module pathmax.
38661         * m4/pathmax.m4: New file.
38662
38663         Module same.
38664         * m4/same.m4: New file.
38665
38666         Module save-cwd.
38667         * m4/save-cwd.m4: New file.
38668
38669         Module savedir.
38670         * m4/savedir.m4: New file.
38671
38672         Module xgetcwd.
38673         * m4/xgetcwd.m4: New file.
38674         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
38675
38676         Module xreadlink.
38677         * m4/xreadlink.m4: New file.
38678
38679         Module safe-read.
38680         * m4/safe-read.m4: New file.
38681
38682         Module safe-write.
38683         * m4/safe-write.m4: New file.
38684
38685         Module closeout.
38686         * m4/closeout.m4: New file.
38687
38688         Module stdio-safer.
38689         * m4/stdio-safer.m4: New file.
38690
38691         Module getpass.
38692         * m4/getpass.m4: New file.
38693
38694         Module getugroups.
38695         * m4/getugroups.m4: New file.
38696
38697         Module group-member.
38698         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
38699         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
38700
38701         Module idcache.
38702         * m4/idcache.m4: New file.
38703
38704         Module userspec.
38705         * m4/userspec.m4: New file.
38706
38707         Module gettime.
38708         * m4/clock_time.m4: New file.
38709         * m4/gettime.m4: New file.
38710
38711         Module settime.
38712         * m4/settime.m4: New file.
38713
38714         Module posixtm.
38715         * m4/posixtm.m4: New file.
38716
38717         Module gethostname.
38718         * m4/gethostname.m4: New file.
38719
38720         Module canon-host.
38721         * m4/canon-host.m4: New file.
38722
38723         Module gettext.
38724         * m4/codeset.m4: New file, from gettext-0.11.5.
38725         * m4/gettext.m4: New file, from gettext-0.11.5.
38726         * m4/glibc21.m4: New file, from gettext-0.11.5.
38727         * m4/iconv.m4: New file, from gettext-0.11.5.
38728         * m4/intdiv0.m4: New file, from gettext-0.11.5.
38729         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
38730         * m4/inttypes.m4: New file, from gettext-0.11.5.
38731         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
38732         * m4/isc-posix.m4: New file, from gettext-0.11.5.
38733         * m4/lcmessage.m4: New file, from gettext-0.11.5.
38734         * m4/lib-ld.m4: New file, from gettext-0.11.5.
38735         * m4/lib-link.m4: New file, from gettext-0.11.5.
38736         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
38737         * m4/progtest.m4: New file, from gettext-0.11.5.
38738         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
38739         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
38740         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
38741
38742         Module localcharset.
38743         * m4/localcharset.m4: New file.
38744
38745         Module hard-locale.
38746         * m4/hard-locale.m4: New file.
38747
38748         Module mbswidth.
38749         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
38750         onceonly macros.
38751         * m4/mbrtowc.m4: Add comment.
38752
38753         Module memcasecmp.
38754         * m4/memcasecmp.m4: New file.
38755
38756         Module memcoll.
38757         * m4/memcoll.m4: New file.
38758
38759         Module unicodeio.
38760         * m4/unicodeio.m4: New file.
38761
38762         Module rpmatch.
38763         * m4/rpmatch.m4: New file.
38764
38765         Module yesno.
38766         * m4/yesno.m4: New file.
38767
38768         Module exitfail.
38769         * m4/exitfail.m4: New file.
38770
38771         Module c-stack.
38772         * m4/c-stack.m4 (gl_C_STACK): New macro.
38773         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
38774
38775         Module error.
38776         * m4/error.m4 (gl_ERROR): New macro.
38777         (jm_PREREQ_ERROR): Use onceonly macros.
38778
38779         Module fatal.
38780         * m4/fatal.m4: New file.
38781
38782         Module getloadavg.
38783         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
38784         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
38785
38786         Module getpagesize.
38787         * m4/getpagesize.m4: New file.
38788
38789         Module getusershell.
38790         * m4/getusershell.m4: New file.
38791
38792         Module physmem.
38793         * m4/physmem.m4: New file.
38794
38795         Module posixver.
38796         * m4/posixver.m4: New file.
38797
38798         Module quotearg.
38799         * m4/quotearg.m4: New file.
38800
38801         Module quote.
38802         * m4/quote.m4: New file.
38803
38804         Module readutmp.
38805         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
38806
38807         Module sig2str.
38808         * m4/sig2str.m4: New file.
38809
38810         Other.
38811         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
38812         ulonglong.m4.
38813         * m4/intmax_t.m4: New file.
38814         * m4/d-type.m4: Indentation.
38815         * m4/jm-macros.m4: Update.
38816         * m4/prereq.m4 (jm_PREREQ): Update.
38817         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
38818         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
38819         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
38820         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
38821         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
38822         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
38823         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
38824         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
38825         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
38826         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
38827         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
38828         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
38829         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
38830         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
38831         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
38832         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
38833         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
38834         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
38835         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
38836
38837 2002-12-24  Bruno Haible  <bruno@clisp.org>
38838
38839         * MODULES.txt: Update according to m4/ changes.
38840
38841         Module gettext.
38842         * config.rpath: New file, from gettext-0.11.5.
38843
38844         * modules/*: New module descriptions.
38845         * gnulib-tool: New file.
38846         * MODULES.html.sh: New file.
38847
38848 2002-12-21  Karl Berry  <karl@gnu.org>
38849
38850         * doc/fdl.texi: update to version 1.2.
38851
38852 2002-12-19  Karl Berry  <karl@gnu.org>
38853
38854         * config/config.guess: update from prep.
38855
38856 2002-12-18  Bruno Haible  <bruno@clisp.org>
38857
38858         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
38859         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
38860
38861 2002-12-17  Bruno Haible  <bruno@clisp.org>
38862
38863         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
38864         stdlib.h, string.h.
38865
38866 2002-12-17  Bruno Haible  <bruno@clisp.org>
38867
38868         * lib/canon-host.c (strdup): Remove unused declaration.
38869
38870         * lib/fsusage.c: Include full_read.h.
38871         (get_fs_usage): Use full_read instead of safe_read.
38872
38873         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
38874
38875 2002-12-12  Karl Berry  <karl@gnu.org>
38876
38877         * config/config.guess: update from prep.
38878
38879 2002-12-11  Bruno Haible  <bruno@clisp.org>
38880
38881         * m4/setenv.m4: New file, from gettext-0.11.5.
38882
38883 2002-12-11  Bruno Haible  <bruno@clisp.org>
38884
38885         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
38886         not unsetenv().
38887         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
38888         modifications:
38889
38890         2002-12-11  Bruno Haible  <bruno@clisp.org>
38891
38892                 * setenv.c (alloca): Fall back to malloc.
38893                 (freea): New macro.
38894                 (setenv): Use freea() to free memory allocated with alloca().
38895
38896         2002-11-13  Bruno Haible  <bruno@clisp.org>
38897
38898                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
38899                 function declarations.
38900                 * unsetenv.c (unsetenv): Likewise.
38901
38902         2002-03-04  Bruno Haible  <bruno@clisp.org>
38903
38904                 Portability to AIX 4.3.3.
38905                 * unsetenv.c: New file, extracted from setenv.c.
38906                 * setenv.c: Move the unsetenv() function to unsetenv.c.
38907
38908         2001-12-20  Bruno Haible  <bruno@clisp.org>
38909
38910                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
38911                 use malloc instead. For SunOS 4.
38912
38913         2001-12-11  Bruno Haible  <bruno@clisp.org>
38914
38915                 * setenv.c: Declare alloca.
38916                 (compar_fn_t): New typedef.
38917                 (KNOWN_VALUE, STORE_VALUE): Use it.
38918
38919         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
38920         setenv.h.
38921
38922 2002-12-10  Paul Eggert  <eggert@twinsun.com>
38923
38924         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
38925         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
38926         Choose values that are less likely to collide with system fnmatch
38927         options.
38928         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
38929         defined (e.g., a pure POSIX system).
38930         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
38931         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
38932
38933 2002-12-06  Paul Eggert  <eggert@twinsun.com>
38934
38935         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
38936         a pain in practice to deal with generated m4 files.  This change
38937         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
38938
38939         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
38940         and jm-glibc-io.m4, as they are no longer a special case.
38941         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
38942         kludge and the auto-generation stuff.  Check only whether the
38943         functions are declared, not whether they exist, since older hosts
38944         that don't declare the functions can't use the optimization anyway.
38945
38946 2002-12-06  Jim Meyering  <jim@meyering.net>
38947
38948         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
38949
38950         Merge in changes from libc's misc/error.c, in preparation
38951         for the merge of gnulib's changes back into libc.
38952
38953         * lib/error.c (_): Define only if not already defined.
38954         Move definition to follow all #include directives.
38955         Include unlocked-io.h only if !_LIBC.
38956         [_LIBC]: Include <libio/libioP.h>.
38957         [USE_IN_LIBIO]: Include <libio/iolibio.h>
38958         (fflush): Tweak definition to use INTUSE.
38959         (putc): Define.
38960
38961 2002-12-05  Paul Eggert  <eggert@twinsun.com>
38962
38963         * lib/alloca.c [defined emacs]: Include "lisp.h".
38964         (xalloc_die) [defined emacs]: New macro.
38965         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
38966         [! defined emacs]: Include <xalloc.h>.
38967         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
38968         (pointer): Typedef to POINTER_TYPE *.
38969         (malloc): Remove decl; we now always use xmalloc.
38970         (alloca): Use old-style definition, since Emacs needs this.
38971         Check for arithmetic overflow when computing combined size.
38972
38973 2002-12-04  Paul Eggert  <eggert@twinsun.com>
38974
38975         Do not generate unlocked-io.h automatically, since it's easier to
38976         maintain it by hand.
38977
38978         * lib/unlocked-io.h: New file, from GNU diffutils,
38979         but with proper copyright notice and attribution.
38980         * lib/gen-uio: Remove.
38981         * lib/Makefile.am: Add copyright notice.
38982         (libfetish_a_SOURCES): Add unlocked-io.h.
38983         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
38984         (DISTCLEANFILES, io_functions): Remove macros.
38985         (EXTRA_DIST): Remove gen_uio.
38986         (unlocked-io.h): Remove rule.
38987
38988 2002-12-04  Jim Meyering  <jim@meyering.net>
38989
38990         Reflect the fact that stat.c and lstat.c are no longer generated.
38991         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
38992         (DISTCLEANFILES): Likewise.
38993         (EXTRA_DIST): Likewise.
38994         (all_local): Don't depend on stat.c or lstat.c.
38995         (stat.c, lstat.c): Remove rules.
38996         (EXTRA_DIST): Remove xstat.in.
38997
38998         * lib/xstat.in: Remove file.  Contents moved into stat.c.
38999         * lib/stat.c: New file.  Contents mostly from xstat.in.
39000         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
39001         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
39002
39003         * lib/safe-read.c: Rework so that it may serve to define safe_write,
39004         too.
39005         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
39006
39007 2002-12-03  Jim Meyering  <jim@meyering.net>
39008
39009         * lib/safe-read.c, safe-write.c: Change variable names and comments,
39010         but not semantics, to minimize the differences between these two files.
39011         (safe_read): Change comment to mention SAFE_READ_ERROR.
39012
39013         * lib/safe-read.c (IS_EINTR): Define.
39014         (safe_read): Use IS_EINTR in place of in-function cpp directives.
39015
39016 2002-12-02  Jim Meyering  <jim@meyering.net>
39017
39018         * lib/safe-read.c (EINTR): Define.
39019         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
39020         (INT_MAX): Provide fallback.
39021         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
39022
39023         * lib/safe-read.h (SAFE_READ_ERROR): Define.
39024
39025 2002-12-02  Bruno Haible  <bruno@clisp.org>
39026
39027         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
39028         Define, taken from safe-read.c.
39029         (INT_MAX): Provide fallback.
39030         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
39031         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
39032
39033         * lib/safe-read.c (EINTR): Remove definition.
39034         (safe_read): Don't use EINTR if it is absent.
39035
39036 2002-12-01  Jim Meyering  <jim@meyering.net>
39037
39038         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
39039         zero.
39040         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
39041
39042 2002-11-27  Paul Eggert  <eggert@twinsun.com>
39043
39044         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
39045         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
39046         with `if (! (value < limit)) abort ();', for readability.
39047
39048 2002-11-26  Karl Berry  <karl@gnu.org>
39049
39050         * lib/strdup.c: copy from libc again, with jim's ok.
39051         * lib/.cppi-disable: re-add strdup.c
39052
39053 2002-11-25  Karl Berry  <karl@gnu.org>
39054
39055         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
39056         instead of "strtol.c".
39057
39058 2002-11-25  Karl Berry  <karl@gnu.org>
39059
39060         * config/install-sh: update from automake for variable quoting, $0 in
39061         error msgs, etc.
39062
39063         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
39064         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
39065         entry.
39066
39067 2002-11-25  Jim Meyering  <jim@meyering.net>
39068
39069         * lib/mktime.c: Sync from libc, now that it has the latest fix.
39070
39071 2002-11-24  Karl Berry  <karl@gnu.org>
39072
39073         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
39074         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
39075
39076 2002-11-24  Jim Meyering  <jim@meyering.net>
39077
39078         Update from coreutils:
39079
39080         * lib/mktime.c: Merge in changes from libc.
39081
39082         Avoid a link-time failure on some Linux systems.
39083         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
39084         (otherwise).
39085         (__mon_yday): Declare with the STATIC attribute.
39086         (__mktime_internal): Likewise.
39087         Based on a report from Greg Schafer.
39088
39089 2002-11-23  Jim Meyering  <jim@meyering.net>
39090
39091         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
39092         Use `unsigned', not `int', as type of index.
39093
39094         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
39095
39096         * lib/fsusage.c: Remove unneeded parentheses around operands of
39097         `defined'.
39098
39099 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39100
39101         * lib/quotearg.h: Allow multiple inclusion by surrounding with
39102         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
39103         so that we can be included first.
39104         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
39105         * lib/quotearg.c: Include quotearg.h immediately after config.h.
39106         No need to include stddef.h or sys/types.h any more.
39107         Surround local include files with "", not "<>".
39108         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
39109         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
39110         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
39111         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
39112         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
39113         (ISPRINT): Remove; no longer needed now that we assume C89.
39114
39115         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
39116         Preserve errno.
39117
39118         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
39119         quotearg_char): Use SIZE_MAX rather than
39120         (size_t) -1 when we are talking about "infinity".
39121
39122         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
39123
39124 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39125
39126         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
39127         hint that one should use `if (! x) abort ();' rather than `assert
39128         (x);', and anyway it's one less thing to worry about configuring.
39129         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
39130         hash_rehash, hash_insert): Use abort rather than assert.
39131
39132 2002-11-22  Bruno Haible  <bruno@clisp.org>
39133
39134         * lib/safe-read.h: Assume C89. Add comments.
39135         (safe_read): Change return type to size_t.
39136         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
39137         byte counts > SSIZE_MAX correctly.
39138         * lib/safe-write.h: New file.
39139         * lib/safe-write.c: New file.
39140         * lib/full-read.h: New file.
39141         * lib/full-read.c: New file.
39142         * lib/full-write.h: Assume C89. Add comments.
39143         * lib/full-write.c: Include safe-write.h.
39144         (full_write): Rewritten to use safe_write.
39145         Suggested by Jim Meyering and Paul Eggert.
39146
39147 2002-11-21  Jim Meyering  <jim@meyering.net>
39148
39149         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
39150
39151         Merge in changes from the coreutils.
39152
39153         2002-09-25  Paul Eggert  <eggert@twinsun.com>
39154         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
39155         <stdint.h>.
39156         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
39157         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
39158         int.  Work more efficiently if X is the same width as uintmax_t.
39159         Do not compare X to -1, to avoid bogus compiler warning.
39160         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
39161         Don't assume that f_frsize and f_bsize are the same type.
39162
39163         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
39164         warning on FreeBSD.
39165
39166         * lib/makepath.c (make_path): Restore umask *before* creating the final
39167         component.
39168         (make_path): Minor reformatting.
39169
39170         * lib/xmalloc.c: Adjust to work with new autoconf macros,
39171         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
39172         HAVE_MALLOC/HAVE_REALLOC.
39173
39174         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
39175         dummy ones.  At least on GNU/Linux systems, `auto' means something
39176         else.
39177         From Michael Stone.
39178
39179 2002-11-21  Bruno Haible  <bruno@clisp.org>
39180
39181         Remove case insensitive option matching.
39182         * lib/argmatch.h (argcasematch): Remove declaration.
39183         (ARGCASEMATCH): Remove macro.
39184         (__xargmatch_internal): Remove case_sensitive argument.
39185         (XARGMATCH): Update.
39186         (XARGCASEMATCH): Remove macro.
39187         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
39188         case_sensitive argument.
39189         (argcasematch): Remove function.
39190         (__xargmatch_internal): Remove case_sensitive argument.
39191         (main): Use XARGMATCH instead of XARGCASEMATCH.
39192
39193         * lib/xmalloc.c: Change compile-time error message. Add comment about
39194         required autoconf version.
39195
39196 2002-11-20  Paul Eggert  <eggert@twinsun.com>
39197
39198         Merge argmatch cleanups from Bison.  Assume C89.
39199
39200         * lib/argmatch.c: Include config.h here, not in argmatch.h.
39201         Include stdlib.h, for EXIT_FAILURE.
39202         Always include <string.h>, since we assume C89.
39203         (EXIT_FAILURE): Remove pre-C89 bug workaround.
39204         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
39205         Include <stddef.h> instead, since it's all we need for size_t.
39206         (PARAMS): Remove.  All uses removed.
39207         (ARRAY_CARDINALITY): Do not bother to #undef.
39208         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
39209         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39210         Remove unnecessary parentheses.
39211         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39212         Insert necessary parentheses.
39213         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
39214         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
39215
39216 2002-11-19  Bruno Haible  <bruno@clisp.org>
39217
39218         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
39219         * lib/mbswidth.h: Include <stddef.h>, for size_t.
39220
39221         * lib/mbswidth.h (PARAMS): Remove macro.
39222         (mbswidth, mbsnwidth): Use ANSI C function declarations.
39223         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
39224
39225         * lib/gcd.h (PARAMS): Remove macro.
39226         (gcd): Use ANSI C function declarations.
39227         * lib/gcd.c (gcd): Likewise.
39228
39229 2002-11-15  Bruno Haible  <bruno@clisp.org>
39230
39231         * lib/strcspn.c: Include <stddef.h>.
39232         (strcspn): Use ANSI C function declaration. Change return type to
39233         size_t. Use NULL.
39234         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
39235         (strpbrk): Use NULL.
39236         * lib/strpbrk.h (PARAMS): Remove macro.
39237         (strpbrk): Use ANSI C function declaration.
39238         * lib/strstr.c: Don't include <sys/types.h>.
39239         * lib/strstr.h (PARAMS): Remove macro.
39240         (strstr): Use ANSI C function declarations.
39241
39242 2002-11-14  Karl Berry  <karl@gnu.org>
39243
39244         * config/mkinstalldirs: `do' on separate line, instead of
39245         `for var; do'.
39246
39247 2002-11-06  Bruno Haible  <bruno@clisp.org>
39248
39249         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
39250         * lib/gcd.c (gcd): Likewise.
39251
39252 2002-11-05  Bruno Haible  <bruno@clisp.org>
39253
39254         * lib/gcd.h: New file, from gettext-0.11.5.
39255         * lib/gcd.c: New file, from gettext-0.11.5.
39256
39257 2002-11-05  Bruno Haible  <bruno@clisp.org>
39258
39259         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39260         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39261         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39262         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39263
39264         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
39265         <libintl.h>.
39266         * lib/makepath.c: Include gettext.h instead of <locale.h> and
39267         <libintl.h>.
39268
39269         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
39270         * lib/human.c: Include gettext.h instead of <libintl.h>.
39271         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
39272         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
39273         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
39274         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
39275         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
39276         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
39277         (textdomain): Remove definition.
39278         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
39279
39280         * lib/long-options.c: Remove include of <libintl.h> and definition of
39281         _.
39282         * lib/same.c: Remove include of <libintl.h> and definition of _.
39283
39284 2002-11-04  Owen Taylor  <otaylor@redhat.com>
39285
39286         * lib/config.charset: A few additions for Solaris.
39287
39288 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39289
39290         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
39291         * lib/localcharset.c (locale_charset): Declare as extern "C".
39292
39293 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39294
39295         * lib/config.charset: msdos in uk_UA uses CP1125.
39296
39297 2002-11-04  Bruno Haible  <bruno@clisp.org>
39298
39299         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
39300         * lib/strcase.h: New file, from GNU gettext-0.11.5.
39301         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
39302         * lib/strstr.h: New file, from GNU gettext-0.11.5.
39303         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
39304
39305 2002-11-04  Bruno Haible  <bruno@clisp.org>
39306
39307         * lib/localcharset.c (locale_charset): Don't return an empty string.
39308
39309 2002-11-04  Bruno Haible  <bruno@clisp.org>
39310
39311         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
39312         aliases.
39313
39314 2002-11-04  Bruno Haible  <bruno@clisp.org>
39315
39316         * lib/config.charset: Update for newest glibc. Add canonical names
39317         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
39318
39319 2002-11-04  Bruno Haible  <bruno@clisp.org>
39320
39321         * lib/config.charset: Add support for NetBSD.
39322
39323 2002-11-04  Bruno Haible  <bruno@clisp.org>
39324
39325         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
39326
39327 2002-11-01  Bruno Haible  <bruno@clisp.org>
39328
39329         * configure.in: Add AC_CONFIG_AUX_DIR call.
39330         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
39331         test/Makefile.
39332         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
39333
39334 2002-09-28  Karl Berry  <karl@gnu.org>
39335
39336         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
39337         installed automake until the next release, since changes have been
39338         made.
39339
39340 2002-09-25  Karl Berry  <karl@gnu.org>
39341
39342         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
39343         * lib/getopt*: copy from libc/posix.
39344         * lib/gettext.h: copy from gettext.
39345         * lib/.cppi-disable: add strdup.c, gettext.h.
39346
39347 2002-09-25  Karl Berry  <karl@gnu.org>
39348
39349         * config/srclist.txt: enable gettext.h check.
39350         * config/config.{guess,sub}: update from prep.
39351         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
39352                 from automake 1.6.3.
39353         See srclist*.
39354
39355 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
39356
39357         * regex.c (PATFETCH): Remove the translating fetch.
39358         (PATFETCH_RAW): Rename to PATFETCH.
39359         (set_image_of_range): New fun.
39360         (SET_RANGE_TABLE_WORK_AREA): Use it.
39361         (regex_compile): Don't translate the pattern chars so eagerly.
39362         Only do it when inserting an `exactn' bytecode or when handling
39363         a char-range.
39364         (mutually_exclusive_p): Avoid empty statement.
39365
39366 2002-07-06  Jim Meyering  <meyering@lucent.com>
39367
39368         * m4/README: Don't mention Makefile.am.in.
39369         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
39370
39371 2002-07-01  Jim Meyering  <meyering@lucent.com>
39372
39373         * lib/c-stack.c: Include sys/time.h.
39374         From Volker Borchert.
39375
39376 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39377
39378         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
39379
39380 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39381
39382         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
39383         New macro.  Use it uniformly instead of
39384         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
39385         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
39386         reported by Vin Shelton.
39387
39388 2002-06-22  Paul Eggert  <eggert@twinsun.com>
39389
39390         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
39391         Do not assume SA_SIGINFO behavior.
39392         Bug reported by Jim Meyering on NetBSD 1.5.2.
39393
39394 2002-06-22  Jim Meyering  <meyering@lucent.com>
39395
39396         * m4/c-stack.m4: New file, from diffutils-2.8.2.
39397         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
39398
39399         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
39400         now that configure.ac uses AC_GNU_SOURCE.
39401         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
39402         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
39403
39404         Update to latest tools.  Suggestions from Paul Eggert.
39405         * m4/stdbool.m4: New file, from diffutils-2.8.2.
39406         * m4/gnu-source.m4: Update from diffutils-2.8.2.
39407         * m4/fnmatch.m4: Likewise.
39408         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
39409         to AC_HEADER_STDBOOL
39410
39411 2002-06-22  Jim Meyering  <meyering@lucent.com>
39412
39413         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
39414         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
39415
39416 2002-06-22  Jim Meyering  <meyering@lucent.com>
39417
39418         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
39419
39420         * lib/exitfail.c, exitfail.h: Likewise.
39421         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
39422
39423         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
39424         of fnmatch.h.
39425         (EXTRA_DIST): Add fnmatch_loop.c.
39426         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
39427
39428         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
39429         * lib/fnmatch.c: Update from diffutils-2.8.2.
39430         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
39431         * lib/fnmatch.h: Remove file.
39432
39433 2002-06-21  Jim Meyering  <meyering@lucent.com>
39434
39435         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
39436         * m4/mbrtowc.m4: Likewise.
39437
39438         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
39439         * m4/mbswidth.m4: Reflect name change:
39440         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
39441         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
39442
39443         * m4/lib-link.m4: Update from gettext-0.11.2.
39444         * m4/gettext.m4: Likewise.
39445
39446         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
39447         From Alfred M. Szmidt.
39448
39449 2002-06-18  Paul Eggert  <eggert@twinsun.com>
39450
39451         * lib/file-type.h: Report an error if neither S_ISREG nor
39452         S_IFREG is defined, instead of using a test specific to glibc
39453         2.2.  This should be safe, since POSIX requires S_ISREG and
39454         Unix Version 7 had S_IFREG.  We don't need to check for
39455         <sys/types.h> since we don't use any symbols that it defines.
39456
39457 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
39458
39459         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
39460         $@-t, so that each temporary file name is unique and valid in the first
39461         8 characters, for operation under DOS.
39462
39463 2002-06-15  Paul Eggert  <eggert@twinsun.com>
39464
39465         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
39466
39467 2002-06-15  Jim Meyering  <meyering@lucent.com>
39468
39469         Work even with DJGPP 2.03, which lacks support for symlinks.
39470         From Richard Dawe.
39471         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
39472         is defined.
39473         * lib/lchown.c (S_ISLNK): Likewise.
39474
39475 2002-06-15  Jim Meyering  <meyering@lucent.com>
39476
39477         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
39478         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
39479         have been included before this file.
39480
39481 2002-06-14  Jim Meyering  <meyering@lucent.com>
39482
39483         * lib/file-type.h: Use the version from diffutils-2.8.2.
39484         * lib/file-type.c: Likewise.
39485
39486 2002-06-07  Jim Meyering  <meyering@lucent.com>
39487
39488         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
39489         They're needed at least for NetBSD 1.5.2.
39490         ($statxfs_includes): Include those same headers.
39491         ($statxfs_includes): Include sys/vfs.h if available.
39492         ($statxfs_includes): Likewise for sys/statvfs.h.
39493         Check for the following members in both structs statfs and statvfs:
39494         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
39495
39496 2002-06-01  Jim Meyering  <meyering@lucent.com>
39497
39498         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
39499         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
39500
39501 2002-05-28  Jim Meyering  <meyering@lucent.com>
39502
39503         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
39504         Reported by Volker Borchert.
39505
39506 2002-05-27  Jim Meyering  <meyering@lucent.com>
39507
39508         Fix a problem seen only on nonconforming systems whereby ls.c's
39509         use of localtime, and then of gettimeofday would cause trouble:
39510         the localtime call used to initialize rpl_gettimeofday's save
39511         mechanism would clobber ls's current local time information so
39512         that in any long listing the first file would always be listed
39513         with date 1970-01-01.  Analysis by Volker Borchert.
39514
39515         * lib/gettimeofday.c (localtime): Undefine.
39516         (rpl_localtime): New function.
39517
39518 2002-05-27  Jim Meyering  <meyering@lucent.com>
39519
39520         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
39521         localtime.
39522
39523         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
39524         use the replacement function; it wouldn't resolve at link time.
39525         Reported by Volker Borchert.
39526
39527 2002-05-22  Jim Meyering  <meyering@lucent.com>
39528
39529         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
39530         file-type.h.
39531         * lib/file-type.h: New file.
39532         * lib/file-type.c (file_type): New file/function.  Extracted from
39533         diffutils.
39534
39535 2002-04-30  Jim Meyering  <meyering@lucent.com>
39536
39537         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
39538
39539 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39540
39541         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
39542
39543 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39544
39545         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
39546         Do not check for alloca.h (no longer used) or stdbool.h (was never
39547         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
39548
39549 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39550
39551         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
39552
39553 2002-04-29  Jim Meyering  <meyering@lucent.com>
39554
39555         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
39556         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
39557         Use AC_FUNC_STRNLEN here instead.
39558
39559         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
39560         With autoconf-2.53a, it's part of AC_PROG_CC.
39561
39562 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39563
39564         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
39565         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
39566
39567 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39568
39569         * lib/sig2str.h, lib/sig2str.c: New files.
39570         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
39571
39572 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39573
39574         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
39575         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
39576         of 127, since 64 is the largest conceivable number for ancient
39577         nonstandard hosts.
39578         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
39579
39580 2002-04-28  Jim Meyering  <meyering@lucent.com>
39581
39582         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
39583
39584 2002-04-24  Jim Meyering  <meyering@lucent.com>
39585
39586         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
39587         (jm_PREREQ): Use it.
39588
39589         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
39590         mach/mach.h fcntl.h.
39591         Check for this function: setlocale.
39592
39593 2002-04-24  Jim Meyering  <meyering@lucent.com>
39594
39595         * lib/gettext.h: New file, from Gettext.
39596         * lib/Makefile.am (INCLUDES): Remove -I../intl.
39597         (libfetish_a_SOURCES): Add gettext.h.
39598
39599 2002-04-16  Jim Meyering  <meyering@lucent.com>
39600
39601         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
39602         ut_pid, ut_id, ut_exit.
39603
39604 2002-04-16  Jim Meyering  <meyering@lucent.com>
39605
39606         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
39607         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
39608         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
39609
39610 2002-04-12  Jim Meyering  <meyering@lucent.com>
39611
39612         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
39613         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
39614         existence of the getmntinfo function.  Needed for Darwin 5.3.
39615
39616         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
39617         This is necessary at least on Darwin 5.3.
39618
39619         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
39620         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
39621         strnlen.o in the library, and that makes some versions of ranlib
39622         object.
39623
39624 2002-04-12  Jim Meyering  <meyering@lucent.com>
39625
39626         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
39627
39628 2002-04-09  Jim Meyering  <meyering@lucent.com>
39629
39630         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
39631         to be more precise.  Rather than saying we're checking whether the
39632         function `works', say what we're testing.
39633         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
39634         Reported by Bruno Haible.
39635
39636 2002-03-10  Jim Meyering  <meyering@lucent.com>
39637
39638         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
39639         Suggestion from Santiago Vila.
39640
39641 2002-03-08  Jim Meyering  <meyering@lucent.com>
39642
39643         * lib/rename.c: Mention that this wrapper is needed also on
39644         mips-dec-ultrix4.4 systems.
39645
39646 2002-03-02  Jim Meyering  <meyering@lucent.com>
39647
39648         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
39649         not HAVE_CLOCK_SETTIME.
39650
39651 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39652
39653         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
39654         Check for clock_settime.
39655
39656 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39657
39658         * lib/nanosleep.h: Rename to....
39659         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
39660
39661         * lib/gettime.c: New file.
39662         * lib/settime.c: New file.
39663         * lib/stime.c: Remove.
39664
39665         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
39666         timespec.h.  Remove nanosleep.h.
39667
39668 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39669
39670         * m4/acl.m4: New file.
39671         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
39672         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
39673
39674 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39675
39676         * lib/acl.c, lib/acl.h: New files.
39677         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
39678
39679 2002-02-24  Jim Meyering  <meyering@lucent.com>
39680
39681         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
39682         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
39683         cause trouble.  Reported by Nelson Beebe.
39684
39685 2002-02-23  Paul Eggert  <eggert@twinsun.com>
39686
39687         * lib/path-concat.c (xpath_concat): Reorder code to pacify
39688         compilers that don't know that xalloc_die never returns.
39689
39690 2002-02-20  Jim Meyering  <meyering@lucent.com>
39691
39692         * lib/getdate.c: Regenerate using bison-1.33.
39693
39694 2002-02-17  Jim Meyering  <meyering@lucent.com>
39695
39696         * config/config.guess (main): Don't use `head -1'; it's no longer
39697         portable. Use `sed 1q' instead.
39698
39699 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
39700
39701         * m4/codeset.m4: Upgrade to gettext-0.11.
39702         * m4/gettext.m4: Upgrade to gettext-0.11.
39703         * m4/glibc21.m4: Upgrade to gettext-0.11.
39704         * m4/iconv.m4: Upgrade to gettext-0.11.
39705         * m4/isc-posix.m4: Upgrade to gettext-0.11.
39706         * m4/lcmessage.m4: Upgrade to gettext-0.11.
39707         * m4/lib-ld.m4: New file, from gettext-0.11.
39708         * m4/lib-link.m4: New file, from gettext-0.11.
39709         * m4/lib-prefix.m4: New file, from gettext-0.11.
39710         * m4/progtest.m4: Upgrade to gettext-0.11.
39711
39712 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39713
39714         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
39715         (jm_PREREQ): Use it.
39716
39717 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39718
39719         * lib/posixver.c, lib/posixver.h: New files.
39720         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39721
39722 2002-02-02  Paul Eggert  <eggert@twinsun.com>
39723             Bruno Haible  <bruno@clisp.org>
39724
39725         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
39726         (fwrite_success_callback): New declaration.
39727         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
39728         print_unicode_char. Call failure callback instead of error.
39729         (fwrite_success_callback): New function.
39730         (exit_failure_callback): New function.
39731         (fallback_failure_callback): New function.
39732         (print_unicode_char): Call unicode_to_mb.
39733
39734 2002-01-26  Jim Meyering  <meyering@lucent.com>
39735
39736         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
39737         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
39738
39739 2002-01-26  Jim Meyering  <meyering@lucent.com>
39740
39741         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
39742
39743 2002-01-22  Paul Eggert  <eggert@twinsun.com>
39744
39745         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
39746
39747 2002-01-22  Jim Meyering  <meyering@lucent.com>
39748
39749         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
39750         Otherwise, some versions of automake would omit the rule that makes
39751         Makefile from Makefile.in.
39752
39753 2002-01-21  Paul Eggert  <eggert@twinsun.com>
39754
39755         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
39756         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39757         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
39758         (memcoll): Set errno to zero if there is no error.
39759
39760         * lib/quotearg.c (quotearg_buffer_restyled):
39761         Fix bug with quoting buffers containing NUL when backslashing escapes.
39762         This bug was exposed by the other changes in this patch.
39763         (quotearg_n_options): New arg ARGSIZE.
39764         All callers changed.
39765         (quoting_options_from_style): New function.
39766         (quotearg_n_style): Use it.
39767         (quotearg_n_style_mem): New function.
39768
39769         * lib/quotearg.h (quotearg_n_style_mem): New function.
39770
39771 2002-01-19  Jim Meyering  <meyering@lucent.com>
39772
39773         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
39774         Remove useless quotes: DF_PROG="df".
39775         * m4/strnlen.m4: New file.
39776
39777 2002-01-16  Paul Eggert  <eggert@twinsun.com>
39778
39779         * lib/backupfile.c (ISDIGIT): Comment fix.
39780         * lib/getdate.y (ISDIGIT): Likewise.
39781         * lib/posixtm.c (ISDIGIT, year): Likewise.
39782         * lib/strverscmp.c (ISDIGIT): Likewise.
39783         * lib/userspec.c (ISDIGIT): Likewise.
39784
39785 2002-01-16  Jim Meyering  <meyering@lucent.com>
39786
39787         * lib/getdate.y: Add three semicolons, each just before a closing
39788         brace. Bison (as of version 1.31) no longer papers over that mistake.
39789
39790 2002-01-05  Jim Meyering  <meyering@lucent.com>
39791
39792         * lib/version-etc.c (version_etc_copyright): Update copyright year.
39793
39794 2001-12-19  Paul Eggert  <eggert@twinsun.com>
39795
39796         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
39797         not silently exit merely because the output buffer happens to
39798         have nothing pending.
39799
39800 2001-12-18  Paul Eggert  <eggert@twinsun.com>
39801
39802         See the big note in ../ChangeLog.
39803         * lib/human.c (suffixes): Prefer K to k for 1024.
39804         (generate_suffix_backwards): New function.
39805         (human_readable_inexact): Use it.
39806         * lib/xstrtol.c (__xstrtol): If there is no number but there
39807         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
39808         Accept 'K' as well as 'k'.
39809
39810 2001-12-15  Jim Meyering  <meyering@lucent.com>
39811
39812         * lib/regex.h (__restrict_arr): Update from libc.
39813
39814         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
39815         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
39816         (STREQ): Define.
39817
39818 2001-12-14  Jim Meyering  <meyering@lucent.com>
39819
39820         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
39821         Suggestion from Bruno Haible.
39822
39823 2001-12-10  Jim Meyering  <meyering@lucent.com>
39824
39825         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
39826         xrealloc, Instead, include "xalloc.h".
39827         (initbuffer): Don't cast xmalloc return value to char*.
39828         (readline): Reword comment.
39829         Don't cast xrealloc return value to char*
39830         Return NULL, not 0.
39831
39832 2001-12-09  Jim Meyering  <meyering@lucent.com>
39833
39834         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
39835         about `signed and unsigned type in conditional expression'.
39836         * lib/posixtm.c (posix_time_parse): Likewise.
39837
39838         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
39839
39840         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
39841         to avoid a pedantic warning.
39842
39843         * lib/getstr.c: Don't include assert.h.
39844         (getstr): Remove warning-evoking assertions.
39845         Return -1 if offset parameter is out of bounds.
39846         Change the type of a local from int to size_t.
39847
39848         * lib/strftime.c (my_strftime_localtime_r): Include this function
39849         definition in the `#if ! HAVE_TM_GMTOFF' block.
39850
39851         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
39852         Include xalloc.h instead.
39853
39854 2001-12-02  Jim Meyering  <meyering@lucent.com>
39855
39856         * lib/tempname.c: Don't declare getenv, thus reverting the change of
39857         2001-11-18.  It's no longer necessary, now that stdlib.h is always
39858         included.
39859
39860         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
39861         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
39862
39863 2001-11-30  Akim Demaille  <akim@epita.fr>
39864
39865         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
39866         before being defined.
39867
39868 2001-11-27  Paul Eggert  <eggert@twinsun.com>
39869
39870         * lib/quotearg.h (quotearg_n, quotearg_n_style):
39871         First arg is int, not unsigned.
39872         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
39873         (SIZE_MAX, UINT_MAX): New macros.
39874         (quotearg_n_options): Abort if N is negative.
39875         Avoid overflow check on hosts where size_t is 64 bits and int
39876         is 32 bits, as overflow is impossible there.
39877         Fix off-by-one typo that caused unnecessary reallocation.
39878
39879 2001-11-27  Jim Meyering  <meyering@lucent.com>
39880
39881         * lib/tempname.c: Merge with version from libc.
39882         * lib/regex.c: Likewise.
39883
39884         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
39885         systems for which STDC_HEADERS is 0, it was not included, resulting in
39886         a warning about an integer-to-pointer conversion problem with getenv.
39887         Reported by Volker Borchert.
39888
39889 2001-11-26  Jim Meyering  <meyering@lucent.com>
39890
39891         * lib/gtod.h: Remove file.
39892         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
39893         * lib/gettimeofday.c: Don't include gtod.h.
39894         (GTOD_init): Remove function.
39895         (rpl_gettimeofday): Do its job here instead, rather than aborting.
39896         Suggestion from Volker Borchert.
39897
39898 2001-11-23  Jim Meyering  <meyering@lucent.com>
39899
39900         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
39901         it.
39902         * lib/hash.c (struct hash_table): Define it here instead.
39903
39904 2001-11-22  Jim Meyering  <meyering@lucent.com>
39905
39906         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
39907
39908 2001-11-20  Jim Meyering  <meyering@lucent.com>
39909
39910         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
39911         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
39912
39913 2001-11-19  Jim Meyering  <meyering@lucent.com>
39914
39915         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
39916         directory.  Use "conftestXXXXXX" as the template.
39917         Suggestion from Paul Eggert.
39918
39919         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
39920         immediately, so the test doesn't mistakenly hit the max-open-files
39921         limit.
39922
39923 2001-11-18  Paul Eggert  <eggert@twinsun.com>
39924
39925         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
39926         (TEMPORARIES): New macro.
39927         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
39928         removes an artificial limitation (e.g. HP-UX 10.20, where
39929         TMP_MAX is 17576).
39930
39931 2001-11-18  Jim Meyering  <meyering@lucent.com>
39932
39933         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
39934
39935 2001-11-18  Jim Meyering  <meyering@lucent.com>
39936
39937         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
39938         on SunOS 4.
39939
39940         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
39941         files will be created before anything else.
39942
39943 2001-11-17  Paul Eggert  <eggert@twinsun.com>
39944
39945         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
39946         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
39947
39948 2001-11-17  Jim Meyering  <meyering@lucent.com>
39949
39950         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
39951         Prompted by a report from Bob Proulx.
39952
39953         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
39954         Instead, require UTILS_FUNC_MKSTEMP.
39955
39956 2001-11-17  Jim Meyering  <meyering@lucent.com>
39957
39958         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
39959         Now, that's done as part of AC_FUNC_STRTOD.
39960
39961 2001-11-17  Jim Meyering  <meyering@lucent.com>
39962
39963         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
39964         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
39965         rather than group writable.  Patch by Juan F. Codagnone.
39966
39967         * lib/readtokens.c: Remove explicit declarations of xmalloc and
39968         xrealloc, Instead, include "xalloc.h".
39969
39970         * lib/mountlist.c: Include unlocked-io.h after all system headers.
39971         Remove explicit declarations of xmalloc, xrealloc,
39972         and xstrdup.  Instead, include "xalloc.h".
39973
39974         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
39975         unlocked-io.h.
39976         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
39977         Likewise.
39978         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
39979
39980         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
39981         Reported by Padraig Brady.
39982
39983         * lib/mkstemp.c: #undef mkstemp.
39984         Include config.h.
39985         (rpl_mkstemp): Rename from mkstemp.
39986         Protoize.
39987
39988 2001-11-16  Jim Meyering  <meyering@lucent.com>
39989
39990         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
39991         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
39992         determine the amount of total physical memory, use pstat_getstatic.
39993         HPUX-11 doesn't define _SC_PHYS_PAGES.
39994         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
39995         If sysconf couldn't be used to determine the amount of available
39996         physical memory, use both pstat_getstatic and pstat_getdynamic.
39997         Based on a patch from Bob Proulx.
39998
39999 2001-11-10  Jim Meyering  <meyering@lucent.com>
40000
40001         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
40002         (jm_PREREQ): Use it.
40003
40004 2001-11-09  Jim Meyering  <meyering@lucent.com>
40005
40006         * m4/jm-macros.m4: Require autoconf-2.52f.
40007         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
40008         Use these AC_-prefixed names, not the AM_-prefixed ones.
40009
40010         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
40011
40012 2001-11-05  Jim Meyering  <meyering@lucent.com>
40013
40014         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
40015
40016 2001-11-04  Jim Meyering  <meyering@lucent.com>
40017
40018         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
40019         $DEFS.
40020
40021 2001-11-03  Jim Meyering  <meyering@lucent.com>
40022
40023         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
40024         of AC_DEFUN.
40025
40026         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
40027         know the name of the variable in the macro definition.
40028
40029 2001-11-03  Jim Meyering  <meyering@lucent.com>
40030
40031         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
40032         in argmatch_to_argument call.
40033
40034         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
40035         argument.
40036
40037         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
40038         e.g., a fault due to an attempt to free a NULL pointer.
40039
40040 2001-11-01  Jim Meyering  <meyering@lucent.com>
40041
40042         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
40043         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
40044
40045 2001-11-01  Jim Meyering  <meyering@lucent.com>
40046
40047         * lib/dirfd.c, lib/dirfd.h: New files.
40048         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
40049
40050         * lib/hash.c (hash_print) [TESTING]: Clean up.
40051
40052 2001-10-22  Paul Eggert  <eggert@twinsun.com>
40053
40054         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
40055         to avoid a warning if -Wall.
40056
40057 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
40058
40059         * README: New file
40060         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
40061         (per RMS's instructions, this is now the canonical source)
40062         * lgpl/, gpl/: New directories.
40063
40064 2001-10-21  Paul Eggert  <eggert@twinsun.com>
40065
40066         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
40067
40068 2001-10-21  Jim Meyering  <meyering@lucent.com>
40069
40070         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
40071         this code would end up calling gettext even in packages built
40072         with --disable-nls.
40073         * lib/getopt.c (_): Likewise.
40074         * lib/regex.c (_): Likewise.
40075
40076 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40077
40078         * m4/error.m4 (jm_PREREQ_ERROR):
40079         Do not invoke AC_CHECK_FUNCS with strerror_r, as
40080         AC_FUNC_STRERROR_R does that.
40081         Check for strerror declaration.
40082
40083         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
40084         are supposed to have them these days.
40085         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
40086         Merge changes from latest Autoconf CVS.
40087         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
40088         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
40089         POSIX decided to standardize on the int flavor of strerror_r.
40090
40091 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40092
40093         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
40094         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
40095         Use strerror_r that is only a macro, even if it is not a function.
40096         (strerror): Check for HAVE_DECL_STRERROR before declaring.
40097         (private_strerror): Use prototypes, not old-style function definition.
40098         (print_errno_message): New function.
40099         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
40100         char*-flavored one.
40101         (error_tail, error, error_at_line): Use it.
40102
40103 2001-10-11  Jim Meyering  <meyering@lucent.com>
40104
40105         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
40106         and quote_n (1, ... to avoid clobbering a buffer.
40107
40108 2001-10-05  Jim Meyering  <meyering@lucent.com>
40109
40110         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
40111         hash-pjw.h.
40112         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
40113         * lib/hash-pjw.h: New file.
40114
40115 2001-09-30  Jim Meyering  <meyering@lucent.com>
40116
40117         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
40118         `struct fsstat' has the `f_fstypename' member.
40119         Use that to define FS_TYPE, which is now used to make
40120         the getfsstat link test tighter.
40121
40122 2001-09-30  Jim Meyering  <meyering@lucent.com>
40123
40124         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
40125         Include <sys/ucred.h>, for Apple Darwin.
40126         Include sys/mount.h and sys/fs_types.h only if available.
40127         (FS_TYPE): Define.
40128         (read_filesystem_list): Use FS_TYPE.
40129
40130 2001-09-29  Paul Eggert  <eggert@twinsun.com>
40131
40132         * lib/exclude.c (excluded_filename): 0 -> false, since it's
40133         a boolean context.
40134
40135 2001-09-29  Jim Meyering  <meyering@lucent.com>
40136
40137         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40138         [one-argument getmntent function]): Include stdio.h before mntent.h.
40139         SunOS 4.1.x needs it for the declaration of `FILE'.
40140         Patch by Volker Borchert.
40141
40142         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40143         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
40144         sys/fs_types.h, and make the link-test for getfsstat guard #include
40145         directives with appropriate #if HAVE_*_H tests so that we can
40146         detect getfsstat on Apple Darwin1.3.7 systems.
40147         Reported by Nelson Beebe.
40148         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
40149
40150 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40151
40152         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40153         #defines strtoimax.  Also treat the other strto* functions
40154         like strtoimax.
40155
40156         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40157         Check for strtoul and strtoumax,
40158         as those declarations are made even in the signed case.
40159         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
40160         Likewise, for strtol and strtoimax.
40161
40162 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40163
40164         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40165         #defines strtoimax.  Also treat the other strto* functions
40166         like strtoimax.
40167
40168         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
40169         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
40170         (strtoimax, strtoumax): Do not declare if already defined as a macro.
40171
40172 2001-09-26  Jim Meyering  <meyering@lucent.com>
40173
40174         Most macros in unlocked-io.h had the wrong number of arguments.
40175         * lib/gen-uio: New script.
40176         (USE_UNLOCKED_IO): Define to 1 if not already defined.
40177         * lib/unlocked-io.hin: Remove file.
40178         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
40179         rather than trying to embed it here.
40180         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
40181         Reported by Padraig Brady.
40182
40183 2001-09-25  Volker Borchert  <bt@teknon.de>
40184
40185         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
40186         `result'.
40187
40188 2001-09-24  Jim Meyering  <meyering@lucent.com>
40189
40190         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
40191
40192 2001-09-23  Jim Meyering  <meyering@lucent.com>
40193
40194         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
40195         instead of the mere test for existence of mntent.h.  The latter
40196         would get a false-positive on AIX 3.4 systems.
40197         In the outer getmntent if-block, don't die if neither of the getmntent
40198         tests succeeds.  Instead, just fall through and continue with the
40199         remaining tests.
40200
40201 2001-09-23  Jim Meyering  <meyering@lucent.com>
40202
40203         * lib/mountlist.c: Remove useless parentheses in #if directives.
40204         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
40205         the deprecated MOUNTED symbol is no longer defined in mntent.h.
40206
40207 2001-09-22  Jim Meyering  <meyering@lucent.com>
40208
40209         * m4/gettext.m4: New file.  From gettext.
40210         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
40211         * m4/progtest.m4: Likewise
40212         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
40213         * m4/glibc21.m4: Likewise.
40214
40215         * m4/libintl.m4: Remove.  No longer used.
40216
40217 2001-09-22  Jim Meyering  <meyering@lucent.com>
40218
40219         * lib/localcharset.c: Update from latest gettext.
40220         * lib/config.charset: Likewise.
40221
40222 2001-09-20  Jim Meyering  <meyering@lucent.com>
40223
40224         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
40225         strtoimax.
40226         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
40227         strtoumax.
40228
40229 2001-09-20  Jim Meyering  <meyering@lucent.com>
40230
40231         * lib/xstrtol.c (strtoimax): Guard declaration with
40232         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
40233         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
40234         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
40235         (strtoumax): Likewise, for completeness (it wasn't necessary).
40236
40237 2001-09-17  Paul Eggert  <eggert@twinsun.com>
40238
40239         * lib/strtoimax.c (HAVE_LONG_LONG):
40240         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
40241         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
40242         to work around bug in IBM C compiler.
40243
40244 2001-09-17  Jim Meyering  <meyering@lucent.com>
40245
40246         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
40247         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
40248         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
40249         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
40250         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
40251         whenever the right hand side need not be expanded by the shell.
40252
40253 2001-09-16  Paul Eggert  <eggert@twinsun.com>
40254
40255         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
40256         library.  It's not correct, as some older glibcs are buggy.
40257         fnmatch wasn't fixed until glibc 2.2.
40258
40259         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
40260         special shell magic here.
40261
40262 2001-09-16  Jim Meyering  <meyering@lucent.com>
40263
40264         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
40265         * m4/jm-macros.m4: Require it.
40266
40267 2001-09-16  Jim Meyering  <meyering@lucent.com>
40268
40269         * lib/mkdir.c: New file.
40270
40271 2001-09-15  Jim Meyering  <meyering@lucent.com>
40272
40273         * m4/jm-macros.m4: Check for help2man.
40274
40275 2001-09-11  Jim Meyering  <meyering@lucent.com>
40276
40277         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
40278         The body, by Paul Eggert, was moved here from configure.in.
40279         * m4/jm-macros.m4: Require UTILS_HOST_OS.
40280
40281 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40282
40283         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
40284         (jm_PREREQ): Use it.
40285
40286 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40287
40288         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
40289         Use ssize_t, not int, to store result of readlink.
40290         Check for ssize_t overflow as well as size_t overflow,
40291         as POSIX says the result of readlink is implementation-defined
40292         when ssize_t overflows.
40293         Remove unnecessary cast to char*.
40294         Use free+malloc instead of realloc, as the storage doesn't need
40295         to be preserved and it's clearer and can be more efficient that way.
40296         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
40297         * lib/xreadlink.h (xreadlink): Update prototype.
40298
40299 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40300
40301         * lib/xgetcwd.c: Revert some of the previous change; intead,
40302         fix the HAVE_GETCWD_NULL code to behave more like the
40303         !HAVE_GETCWD_NULL code used to.
40304
40305         Include "xalloc.h".
40306         (xgetcwd): Do not return NULL when memory is exhausted; instead,
40307         invoke xalloc_die.
40308
40309 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40310
40311         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
40312         sys/param.h, as pathmax.h includes them.
40313
40314 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40315
40316         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
40317         (jm_PREREQ_XGETCWD): New macro.
40318
40319         * m4/getcwd.m4: New file.
40320
40321 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40322
40323         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
40324         like the HAVE_GETCWD_NULL code.
40325         Include pathmax.h if not HAVE_GETCWD.
40326         Do not include xalloc.h.
40327         (INITIAL_BUFFER_SIZE): New symbol.
40328         Do not use xmalloc / xrealloc, since the caller is responsible for
40329         handling errors.  Preserve errno around `free' during failure.
40330         Do not overrun buffer when using getwd.
40331
40332 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40333
40334         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
40335         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
40336         getcwd (NULL, 0).
40337
40338 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40339
40340         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
40341         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
40342         spotted by Jim Meyering.
40343
40344 2001-09-03  Jim Meyering  <meyering@lucent.com>
40345
40346         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
40347         failure.
40348
40349 2001-09-02  Jim Meyering  <meyering@lucent.com>
40350
40351         * lib/error.c: Update from GNU libc.
40352
40353 2001-09-01  Jim Meyering  <meyering@lucent.com>
40354
40355         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
40356         Used by df.
40357
40358 2001-09-01  Jim Meyering  <meyering@lucent.com>
40359
40360         * lib/xreadlink.c: New file.
40361         * lib/xreadlink.h: New file.
40362         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
40363         xreadlink.h.
40364
40365         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
40366         doesn't conflict with sparc Solaris 7's definition in
40367         /usr/include/sys/int_types.h.
40368
40369         * lib/exclude.c: Use `""', not `<>' to #include non-system header
40370         files.
40371         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
40372         and strncasecmp as r-values.  Unixware didn't have declarations.
40373
40374 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40375
40376         * lib/xstrtol.h: Add copyright notice.
40377         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
40378         LONGINT_INVALID_SUFFIX_CHAR.
40379
40380 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40381
40382         * lib/xstrtol.c (strtoimax): New decl.
40383
40384 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40385
40386         * lib/xgetcwd.c: Don't include pathmax.h.
40387         Include stdlib.h and unistd.h if available.
40388         Include xalloc.h.
40389         (xmalloc, xstrdup, free): Remove decls.
40390         (xgetcwd): Don't assume sizes fit in unsigned.
40391         Check for overflow when computing sizes.
40392         Simplify reallocation code.
40393
40394 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40395
40396         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
40397         a directory's st_size can have an arbitrary value, so the old
40398         usage could waste an arbitrary amount of memory.  All uses
40399         changed.
40400         * lib/savedir.h: Update prototype.
40401
40402 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40403
40404         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
40405
40406         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
40407         old strtoimax.c.
40408
40409         Also, make the following further changes to make this file's
40410         configuration more similar to that of strtol.c:
40411         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
40412         (strtoumax, uintmax_t, strtoull, strtol): Remove.
40413         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
40414         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
40415         changed to signed values.
40416
40417         And make the following changes as well:
40418         Fix copyright notice, as 1999 was missing.
40419         (verify): New macro.
40420         (strtoimax): Check sizes at compile-time, not run-time.
40421         Prefer strtol to strtoll if both work.
40422         (main): Remove; it was not that useful and was a pain to maintain.
40423
40424         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
40425
40426 2001-08-31  Jim Meyering  <meyering@lucent.com>
40427
40428         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
40429         Use an initial, malloc'd, buffer of length 128 rather than
40430         a statically allocated one of length 1024.
40431
40432 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40433
40434         Simplify code, partly by assuming autoconf 2.52 semantics.
40435
40436         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
40437
40438         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
40439         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
40440         All uses removed.
40441         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
40442         Move AC_REQUIRE to next-to-top level, to avoid confusion.
40443         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
40444         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
40445         jm_AC_HEADER_INTTYPES_H.
40446         * m4/jm-macros.m4 (jm_MACROS): Likewise.
40447
40448         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
40449
40450         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40451         Quote first arg of AC_DEFUN.
40452         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
40453         since they are needed to parse the include file even if we need
40454         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
40455         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
40456         but with opposite signedness.
40457
40458 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40459
40460         Merge 'exclude' changes from tar 1.13.22.
40461         This fixes one or two unlikely storage allocation overflow bugs,
40462         but doesn't change user-visible behavior otherwise.
40463
40464 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40465
40466         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
40467         (jm_PREREQ_EXCLUDE): New macro.
40468
40469 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40470
40471         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
40472         tm to be declared.
40473
40474 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40475
40476         * lib/hash.c: Remove '2001' from copyright notice.
40477
40478 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40479
40480         * lib/full-write.h: New file.
40481         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
40482         * lib/full-write.c: Correct credits, as cccp.c no longer
40483         exists and anyway it was so heavily changed from the old cccp
40484         code as to be unrecognizable.  Include full-write.h.
40485         (full_write) Return size_t, with short writes meaning failure.
40486         All callers changed.  This fixes a bug with large buffers
40487         on 64-bit hosts.
40488         * lib/utime.c: Include full-write.h.
40489
40490 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40491
40492         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
40493         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
40494         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
40495         Include if available.
40496         (<xalloc.h>): Include
40497         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
40498         (verify): New macro.  Use it to verify that EXCLUDE macros do not
40499         collide with FNM macros.
40500         (struct patopts): New struct.
40501         (struct exclude): Use it, as exclude patterns now come with options.
40502         (new_exclude): Support above changes.
40503         (new_exclude, add_exclude_file):
40504         Initial size must now be a power of two to simplify overflow checking.
40505         (free_exclude, fnmatch_no_wildcards): New function.
40506         (excluded_filename): No longer requires options arg, as the options
40507         are determined by add_exclude.  Now returns bool, not int.
40508         (excluded_filename, add_exclude):
40509         Add support for the fancy new exclusion options.
40510         (add_exclude, add_exclude_file): Now takes int options arg.
40511         Check for arithmetic overflow when computing sizes.
40512         (add_exclude_file): xrealloc might modify errno, so don't
40513         realloc until after errno might be used.
40514
40515         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
40516         New macros.
40517         (free_exclude): New decl.
40518         (add_exclude, add_exclude_file): Now takes int options arg.
40519         (excluded_filename): No longer requires options arg, as the options
40520         are determined by add_exclude.  Now returns bool, not int.
40521
40522 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40523
40524         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
40525
40526 2001-08-27  Jim Meyering  <meyering@lucent.com>
40527
40528         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
40529
40530         * lib/version-etc.c (N_): Remove definition.
40531         Revert most of last change.
40532         Instead, simply don't mark the `Copyright...' string for translation.
40533         Based on advice from Paul Eggert.
40534
40535         * lib/strtoxmax.c: Tweak comment.
40536
40537 2001-08-26  Jim Meyering  <meyering@lucent.com>
40538
40539         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
40540
40541         * m4/xstrtoimax.m4: New file.
40542         * m4/xstrtoumax.m4: Add comments explaining why we
40543         AC_REPLACE_FUNCS(strtol).
40544
40545 2001-08-26  Jim Meyering  <meyering@lucent.com>
40546
40547         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
40548         of copyright with `%s' so translators don't get an untranslated
40549         message in 2002.
40550         (COPYRIGHT_YEAR): Define.
40551         (version_etc): Use fprintf rather than fputs.
40552         Suggestion from Ulrich Drepper.
40553
40554         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
40555
40556         * lib/strtoll.c: New file, from GNU libc.
40557         * lib/xstrtoimax.c: New file.
40558
40559         * lib/xstrtol.h: Add xstrtoimax.
40560         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
40561         * lib/strtoimax.c: New file.  Likewise, but first define
40562         STRTOUXMAX_SIGNED.
40563
40564         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
40565         ...
40566         * lib/strtoxmax.c: ... then renamed to this.
40567
40568 2001-08-18  Paul Eggert  <eggert@twinsun.com>
40569
40570         * m4/inttypes.m4: Add AC_PREREQ(2.13).
40571         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
40572         (jm_AC_TYPE_INTMAX_T): New macro.
40573         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
40574
40575         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
40576
40577         * m4/longlong.m4: Renamed from ulonglong.m4.
40578         * m4/inttypes.m4: Renamed from inttypes_h.m4.
40579         * m4/uintmax_t.m4: Removed.
40580
40581 2001-08-13  Paul Eggert  <eggert@twinsun.com>
40582
40583         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
40584         Port to Solaris 8, where 'sed' requires a space after the 'r'
40585         command, and where sh dislikes "$/".  Clean up the spacing a bit.
40586         Redirect output to $tmp just once.
40587
40588 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
40589
40590         * lib/addext.c (<errno.h>): Include.
40591         (errno): Declare if not defined.
40592         (addext): Work correctly when pathconf returns -1 and leaves
40593         errno alone because there is no limit.  Also, work even if
40594         pathconf returns a value greater than SIZE_MAX.
40595
40596 2001-08-12  Jim Meyering  <meyering@lucent.com>
40597
40598         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
40599         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
40600         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
40601         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
40602         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
40603         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
40604         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
40605         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
40606         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
40607         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
40608         utime.m4, utimes.m4, xstrtoumax.m4:
40609         Quote the first argument in each use of AC_DEFUN.
40610
40611 2001-08-12  Jim Meyering  <meyering@lucent.com>
40612
40613         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
40614         Simply `return getcwd (NULL, 0);'.
40615         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
40616         Use 1300 as initial value for length, not PATH_MAX.
40617
40618         * lib/pathmax.h: Clean up cpp syntax.
40619
40620 2001-08-12  Jim Meyering  <meyering@lucent.com>
40621
40622         * lib/gettimeofday.c: New file.
40623         * lib/gtod.h: New file.
40624         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
40625
40626 2001-08-05  Jim Meyering  <meyering@lucent.com>
40627
40628         * m4/jm-macros.m4: Require autoconf-2.52.
40629
40630 2001-08-04  Jim Meyering  <meyering@lucent.com>
40631
40632         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
40633         stmt, to get in sync with glibc.
40634
40635 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40636
40637         The following changes are from gettext 0.10.39 as maintained by
40638         Bruno Haible.
40639
40640         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
40641         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
40642         with inverted sense.  All uses changed.
40643
40644         * lib/mbswidth.c: Don't include <limits.h>.
40645         Include <stdlib.h> and <string.h> unconditionally.
40646         (iswcntrl, mbsinit, ISCNTRL): New macros.
40647         (mbsnwidth): Use K&R style function declarations.
40648         Don't bother checking for MB_LEN_MAX == 1, since the compiler
40649         can optimize it when MB_CUR_MAX == 1.
40650         The width of control characters is zero, not 1.
40651
40652 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40653
40654         The following changes are from gettext 0.10.39 as maintained by
40655         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
40656
40657         * m4/codeset.m4: Upgrade to serial AM1.
40658         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
40659         all uses changed.  Quote first arg of AC_DEFUN.
40660         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
40661
40662         * m4/iconv.m4: Upgrade to serial AM2.
40663         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
40664         Add --with-libconv-prefix.
40665         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
40666         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
40667         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
40668         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
40669         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
40670
40671         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
40672         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
40673         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
40674         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
40675         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
40676         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
40677         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
40678         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
40679         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
40680
40681         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
40682         string.h any more.
40683
40684         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
40685         not the default value.
40686
40687         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
40688         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
40689         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
40690         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
40691         Also check for iswcntrl, used for wcwidth fallback.
40692         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
40693         to Autoconf 2.13.
40694
40695 2001-08-03  Jim Meyering  <meyering@lucent.com>
40696
40697         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
40698         as it was in the original.  Reported by Paul Eggert.
40699
40700 2001-07-16  Jim Meyering  <meyering@lucent.com>
40701
40702         * m4/gettimeofday.m4: New file.
40703         Prompted by a report from Bernhard Baehr.
40704
40705 2001-07-15  Jim Meyering  <meyering@lucent.com>
40706
40707         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
40708         stuff. Now it's in ../Makefile.cfg.
40709
40710 2001-07-15  Jim Meyering  <meyering@lucent.com>
40711
40712         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
40713         (BUILT_SOURCES): Add unlocked-io.h.
40714         (io_functions): Define.
40715         (unlocked-io.h): New rule.
40716         (DISTCLEANFILES): Add unlocked-io.h.
40717         (all-local): Depend on unlocked-io.h, to ensure it is created.
40718
40719         * lib/unlocked-io.hin: New file
40720
40721         * lib/regex.c: Update from glibc.
40722
40723 2001-07-05  Jim Meyering  <meyering@lucent.com>
40724
40725         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
40726         recommendation.
40727         (libfetish_a_SOURCES): Put all .h files here instead.
40728         Remove a thus-exposed (better checks in automake) duplicate and
40729         two unnecessary .h files.
40730
40731 2001-07-04  Jim Meyering  <meyering@lucent.com>
40732
40733         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
40734         that generates jm-glibc-io.m4 so that it doesn't trigger any make
40735         distcheck failure.
40736
40737 2001-07-02  Jim Meyering  <meyering@lucent.com>
40738
40739         The following changes were prompted by suggestions from Bruno Haible.
40740
40741         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
40742         is now generated.
40743         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
40744         definition of EXTRA_DIST.
40745         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
40746         ensure that the generated file is created/updated whenever the list
40747         of $(unlocked_functions) is changed.
40748         (jm-glibc-io.m4): New rule.
40749         (unlocked-io.h): New rule -- currently unused.
40750
40751 2001-06-24  Jim Meyering  <meyering@lucent.com>
40752
40753         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
40754         unmatched right bracket, rather than kludging it with an extra,
40755         falsely-matching quote in a comment.  Patch by Akim Demaille.
40756
40757 2001-06-11  Jim Meyering  <meyering@lucent.com>
40758
40759         * lib/regex.c: Update from GNU libc.
40760
40761 2001-05-27  Jim Meyering  <meyering@lucent.com>
40762
40763         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
40764         Check for ut_type in struct utmp.
40765
40766 2001-05-27  Jim Meyering  <meyering@lucent.com>
40767
40768         * lib/readutmp.h (UT_TYPE): Define.
40769
40770 2001-05-24  Jim Meyering  <meyering@lucent.com>
40771
40772         * lib/argmatch.c: Include "quote.h".
40773         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
40774         quote function.  Reported by Göran Uddeborg.
40775
40776 2001-05-22  Jim Meyering  <meyering@lucent.com>
40777
40778         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
40779         now that we use the package-supplied version unconditionally.
40780         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
40781
40782 2001-05-21  Jim Meyering  <meyering@lucent.com>
40783
40784         * m4/regex.m4: Change a couple backticks to single quotes to avoid
40785         shell syntax errors.
40786
40787 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
40788
40789         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
40790
40791 2001-05-20  Paul Eggert  <eggert@twinsun.com>
40792
40793         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
40794         Don't bother to check library strftime, since
40795         we'll be using our own my_strftime function anyway.
40796         Define my_strftime instead of strftime.
40797
40798 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
40799
40800         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
40801         which is not yet declared.
40802
40803 2001-05-15  Jim Meyering  <meyering@lucent.com>
40804
40805         * m4/regex.m4: Use proper quoting so brackets appear in the test
40806         program.
40807         Reported by, and with help from, Bruno Haible.
40808
40809 2001-05-13  Jim Meyering  <meyering@lucent.com>
40810
40811         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
40812         undefined.
40813
40814 2001-05-11  Paul Eggert  <eggert@twinsun.com>
40815
40816         dirname code cleanup.  base_name now behaves more compatibly
40817         with POSIX basename when given file names that have trailing
40818         slashes, and similarly for dir_name.  Add new primitives
40819         base_len and dir_len.  Put the directory-name-related decls
40820         into dirname.h.
40821
40822         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
40823         * lib/backupfile.c (base_name): Likewise.
40824         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
40825         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
40826         * lib/makepath.c (strip_trailing_slashes): Likewise.
40827         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
40828         ISSLASH): Likewise.
40829         * lib/rename.c (strip_trailing_slashes): Likewise.
40830         * lib/same.c (base_name): Likewise.
40831         * lib/stripslash.c (ISSLASH): Likewise.
40832
40833         * lib/addext.c: Include <dirname.h> after size_t is defined.
40834         * lib/backupfile.c: Likewise.
40835
40836         * lib/addext.c (addext): Use base_len to trim redundant
40837         trailing slashes instead of doing it ourselves.
40838         But do not trim the last slash if it is not redundant.
40839
40840         * lib/backupfile.c (find_backup_file_name,
40841         max_backup_version): Use base_len instead of rolling it ourselves.
40842         Handle the case of "" and (on DOS) "C:" correctly.
40843
40844         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
40845         needed. Include <string.h>, <dirname.h>.
40846         (base_name): Allow file names ending in slashes, other than names
40847         that are all slashes.  In this case, return the basename followed
40848         by the slashes.  This is more general, and can be used in places
40849         where the original base_name purposely had an assertion failure.
40850         (base_len): New function.
40851
40852         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
40853         Do not include <assert.h>; no longer needed.
40854         Include xalloc.h.
40855         (memrchr): Remove decl.
40856         (dir_name_r): Remove.
40857         (dir_len): Renamed from dirlen.  All callers changed.
40858         Rewrite in terms of base_name, for simplicity and consistency.
40859         (dir_name): Never return NULL.  All callers changed.
40860         Do not include <stdlib.h> in test program; no longer needed.
40861         return 0; is fine for test program.
40862
40863         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
40864         New macros.
40865         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
40866
40867         * lib/path-concat.c (path_concat): Use base_len to compute
40868         base length, not strlen; this means we cannot rely on memcpy
40869         to null-terminate.
40870
40871         * lib/same.c (STREQ): Remove.
40872         (same_name): Handle the case where the basename ends in trailing '/'.
40873
40874         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
40875         a slash was stripped.  Do not strip the last slash after a
40876         file system prefix.
40877
40878 2001-05-11  Paul Eggert  <eggert@twinsun.com>
40879
40880         * lib/Makefile.am (libfetish_a_SOURCES):
40881         Add strftime.c, since we now compile it on all hosts.
40882
40883         * lib/strftime.c (my_strftime):
40884         Define to nstrftime if emacs, but only if my_strftime is not defined.
40885         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
40886         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
40887         Add one more extra argument: a nanoseconds value.
40888         All uses changed.
40889         (ns): New macro.
40890         (my_strftime function): Add %N format.
40891         (emacs_strftimeu): Renamed from emacs_strftime,
40892         with extra ut argument.
40893
40894 2001-05-09  Paul Eggert  <eggert@twinsun.com>
40895
40896         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
40897
40898 2001-04-21  Jim Meyering  <meyering@lucent.com>
40899
40900         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
40901         doesn't interfere.
40902
40903 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
40904
40905         * m4/ftruncate.m4: Check for chsize.
40906         Link with ftruncate.o unconditionally if ftruncate is missing.
40907         This was required when cross-compiling to i586-mingw32msvc.
40908
40909 2001-04-08  Jim Meyering  <meyering@lucent.com>
40910
40911         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
40912         recomputed; that's necessary when the offset spans a DST transition.
40913         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
40914
40915 2001-04-02  Jim Meyering  <meyering@lucent.com>
40916
40917         * lib/regex.h, regex.c: Update from GNU libc.
40918
40919 2001-03-24  Jim Meyering  <meyering@lucent.com>
40920
40921         * m4/jm-macros.m4: Require autoconf-2.49d.
40922
40923 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
40924
40925         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
40926
40927 2001-03-19  Paul Eggert  <eggert@twinsun.com>
40928
40929         * lib/version-etc.c (version_etc_copyright): Update to 2001.
40930
40931 2001-03-17  Jim Meyering  <meyering@lucent.com>
40932
40933         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
40934         now that the version in autoconf is equivalent.
40935         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
40936
40937         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
40938         Suggestion from Akim Demaille.
40939
40940         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
40941         (jm_PREREQ_TEMPNAME): New function.
40942
40943 2001-03-16  Paul Eggert  <eggert@twinsun.com>
40944
40945         * lib/tempname.c (uint64_t): Define to uintmax_t if
40946         not defined, and if UINT64_MAX is not defined.
40947         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
40948         Reported by John David Anglin.
40949
40950 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
40951
40952         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
40953         resolve alias if codeset is empty.
40954         * lib/config.charset (BeOS): Use wildcard syntax.
40955
40956 2001-03-13  Jim Meyering  <meyering@lucent.com>
40957
40958         * lib/path-concat.c (path_concat)
40959         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
40960         concatenating e.g., `C:' and `foo'.
40961         From Bruno Haible.
40962
40963 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
40964
40965         * lib/localcharset.c (locale_charset): Don't use
40966         setlocale(LC_CTYPE,NULL). Don't return NULL.
40967         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
40968
40969 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
40970
40971         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
40972         support for DOS/DJGPP.
40973
40974 2001-03-01  Paul Eggert  <eggert@twinsun.com>
40975
40976         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
40977         lacks mkstemp.  Compile our own tempname.c if we compile our own
40978         mkstemp.c, as mkstemp relies on tempname.
40979
40980 2001-03-01  Jim Meyering  <meyering@lucent.com>
40981
40982         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
40983         AH_VERBATIM really does output its argument verbatim.
40984
40985 2001-02-28  Paul Eggert  <eggert@twinsun.com>
40986
40987         * lib/Makefile.am (libfetish_a_SOURCES):
40988         Add dup-safer.c, fopen-safer.c.
40989         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
40990
40991         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
40992         * lib/unistd-safer.h: New files.
40993
40994 2001-02-25  Paul Eggert  <eggert@twinsun.com>
40995
40996         The mkstemp replacement is taken from glibc 2.2.2, with some
40997         portability fixes for use outside glibc, as follows:
40998
40999         * lib/tempname.c (struct_stat64): New macro.
41000         (direxists, __gen_tempname): Use it.
41001         This avoids a portability problem with Solaris 8.
41002
41003         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
41004         (<stddef.h>, <stdint.h>, <string.h>):
41005         Include only if STDC_HEADERS || _LIBC.
41006         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
41007         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
41008         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
41009         (__set_errno): Define this macro if <errno.h> doesn't.
41010         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
41011         Define these macros if <stdio.h> doesn't.
41012         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
41013         Define these macros if <sys/stat.h>
41014         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
41015         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
41016         __xstat64): Define if not _LIBC.
41017         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
41018         (__gen_tempname): Invoke gettimeofday only if
41019         HAVE_GETTIMEOFDAY || _LIBC;
41020         otherwise, fall back on plain "time".
41021         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
41022
41023         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
41024
41025         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
41026
41027 2001-02-18  Paul Eggert  <eggert@twinsun.com>
41028
41029         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
41030
41031 2001-02-17  Paul Eggert  <eggert@twinsun.com>
41032
41033         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
41034         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
41035         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
41036         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
41037
41038 2001-02-17  Paul Eggert  <eggert@twinsun.com>
41039
41040         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
41041         Remove workaround macros for hosts that have mbrtowc but not
41042         mbstate_t, as we now insist on proper declarations for both
41043         before using mbrtowc.
41044
41045 2001-02-17  Jim Meyering  <meyering@lucent.com>
41046
41047         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
41048         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
41049         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
41050         UnixWare 7.1.1.
41051
41052         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
41053         rather than AC_CACHE_VAL.
41054
41055 2001-02-17  Jim Meyering  <meyering@lucent.com>
41056
41057         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
41058         around included file name.
41059
41060         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
41061
41062         * lib/strftime.c: Update from GNU libc (the only changes were to
41063         comments).
41064
41065 2001-02-17  Jim Meyering  <meyering@lucent.com>
41066
41067         * lib/regex.c: Update from libc.
41068
41069 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
41070
41071         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
41072         clash.
41073
41074 2001-02-16  Paul Eggert  <eggert@twinsun.com>
41075
41076         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
41077         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
41078         Reported by Mark Hounschell via Paul Eggert.
41079
41080 2001-02-07  Jim Meyering  <meyering@lucent.com>
41081
41082         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
41083
41084 2001-02-05  Jim Meyering  <meyering@lucent.com>
41085
41086         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
41087         it includes the patch required for `large file' support with at least
41088         HP-UX's 10.20 /bin/cc.
41089
41090 2001-02-03  Jim Meyering  <meyering@lucent.com>
41091
41092         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
41093         AS_IF, now that it works once again (mysteriously).
41094         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41095
41096 2001-01-30  Jim Meyering  <meyering@lucent.com>
41097
41098         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
41099         * m4/chown.m4: Rename conftestchown to conftest.chown.
41100         * m4/rename.m4: s/conftestdir/conftest.d1/ and
41101         s/conftestdir2/conftest.d2/.
41102         * m4/utimes.m4: s/conftestdata/conftest.data/
41103         Inspired by Pavel Roskin's change in autoconf.
41104
41105 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
41106
41107         * lib/config.charset: Update for FreeBSD 4.2.
41108
41109 2001-01-27  Jim Meyering  <meyering@lucent.com>
41110
41111         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
41112         a use of AS_IF.
41113         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41114
41115 2001-01-26  Jim Meyering  <meyering@lucent.com>
41116
41117         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
41118         quotearg.c includes it.
41119
41120 2001-01-26  Jim Meyering  <meyering@lucent.com>
41121
41122         * lib/quotearg.c: Include stddef.h.
41123         * lib/quote.c: Include stddef.h.
41124         Reported by Axel Kittenberger.
41125
41126         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
41127         line in double quotes so that it evokes a better diagnostic.
41128         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
41129         Reported by Axel Kittenberger.
41130
41131 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
41132
41133         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
41134         as if it was a `charset'.
41135
41136 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41137
41138         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
41139         has const.
41140
41141 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41142
41143         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
41144         to avoid a warning.  Add back 'const' to inptr.
41145
41146 2001-01-20  Jim Meyering  <meyering@lucent.com>
41147
41148         Be sure that headers are checked before used in code compiled
41149         for the type checks.
41150         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
41151         In place of that, invoke jm_CHECK_ALL_TYPES.
41152         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
41153         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
41154         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
41155         The check for ssize_t was mistakenly run before the test for unistd.h.
41156
41157         The configure-time check for stdbool.h was missing.
41158         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
41159         (jm_PREREQ_HASH): New function.
41160
41161 2001-01-17  Jim Meyering  <meyering@lucent.com>
41162
41163         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
41164         for autoconf-2.49c.
41165         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
41166
41167 2001-01-16  Jim Meyering  <meyering@lucent.com>
41168
41169         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
41170         From Bruno Haible.
41171
41172 2001-01-14  Jim Meyering  <meyering@lucent.com>
41173
41174         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
41175         foo and bar.  Create conftestdir/ in the script, not in the C code.
41176         Remove directories in the script, not in the C code.
41177         Remove conftestdir{,2} before trying to create the directory.
41178         Make the entire configure script fail if the mkdir fails.
41179
41180 2001-01-14  Jim Meyering  <meyering@lucent.com>
41181
41182         * lib/rename.c: New file.  From Volker Borchert.
41183         Include stdlib.h, string.h or strings.h, and xalloc.h.
41184         Use strip_trailing_slashes rather than open-coding it.
41185
41186 2001-01-03  Paul Eggert  <eggert@twinsun.com>
41187
41188         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
41189
41190 2001-01-03  Jim Meyering  <meyering@lucent.com>
41191
41192         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
41193         of local `inptr' to avoid warning with some system declarations of
41194         iconv.
41195
41196 2001-01-02  Volker Borchert  <bt@teknon.de>
41197
41198         * m4/rename.m4: New file.
41199         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
41200
41201 2001-01-01  Jim Meyering  <meyering@lucent.com>
41202
41203         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
41204         even on systems with utmpx.h.  It's necessary for the declaration of
41205         utmp's ut_user member.  Reported by Andreas Jaeger.
41206
41207         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
41208         available. They are required for the declarations of getgrgid and
41209         getpwuid resp.
41210         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
41211         Reported by Andreas Jaeger.
41212
41213 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
41214
41215         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
41216         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
41217         so `make install' also works in VPATH builds.
41218
41219 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
41220
41221         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
41222         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
41223         can be used in subdirectories.
41224
41225 2000-12-29  Paul Eggert  <eggert@twinsun.com>
41226
41227         * lib/modechange.c: Do not assume that mode_t uses the
41228         traditional octal encoding.  E.g. "chmod 1 FOO" should set
41229         the other-execute bit of FOO even if S_IXOTH != 1.
41230
41231         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
41232         WOTH, XOTH, ALLM): New macros.
41233         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
41234          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
41235         Use them.
41236         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
41237         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
41238         (mode_compile):
41239         No need to use uintmax_t; unsigned long is long enough.
41240         Don't bother to get suffix since we don't use it.
41241
41242 2000-12-26  Jim Meyering  <meyering@lucent.com>
41243
41244         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
41245         better with autoheader.
41246
41247 2000-12-24  Jim Meyering  <meyering@lucent.com>
41248
41249         * lib/hash.c (is_prime): Return explicit boolean values.
41250         (hash_get_first): Return NULL to appease Irix5.6's 89.
41251         Reported by Nelson Beebe.
41252
41253 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
41254
41255         * lib/localcharset.c (locale_charset): Add support for Win32.
41256
41257 2000-12-18  Paul Eggert  <eggert@twinsun.com>
41258
41259         * lib/physmem.h, lib/physmem.c: New files.
41260
41261         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
41262         (noinst_HEADERS): Add physmem.h.
41263
41264         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
41265         't' for compatibility with Solaris 8 sort.
41266
41267 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
41268
41269         * lib/config.charset: Add support for BeOS.
41270
41271 2000-12-17  Jim Meyering  <meyering@lucent.com>
41272
41273         * m4/dos.m4 (jm_AC_DOS): New file and macro.
41274         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
41275
41276 2000-12-16  Jim Meyering  <meyering@lucent.com>
41277
41278         This bug had a serious impact on chown: `chown N:M FILE' (for integer
41279         N and M) would have treated it like `chown N:N FILE'.
41280
41281         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
41282
41283 2000-12-16  Jim Meyering  <meyering@lucent.com>
41284
41285         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
41286         SHELLS_FILE to a file name that's useful on djgpp systems.
41287         Include stdlib.h.
41288         (ADDITIONAL_DEFAULT_SHELLS): Define.
41289         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
41290         Based mostly on a patch from Prashant TR.
41291
41292 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
41293
41294         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
41295         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
41296         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
41297
41298 2000-12-08  Andreas Schwab  <schwab@suse.de>
41299
41300         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
41301         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
41302
41303 2000-12-07  Jim Meyering  <meyering@lucent.com>
41304
41305         * lib/stripslash.c (ISSLASH): Define.
41306         (strip_trailing_slashes): Use ISSLASH rather than comparing against
41307         `/'.
41308         From Prashant TR.
41309
41310         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
41311         (dir_name_r): Declare this function as static.
41312         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
41313         manifest itself on a name containing a mix of slashes and
41314         backslashes.
41315         Make this function work with names starting with a DOS-style
41316         drive letter and colon prefix.
41317         (dir_name): Append `.' if necessary.
41318         Based mostly on patches from Prashant TR and Eli Zaretskii.
41319
41320         * lib/dirname.h (dir_name_r): Remove prototype.
41321
41322 2000-12-06  Paul Eggert  <eggert@twinsun.com>
41323
41324         * m4/off_t-format.m4: Remove this file.
41325         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
41326
41327 2000-12-06  Jim Meyering  <meyering@lucent.com>
41328
41329         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
41330         replacement strtoull, we may well need the replacement strtoul, too.
41331         Check for declarations of strtoul and strtoull.
41332         Check for strtol.  Mainly as a cue to cause automake to include
41333         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
41334         Check for limits.h -- strtol.c needs it.
41335
41336 2000-12-05  Jim Meyering  <meyering@lucent.com>
41337
41338         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
41339
41340 2000-12-04  Jim Meyering  <meyering@lucent.com>
41341
41342         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
41343         Also include memory.h, stdlib.h, unistd.h if appropriate.
41344         Reported by Andreas Jaeger (conflicting declaration of malloc).
41345
41346 2000-12-02  Jim Meyering  <meyering@lucent.com>
41347
41348         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
41349         * m4/jm-macros.m4 (jm_MACROS): require it.
41350
41351 2000-12-02  Jim Meyering  <meyering@lucent.com>
41352
41353         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
41354
41355 2000-12-01  Paul Eggert  <eggert@twinsun.com>
41356
41357         * lib/memrchr.c: Include <config.h> before any system include file.
41358
41359 2000-11-30  Jim Meyering  <meyering@lucent.com>
41360
41361         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
41362
41363 2000-11-30  Jim Meyering  <meyering@lucent.com>
41364
41365         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
41366
41367 2000-11-29  Paul Eggert  <eggert@twinsun.com>
41368
41369         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
41370
41371 2000-11-26  Jim Meyering  <meyering@lucent.com>
41372
41373         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
41374
41375 2000-11-22  Paul Eggert  <eggert@twinsun.com>
41376
41377         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
41378         size of (size_t) -1; it's not portable.
41379
41380 2000-11-17  Jim Meyering  <meyering@lucent.com>
41381
41382         * lib/strstr.c: Update from GNU libc.
41383
41384 2000-11-17  Akim Demaille  <akim@epita.fr>
41385
41386         * lib/obstack.h: Formatting changes.
41387         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
41388         prevent type checking.
41389         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
41390         cast the value to (void *): assigning a `foo *' to a `void *'
41391         variable is valid.
41392         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
41393
41394 2000-11-16  Jim Meyering  <meyering@lucent.com>
41395
41396         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
41397
41398 2000-11-11  Jim Meyering  <meyering@lucent.com>
41399
41400         * lib/error.c: Add a couple #includes, merging from GNU libc version.
41401
41402 2000-11-10  Jim Meyering  <meyering@lucent.com>
41403
41404         * lib/obstack.h: Update from GNU libc.
41405         * lib/obstack.c: Likewise.
41406
41407 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
41408
41409         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
41410
41411 2000-11-06  Paul Eggert  <eggert@twinsun.com>
41412
41413         * lib/getusershell.c (setusershell): Use rewind rather than
41414         fseek/fseeko, to avoid configuration hassles with fseeko.
41415         Don't bother opening SHELLS_FILE if shellstream is NULL;
41416         it's not necessary.
41417
41418 2000-11-05  Jim Meyering  <meyering@lucent.com>
41419
41420         * lib/makepath.h (make_dir): Declare.
41421         * lib/makepath.c (make_dir): Remove `static' attribute.
41422         Tweak a comment.
41423
41424 2000-11-04  Jim Meyering  <meyering@lucent.com>
41425
41426         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
41427
41428 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
41429
41430         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
41431         last one in a bucket, advance to the next bucket.
41432
41433 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
41434
41435         * lib/fnmatch.c: Do not comment out all the code if we are using
41436         the GNU C library, because in some cases we are replacing buggy
41437         code in the GNU C library itself.
41438
41439 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
41440
41441         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
41442         (regex_compile): Catch bogus \(\1\).
41443
41444 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41445
41446         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
41447         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
41448         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
41449
41450 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41451
41452         * lib/error.h, getline.h, modechange.h:
41453         Remove "2000" from Copyright line, as the file hasn't been
41454         changed this year other than in the copyright notice.
41455
41456         * lib/xalloc.h: Add "2000" to Copyright line, as this file
41457         was changed this year.
41458
41459 2000-10-29  Jim Meyering  <meyering@lucent.com>
41460
41461         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
41462         renaming.
41463         * m4/ls-mntd-fs.m4: Likewise
41464
41465 2000-10-29  Jim Meyering  <meyering@lucent.com>
41466
41467         * lib/xstat.in: Fix grammar in comment.
41468
41469 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
41470
41471         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
41472         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
41473         doesn't define __restrict_arr.
41474
41475 2000-10-28  Jim Meyering  <meyering@lucent.com>
41476
41477         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
41478         (jm_PREREQ_MEMCHR): New function.
41479
41480 2000-10-28  Jim Meyering  <meyering@lucent.com>
41481
41482         * lib/memchr.c: Update from libc.
41483         Adjust for portability:
41484         [HAVE_STDLIB_H]: Include stdlib.h.
41485         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
41486         Undef __memchr, too.
41487         [!weak_alias]: Define __memchr to memchr.
41488
41489         * lib/regex.c: Update from libc.
41490         * lib/regex.h: Likewise.
41491         * lib/getopt1.c: Likewise.
41492         * lib/memcmp.c: Likewise.
41493
41494         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
41495         Avoid using fseek, when possible -- it's broken by design.
41496         Patch by Ulrich Drepper.
41497
41498 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
41499
41500         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
41501         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
41502         Giving in to popular pressure to shut up the compiler with casts.
41503
41504 2000-10-26  Jim Meyering  <meyering@lucent.com>
41505
41506         * lib/strftime.c: Update from libc.
41507
41508 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
41509
41510         * regex.c: More `unsigned char' -> `re_char' changes.
41511         Also change several `int' into `re_wchar_t'.
41512         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
41513         (PUSH_FAILURE_POINTER): Don't cast any more.
41514         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
41515         We want GCC to complain, since this piece of code makes
41516         re_match non-reentrant, which *should* be fixed.
41517         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
41518         (EXTEND_BUFFER): Use RETALLOC.
41519         (SET_LIST_BIT): Don't cast.
41520         (re_wchar_t): New type.
41521         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
41522         that those two functions will always properly return.
41523         (IMMEDIATE_QUIT_CHECK): Cast to void.
41524         (analyse_first): Use recursion rather than an explicit stack.
41525         (re_compile_fastmap): Can't fail anymore.
41526         (re_search_2): Don't check re_compile_fastmap for failure.
41527         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
41528         Now also sets the new value (passed in a new argument).
41529         (re_match_2_internal): Use it.
41530         Also, use a new var `reg' of type size_t when looping through regs
41531         rather than reuse the inappropriate `mcnt'.
41532
41533 2000-10-25  Jim Meyering  <meyering@lucent.com>
41534
41535         * lib/obstack.c: Update from libc.
41536
41537 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
41538
41539         * regex.c (regex_compile): Change the way of handling a range from
41540         a char less than 256 to a char not less than 256.
41541
41542 2000-10-24  Andrew Innes  <andrewi@gnu.org>
41543
41544         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
41545         NT-Emacs only.
41546         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
41547         so that re_search functions only quit when callers expect them to.
41548
41549 2000-10-23  Jim Meyering  <meyering@lucent.com>
41550
41551         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
41552         wrong.  That set_locale call must not have any side effects.
41553         From Paul Eggert.
41554
41555 2000-10-22  Jim Meyering  <meyering@lucent.com>
41556
41557         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
41558         [CYCLIC]: Remove now-unused definition.
41559
41560         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
41561         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
41562         Suggestion from Ulrich Drepper.
41563
41564 2000-10-21  Jim Meyering  <meyering@lucent.com>
41565
41566         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
41567         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
41568         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
41569
41570 2000-10-21  Jim Meyering  <meyering@lucent.com>
41571
41572         * lib/dirname.c (memrchr): Declare if necessary.
41573         (dir_name): Remove the restriction that there be no
41574         trailing slashes.  Now, this code skips past them, effectively
41575         ignoring them.
41576         [TEST_DIRNAME] (main): New unit tests.
41577
41578         * lib/memrchr.c: New file from GNU libc.
41579         Undef __memrchr, too.
41580         [!weak_alias]: Define __memrchr to memrchr.
41581         Guard weak_alias use with `#ifdef weak_alias'.
41582
41583 2000-10-21  Jim Meyering  <meyering@lucent.com>
41584
41585         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
41586         (dir_name): Use dir_name_r.
41587         * lib/dirname.h (dir_name_r): Declare it.
41588
41589 2000-10-17  Jim Meyering  <meyering@lucent.com>
41590
41591         * lib/quote.h (PARAMS): Define and use.
41592         Reported by Akim Demaille.
41593
41594         * lib/getopt.c: Update from libc.
41595
41596 2000-10-16  Jim Meyering  <meyering@lucent.com>
41597
41598         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
41599         setlocale.
41600         From Jan Fedak.
41601
41602 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
41603
41604         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
41605
41606 2000-09-25  Jim Meyering  <meyering@lucent.com>
41607
41608         * lib/md5.h (rol): Define (from GnuPG).
41609
41610         * lib/sha.c: Give credit (GnuPG) where due.
41611         (M): Use rol rather than open-coding it.
41612         Add a FIXME comment.
41613
41614 2000-09-21  Jim Meyering  <meyering@lucent.com>
41615
41616         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
41617         Reported by Michael Stone.
41618
41619 2000-09-20  Jim Meyering  <meyering@lucent.com>
41620
41621         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
41622         (noinst_HEADERS): Add sha.h.
41623         Based on code from Scott G. Miller and from GnuPG.
41624
41625 2000-09-18  Jim Meyering  <meyering@lucent.com>
41626
41627         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
41628         LIBS. Otherwise, everyone ends up linking with -lelf for some
41629         configurations.
41630         Reported by Mike Stone.
41631
41632 2000-09-15  Jim Meyering  <meyering@lucent.com>
41633
41634         * lib/regex.c: Update from libc.
41635
41636 2000-09-10  Jim Meyering  <meyering@lucent.com>
41637
41638         * lib/getopt.c (_getopt_internal): Update from glibc.
41639
41640 2000-09-09  Jim Meyering  <meyering@lucent.com>
41641
41642         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
41643         think it should be used as a general replacement for isascii.
41644         * lib/fnmatch.c: Likewise.
41645         * lib/mbswidth.c: Likewise
41646         * lib/regex.c: Likewise.
41647
41648         Don't use atoi.
41649         * lib/userspec.c: Include sys/param.h and limits.h.
41650         Include xstrtol.h.
41651         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
41652         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
41653         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
41654         UID, GID.  Check range.
41655
41656 2000-09-06  Jim Meyering  <meyering@lucent.com>
41657
41658         * lib/getopt.c (_getopt_internal): Update from glibc.
41659
41660 2000-08-30  Jim Meyering  <meyering@lucent.com>
41661
41662         * lib/strftime.c: Merge in changes from GNU libc.
41663
41664 2000-08-26  Jim Meyering  <meyering@lucent.com>
41665
41666         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
41667         * m4/fpending.m4: New file.
41668
41669 2000-08-26  Jim Meyering  <meyering@lucent.com>
41670
41671         * lib/closeout.c: Include "__fpending.h".
41672         (close_stdout_status): Return right away if there's nothing to flush.
41673
41674         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
41675         * lib/__fpending.c: New file.
41676         * lib/__fpending.h: New file.
41677
41678 2000-08-20  Jim Meyering  <meyering@lucent.com>
41679
41680         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
41681         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
41682         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
41683
41684 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
41685
41686         Improve fileutils installation on systems where running
41687         programs (like install) can't be unlinked.
41688         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
41689         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
41690
41691 2000-08-07  Paul Eggert  <eggert@twinsun.com>
41692
41693         Standardize on "memory exhausted" instead of "Memory exhausted"
41694         or "virtual memory exhausted".
41695         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
41696         "virtual memory exhausted".
41697         * lib/same.c (same_name): Invoke xalloc_die instead of printing
41698         our own message.
41699         * lib/userspec.c (parse_user_spec): Likewise.
41700         * lib/bumpalloc.h: comment fix
41701         * lib/same.c, userspec.c: Include xalloc.h.
41702
41703         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
41704         not char *const and pointing to a constant array.
41705         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
41706         (xrealloc): Comment fix.
41707
41708         * lib/userspec.c (parse_user_spec):
41709         Don't translate a message until just before returning,
41710         to avoid unnecessary translation.
41711
41712 2000-08-07  Jim Meyering  <meyering@lucent.com>
41713
41714         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
41715         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
41716         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
41717         getgroups.c, gethostname.c, getopt.h, group-member.c,
41718         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
41719         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
41720         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
41721         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
41722         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
41723         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
41724         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
41725         yesno.c: Back out Copyright date changes for each file with no change
41726         this year.  This eases coordination with other programs using the same
41727         source code modules.  From Paul Eggert.
41728
41729 2000-08-06  Paul Eggert  <eggert@twinsun.com>
41730
41731         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
41732         not char, for compatibility with glibc 2.1.3 strftime.c.
41733
41734 2000-08-03  Greg McGary  <greg@mcgary.org>
41735
41736         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
41737         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
41738         (EXTEND_BUFFER): Use them.
41739
41740 2000-08-01  Jim Meyering  <meyering@lucent.com>
41741
41742         * lib/dirname.c (ISSLASH): Define.
41743         (BACKSLASH_IS_PATH_SEPARATOR): Define.
41744         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
41745         both `\' and `/' may be use as path separators.
41746         Based on a patch from Prashant TR.
41747
41748 2000-07-31  Paul Eggert  <eggert@twinsun.com>
41749
41750         * lib/quotearg.c (quotearg_n_options): Don't make the initial
41751         slot vector a constant, since it might get modified.
41752
41753 2000-07-31  Jim Meyering  <meyering@lucent.com>
41754
41755         * lib/xmalloc.c: Use `virtual memory exhausted', not
41756         `Memory exhausted'.
41757         * lib/obstack.c (print_and_abort): Likewise.
41758
41759 2000-07-30  Paul Eggert  <eggert@twinsun.com>
41760
41761         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
41762         buffer, so that the caller can always quote one small
41763         component of a "memory exhausted" message in slot 0.
41764         From a suggestion by Jim Meyering.
41765
41766 2000-07-30  Jim Meyering  <meyering@lucent.com>
41767
41768         * lib/makepath.c (make_path): Quote the other instance, too.
41769
41770         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
41771         (STATIC_BUF_SIZE): Define.
41772         (quotearg_n_options): Use only statically allocated storage when
41773         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
41774         than STATIC_BUF_SIZE.
41775
41776 2000-07-29  Jim Meyering  <meyering@lucent.com>
41777
41778         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
41779         * lib/dirname.c (dir_name): Likewise.
41780
41781         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
41782         `/'.
41783
41784         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
41785         (dir_name): Assert that there are no trailing slashes.
41786
41787 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
41788
41789         * lib/mbswidth.h (mbswidth): Add a flags argument.
41790         (mbswidth): New declaration.
41791         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
41792         * lib/mbswidth.c (mbswidth): Add a flags argument.
41793         (mbsnwidth): New function.
41794
41795 2000-07-24  Jim Meyering  <meyering@lucent.com>
41796
41797         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
41798
41799 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41800
41801         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
41802
41803 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41804
41805         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
41806         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
41807         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
41808         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
41809         invoke multibyte primitives.
41810
41811 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41812
41813         * lib/quotearg.c:
41814         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
41815         so that mbstate_t is always defined.
41816
41817         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
41818         be 1 in at least one GCC installation, and this configuration
41819         error is likely to be common.  Ignoring MB_LEN_MAX hurts
41820         performance on hosts that have mbrtowc but have only unibyte
41821         locales, but I assume these hosts are rare.
41822
41823 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41824
41825         * lib/mbswidth.c (_XOPEN_SOURCE):
41826         Don't define; this causes problems on Solaris 7.
41827         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
41828
41829 2000-07-23  Jim Meyering  <meyering@lucent.com>
41830
41831         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
41832         too: getgrgid, getpwuid, getuid.
41833
41834 2000-07-23  Jim Meyering  <meyering@lucent.com>
41835
41836         * lib/basename.c (base_name): Add an assertion.
41837
41838 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
41839
41840         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
41841         shadow its mbsinit function.
41842
41843 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41844
41845         * lib/mbswidth.h: New file.
41846         * lib/mbswidth.c: New file.
41847         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
41848         (noinst_HEADERS): Add mbswidth.h.
41849
41850 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41851
41852         * lib/config.charset: Add support for FreeBSD. Improve support for
41853         HP-UX and IRIX 6.
41854
41855 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
41856
41857         * m4/mbswidth.m4: New file.
41858         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
41859
41860 2000-07-15  Jim Meyering  <meyering@lucent.com>
41861
41862         * lib/makepath.c: Include quote.h.
41863         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
41864         corresponding argument in a `quote (...)' call.
41865         Give better diagnostics.
41866
41867         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
41868         (noinst_HEADERS): Add quote.h.
41869
41870         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
41871         from tar's src/misc.c.
41872         * lib/quote.h: New file.  Prototypes for same.
41873
41874 2000-07-14  Paul Eggert  <eggert@twinsun.com>
41875
41876         From a suggestion by Bruno Haible.
41877         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
41878         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
41879         to decide whether to define the BeOS workaround macro;
41880         this adjusts to the change to AC_MBSTATE_T.
41881
41882 2000-07-14  Jim Meyering  <meyering@lucent.com>
41883
41884         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
41885         jm_AC_TYPE_UINTMAX_T.
41886
41887 2000-07-13  Paul Eggert  <eggert@twinsun.com>
41888
41889         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
41890
41891         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
41892         quotearg_buffer_restyled): Add support for
41893         clocale_quoting_style.  Undo previous change to
41894         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
41895         and "{RIGHT QUOTATION MARK}" msgids.
41896
41897 2000-07-10  Paul Eggert  <eggert@twinsun.com>
41898
41899         From a suggestion by Bruno Haible.
41900         * m4/mbstate_t.m4 (AC_MBSTATE_T):
41901         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
41902         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
41903         and mbstate_t, to a single-part test that simply defines mbstate_t.
41904         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
41905         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
41906
41907 2000-07-10  Jim Meyering  <meyering@lucent.com>
41908
41909         * m4/strerror_r.m4: Mirror the correction made in autoconf.
41910
41911         * m4/gnu-source.m4: Output to confdefs.h directly.
41912         Suggestion from Akim Demaille.
41913
41914 2000-07-09  Paul Eggert  <eggert@twinsun.com>
41915
41916         The old behavior of quoting `like this' doesn't look good with
41917         newer, ISO-style fonts.  See:
41918         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
41919
41920         Instead, quote "like this" by default.  Let the translator
41921         tailor the locale-specific quoting behavior by providing
41922         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
41923
41924         * lib/quotearg.c (N_): New macro.
41925         (gettext_default): New function.
41926         (quotearg_buffer_restyled): Use
41927         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
41928         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
41929
41930 2000-07-09  Jim Meyering  <meyering@lucent.com>
41931
41932         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
41933         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
41934
41935         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
41936         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
41937
41938 2000-07-09  Jim Meyering  <meyering@lucent.com>
41939
41940         * lib/Most files: Update copyright dates to include 2000.
41941
41942 2000-07-08  Jim Meyering  <meyering@lucent.com>
41943
41944         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
41945         if not defined.
41946         (xgethostname): Remove now-unnecessary #ifdef.
41947         Move declaration of `err' into loop where it's used.
41948
41949 2000-07-05  Paul Eggert  <eggert@twinsun.com>
41950         and Bruno Haible  <haible@clisp.cons.org>
41951
41952         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
41953         only if the test for an object-type mbstate_t fails.  This
41954         prevents us from mistakenly reporting that mbstate_t is a
41955         system object type after we "#define mbstate_t int" to work
41956         around its lack.
41957
41958 2000-07-05  Paul Eggert  <eggert@twinsun.com>
41959         and Bruno Haible  <haible@clisp.cons.org>
41960
41961         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
41962
41963 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41964
41965         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
41966         to strerror_r.
41967         Include <ctype.h> for use of isalpha.
41968
41969 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41970
41971         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
41972         by allocating a larger buffer. Test the gethostname return value for
41973         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
41974         returns an error and ENAMETOOLONG isn't defined.
41975
41976 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
41977
41978         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
41979         dimension.
41980
41981 2000-07-04  Jim Meyering  <meyering@lucent.com>
41982
41983         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
41984         of the deprecated AC_CHECKING.
41985
41986 2000-07-04  Jim Meyering  <meyering@lucent.com>
41987
41988         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
41989         Reported by Bruno Haible.
41990
41991 2000-07-04  Jim Meyering  <meyering@lucent.com>
41992
41993         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
41994         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
41995         lacks mbrtowc.
41996
41997 2000-07-03  Paul Eggert  <eggert@twinsun.com>
41998
41999         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
42000         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
42001
42002 2000-07-03  Paul Eggert  <eggert@twinsun.com>
42003         and Bruno Haible  <haible@clisp.cons.org>
42004
42005         * lib/quotearg.c (mbrtowc):
42006         Assign to *pwc, and return 1 only if result is nonzero.
42007         (iswprint): Use ISPRINT when substituting our own mbrtowc.
42008
42009 2000-07-03  Jim Meyering  <meyering@lucent.com>
42010
42011         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
42012
42013 2000-07-03  Jim Meyering  <meyering@lucent.com>
42014
42015         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
42016         This is necessary to get a definition of e.g., UTMP_FILE on
42017         HP-UX 10.20.
42018         From Bob Proulx.
42019
42020 2000-07-02  Jim Meyering  <meyering@lucent.com>
42021
42022         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
42023
42024         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
42025         AC_LIBOBJ(function_name).
42026         * m4/chown.m4: Likewise.
42027         * m4/fnmatch.m4: Likewise.
42028         * m4/ftruncate.m4: Likewise.
42029         * m4/getgroups.m4: Likewise.
42030         * m4/getline.m4: Likewise.
42031         * m4/group-member.m4: Likewise.
42032         * m4/jm-macros.m4: Likewise.
42033         * m4/lstat.m4: Likewise.
42034         * m4/malloc.m4: Likewise.
42035         * m4/memcmp.m4: Likewise.
42036         * m4/nanosleep.m4: Likewise.
42037         * m4/putenv.m4: Likewise.
42038         * m4/realloc.m4: Likewise.
42039         * m4/regex.m4: Likewise.
42040         * m4/stat.m4: Likewise.
42041         * m4/strftime.m4: Likewise.
42042
42043 2000-07-02  Jim Meyering  <meyering@lucent.com>
42044
42045         * lib/quotearg.c (mbstate_t): Don't define here.
42046
42047 2000-07-02  Jim Meyering  <meyering@lucent.com>
42048
42049         * lib/nanosleep.c (SIGCONT): Define if not already defined.
42050
42051 2000-07-01  Jim Meyering  <meyering@lucent.com>
42052
42053         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
42054
42055 2000-07-01  Jim Meyering  <meyering@lucent.com>
42056
42057         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
42058         problem.
42059
42060 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
42061
42062         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
42063         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
42064
42065 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
42066
42067         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
42068         per change in ../m4/ls-mntd-fs.m4.
42069         (read_filesystem_list): Ignore symbolic links.
42070
42071 2000-06-29  Jim Meyering  <meyering@lucent.com>
42072
42073         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
42074         for declaration of strcmp.
42075
42076         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
42077
42078         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
42079         Avoid warning by casting result to `char *' to remove `const'.
42080
42081 2000-06-28  Jim Meyering  <meyering@lucent.com>
42082
42083         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
42084         included by quotearg.c, for which we perform this test.  From
42085         Bruno Haible.
42086
42087 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42088
42089         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
42090         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
42091         <utmpx.h> exists, put readutmp.o into LIBOBJS.
42092
42093 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42094
42095         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
42096
42097 2000-06-26  Paul Eggert  <eggert@twinsun.com>
42098
42099         savedir now sets errno on failure and invokes xmalloc to get memory.
42100         Fix a couple of other minor bugs while we're at it.
42101
42102         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
42103         (NAMLEN): Remove macro.
42104         (malloc, realloc): Remove decls.
42105         (stpcpy): Likewise.
42106         ("xalloc.h"): Include.
42107         (NAME_SIZE_DEFAULT): New macro.
42108         (savedir): Use xmalloc / xrealloc to allocate memory.
42109         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
42110         Skip "" directory entries.
42111         Use strlen to calculate directory entry length, since the old method
42112         is rarely used these days and isn't worth supporting.
42113         Don't use a pointer after freeing it.
42114         Check for integer overflow when calculating allocation size.
42115         Use memcpy to copy entries, instead of stpcpy.
42116         Set errno properly when returning NULL.
42117         Check for readdir error.
42118
42119 2000-06-26  Jim Meyering  <meyering@lucent.com>
42120
42121         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
42122
42123 2000-06-25  Jim Meyering  <meyering@lucent.com>
42124
42125         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
42126         Linux header bug when _XOPEN_SOURCE is defined to 500.
42127
42128 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42129
42130         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
42131         deficiency.
42132
42133 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42134
42135         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
42136         Include xalloc.h.
42137         Don't include <stdlib.h>.  Don't declare malloc, realloc.
42138
42139 2000-06-24  Jim Meyering  <meyering@lucent.com>
42140
42141         * m4/strerror_r.m4: Revive this file -- to try out an experimental
42142         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
42143         for which strerror does return char*, but which lacks a conveniently
42144         accessible declaration of the function.  If the compile-test says
42145         strerror_r doesn't work, then resort to a `run'-test that works on
42146         BeOS and segfaults on DEC Unix.
42147
42148 2000-06-24  Jim Meyering  <meyering@lucent.com>
42149
42150         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
42151
42152 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42153
42154         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
42155         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
42156
42157 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42158
42159         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
42160         (mbrtowc, mbstate_t): Define substitutes if
42161         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
42162         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
42163         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
42164
42165 2000-06-23  Jim Meyering  <meyering@lucent.com>
42166
42167         * m4/afs.m4: Add missing AC_MSG_RESULT.
42168         Reported by Bruno Haible.
42169
42170         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
42171         Suggestion from Bruno Haible.
42172
42173 2000-06-23  Jim Meyering  <meyering@lucent.com>
42174
42175         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
42176
42177 2000-06-21  Jim Meyering  <meyering@lucent.com>
42178
42179         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
42180
42181 2000-06-21  Jim Meyering  <meyering@lucent.com>
42182
42183         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
42184         (noinst_HEADERS): Add getstr.h.
42185
42186         * lib/getline.c (getstr): Move into a separate file.
42187         * lib/getstr.c (getstr): New file, extracted from getline.c, with
42188         the following changes: new parameter, delim2; both delim[12]
42189         parameters have type `int', not `char'.  The latter would lose
42190         with 8-bit delimiters.
42191         * lib/getstr.h: New file.
42192
42193 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42194
42195         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
42196         than 1024, return a memory chunk of least possible size, instead
42197         of size PATH_MAX + 2. In the loop, increment the size proportionally.
42198         Use free/xmalloc instead of xrealloc to avoid copying for very long
42199         paths.
42200
42201 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42202
42203         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
42204         the empty string.
42205
42206 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42207
42208         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
42209         address, not strdup.  Include <stdlib.h> and don't declare free().
42210
42211 2000-06-19  Jim Meyering  <meyering@lucent.com>
42212
42213         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
42214
42215 2000-06-18  Jim Meyering  <meyering@lucent.com>
42216
42217         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
42218
42219         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
42220         `checking whether...' message to be consistent with that of the
42221         lstat test.
42222
42223 2000-06-18  Jim Meyering  <meyering@lucent.com>
42224
42225         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
42226         Besides, these days every porting target provides a mkdir function.
42227
42228         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
42229         needed. (this snippet comes from src/system.h).
42230
42231 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
42232
42233         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
42234
42235 2000-06-15  Paul Eggert  <eggert@twinsun.com>
42236
42237         * lib/human.c (adjust_value): New function.
42238         (human_readable_inexact): Apply rounding style even when
42239         printing approximate values.
42240
42241 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42242
42243         * lib/human.c (human_readable_inexact): Allow an input block
42244         size that is not a multiple of the output block size, and vice versa.
42245         Reported by Piergiorgio Sartor.
42246
42247 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42248
42249         * lib/getdate.y (get_date): Apply relative times after time
42250         zone indicator, not before.  Reported by Todd A. Jacobs.
42251
42252 2000-06-13  Jim Meyering  <meyering@lucent.com>
42253
42254         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
42255
42256         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
42257
42258 2000-06-12  Paul Eggert  <eggert@twinsun.com>
42259
42260         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
42261
42262 2000-06-12  Jim Meyering  <meyering@lucent.com>
42263
42264         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
42265         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
42266         optional argument.
42267         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
42268         the optional argument, `lib'.
42269
42270 2000-06-08  Jim Meyering  <meyering@lucent.com>
42271
42272         * m4/largefile.m4: Remove file (now that it's part of autoconf).
42273
42274 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42275
42276         Rewrite largefile configuration so that we don't need to run
42277         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
42278         AC_CANONICAL_HOST in configure.in -- jmm]
42279
42280         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
42281         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
42282         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
42283         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
42284         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
42285         All uses changed.
42286         Instead of inspecting the output of getconf, try to compile the
42287         test program without and with the macro definition.
42288         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
42289         for getconf.  Instead, check for the needed flags by compiling
42290         test programs.
42291
42292 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42293
42294         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
42295
42296 2000-06-04  Jim Meyering  <meyering@lucent.com>
42297
42298         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
42299         SunOS 4.1.4 for which gid_t is an unsigned type.
42300
42301 2000-06-03  Jim Meyering  <meyering@lucent.com>
42302
42303         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
42304         now that autoconf requires that.
42305
42306         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
42307         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
42308         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
42309
42310 2000-06-03  Jim Meyering  <meyering@lucent.com>
42311
42312         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
42313
42314 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42315
42316         * m4/glibc21.m4: New file.
42317         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
42318
42319 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42320
42321         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
42322         newer, don't install charset.alias.
42323         * lib/config.charset: Change the Linux/glibc rules so they become empty
42324         on glibc-2.1 or newer.
42325
42326 2000-06-02  Jim Meyering  <meyering@lucent.com>
42327
42328         * lib/mountlist.c: Back out last change.  Instead, do this...
42329         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
42330         me_dummy member using the same `ignore'-testing code.
42331         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
42332         fs_type strings.
42333         From Mark D. Roth.
42334
42335 2000-05-29  Jim Meyering  <meyering@lucent.com>
42336
42337         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
42338         mounts with the `ignore' attribute.  Based on a patch from
42339         Mark D. Roth.
42340
42341 2000-05-28  Jim Meyering  <meyering@lucent.com>
42342
42343         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
42344         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42345         * m4/stat.m4: Likewise.
42346         * m4/lstat.m4: Likewise.
42347         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
42348
42349         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
42350         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
42351
42352 2000-05-26  Jim Meyering  <meyering@lucent.com>
42353
42354         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
42355
42356 2000-05-24  Jim Meyering  <meyering@lucent.com>
42357
42358         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
42359         autoconf requires that.
42360         * m4/lib-check.m4: Likewise.
42361         * m4/jm-macros.m4: Likewise.
42362         * m4/strftime.m4: Likewise.
42363
42364         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
42365         AC_CHECK_DECLS, now that autoconf requires that.
42366
42367 2000-05-22  Jim Meyering  <meyering@lucent.com>
42368
42369         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42370         * m4/lstat.m4: Likewise.
42371
42372 2000-05-22  Jim Meyering  <meyering@lucent.com>
42373
42374         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
42375
42376 2000-05-20  Jim Meyering  <meyering@lucent.com>
42377
42378         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
42379         (jm_PREREQ): Use it.
42380
42381 2000-05-18  Jim Meyering  <meyering@lucent.com>
42382
42383         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
42384         back, too, since it may have been modified by allocate_entry.
42385         (hash_delete): Rewrite to use neither the assignment operator
42386         nor the comma operator in an if-expression.
42387
42388 2000-05-15  Paul Eggert  <eggert@twinsun.com>
42389
42390         * lib/closeout.c:
42391         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
42392         Remove; no longer needed.
42393         "quotearg.h": Add include.
42394         (file_name): Do not bother to explicitly initialize to NULL; it's less
42395         efficient on some hosts.
42396         (close_stdout_status): Remove test as to whether stdout was already
42397         closed; it breaks for the case "echo x | sort >&-".
42398         Quote file name colons.
42399         Do not assume that _("write error") lacks format strings.
42400
42401 2000-05-15  Jim Meyering  <meyering@lucent.com>
42402
42403         * lib/version-etc.c (version_etc_copyright): Update the copyright
42404         string used in all --version output.
42405
42406 2000-05-14  Jim Meyering  <meyering@lucent.com>
42407
42408         * lib/closeout.c (close_stdout_set_file_name): New function.
42409         (close_stdout_status): Use new file-scoped global.
42410         Return right away if fstat says the stdout file descriptor is invalid.
42411         * lib/closeout.h (close_stdout_set_file_name): Declare.
42412
42413 2000-05-10  Jim Meyering  <meyering@lucent.com>
42414
42415         * lib/closeout.c [default_exit_status]: New file-scoped variable.
42416         (close_stdout_set_status): New function.
42417         * lib/closeout.h (close_stdout_set_status): Declare.
42418
42419 2000-05-09  Jim Meyering  <meyering@lucent.com>
42420
42421         * m4/gettext.m4: Rename this...
42422         * m4/libintl.m4: ...to this.
42423
42424 2000-05-08  Jim Meyering  <meyering@lucent.com>
42425
42426         * lib/long-options.c: Don't include closeout.h.
42427         (parse_long_options): Don't call close_stdout for --version.
42428
42429 2000-05-06  Paul Eggert  <eggert@twinsun.com>
42430
42431         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
42432         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
42433         2.1.3 bug.  This avoids a clash when files like regex.c define
42434         _GNU_SOURCE.
42435
42436 2000-05-06  Jim Meyering  <meyering@lucent.com>
42437
42438         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
42439         (AC_REPLACE_FUNCS): Add strnlen.
42440
42441         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
42442         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
42443
42444         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
42445         AC_SEARCH_LIBS call for nanosleep.
42446         (LIB_NANOSLEEP): Set and AC_SUBST.
42447
42448 2000-05-06  Jim Meyering  <meyering@lucent.com>
42449
42450         * lib/strnlen.c: Undefine __strnlen and strnlen.
42451         [!weak_alias]: Define __strnlen to strnlen.
42452
42453         * lib/atexit.c: New file, from libiberty.
42454
42455 2000-05-06  Jim Meyering  <meyering@lucent.com>
42456
42457         * lib/closeout.c (close_stdout_status): Also check for errors on the
42458         stderr stream.
42459
42460 2000-05-05  Jim Meyering  <meyering@lucent.com>
42461
42462         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
42463         AC_SEARCH_LIBS call for clock_gettime.
42464         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
42465
42466         * m4/search-libs.m4: Update from autoconf.
42467
42468         su doesn't work on Solaris 2.6.
42469         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
42470         <shadow.h>.  Reported by Dragos Harabor.
42471
42472 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
42473
42474         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
42475         memcpy instead of xmalloc, xrealloc, path_concat.
42476         (locale_charset): Treat empty environment variables as absent.
42477         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
42478
42479 2000-05-04  Jim Meyering  <meyering@lucent.com>
42480
42481         * lib/getopt.c: Update from glibc.
42482         * lib/obstack.c: Likewise.
42483         * lib/obstack.h: Likewise.
42484         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
42485         file
42486
42487         * lib/regex.h: Likewise.
42488         * lib/strndup.c: Likewise.
42489         * lib/strnlen.c: New file, from glibc.
42490
42491 2000-05-03  Jim Meyering  <meyering@lucent.com>
42492
42493         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
42494
42495 2000-05-02  Paul Eggert  <eggert@twinsun.com>
42496
42497         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
42498         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
42499         compile-time test, rather than inspecting host and OS, to
42500         decide whether to define _LARGEFILE_SOURCE.
42501
42502 2000-05-01  Jim Meyering  <meyering@lucent.com>
42503
42504         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
42505
42506         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
42507         Based on a patch from Bruno Haible.
42508
42509 2000-05-01  Jim Meyering  <meyering@lucent.com>
42510
42511         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
42512
42513 2000-04-29  Jim Meyering  <meyering@lucent.com>
42514
42515         * lib/path-concat.c: Declare strdup only if it's not defined.
42516         * lib/canon-host.c: Likewise.
42517
42518 2000-04-28  Jim Meyering  <meyering@lucent.com>
42519
42520         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
42521         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
42522         is included first, then limits.h is included by locale.h by libintl.h.
42523         From John David Anglin.
42524
42525 2000-04-25  Jim Meyering  <meyering@lucent.com>
42526
42527         * lib/makepath.c (S_IRWXUGO): Define.
42528         (make_path): Always perform explicit chmod if MODE specifies any
42529         of the `special' permission bits.  Prompted by a bug report against
42530         install from Mate Wierdl and Joost van Baal.
42531
42532 2000-04-18  Jim Meyering  <meyering@lucent.com>
42533
42534         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
42535         (jm_PREREQ): Use it.
42536
42537 2000-04-18  Jim Meyering  <meyering@lucent.com>
42538
42539         * lib/README: New file.
42540
42541         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
42542         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
42543
42544 2000-04-17  Jim Meyering  <meyering@lucent.com>
42545
42546         Get it right :-)
42547         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
42548         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
42549         Suggestion from Akim Demaille.
42550
42551 2000-04-17  Jim Meyering  <meyering@lucent.com>
42552
42553         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
42554         the definition of it to rpl_strftime also defined-away the system's
42555         declaration.
42556
42557 2000-04-15  Jim Meyering  <meyering@lucent.com>
42558
42559         Use `C' to denote so-called `contiguous' files, the same way
42560         that tar does.
42561         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
42562         (ftypelet): Use S_ISCTG.
42563         From Michael Deutschmann.
42564
42565 2000-04-14  Jim Meyering  <meyering@lucent.com>
42566
42567         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
42568         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
42569         clobbered.
42570
42571 2000-04-14  Jim Meyering  <meyering@lucent.com>
42572
42573         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
42574
42575 2000-04-13  Jim Meyering  <meyering@lucent.com>
42576
42577         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
42578         AH_VERBATIM to insert required #ifndef into config.h.in.
42579         Suggestion from Akim Demaille.
42580
42581 2000-04-12  Jim Meyering  <meyering@lucent.com>
42582
42583         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
42584         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
42585         Christian Krackowizer.
42586
42587         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
42588         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
42589         (AC_SYS_LARGEFILE): Require.
42590         (AM_C_PROTOTYPES): Require.
42591
42592 2000-04-08  Jim Meyering  <meyering@lucent.com>
42593
42594         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
42595         names don't conflict.  Reported by Eli Zaretskii.
42596
42597 2000-04-07  Jim Meyering  <meyering@lucent.com>
42598
42599         * lib/putenv.c: Move inclusion of errno.h so it follows that of
42600         sys/types.h, to work around system header problems on AIX 3.2.5.
42601         From Bruno Haible.
42602
42603 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
42604
42605         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
42606         bug.  Deal with the different error behavior of Irix iconv.
42607
42608 2000-04-05  Paul Eggert  <eggert@twinsun.com>
42609
42610         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
42611         IRIX if the installer said otherwise.
42612
42613 2000-04-05  Jim Meyering  <meyering@lucent.com>
42614
42615         Portability tweaks required for ultrix4.3.
42616         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
42617         (jm_CHECK_DECLS): Add getutent to the list of functions.
42618         (_jm_DECL_HEADERS): Add utmpx.h.
42619         From John David Anglin.
42620
42621         * m4/strftime.m4: Back out the 2000-04-02 change.
42622         Instead of that change, simply undefine putenv in the test program.
42623
42624 2000-04-05  Jim Meyering  <meyering@lucent.com>
42625
42626         Portability tweaks required for ultrix4.3.
42627         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
42628         getutent.
42629         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
42630         * lib/canon-host.c: Declare strdup.
42631         * lib/path-concat.c: Likewise.
42632         From John David Anglin.
42633
42634 2000-04-04  Jim Meyering  <meyering@lucent.com>
42635
42636         Be more DOS 8.3-friendly.
42637         * lib/ref-add.sin: Renamed from ref-add.sed.in.
42638         * lib/ref-del.sin: Renamed from ref-del.sed.in.
42639         * lib/Makefile.am: Reflect renaming.
42640         Reported by Eli Zaretskii.
42641
42642         Use a temporary file name that won't clash with `charset.alias'
42643         in the DOS 8.3 name space.
42644         * lib/Makefile.am (charset_tmp): Define.
42645         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
42646         (uninstall-local): Likewise.
42647         Reported by Eli Zaretskii.
42648
42649 2000-04-03  Jim Meyering  <meyering@lucent.com>
42650
42651         * m4/gettext.m4: Fix typo in comment.
42652
42653         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
42654         textutils/configure.in).  Suggestion from Paul Eggert.
42655         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
42656
42657 2000-04-02  Paul Eggert  <eggert@twinsun.com>
42658
42659         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
42660         variable in the shell rather than using putenv, which isn't
42661         portable.  This avoids the configure-time inter-test dependency
42662         on the potentially-renamed putenv function.
42663
42664 2000-03-30  Paul Eggert  <eggert@twinsun.com>
42665
42666         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
42667         before checking struct stat.st_blksize, so that
42668         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
42669
42670 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42671
42672         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
42673         since strftime.c uses HAVE_STRFTIME to decide whether to use
42674         the underlying strftime.
42675
42676 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42677
42678         * lib/time/strftime.c (my_strftime): Make sure we call the system
42679         strftime, not ourselves, when invoking the underlying strftime.
42680
42681 2000-03-24  Jim Meyering  <meyering@lucent.com>
42682
42683         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
42684         (charset_alias): Define.
42685         (install-exec-local): Factor out common code.
42686         (uninstall-local): Split lines longer than 80.
42687         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
42688         (SUFFIXES): Define.
42689         (.sed.in.sed): New rule.  Don't redirect directly to $@.
42690         (CLEANFILES): Add ref-add.sed and ref-del.sed.
42691
42692 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
42693
42694         * lib/config.charset: Output a line containing "Packages using this
42695         file".
42696         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
42697         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
42698         ref-del.sed): New rules.
42699
42700 2000-03-17  Jim Meyering  <meyering@lucent.com>
42701
42702         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
42703         Otherwise, include <strings.h>
42704
42705 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
42706
42707         * lib/unicodeio.c (utf8_wctomb): New function.
42708         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
42709         format instead of in UCS-4 with platform dependent endianness.
42710
42711 2000-03-10  Jim Meyering  <meyering@lucent.com>
42712
42713         * m4/lib-check.m4: Look for getspnam in -lgen, too.
42714         From Marco Franzen.
42715
42716 2000-03-07  Paul Eggert  <eggert@twinsun.com>
42717
42718         * lib/savedir.c (savedir): Work even if directory size is
42719         negative; this can happen with some screwy NFS configurations.
42720
42721 2000-03-06  Jim Meyering  <meyering@lucent.com>
42722
42723         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
42724         if it's NULL (because we ran out of memory).  From Bruno Haible.
42725
42726 2000-03-05  Jim Meyering  <meyering@lucent.com>
42727
42728         * lib/localcharset.c ("path-concat.h"): Include.
42729         (get_charset_aliases): Use path_concat instead of ANSI string
42730         concatenation.
42731
42732         * lib/unicodeio.h (PARAMS): Define.
42733         Use it to guard prototype.
42734
42735 2000-03-04  Jim Meyering  <meyering@lucent.com>
42736
42737         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
42738         for lib/localcharset.c.
42739
42740 2000-03-04  Jim Meyering  <meyering@lucent.com>
42741
42742         * lib/Makefile.am (install-exec-local): Create $(libdir) before
42743         installing into it.
42744         (uninstall-local): Uncomment this rule so `make distcheck' works
42745         once again.
42746
42747         * lib/unicodeio.c (<errno.h>): Include it.
42748         (errno): Declare if not defined.
42749
42750         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
42751
42752         * lib/config.charset: New version, incorporating remarks from a linux
42753         i18n mailing list.  From Bruno Haible.
42754
42755 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
42756
42757         * m4/codeset.m4: New file.
42758         * m4/iconv.m4: New file.
42759         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
42760
42761 2000-03-03  Jim Meyering  <meyering@lucent.com>
42762
42763         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
42764
42765 2000-03-02  Jim Meyering  <meyering@lucent.com>
42766
42767         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
42768         the messages come out on separate lines.
42769
42770         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
42771         rather than jm_CHECK_DECLARATIONS.
42772         * m4/decl.m4: Remove now-unused file.
42773
42774         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
42775         geteuid.
42776
42777 2000-03-02  Jim Meyering  <meyering@lucent.com>
42778
42779         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
42780
42781 2000-03-01  Jim Meyering  <meyering@lucent.com>
42782
42783         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
42784         * lib/unicodeio.c: Likewise.
42785
42786 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
42787
42788         * lib/config.charset: New file.
42789         * lib/localcharset.c: New file.
42790         * lib/unicodeio.h, lib/unicodeio.c: New files.
42791         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
42792         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
42793         (noinst_HEADERS): Add unicodeio.h.
42794         (all-local, install-exec-local, charset.alias): New targets.
42795
42796 2000-02-28  Paul Eggert  <eggert@twinsun.com>
42797
42798         * lib/quotearg.c (ALERT_CHAR): New macro.
42799         (quotearg_buffer_restyled): Use it.
42800
42801 2000-02-27  Jim Meyering  <meyering@lucent.com>
42802
42803         * m4/check-decl.m4: Add getenv to the list.
42804
42805 2000-02-27  Jim Meyering  <meyering@lucent.com>
42806
42807         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
42808         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
42809
42810         * lib/backupfile.c: Guard inclusion of stdlib.h with
42811         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
42812         Declare malloc if needed.
42813
42814         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
42815         `#ifndef HAVE_DECL..'
42816         now that autoconf always defines the HAVE_DECL_ symbols.
42817         * lib/human.c: Likewise.
42818         * lib/same.c: Likewise.
42819         * lib/strtoumax.c: Likewise.
42820
42821         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
42822         declaration check was not run.
42823         * lib/hash.c: Likewise.
42824         * lib/human.c: Likewise.
42825         * lib/same.c: Likewise.
42826         * lib/strtoumax.c: Likewise.
42827
42828         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
42829         `.', then first look up the entire `.'-containing string as a login
42830         name.
42831
42832 2000-02-23  Jim Meyering  <meyering@lucent.com>
42833
42834         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
42835         in place of my hack.
42836
42837 2000-02-18  Paul Eggert  <eggert@twinsun.com>
42838
42839         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
42840         (textint): New typedef.
42841         (parser_control): Member year changed from int to textint.
42842         All uses changed.
42843         (YYSTYPE): Removed; replaced by %union with int and textint members.
42844         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
42845         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
42846         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
42847         (tSNUMBER, tUNUMBER): Now of type <textintval>.
42848         (date, number, to_year): Use width of number in digits, not its value,
42849         to determine whether it's a 2-digit year, or a 2-digit time.
42850         (yylex): Store number of digits of numeric tokens.
42851         Reported by John Kendall.
42852
42853         (parser_control): Changed from struct parser_control to typedef (for
42854         consistency).  All uses changed.
42855
42856         (tID): Removed; not used.
42857         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
42858
42859 2000-02-14  Paul Eggert  <eggert@twinsun.com>
42860
42861         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
42862         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
42863
42864 2000-02-12  Jim Meyering  <meyering@lucent.com>
42865
42866         * lib/userspec.c (ISDIGIT): Define it.
42867         (isdigit): Remove definition.
42868         (is_number): Use ISDIGIT, not isdigit.
42869         <libintl.h>: Include.
42870         (_ and N_): Define.
42871         (parse_user_spec): Mark translatable strings.
42872
42873 2000-02-10  Jim Meyering  <meyering@lucent.com>
42874
42875         With these changes, nanosleep.[ch] are finally enough like the other
42876         lib/* replacement files to compile on a few more losing systems.
42877
42878         * lib/nanosleep.h: Don't include config.h.
42879         Remove prototype from declaration of nanosleep.
42880         (PARAMS): Remove now-unneeded definition.
42881         * lib/nanosleep.c: #undef nanosleep.
42882         (rpl_nanosleep): Rename from nanosleep.
42883
42884 2000-02-10  Jim Meyering  <meyering@lucent.com>
42885
42886         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
42887         gnu_nanosleep to rpl_nanosleep.
42888
42889 2000-02-09  Jim Meyering  <meyering@lucent.com>
42890
42891         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
42892         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
42893
42894 2000-02-08  Akim Demaille  <akim@epita.fr>
42895
42896         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
42897         `[' and `]' and remove uses of `changequote'.
42898         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
42899         (AC_SYS_LARGEFILE): Likewise.
42900         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
42901         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
42902         of changequote.
42903         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
42904         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
42905         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
42906         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
42907
42908 2000-02-05  Jim Meyering  <meyering@lucent.com>
42909
42910         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
42911         Remove explicit use of AC_HEADER_TIME.  It is required by
42912         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
42913         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
42914         in autoconf whereby the expansion of the latter ended up preceding
42915         the expansion of its prerequisite, AC_HEADER_TIME.
42916         Reported by Volker Borchert.
42917
42918 2000-02-03  Jim Meyering  <meyering@lucent.com>
42919
42920         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
42921
42922 2000-02-03  Jim Meyering  <meyering@lucent.com>
42923
42924         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
42925         rather than with `#if HAVE_UTMPNAME'.
42926
42927 2000-02-02  Jim Meyering  <meyering@lucent.com>
42928
42929         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
42930         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
42931         Reported by Eli Zaretskii.
42932
42933 2000-02-01  Jim Meyering  <meyering@lucent.com>
42934
42935         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
42936
42937 2000-01-31  Jim Meyering  <meyering@lucent.com>
42938
42939         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
42940         functions.  Add the time.h and sys/time.h headers along with the
42941         AC_REQUIRE'ment of AC_HEADER_TIME.
42942
42943 2000-01-31  Jim Meyering  <meyering@lucent.com>
42944
42945         * lib/nanosleep.h (nanosleep): Guard declaration with
42946         `#if ! HAVE_DECL_NANOSLEEP'.
42947         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
42948         the declaration in that vendor's sys/timers.h.
42949         Reported by Christian Krackowizer.
42950
42951         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
42952         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
42953         (ISPRINT): Likewise.
42954         Reported by Tom Tromey.
42955
42956 2000-01-30  Jim Meyering  <meyering@lucent.com>
42957
42958         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
42959
42960         * m4/prereq.m4 (utmp_includes): Define.
42961         Check for ut_user and ut_name members in both struct utmpx
42962         and struct utmp.
42963
42964 2000-01-30  Jim Meyering  <meyering@lucent.com>
42965
42966         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
42967         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
42968         header files where only utmpx.ut_user is declared.
42969
42970         * lib/readutmp.h (UT_USER): Define.
42971
42972 2000-01-29  Jim Meyering  <meyering@lucent.com>
42973
42974         * m4/lib-check.m4: New file containing library-related checks from
42975         fileutils and sh-utils (textutils had none).
42976
42977 2000-01-28  Jim Meyering  <meyering@lucent.com>
42978
42979         * m4/perl.m4: Change format of warning message to look more like that
42980         from the missing script.  Suggestion from François Pinard.
42981
42982 2000-01-25  Jim Meyering  <meyering@lucent.com>
42983
42984         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
42985         well as time.h in the compile check.
42986         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
42987         Fix typo in cross-compiling case: s/yes/no/.
42988
42989 2000-01-23  Jim Meyering  <meyering@lucent.com>
42990
42991         * m4/jm-macros.m4: Move df-related tests here from
42992         fileutils/configure.in
42993
42994         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
42995         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
42996
42997         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
42998         s/space/ac_fsusage_space/.
42999         (jm_FILE_SYSTEM_USAGE): Take two parameters.
43000
43001         * m4/ftruncate.m4: New file (derived from part of
43002         fileutils/configure.in).
43003         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
43004         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
43005
43006         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
43007         AC_SUBST these here, rather than just in sh-util/configure.in, so
43008         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
43009         all the same.
43010         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
43011         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
43012         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
43013         (AC_SUBST(POW_LIBM)): Likewise.
43014         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
43015
43016 2000-01-23  Jim Meyering  <meyering@lucent.com>
43017
43018         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
43019         obstack.c.
43020
43021 2000-01-22  Jim Meyering  <meyering@lucent.com>
43022
43023         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
43024
43025         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
43026
43027         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
43028         configure.in
43029         (AC_CHECK_HEADERS): Likewise for sh-utils.
43030         (AC_CHECK_HEADERS): Likewise for textutils.
43031         Merge the three lists of headers.
43032
43033         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
43034         from fileutils' configure.in.
43035
43036         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
43037         code. Moved tests into their own function (_jm_DECL_HEADERS) in
43038         check-decl.m4.
43039
43040         * m4/check-decl.m4: Use #if rather than #ifdef.
43041         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
43042         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
43043         (_jm_DECL_HEADERS): Define new function.
43044         (jm_CHECK_DECLARATIONS): Require it.
43045
43046 2000-01-22  Jim Meyering  <meyering@lucent.com>
43047
43048         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
43049         [! HAVE_DECL_STRTOULL]: Declare strtoull.
43050         Required for some AIX systems.  Reported by Christian Krackowizer.
43051         [TESTING] (main): New function.
43052
43053         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
43054         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
43055         letters.
43056
43057         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
43058         iswprint.
43059
43060         * lib/strverscmp.c (ISDIGIT): Define.
43061         (strverscmp): Use ISDIGIT, not isdigit.
43062
43063 2000-01-19  Jim Meyering  <meyering@lucent.com>
43064
43065         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
43066         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
43067         defines `struct timespec' in <sys/time.h>
43068
43069         * m4/c-bs-a.m4: Remove uses of changequote altogether.
43070         Thanks to Akim for explaining.
43071
43072 2000-01-17  Paul Eggert  <eggert@twinsun.com>
43073
43074         * lib/nanosleep.c (nanosleep):
43075         Don't use SA_INTERRUPT to decide whether to call sigaction, as
43076         POSIX.1 doesn't require SA_INTERRUPT and some systems
43077         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
43078         it's been part of POSIX.1 since day 1 (in 1988).
43079
43080 2000-01-17  Jim Meyering  <meyering@lucent.com>
43081
43082         * lib/interlock: Remove unused file.  Reported by François Pinard.
43083
43084 2000-01-16  Paul Eggert  <eggert@twinsun.com>
43085
43086         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
43087         alert, backslash, formfeed, and vertical tab unnecessarily in
43088         shell quoting style.
43089
43090 2000-01-16  Jim Meyering  <meyering@lucent.com>
43091
43092         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
43093         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
43094         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
43095         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
43096
43097 2000-01-16  Jim Meyering  <meyering@lucent.com>
43098
43099         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
43100         because the latter didn't work.
43101
43102 2000-01-15  Jim Meyering  <meyering@lucent.com>
43103
43104         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
43105         (AC_REPLACE_FUNCS): Add memcpy and memset.
43106         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
43107         Add strpbrk.
43108         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
43109
43110 2000-01-12  Jim Meyering  <meyering@lucent.com>
43111
43112         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
43113         (jm_PREREQ): Use it.
43114         (jm_PREREQ_READUTMP): New macro.
43115         (jm_PREREQ): Use it.
43116
43117 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43118
43119         Quote multibyte characters correctly.
43120         * m4/c-bs-a.m4: New file.
43121         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
43122         (jm_PREREQ): Use it.
43123
43124 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43125
43126         * m4/uintmax_t.m4: Port to autoconf 2.13.
43127
43128 2000-01-08  Jim Meyering  <meyering@ascend.com>
43129
43130         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
43131         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
43132
43133 2000-01-04  Jim Meyering  <meyering@ascend.com>
43134
43135         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
43136         jm_STRUCT_DIRENT_D_TYPE.
43137         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
43138         jm_STRUCT_DIRENT_D_INO.
43139         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
43140         jm_STRUCT_UTIMBUF.
43141         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
43142         renamings.
43143         * m4/utime.m4: Likewise.
43144
43145         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
43146         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
43147
43148 2000-01-03  Paul Eggert  <eggert@twinsun.com>
43149
43150         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
43151         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
43152
43153 2000-01-02  Jim Meyering  <meyering@ascend.com>
43154
43155         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
43156         remember if this is necessary.
43157
43158 1999-12-26  Jim Meyering  <meyering@ascend.com>
43159
43160         * m4/jm-macros.m4: Use it here.
43161         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
43162
43163 1999-12-23  Jim Meyering  <meyering@ascend.com>
43164
43165         * m4/jm-macros.m4: Check for clock_gettime (moved from
43166         fileutils/configure.in)
43167         Check for gettimeofday.
43168
43169 1999-12-20  Jim Meyering  <meyering@ascend.com>
43170
43171         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
43172         autoconf-2.14a-1999-12-20.
43173
43174 1999-12-19  Jim Meyering  <meyering@ascend.com>
43175
43176         * m4/lstat-slash.m4: New file.
43177         * m4/jm-macros.m4: Use the new macro:
43178         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
43179
43180 1999-12-07  Jim Meyering  <meyering@ascend.com>
43181
43182         * m4/perl.m4: Require that File::Compare be available, too.
43183         Too many systems seem to lack it.
43184
43185         * m4/strftime.m4: Add checks for most of the cpp macros tested in
43186         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
43187
43188 1999-11-18  Paul Eggert  <eggert@twinsun.com>
43189
43190         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
43191         problem with the QNX 4.25 shell, which doesn't propagate exit
43192         status of failed commands inside shell assignments.
43193
43194 1999-11-17  Jim Meyering  <meyering@ascend.com>
43195
43196         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
43197
43198 1999-11-07  Jim Meyering  <meyering@ascend.com>
43199
43200         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
43201
43202 1999-11-06  Jim Meyering  <meyering@ascend.com>
43203
43204         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
43205         * m4/jm-macros.m4 (jm_MACROS): Use it here.
43206
43207 1999-11-05  Jim Meyering  <meyering@ascend.com>
43208
43209         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
43210         configure.in of textutils, fileutils, and sh-utils into this one
43211         (shared between those packages) file.
43212         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
43213         AC_STRUCT_ST_BLKSIZE.
43214
43215 1999-11-03  Jim Meyering  <meyering@ascend.com>
43216
43217         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
43218         of AC_CHECK_TYPE checks includes unistd.h.
43219         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
43220         Suggestion from Akim Demaille.
43221
43222 1999-10-30  Jim Meyering  <meyering@ascend.com>
43223
43224         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
43225         m4-quoted string.
43226         * m4/ls-mntd-fs.m4: Likewise.
43227         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
43228         * m4/jm-winsz1.m4: Likewise.
43229
43230         * m4/const.m4: Remove file, since the fix made it into the experimental
43231         version of autoconf.
43232         * m4/mktime.m4: Likewise.
43233
43234         * m4/check-type.m4: Remove file, now that the latest version of
43235         AC_CHECK_TYPE takes a third arg to specify additional #includes.
43236
43237         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
43238         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
43239         AC_CHECK_TYPE.
43240
43241 1999-10-04  Jim Meyering  <meyering@ascend.com>
43242
43243         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
43244
43245 1999-09-22  Paul Eggert  <eggert@twinsun.com>
43246
43247         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
43248         2.95.1 bug with HP-UX 10.20.
43249
43250 1999-09-17  Jim Meyering  <meyering@ascend.com>
43251
43252         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
43253         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
43254         due to missing strdup (against sh-utils-2.0).
43255
43256 1999-08-29  Jim Meyering  <meyering@ascend.com>
43257
43258         * m4/jm-macros.m4: Require jm_BISON.
43259         * m4/bison.m4: New file.
43260
43261 1999-08-17  Paul Eggert  <eggert@twinsun.com>
43262
43263         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
43264         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
43265
43266 1999-08-05  Jim Meyering  <meyering@ascend.com>
43267
43268         * m4/getline.m4: Rename test file from conftestdata to conftest.data
43269         to avoid conflicts with `conftest' on 8+3 filesystems.
43270         Suggestion from Eli Zaretskii.
43271
43272 1999-08-04  Jim Meyering  <meyering@ascend.com>
43273
43274         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
43275         fileutils and sh-utils (textutils's getline test was inadequate).
43276         (AM_FUNC_GETLINE): Run this test.
43277         (AC_CHECK_FUNCS): Check for getdelim.
43278         Reported by Bob Proulx.
43279
43280 1999-08-02  Jim Meyering  <meyering@ascend.com>
43281
43282         * m4/jm-macros.m4: Add a comment.
43283
43284 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43285
43286         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
43287         <inttypes.h> defines strtoumax as a macro (and not as a
43288         function).
43289
43290 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43291
43292         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
43293         that we can shift, multiply and divide unsigned long long
43294         values; Ultrix cc can't do it.
43295
43296 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43297
43298         * m4/mktime.m4: New file, which is a preview of what should appear
43299         in the next public autoconf release.
43300
43301 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43302
43303         * m4/lfs.m4: Remove this file.
43304         * m4/largefile.m4: New file.  It contains the old contents of
43305         lfs.m4, except that all names with prefix AC_LFS have been
43306         changed to use the prefix AC_SYS_LARGEFILE instead, to be
43307         compatible with future autoconf versions.  Also, some minor m4
43308         quoting problems have been fixed.
43309
43310 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43311
43312         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
43313         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
43314         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
43315         and simplify the shell code.
43316
43317 1999-08-01  Jim Meyering  <meyering@ascend.com>
43318
43319         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
43320         m4.
43321
43322 1999-07-20  Jim Meyering  <meyering@ascend.com>
43323
43324         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
43325
43326 1999-07-15  Jim Meyering  <meyering@ascend.com>
43327
43328         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
43329
43330 1999-05-22  Jim Meyering  <meyering@ascend.com>
43331
43332         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
43333
43334 1999-05-20  Jim Meyering  <meyering@ascend.com>
43335
43336         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
43337         Add a colon after each `then' in case $4 is empty.
43338
43339 1999-05-16  Jim Meyering  <meyering@ascend.com>
43340
43341         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
43342
43343 1999-05-10  Jim Meyering  <meyering@ascend.com>
43344
43345         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
43346
43347         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
43348         AC_FUNC_MKTIME.
43349
43350 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
43351
43352         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
43353
43354 1999-05-04  Paul Eggert  <eggert@twinsun.com>
43355
43356         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
43357         not CPPFLAGS, so that linking works correctly in IRIX.
43358
43359 1999-04-30  Paul Eggert  <eggert@twinsun.com>
43360
43361         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
43362
43363 1999-04-20  Paul Eggert  <eggert@twinsun.com>
43364
43365         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
43366         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
43367         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
43368         jm_AC_TYPE_UNSIGNED_LONG_LONG.
43369         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
43370
43371         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
43372
43373 1999-04-20  Jim Meyering  <meyering@ascend.com>
43374
43375         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
43376         AC_REPLACE xstroull if necessary.  From Paul Eggert.
43377         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
43378
43379 1999-04-18  Jim Meyering  <meyering@ascend.com>
43380
43381         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
43382         * m4/jm-macros.m4: Use it.
43383
43384 1999-04-06  Jim Meyering  <meyering@ascend.com>
43385
43386         * m4/strftime.m4: Remove test for %f.
43387
43388 1999-03-29  Jim Meyering  <meyering@ascend.com>
43389
43390         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
43391         superset of the AC_TYPE_* checks in the textutils, fileutils,
43392         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
43393         AC_TYPE_PID_T.
43394
43395 1999-03-28  Jim Meyering  <meyering@ascend.com>
43396
43397         * m4/jm-macros.m4: Define GNU_PACKAGE here.
43398         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
43399         replaced e.g., in the *.sh files of the sh-utils.
43400
43401 1999-03-20  Jim Meyering  <meyering@ascend.com>
43402
43403         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
43404         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
43405         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
43406
43407 1999-03-19  Jim Meyering  <meyering@ascend.com>
43408
43409         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
43410
43411 1999-03-12  Jim Meyering  <meyering@ascend.com>
43412
43413         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
43414
43415 1999-03-07  Jim Meyering  <meyering@ascend.com>
43416
43417         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
43418         declared.
43419
43420 1999-02-17  Jim Meyering  <meyering@ascend.com>
43421
43422         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
43423         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
43424
43425 1999-02-07  Jim Meyering  <meyering@ascend.com>
43426
43427         * m4/group-member.m4: New file -- extracted from sh-utils'
43428         configure.in.
43429
43430         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
43431         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
43432
43433 1999-02-06  Jim Meyering  <meyering@ascend.com>
43434
43435         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
43436         * m4/fnmatch.m4: Likewise.
43437         * m4/getgroups.m4: Likewise.
43438         * m4/lstat.m4: Likewise.
43439         * m4/malloc.m4: Likewise.
43440         * m4/putenv.m4: Likewise.
43441         * m4/realloc.m4: Likewise.
43442         * m4/regex.m4: Likewise.
43443         * m4/stat.m4: Likewise.
43444         * m4/strftime.m4: Likewise.
43445         Suggestion from Alain Magloire.
43446
43447         * m4/chown.m4: Use `.$ac_objext', not `.o'.
43448         * m4/fnmatch.m4: Likewise.
43449         * m4/getgroups.m4: Likewise.
43450         * m4/getline.m4: Likewise.
43451         * m4/lstat.m4: Likewise.
43452         * m4/malloc.m4: Likewise.
43453         * m4/memcmp.m4: Likewise.
43454         * m4/putenv.m4: Likewise.
43455         * m4/realloc.m4: Likewise.
43456         * m4/regex.m4: Likewise.
43457         * m4/stat.m4: Likewise.
43458         * m4/strftime.m4: Likewise.
43459         Suggestion from Alain Magloire.
43460
43461         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
43462         an argument.
43463
43464         * m4/regex.m4: Add a run-time Test for proper operation of
43465         re_compile_pattern.
43466
43467 1999-01-31  Jim Meyering  <meyering@ascend.com>
43468
43469         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
43470
43471 1999-01-30  Jim Meyering  <meyering@ascend.com>
43472
43473         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
43474
43475         * m4/jm-mktime.m4: Make this a wrapper around the official
43476         AM_FUNC_MKTIME rather than my private copy, now that the official one
43477         is up to date.
43478         * m4/mktime.m4: Remove file.
43479
43480         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
43481         * m4/uptime.m4: Likewise.
43482         * m4/uintmax_t.m4: Likewise.
43483
43484 1999-01-28  Jim Meyering  <meyering@ascend.com>
43485
43486         * m4/jm-macros.m4: Use jm_AFS.
43487         * m4/afs.m4: New file (from fileutils' configure.in).
43488
43489         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
43490         * m4/chown.m4: Likewise.
43491         * m4/d-ino.m4: Likewise.
43492         * m4/d-type.m4: Likewise.
43493         * m4/fnmatch.m4: Likewise.
43494         * m4/getgroups.m4: Likewise.
43495         * m4/gettext.m4: Likewise.
43496         * m4/jm-mktime.m4: Likewise.
43497         * m4/jm-winsz2.m4: Likewise.
43498         * m4/lcmessage.m4: Likewise.
43499         * m4/ls-mntd-fs.m4: Likewise.
43500         * m4/malloc.m4: Likewise.
43501         * m4/memcmp.m4: Likewise.
43502         * m4/putenv.m4: Likewise.
43503         * m4/realloc.m4: Likewise.
43504         * m4/st_mtim.m4: Likewise.
43505         * m4/strftime.m4: Likewise.
43506
43507 1999-01-16  Jim Meyering  <meyering@ascend.com>
43508
43509         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
43510         (ARGMATCH_DIE_DECL): Define.
43511
43512 1999-01-12  Jim Meyering  <meyering@ascend.com>
43513
43514         * m4/Makefile.am.in: Rewrite to avoid using fmt.
43515         Reported by Lars Hecking.
43516
43517 1999-01-10  Jim Meyering  <meyering@ascend.com>
43518
43519         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
43520         gross kludge.
43521         * m4/inttypes_h.m4: Likewise.
43522         * m4/lstat.m4: Likewise.
43523         * m4/malloc.m4: Likewise.
43524         * m4/readdir.m4: Likewise.
43525         * m4/realloc.m4: Likewise.
43526         * m4/st_dm_mode.m4: Likewise.
43527         * m4/stat.m4: Likewise.
43528         * m4/utimbuf.m4: Likewise.
43529         * m4/utimes.m4: Likewise.
43530
43531         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
43532         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
43533         comments in config.h.in are meaningful.
43534
43535         * m4/jm-macros.m4: Require autoconf-2.13 here.
43536
43537         * m4/regex.m4: By default, don't use the included regex.c on systems
43538         with glibc 2.  Suggestion from Uli Drepper.
43539
43540 1999-01-02  Jim Meyering  <meyering@ascend.com>
43541
43542         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
43543
43544 1998-12-18  Jim Meyering  <meyering@ascend.com>
43545
43546         * m4/Makefile.am.in (Makefile.am): Simplify rule.
43547         Based on a suggestion from Lars Hecking.
43548
43549 1998-11-16  Paul Eggert  <eggert@twinsun.com>
43550
43551         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
43552
43553 1998-11-16  Jim Meyering  <meyering@ascend.com>
43554
43555         * m4/lfs.m4: Double-quote the `uname...` expression.
43556
43557 1998-11-14  Jim Meyering  <meyering@ascend.com>
43558
43559         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
43560         * m4/stat.m4: Likewise.
43561
43562 1998-11-03  Jim Meyering  <meyering@ascend.com>
43563
43564         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
43565         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
43566
43567 1998-10-18  Jim Meyering  <meyering@ascend.com>
43568
43569         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
43570
43571 1998-10-17  Jim Meyering  <meyering@ascend.com>
43572
43573         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
43574         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
43575         calls for those previously hard-coded headers.  Instead, take a new
43576         parameter.
43577         (jm_CHECK_DECLARATIONS): Reflect interface change.
43578         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
43579         (jm_CHECK_DECL_LOCALTIME_R): New macro.
43580
43581         * m4/mktime.m4: Test for spring-forward gap before long-running test.
43582
43583 1998-10-14  Jim Meyering  <meyering@ascend.com>
43584
43585         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
43586         instead of "TZ=America/Vancouver".  From Paul Eggert.
43587
43588 1998-10-11  Jim Meyering  <meyering@ascend.com>
43589
43590         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
43591         This adds a test for a recently added compatibility fix for mktime.c.
43592         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
43593
43594 1998-09-27  Jim Meyering  <meyering@ascend.com>
43595
43596         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
43597
43598         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
43599         ../configure.in, including a change from Gordon Matzigkeit to allow
43600         cross-compiling for the Hurd.
43601
43602         * m4/glibc.m4: New file/macro to test for the GNU C Library
43603         versions 1 and 2.  From Gordon Matzigkeit.
43604         Indent.
43605
43606 1998-09-21  Jim Meyering  <meyering@ascend.com>
43607
43608         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
43609
43610 1998-08-18  Paul Eggert  <eggert@twinsun.com>
43611
43612         Port nanosecond-resolution times to UnixWare 2.1.2 and
43613         pedantic Solaris 2.6.
43614
43615         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
43616         AC_STRUCT_ST_MTIM.
43617         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
43618         Generate name of ns member, instead of just 1 or undef.
43619         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
43620
43621 1998-08-15  Jim Meyering  <meyering@ascend.com>
43622
43623         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
43624         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
43625         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
43626         instead of jm_TYPE_SSIZE_T.
43627
43628 1998-08-12  Jim Meyering  <meyering@ascend.com>
43629
43630         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
43631
43632 1998-08-02  Jim Meyering  <meyering@ascend.com>
43633
43634         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
43635         in acconfig.h manually.
43636
43637 1998-07-31  Paul Eggert  <eggert@twinsun.com>
43638
43639         * m4/st_mtim.m4: New file.
43640
43641 1998-07-28  Jim Meyering  <meyering@ascend.com>
43642
43643         * m4/utimes.m4: Undef stat.
43644
43645 1998-07-25  Jim Meyering  <meyering@ascend.com>
43646
43647         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
43648         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
43649
43650 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
43651
43652         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
43653         uid and gid actually remain unchanged.
43654
43655 1998-07-07  Jim Meyering  <meyering@ascend.com>
43656
43657         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
43658
43659 1998-07-04  Jim Meyering  <meyering@ascend.com>
43660
43661         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
43662         to prove that this macro can be used in packages without regex.c.
43663
43664 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
43665
43666         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
43667         is to be used.
43668
43669 1998-07-03  Jim Meyering  <meyering@ascend.com>
43670
43671         * m4/gettext.m4: Add -lintl if it's found to be necessary.
43672
43673         * m4/gettext.m4: New file -- from gettext-0.10.35.
43674         * m4/lcmessage.m4: Likewise.
43675         * m4/progtest.m4: Likewise.
43676
43677         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
43678         * m4/jm-macros.m4: Require the new macro.
43679
43680 1998-06-29  Jim Meyering  <meyering@ascend.com>
43681
43682         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
43683         for the definition of NGROUPS (used in a system header included
43684         by sys/mount.h).
43685
43686 1998-06-28  Jim Meyering  <meyering@ascend.com>
43687
43688         * m4/ls-mntd-fs.m4: New file.
43689         * m4/fstypename.m4: New file.
43690
43691         * m4/jm-macros.m4: Require the new macro.
43692         * m4/jm-glibc-io.m4: New file.
43693
43694 1998-05-19  Jim Meyering  <meyering@ascend.com>
43695
43696         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
43697         * m4/lchown.m4: New file.
43698
43699         * m4/Makefile.am.in: New file.
43700         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
43701
43702 1998-05-14  Jim Meyering  <meyering@ascend.com>
43703
43704         * m4/Makefile.am (EXTRA_DIST): Add them.
43705         * m4/jm-macros.m4: New file.
43706         * m4/utimbuf.m4: New file.
43707
43708 1998-05-12  Jim Meyering  <meyering@ascend.com>
43709
43710         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
43711
43712 1998-05-11  Jim Meyering  <meyering@ascend.com>
43713
43714         * m4/isc-posix.m4: New file.
43715
43716 1998-05-10  Jim Meyering  <meyering@ascend.com>
43717
43718         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
43719
43720 1998-05-09  Jim Meyering  <meyering@ascend.com>
43721
43722         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
43723         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
43724         with automake.
43725
43726         * m4/ssize_t.m4: New file.
43727         * m4/mktime.m4: Remove file -- the new automake has this now.
43728
43729 1998-04-26  Jim Meyering  <meyering@ascend.com>
43730
43731         * m4/assert.m4: New file.
43732         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
43733
43734 1998-04-05  Jim Meyering  <meyering@ascend.com>
43735
43736         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
43737         (jm_PREREQ): Use it here.
43738
43739 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
43740
43741         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
43742         in acconfig.h.
43743
43744 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
43745
43746         * m4/prereq.m4: New file.
43747         * m4/error.m4: New file.
43748         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
43749
43750 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
43751
43752         * m4/getline.m4: Don't set am_cv_func_working_getline before the
43753         cache-check for the same variable -- that defeated the purpose of
43754         the test; the test program was never run.  This was a problem only
43755         on systems with losing getline functions -- HP-UX 10.20 is one.
43756         Reported by Bjorn Helgaas.
43757
43758 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
43759
43760         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
43761
43762 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
43763
43764         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
43765
43766         * m4/const.m4: New file.  Use an initializer in this declaration
43767         typedef int charset[2]; const charset x;
43768         Reported by Bob Glickstein.
43769
43770 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
43771
43772         * m4/chown.m4: Fix reversed types on -1 args to chown.
43773         From Kaveh Ghazi.
43774
43775 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
43776
43777         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
43778         Add lseek and memchr.
43779
43780         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
43781         T.E.Dickey <dickey@clark.net> said that some older preprocessors
43782         have a 20-character limit on names.
43783
43784 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
43785
43786         * m4/inttypes_h.m4: New file.
43787         * m4/uintmax_t.m4: New file.
43788         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
43789
43790
43791         -----
43792
43793         Local Variables:
43794         coding: utf-8
43795         End:
43796
43797         Copyright (C) 1997-2008 Free Software Foundation, Inc.
43798
43799         Copying and distribution of this file, with or without
43800         modification, are permitted provided the copyright notice
43801         and this notice are preserved.