Use the fixed open() function.
[gnulib.git] / ChangeLog
1 2008-10-02  Bruno Haible  <bruno@clisp.org>
2
3         * modules/posix_spawn-internal (Depends-on): Add 'open'.
4
5 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
6
7         * build-aux/bootstrap: Allow renaming bootstrap, and change the
8         name of bootstrap.conf accordingly.
9
10 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
11
12         * build-aux/bootstrap: Install git-merge-changelog configuration
13         items into .gitconfig if needed.
14
15 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
16
17         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
18         git repository, and initialize/update it accordingly.
19
20 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
21
22         * modules/fsync-tests: New file.
23         * tests/test-fsync.c: New file.
24
25         New module 'fsync'.
26         * lib/fsync.c: New file.
27         * m4/fsync.m4: New file.
28         * modules/fsync: New file.
29         * lib/unistd.in.h (fsync): New declaration.
30         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
31         GNULIB_FSYNC and HAVE_FSYNC.
32         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
33         * MODULES.html.sh (posix_functions): Add fsync.
34         * doc/posix-functions/fsync.texi: Mention the new module.
35
36 2008-10-02  Jim Meyering  <meyering@redhat.com>
37
38         fts.c: sync with similar code from coreutils' remove.c
39         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
40         Guard also with "#if defined __linux__", since for now at least,
41         this code is Linux-kernel-specific.
42
43 2008-10-02  Jim Meyering  <meyering@redhat.com>
44
45         fts: bug fixes
46         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
47         Include <sys/vfs.h>, not <sys/statfs.h>.
48
49         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
50         Include <sys/vfs.h>, not <sys/statfs.h>.
51
52 2008-10-01  Bruno Haible  <bruno@clisp.org>
53
54         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
55         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
56         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
57         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
58         * doc/posix-functions/posix_spawnp.texi: Likewise.
59         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
60         whether posix_spawn actually works.
61         * m4/pipe.m4 (gl_PIPE): Likewise.
62         * modules/execute (Files): Add m4/posix_spawn.m4.
63         * modules/pipe (Files): Add m4/posix_spawn.m4.
64         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
65
66 2008-10-01  Jim Meyering  <meyering@redhat.com>
67
68         remove trailing spaces
69         * NEWS: Likewise.
70         * lib/poll.c (poll): Likewise.
71         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
72         * lib/winsock.c (rpl_close): Likewise.
73         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
74         * modules/yield: Likewise.
75         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
76         * tests/test-sys_select.c (connect_to_socket): Likewise.
77
78         fts.c: adjust a new interface to be more generally useful
79         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
80         (fts_build): Adjust caller.
81
82 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
83
84         * modules/cond-tests: New file.
85         * tests/test-cond.c: New file.
86
87 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
88             Bruno Haible  <bruno@clisp.org>
89
90         * modules/cond (Dependencies): Add errno, time.
91         * lib/glthread/cond.h: Include <time.h>.
92         (gl_cond_define, gl_cond_define_initialized): Use the same definition
93         across platforms.
94
95 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
96             Bruno Haible  <bruno@clisp.org>
97
98         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
99
100 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
101             Bruno Haible  <bruno@clisp.org>
102
103         * modules/tls-tests (Depends-on): Add thread, yield.
104         (configure.ac): Remove all checks.
105         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
106         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
107         gl_thread_self): Remove definitions. Include glthread/thread.h and
108         glthread/yield.h instead.
109         (test_tls): Pass an additional NULL argument to gl_thread_join.
110
111 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
112             Bruno Haible  <bruno@clisp.org>
113
114         * modules/lock-tests (Depends-on): Add thread, yield.
115         (configure.ac): Remove all checks.
116         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
117         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
118         gl_thread_self): Remove definitions. Include glthread/thread.h and
119         glthread/yield.h instead.
120         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
121         additional NULL argument to gl_thread_join.
122
123 2008-09-30  Bruno Haible  <bruno@clisp.org>
124
125         Fix the Win32 implementation of the 'thread' module.
126         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
127         pointer type.
128         (gl_thread_self): Invoke gl_thread_self_func.
129         (gl_thread_self_func): New declaration.
130         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
131         (do_init_self_key, init_self_key): New functions.
132         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
133         Remove some fields.
134         (running_threads, running_lock): Remove variables.
135         (get_current_thread_handle): New function.
136         (gl_thread_self_func, wrapper_func, glthread_create_func,
137         glthread_join_func, gl_thread_exit_func): Largely rewritten and
138         simplified.
139
140 2008-09-30  Bruno Haible  <bruno@clisp.org>
141
142         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
143         files.
144
145 2008-09-30  Jim Meyering  <meyering@redhat.com>
146
147         fts.m4: correct the test for statfs.f_type
148         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
149         when checking for statfs.f_type.
150
151 2008-09-15  Simon Josefsson  <simon@josefsson.org>
152
153         tests: avoid some compiler warnings
154         * tests/test-memchr.c (main): Pass NULL indirectly.
155         * tests/test-getdate.c (main): Remove unused variable 'ret'.
156
157 2008-09-29  Ondřej Vašík  <ovasik@redhat.com>
158
159         getdate.y: disallow countable dayshifts like "4 yesterday ago"
160         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
161         exactly specified dayshifts.
162         (dayshift): New rule.
163         (rel): Add dayshift.
164         (relative_time_table) [tomorrow, yesterday, today, now]:
165         Use tDAY_SHIFT in place of tDAY_UNIT.
166         * tests/test-getdate.c: Add tests for now-disallowed countable
167         dayshifts, e.g., "4 yesterday ago".
168
169 2008-09-29  Bruno Haible  <bruno@clisp.org>
170
171         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
172         * tests/test-posix_spawn1.in.sh: Renamed from
173         tests/test-posix_spawn.in.sh.
174         * tests/test-posix_spawn2.c: New file.
175         * tests/test-posix_spawn2.in.sh: New file.
176         * modules/posix_spawnp-tests (Files): Update.
177         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
178
179 2008-09-29  Bruno Haible  <bruno@clisp.org>
180
181         Propagate effects of putenv/setenv/unsetenv to child processes.
182         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
183         * lib/pipe.c (create_pipe): Likewise.
184
185 2008-09-29  Bruno Haible  <bruno@clisp.org>
186
187         Enable use of shell scripts as executables in mingw.
188         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
189         run the program as a shell script.
190         * lib/pipe.c (create_pipe): Likewise.
191         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
192         resulting array.
193
194 2008-09-29  Eric Blake  <ebb9@byu.net>
195
196         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
197
198 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
199
200         * doc/posix-functions/accept.texi: Update mingw problems.
201         * doc/posix-functions/bind.texi: Update mingw problems.
202         * doc/posix-functions/close.texi: Update mingw problems.
203         * doc/posix-functions/connect.texi: Update mingw problems.
204         * doc/posix-functions/getpeername.texi: Update mingw problems.
205         * doc/posix-functions/getsockname.texi: Update mingw problems.
206         * doc/posix-functions/getsockopt.texi: Update mingw problems.
207         * doc/posix-functions/ioctl.texi: Update mingw problems.
208         * doc/posix-functions/listen.texi: Update mingw problems.
209         * doc/posix-functions/recv.texi: Update mingw problems.
210         * doc/posix-functions/recvfrom.texi: Update mingw problems.
211         * doc/posix-functions/select.texi: Update mingw problems.
212         * doc/posix-functions/send.texi: Update mingw problems.
213         * doc/posix-functions/sendto.texi: Update mingw problems.
214         * doc/posix-functions/setsockopt.texi: Update mingw problems.
215         * doc/posix-functions/socket.texi: Update mingw problems.
216
217 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
218             Bruno Haible  <bruno@clisp.org>
219
220         * lib/sys_select.in.h: Include sys/time.h.
221         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
222         * modules/sys_select: Depend on sys_time.
223         * tests/test-sys_select.c: Test that sys/select.h defines struct
224         timeval fully.
225
226 2008-09-29  Bruno Haible  <bruno@clisp.org>
227
228         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
229         * lib/sys_select.in.h: Likewise.
230
231 2008-09-29  Bruno Haible  <bruno@clisp.org>
232
233         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
234
235 2008-09-29  Bruno Haible  <bruno@clisp.org>
236
237         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
238         Set LIBSOCKET instead of augmenting LIBS.
239         * modules/sockets (Link): New section.
240         * modules/sockets-tests (test_sockets_LDADD): New variable.
241         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
242         * modules/poll-tests (test_poll_LDADD): New variable.
243         * NEWS: Document the change.
244
245 2008-09-29  Bruno Haible  <bruno@clisp.org>
246
247         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
248         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
249         ARPA_INET_H directly.
250         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
251
252 2008-09-28  Bruno Haible  <bruno@clisp.org>
253
254         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
255         from gl_HEADER_SYS_SOCKET.
256         (gl_HEADER_SYS_SOCKET): Invoke it.
257         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
258
259 2008-09-28  Bruno Haible  <bruno@clisp.org>
260
261         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
262         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
263         Needed on OSF/1 4.0.
264
265 2008-09-28  Bruno Haible  <bruno@clisp.org>
266
267         Override open more carefully.
268         * lib/open.c (orig_open): New function.
269         (rpl_open): Use orig_open instead of open.
270         * lib/fcntl.in.h: Add special invocation convention.
271         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
272         (gl_FUNC_OPEN): Invoke it.
273
274         Override freopen more carefully.
275         * lib/freopen.c (orig_freopen): New function.
276         (rpl_freopen): Use orig_freopen instead of freopen.
277         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
278         (gl_FUNC_FREOPEN): Invoke it.
279
280         Override fopen more carefully.
281         * lib/fopen.c (orig_fopen): New function.
282         (rpl_fopen): Use orig_fopen instead of fopen.
283         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
284         (gl_FUNC_FOPEN): Invoke it.
285         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
286
287 2008-09-28  Bruno Haible  <bruno@clisp.org>
288
289         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
290         SIGPIPE.
291
292 2008-09-28  Bruno Haible  <bruno@clisp.org>
293
294         * tests/test-sigaction.c (handler, main): Disable the check whether
295         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
296         glibc systems with LinuxThreads.
297
298 2008-09-28  Bruno Haible  <bruno@clisp.org>
299
300         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
301
302         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
303         with AIX xlc.
304         * lib/fcntl.in.h (open): Likewise.
305         Reported by Rainer Tammer <tammer@tammer.net>.
306
307 2008-09-28  Bruno Haible  <bruno@clisp.org>
308
309         * modules/posix_spawnp-tests: New file.
310         * tests/test-posix_spawn.c: New file.
311         * tests/test-posix_spawn.in.sh: New file.
312
313         New module 'posix_spawnp'.
314         * modules/posix_spawnp: New file.
315         * lib/spawnp.c: New file, from GNU libc with modifications.
316         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
317
318         New module 'posix_spawn'.
319         * modules/posix_spawn: New file.
320         * lib/spawn.c: New file, from GNU libc with modifications.
321         * doc/posix-functions/posix_spawn.texi: Mention the new module.
322
323         New module 'posix_spawnattr_destroy'.
324         * modules/posix_spawnattr_destroy: New file.
325         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
326         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
327         module.
328
329         New module 'posix_spawnattr_setsigmask'.
330         * modules/posix_spawnattr_setsigmask: New file.
331         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
332         modifications.
333         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
334         new module.
335
336         New module 'posix_spawnattr_getsigmask'.
337         * modules/posix_spawnattr_getsigmask: New file.
338         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
339         modifications.
340         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
341         new module.
342
343         New module 'posix_spawnattr_setsigdefault'.
344         * modules/posix_spawnattr_setsigdefault: New file.
345         * lib/spawnattr_setdefault.c: New file, from GNU libc with
346         modifications.
347         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
348         new module.
349
350         New module 'posix_spawnattr_getsigdefault'.
351         * modules/posix_spawnattr_getsigdefault: New file.
352         * lib/spawnattr_getdefault.c: New file, from GNU libc with
353         modifications.
354         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
355         new module.
356
357         New module 'posix_spawnattr_setschedpolicy'.
358         * modules/posix_spawnattr_setschedpolicy: New file.
359         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
360         modifications.
361         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
362         new module.
363
364         New module 'posix_spawnattr_getschedpolicy'.
365         * modules/posix_spawnattr_getschedpolicy: New file.
366         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
367         modifications.
368         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
369         new module.
370
371         New module 'posix_spawnattr_setschedparam'.
372         * modules/posix_spawnattr_setschedparam: New file.
373         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
374         modifications.
375         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
376         new module.
377
378         New module 'posix_spawnattr_getschedparam'.
379         * modules/posix_spawnattr_getschedparam: New file.
380         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
381         modifications.
382         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
383         new module.
384
385         New module 'posix_spawnattr_setpgroup'.
386         * modules/posix_spawnattr_setpgroup: New file.
387         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
388         modifications.
389         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
390         module.
391
392         New module 'posix_spawnattr_getpgroup'.
393         * modules/posix_spawnattr_getpgroup: New file.
394         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
395         modifications.
396         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
397         module.
398
399         New module 'posix_spawnattr_setflags'.
400         * modules/posix_spawnattr_setflags: New file.
401         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
402         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
403         module.
404
405         New module 'posix_spawnattr_getflags'.
406         * modules/posix_spawnattr_getflags: New file.
407         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
408         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
409         module.
410
411         New module 'posix_spawnattr_init'.
412         * modules/posix_spawnattr_init: New file.
413         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
414         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
415         module.
416
417         New module 'posix_spawn_file_actions_destroy'.
418         * modules/posix_spawn_file_actions_destroy: New file.
419         * lib/spawn_faction_destroy.c: New file, from GNU libc with
420         modifications.
421         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
422         the new module.
423
424         New module 'posix_spawn_file_actions_addopen'.
425         * modules/posix_spawn_file_actions_addopen: New file.
426         * lib/spawn_faction_addopen.c: New file, from GNU libc with
427         modifications.
428         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
429         the new module.
430
431         New module 'posix_spawn_file_actions_adddup2'.
432         * modules/posix_spawn_file_actions_adddup2: New file.
433         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
434         modifications.
435         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
436         the new module.
437
438         New module 'posix_spawn_file_actions_addclose'.
439         * modules/posix_spawn_file_actions_addclose: New file.
440         * lib/spawn_faction_addclose.c: New file, from GNU libc with
441         modifications.
442         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
443         the new module.
444
445         New module 'posix_spawn_file_actions_init'.
446         * modules/posix_spawn_file_actions_init: New file.
447         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
448         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
449         new module.
450
451         New module 'posix_spawn-internal'.
452         * modules/posix_spawn-internal: New file.
453         * lib/spawn_int.h: New file, from GNU libc with modifications.
454         * lib/spawni.c: New file, from GNU libc with modifications.
455         * m4/posix_spawn.m4: New file.
456
457         New module 'spawn'.
458         * modules/spawn: New file.
459         * lib/spawn.in.h: New file, from GNU libc with modifications.
460         * m4/spawn_h.m4: New file.
461         * doc/posix-headers/spawn.texi: Mention the new module.
462
463 2008-09-28  Bruno Haible  <bruno@clisp.org>
464
465         * modules/sched-tests: New file.
466         * tests/test-sched.c: New file.
467
468         New module 'sched'.
469         * modules/sched: New file.
470         * lib/sched.in.h: New file.
471         * m4/sched_h.m4: New file.
472         * doc/posix-headers/sched.texi: Mention the new module.
473
474 2008-09-27  Eric Blake  <ebb9@byu.net>
475
476         Fix previous patch, and tweak references to $0.
477         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
478         (func_version, func_gnulib_dir): Don't call this program
479         gnulib-tool.
480         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
481         with using $0 in function.
482         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
483         (func_fatal_error): Reuse the name the user invoked us with.
484
485 2008-09-27  Bruno Haible  <bruno@clisp.org>
486
487         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
488         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
489         (gl_ICONV_H): Not here.
490         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
491         instead of assigning ICONV_H directly.
492
493         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
494         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
495         WCHAR_H directly.
496
497 2008-09-27  Bruno Haible  <bruno@clisp.org>
498
499         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
500         * modules/arpa_inet (Depends-on): Add link-warning.
501         (Makefile.am): Insert the definition of GL_LINK-WARNING.
502         * modules/unistd (Makefile.am): Likewise.
503
504 2008-09-26  Bruno Haible  <bruno@clisp.org>
505
506         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
507         variables.
508         (func_version): Essentially copied from gnulib-tool.
509         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
510         func_readlink): Copied from gnulib-tool.
511
512 2008-09-26  Bruno Haible  <bruno@clisp.org>
513
514         * gnulib-tool (func_version): Change directory to $gnulib_dir before
515         invoking git-version-gen.
516
517 2008-09-26  Bruno Haible  <bruno@clisp.org>
518
519         * posix-modules: Update to directory names changed on 2008-01-19.
520         Remove commas in output before splitting into words. No more need to
521         avoid 'ftruncate' since 2007-02-19.
522
523 2008-09-26  Bruno Haible  <bruno@clisp.org>
524
525         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
526
527 2008-09-26  Bruno Haible  <bruno@clisp.org>
528
529         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
530         * modules/fwriteerror (Depends-on): Add errno.
531
532 2008-09-26  Bruno Haible  <bruno@clisp.org>
533
534         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
535         * tests/test-vc-list-files-cvs.sh: Likewise.
536
537 2008-09-26  Bruno Haible  <bruno@clisp.org>
538
539         * doc/posix-headers/sys_resource.texi: Reorder items.
540
541 2008-09-26  Jim Meyering  <meyering@redhat.com>
542
543         fts: tweak inode comparison function
544         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
545         inode numbers, as documented.
546
547         fts: sort dirent entries on inode number before traversing
548         This avoids a quadratic, seek-related performance penalty when
549         operating on a directory containing many entries (measurable at 10k;
550         3.5 hours at 2 million entries with a cold cache) on certain types
551         of file systems, including ext3 and ext4, but not tmpfs.
552         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
553         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
554         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
555         (fs_handles_readdir_ordered_dirents_efficiently): New function.
556         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
557         (fts_build): Set the stat.st_ino member from D_INO.
558         If it is likely to be useful, sort dirent entries on inode number.
559
560         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
561         and the struct statfs.f_type member.
562         * modules/fts (Depends-on): Add d-ino.
563
564 2008-09-26  Bruno Haible  <bruno@clisp.org>
565
566         * modules/sigpipe-die (Depends-on): Add sigpipe.
567
568         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
569         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
570         and GNULIB_STDIO_H_SIGPIPE are set.
571         * lib/stdio-write.c: New file.
572         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
573         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
574         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
575         REPLACE_STDIO_WRITE_FUNCS.
576         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
577         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
578         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
579         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
580         * modules/stdio (Files): Add lib/stdio-write.c.
581         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
582         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
583         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
584         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
585         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
586         REPLACE_FPRINTF_POSIX.
587         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
588         REPLACE_PRINTF_POSIX.
589         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
590         REPLACE_VFPRINTF_POSIX.
591         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
592         REPLACE_VPRINTF_POSIX.
593         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
594         SIGPIPE issue.
595         * doc/posix-functions/fputc.texi: Likewise.
596         * doc/posix-functions/fputs.texi: Likewise.
597         * doc/posix-functions/fwrite.texi: Likewise.
598         * doc/posix-functions/printf.texi: Likewise.
599         * doc/posix-functions/putc.texi: Likewise.
600         * doc/posix-functions/putchar.texi: Likewise.
601         * doc/posix-functions/puts.texi: Likewise.
602         * doc/posix-functions/vfprintf.texi: Likewise.
603         * doc/posix-functions/vprintf.texi: Likewise.
604
605         * modules/safe-write (Depends-on): Add write.
606
607         * modules/sigpipe-tests: New file.
608         * tests/test-sigpipe.c: New file.
609         * tests/test-sigpipe.sh: New file.
610
611         * modules/write: New file.
612         * lib/unistd.in.h: Include <sys/types.h>.
613         (write): New declaration.
614         * lib/write.c: New file.
615         * m4/write.m4: New file.
616         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
617         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
618         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
619         GNULIB_WRITE, REPLACE_WRITE.
620         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
621         and the SIGPIPE issue.
622
623         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
624         (raise): New declaration.
625         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
626         (ext_signal): New function.
627         (rpl_raise): New function.
628         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
629         GNULIB_SIGNAL_H_SIGPIPE.
630         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
631         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
632
633         * modules/sigpipe: New file.
634         * m4/sigpipe.m4: New file.
635
636 2008-09-25  Derek Price  <derek@ximbiot.com>
637             Bruno Haible  <bruno@clisp.org>
638
639         * gnulib-tool (func_import): Report all license incompatibilities, not
640         just the first one.
641
642 2008-09-25  Bruno Haible  <bruno@clisp.org>
643
644         * gnulib-tool (func_import): When computing the edits, consider not
645         only the Makefile.ams that exist but also those that will be generated.
646
647 2008-09-25  Simon Josefsson  <simon@josefsson.org>
648
649         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
650         fixes gnulib-tool --test warning about duplicate dependency.
651
652 2008-09-25  Bruno Haible  <bruno@clisp.org>
653
654         * gnulib-tool: Don't ask the user to perform edits in the generated
655         Makefile.ams.
656         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
657         apply to the Makefile.am being generated.
658         (func_emit_tests_Makefile_am): Execute edits that apply to the
659         Makefile.am being generated.
660         (func_import): Setup list of Makefile.am edits before emitting the
661         Makefile.ams, not at the end.
662         (func_create_testdir): Update.
663         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
664
665 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
666
667         * gnulib-tool (func_import): Store the --tests-base option in the
668         comment in gnulib-cache.m4.
669
670 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
671
672         * NEWS: Document increased portability that sys_select now provides.
673
674         * lib/sys_select.in.h: Install select wrapper.
675         * lib/sys_socket.in.h: Use more descriptive name when there is no
676         select wrapper.
677         * lib/winsock-select.c: New.
678         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
679         Require gl_HEADER_SYS_SOCKET.
680         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
681         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
682         * tests/test-sys_select.c: Add functional tests.
683
684 2008-09-24  Eric Blake  <ebb9@byu.net>
685
686         open, fopen: close fd leak in last patch
687         * lib/open.c (rpl_open): Close fd before returning error.
688         * lib/fopen.c (rpl_fopen): Close fd before returning error.
689         * doc/posix-functions/open.texi (open): Document that Irix also
690         has the bug.
691         * doc/posix-functions/fopen.texi (fopen): Likewise.
692         Reported by Paolo Bonzini.
693
694 2008-09-24  Bruno Haible  <bruno@clisp.org>
695
696         Ensure that a filename ending in a slash cannot be used to access a
697         non-directory.
698         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
699         to check whether it's really a directory.
700         * lib/fopen.c: Include fcntl.h, unistd.h.
701         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
702         and fdopen().
703         * modules/fopen (Depends-on): Add unistd.
704         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
705         * tests/test-fopen.c (main): Likewise.
706         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
707         * doc/posix-functions/fopen.texi: Likewise.
708         Reported by Eric Blake.
709
710 2008-09-23  Eric Blake  <ebb9@byu.net>
711
712         c-stack: avoid compiler optimizations when provoking overflow
713         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
714         recursion harder to optimize, to ensure a stack overflow occurs.
715         * tests/test-c-stack.c (recurse): Likewise.
716         Borrowed from libsigsegv.
717
718         c-stack: work around Irix sigaltstack bug
719         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
720         whether sigaltstack uses wrong end of stack_t (copied in part from
721         libsigsegv).
722         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
723         Irix bug, without requiring an over-allocation.
724         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
725         bug.
726
727         fopen: document mingw bug on directories
728         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
729         not allowing a stream visiting a directory, even though reading
730         from such a stream is not portable.
731
732 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
733
734         * lib/poll.c: Rewrite.
735         * modules/poll: Depend on alloca.
736
737 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
738
739         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
740         instead define prototypes for a full set of wrappers.  Ensure
741         that Cygwin does not use the compatibility code, which is only
742         for MinGW.
743         * lib/winsock.c: New.
744         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
745         * modules/sys_socket: Add lib/winsock.c.
746
747         * modules/poll-tests: Add errno and perror.
748         * tests/test-poll.c: Use ioctl, not ioctlsocket.
749
750 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
751
752         * tests/test-poll.c: Downgrade minimum needed Winsock version.
753
754 2008-09-23  Bruno Haible  <bruno@clisp.org>
755
756         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
757         * doc/glibc-functions/*: Likewise.
758
759 2008-09-23  Simon Josefsson  <simon@josefsson.org>
760
761         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
762         success.
763
764 2008-09-22  Eric Blake  <ebb9@byu.net>
765             Bruno Haible  <bruno@clisp.org>
766
767         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
768         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
769         supply %A but mishandle pseudo-NaN.
770         Reported by Simon Josefsson.
771
772 2008-09-21  Bruno Haible  <bruno@clisp.org>
773
774         * tests/test-lock.c (main): Tweak skip message.
775         * tests/test-tls.c (main): Likewise.
776
777 2008-09-21  Bruno Haible  <bruno@clisp.org>
778
779         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
780         whether 'struct sigaction' has sa_sigaction here...
781         (gl_PREREQ_SIG_HANDLER_H): ... not here.
782         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
783
784 2008-09-21  Bruno Haible  <bruno@clisp.org>
785
786         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
787         section.
788         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
789         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
790         the new section.
791         (Support for obsolete systems lacking POSIX:2001): New section.
792         (String handling <string.h>): Move strdup to the new section.
793         Suggested by Simon Josefsson and Paolo Bonzini.
794
795 2008-09-21  Bruno Haible  <bruno@clisp.org>
796
797         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
798         exponents in %e and %g results on 'long double'. Needed for mingw's
799         improved *printf functions.
800         * tests/test-vasprintf-posix.c (test_function): Likewise.
801         * tests/test-snprintf-posix.h (test_function): Likewise.
802         * tests/test-sprintf-posix.h (test_function): Likewise.
803         Reported by Eric Blake.
804
805 2008-09-21  Bruno Haible  <bruno@clisp.org>
806
807         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
808         * tests/test-sprintf-posix.h (test_function): Likewise.
809
810 2008-09-21  Bruno Haible  <bruno@clisp.org>
811
812         * modules/getpass (Depends-on): Add strdup-posix.
813
814         New module 'strdup-posix'.
815         * modules/strdup-posix: New file.
816         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
817         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
818         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
819         REPLACE_STRDUP.
820         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
821         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
822         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
823         strdup-posix.
824
825         * modules/strdup (Depends-on): Remove malloc-posix.
826
827 2008-09-20  Bruno Haible  <bruno@clisp.org>
828
829         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
830         Wildenhues.
831
832 2008-09-20  Bruno Haible  <bruno@clisp.org>
833
834         Ensure that wint_t gets defined on IRIX 5.3.
835         * lib/wchar.in.h (wint_t): Define if not defined by the system.
836         * lib/wctype.in.h (wint_t): Likewise.
837         (__wctype_wint_t): Remove type.
838         (isw*): Use wint_t instead of __wctype_wint_t.
839         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
840         * modules/wchar (Files): Add m4/wint_t.m4.
841         (Makefile.am): Substitute HAVE_WINT_T.
842         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
843         * tests/test-wctype.c: Check that wint_t is defined.
844         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
845         * doc/posix-headers/wctype.texi: Likewise.
846         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
847
848 2008-09-18  Bruno Haible  <bruno@clisp.org>
849
850         * gnulib-tool (func_exit): Update comment.
851
852 2008-09-18  Simon Josefsson  <simon@josefsson.org>
853
854         * modules/getaddrinfo (Depends-on): Remove strdup, this module
855         assumes strdup exists and does not depend on strdup to return
856         ENOMEM on out of memory conditions.
857
858 2008-09-18  Bruno Haible  <bruno@clisp.org>
859
860         * lib/vasnprintf.c (VASNPRINTF): When printing ±0.0L in
861         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
862         digits for the exponent.
863
864 2008-09-18  Jim Meyering  <meyering@redhat.com>
865             Bruno Haible  <bruno@clisp.org>
866
867         * lib/vasnprintf.c (decimal_point_char): Define also if
868         NEED_PRINTF_INFINITE_LONG_DOUBLE.
869
870 2008-09-16  Bruno Haible  <bruno@clisp.org>
871         and Eric Blake  <ebb9@byu.net>
872
873         vasnprintf: support Irix 5.3
874         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
875         that mishandle long double infinity.
876         Reported by Tom G. Christensen.
877
878 2008-09-16  Bruno Haible  <bruno@clisp.org>
879
880         * doc/glibc-functions/scandir.texi: Mention the function is missing on
881         Solaris 9.
882         * doc/glibc-functions/alphasort.texi: Likewise.
883         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
884
885 2008-09-16  Jim Meyering  <meyering@redhat.com>
886
887         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
888         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
889         a umask modification leak out of a subshell.  Otherwise, the
890         opensolaris /bin/sh would be accepted and thus cause unwarranted
891         failures in the coreutils test suite.
892
893 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
894
895         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
896         to succeed.
897
898 2008-09-16  Jim Meyering  <meyering@redhat.com>
899
900         avoid spurious test failure when library is built without ACL support
901         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
902         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
903         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
904         * tests/test-copy-acl.sh: Likewise.
905
906 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
907
908         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
909         based on character occurrence counts.
910
911 2008-09-15  Eric Blake  <ebb9@byu.net>
912
913         tests: avoid some compiler warnings
914         * tests/test-memchr.c (main): Pass NULL indirectly.
915         * tests/test-closein.c (main): Avoid unused variable.
916
917 2008-09-15  Bruno Haible  <bruno@clisp.org>
918
919         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
920         are missing on OpenBSD 4.0 individually.
921         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
922
923 2008-09-15  Bruno Haible  <bruno@clisp.org>
924
925         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
926         * doc/posix-functions/strerror.texi: Mention also Cygwin.
927         * doc/posix-functions/perror.texi: Likewise.
928         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
929         is missing.
930         Reported by Eric Blake.
931
932         * lib/errno.in.h: Use replacement values >= 2000.
933         Reported by Eric Blake.
934
935 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
936
937         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
938         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
939         limit.
940         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
941         compareseq was aborted.
942
943 2008-09-14  Bruno Haible  <bruno@clisp.org>
944
945         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
946         yvec_edit_count.
947         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
948         (fstrcmp_bounded): Simplify result computation accordingly.
949
950 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
951
952         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
953         (fstrcmp): Define in terms of fstrcmp_bounded.
954         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
955         lower_bound argument.
956         Return quickly if the result is certainly < lower_bound.
957         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
958
959 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
960
961         * lib/diffseq.h (EARLY_ABORT): New macro.
962         (compareseq): Change return type to bool. Return true when EARLY_ABORT
963         evaluates to true.
964
965 2008-09-14  Bruno Haible  <bruno@clisp.org>
966
967         * modules/perror-tests: New file.
968         * tests/test-perror.sh: New file.
969         * tests/test-perror.c: New file.
970
971         New module 'perror'.
972         * lib/stdio.in.h (perror): New declaration.
973         * lib/perror.c: New file.
974         * m4/perror.m4: New file.
975         * modules/perror: New file.
976         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
977         * doc/posix-functions/perror.texi: Mention the perror module.
978         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
979         REPLACE_PERROR.
980         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
981         REPLACE_PERROR.
982
983 2008-09-14  Bruno Haible  <bruno@clisp.org>
984
985         * modules/stdio (Makefile.am): Reorder to match the order in
986         lib/stdio.in.h.
987         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
988
989 2008-09-13  Bruno Haible  <bruno@clisp.org>
990
991         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
992
993 2008-09-13  Bruno Haible  <bruno@clisp.org>
994
995         Extend strerror to cover the added errno values.
996         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
997         (rpl_strerror): Provide error messages for the added errno values and
998         for the WSA* values.
999         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
1000         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
1001         strerror.
1002         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
1003         * modules/strerror (Depends-on): Add errno.
1004         * doc/posix-functions/strerror.texi: Document the change.
1005         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
1006         and EOVERFLOW.
1007
1008 2008-09-13  Bruno Haible  <bruno@clisp.org>
1009
1010         * modules/EOVERFLOW: Remove file.
1011         * m4/eoverflow.m4: Remove file.
1012         * modules/EOVERFLOW-tests: Remove file.
1013         * tests/test-EOVERFLOW.c: Remove file.
1014         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
1015         * modules/ftell (Depends-on): Likewise.
1016         * modules/getdelim (Depends-on): Likewise.
1017         * modules/getugroups (Depends-on): Likewise.
1018         * modules/poll (Depends-on): Likewise.
1019         * modules/snprintf (Depends-on): Likewise.
1020         * modules/sprintf-posix (Depends-on): Likewise.
1021         * modules/vasnprintf (Depends-on): Likewise.
1022         * modules/vasprintf (Depends-on): Likewise.
1023         * modules/vfprintf-posix (Depends-on): Likewise.
1024         * modules/vsnprintf (Depends-on): Likewise.
1025         * modules/vsprintf-posix (Depends-on): Likewise.
1026         * modules/xvasprintf (Depends-on): Likewise.
1027         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
1028         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
1029         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
1030         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
1031         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
1032         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
1033         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
1034         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
1035         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
1036         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
1037         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
1038         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
1039         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
1040         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
1041         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
1042         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
1043         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
1044         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
1045         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
1046         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
1047         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
1048         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
1049         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
1050         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
1051         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
1052         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
1053         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
1054         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
1055         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
1056         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
1057         * MODULES.html.sh: Remove EOVERFLOW.
1058         * NEWS: Mention the change.
1059
1060 2008-09-13  Bruno Haible  <bruno@clisp.org>
1061
1062         * modules/errno-tests: New file.
1063         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
1064
1065         * lib/errno.in.h: New file.
1066         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
1067         * modules/errno: New file.
1068         * doc/posix-headers/errno.texi: Update documentation.
1069         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
1070
1071 2008-09-13  Bruno Haible  <bruno@clisp.org>
1072
1073         * tests/test-poll.c: Use #if for native Windows, rather than testing
1074         __MSVCRT__.
1075
1076 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1077             Bruno Haible  <bruno@clisp.org>
1078
1079         * lib/glob.c: Don't include <pwd.h> on native Windows.
1080         (WINDOWS32): New macro.
1081         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
1082
1083 2008-09-13  Bruno Haible  <bruno@clisp.org>
1084
1085         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
1086         (ETIMEDOUT): Remove macro.
1087         (glthread_cond_timedwait_multithreaded): New declaration.
1088         (glthread_cond_timedwait): Use it.
1089         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
1090         (glthread_cond_timedwait_multithreaded): New function.
1091
1092 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
1093
1094         * modules/poll-tests: Do not check for io.h.
1095         * tests/test-poll.c: Check for __MSVCRT__ instead.
1096
1097 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
1098
1099         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
1100         * modules/poll-tests: Add inet_pton, stdbool, sockets.
1101         * tests/test-poll.c: Use them.  Use _pipe on Windows.
1102
1103 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
1104
1105         * modules/poll-tests: New.
1106         * tests/test-poll.c: New.
1107
1108 2008-09-12  Eric Blake  <ebb9@byu.net>
1109
1110         frexp: test for NetBSD failure on -0.0
1111         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
1112         not all, bugs from NetBSD 3.0 have been fixed.
1113         * doc/posix-functions/frexp.texi (frexp): Document bug.
1114         Reported by Thomas Klausner.
1115
1116         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
1117         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
1118         literal -0.0.
1119         Reported by Jonathan C. Patschke <jp@centtech.com>.
1120
1121 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1122
1123         * lib/glthread/cond.h: Use dummy implementation also if
1124         USE_WIN32_THREADS.
1125
1126 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1127
1128         * modules/fnmatch-posix (License): Change to LGPLv2+.
1129         * modules/fnmatch-gnu (License): Likewise.
1130
1131 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1132
1133         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
1134
1135 2008-09-11  Jim Meyering  <meyering@redhat.com>
1136
1137         * users.txt: Add gtk-vnc.
1138
1139 2008-09-08  Simon Josefsson  <simon@josefsson.org>
1140
1141         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
1142         rotate amounts.
1143
1144         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
1145         required for 16-bit and 8-bit rotates.
1146         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
1147         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
1148         UINT8_MAX instead of hard-coded constants.
1149         Suggested by Paul Eggert.
1150
1151 2008-09-07  Bruno Haible  <bruno@clisp.org>
1152
1153         * tests/test-striconveh.c (main): Check behaviour when converting from
1154         UTF-7.
1155
1156         Make striconveh work better with stateful encodings.
1157         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
1158         that iconv does not increment the inptr when returning -1/EINVAL.
1159
1160 2008-09-07  Bruno Haible  <bruno@clisp.org>
1161
1162         * build-aux/config.rpath: Update according to libtool-2.2.6.
1163         * build-aux/config.libpath: Likewise.
1164
1165 2008-09-06  Bruno Haible  <bruno@clisp.org>
1166
1167         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
1168         * lib/freadptr.c (freadptr): Likewise.
1169         * lib/freadseek.c (freadptrinc): Likewise.
1170         Reported by Simon Josefsson.
1171
1172 2008-09-06  Bruno Haible  <bruno@clisp.org>
1173
1174         * modules/freadptr (License): Change to LGPLv2+.
1175         * modules/freadseek (License): Likewise.
1176         Suggested by Eric Blake.
1177
1178         * modules/memchr2 (License): Change to LGPLv2+.
1179         Approved by Eric Blake.
1180
1181 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1182             Bruno Haible  <bruno@clisp.org>
1183
1184         Make gnulib-tool work with native 'sed' on AIX.
1185         * gnulib-tool (sed_noop): New variable.
1186         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
1187         func_add_or_update, func_create_testdir): Use it to initialize sed
1188         script variables.
1189         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
1190
1191 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
1192             Bruno Haible  <bruno@clisp.org>
1193
1194         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
1195         also works after #include directives.
1196
1197 2008-09-04  Ondřej Vašík  <ovasik@redhat.com>
1198
1199         getdate.y: reject an out-of-range timezone value
1200         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
1201         the range [-24...+24].  When specified with only one or two digits,
1202         * tests/test-getdate.c: Tests for the fix.
1203         * doc/getdate.texi: Document this change.
1204
1205 2008-09-03  Bruno Haible  <bruno@clisp.org>
1206
1207         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
1208
1209 2008-09-02  Simon Josefsson  <simon@josefsson.org>
1210
1211         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
1212         <bruce.korb@gmail.com> with ideas from Ben Pfaff
1213         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
1214         Blake <ebb9@byu.net>.
1215
1216         * tests/test-bitrotate.c: Add more test vectors.
1217
1218 2008-09-02  Eric Blake  <ebb9@byu.net>
1219
1220         vasnprintf-posix: handle large precision via %.*d
1221         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
1222         when handling it ourselves.
1223         * tests/test-vasnprintf-posix.c (test_function): Add test.
1224         * tests/test-snprintf-posix.h (test_function): Likewise.
1225         * tests/test-sprintf-posix.h (test_function): Likewise.
1226         * tests/test-vasprintf-posix.c (test_function): Likewise.
1227         Reported by Alain Guibert.
1228
1229 2008-09-01  Eric Blake  <ebb9@byu.net>
1230
1231         c-stack: make configure-time check more robust
1232         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
1233         successful sigaction call.
1234         Reported by Tom G. Christensen.
1235
1236 2008-09-01  Bruno Haible  <bruno@clisp.org>
1237
1238         New module 'findprog-lgpl'.
1239         * modules/findprog-lgpl: New file.
1240         * lib/findprog-lgpl.c: New file.
1241         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
1242         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
1243         to decide whether to use strdup or xstrdup, concatenated_filename or
1244         xconcatenated_filename.
1245
1246 2008-09-01  Bruno Haible  <bruno@clisp.org>
1247
1248         Split module 'concat-filename' into 'concat-filename' (LGPL) and
1249         'xconcat-filename' (GPL).
1250         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
1251         (License): Change to LGPLv2+.
1252         * modules/xconcat-filename: New file.
1253         * lib/concat-filename.h (concatenated_filename): Change specification.
1254         (xconcatenated_filename): New declaration.
1255         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
1256         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
1257         memory situations.
1258         * lib/xconcat-filename.c: New file.
1259         * NEWS: Mention the change.
1260         * lib/findprog.c: Include concat-filename.h, not filename.h.
1261         (find_in_path): Use xconcatenated_filename instead of
1262         concatenated_filename.
1263         * lib/javacomp.c: Include concat-filename.h, not filename.h.
1264         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
1265         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
1266         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
1267         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
1268         instead of concatenated_filename.
1269         * lib/javaexec.c: Include concat-filename.h, not filename.h.
1270         (execute_java_class): Use xconcatenated_filename instead of
1271         concatenated_filename.
1272         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
1273         * modules/javacomp (Depends-on): Likewise.
1274         * modules/javaexec (Depends-on): Likewise.
1275
1276 2008-09-01  Bruno Haible  <bruno@clisp.org>
1277
1278         Split module 'filename' into 'filename' and 'concat-filename'.
1279         * modules/filename: Keep only lib/filename.h.
1280         (License): Change to LGPLv2+.
1281         * modules/concat-filename: New file, extracted from modules/filename.
1282         * lib/filename.h (concatenated_filename): Remove declaration.
1283         * lib/concat-filename.h: New file, extracted from lib/filename.h.
1284         * lib/concat-filename.c: Include concat-filename.h.
1285         * NEWS: Mention the change.
1286
1287 2008-09-01  Simon Josefsson  <simon@josefsson.org>
1288
1289         * lib/bitrotate.h (rotl8, rotr8): Add.
1290
1291         * modules/bitrotate (configure.ac): Need
1292         AC_REQUIRE([AC_C_INLINE]).
1293         (Description): Mention stdint.h.  Reported by Bruno Haible
1294         <bruno@clisp.org>.
1295
1296         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
1297         Paolo Bonzini <bonzini@gnu.org>.
1298
1299 2008-08-31  Bruno Haible  <bruno@clisp.org>
1300
1301         Assume Solaris specific bi-arch conventions on Solaris systems.
1302         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
1303         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
1304         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
1305         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
1306         like acl_libdirstem.
1307         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
1308         acl_libdirstem.
1309         * NEWS: Mention the change.
1310         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
1311
1312 2008-08-31  Jim Meyering  <meyering@redhat.com>
1313
1314         * lib/strftime.h: Add comments describing the two added arguments.
1315
1316         remove duplicate #include directives
1317         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
1318         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
1319
1320 2008-08-31  Bruno Haible  <bruno@clisp.org>
1321
1322         New module 'sigpipe-die'.
1323         * modules/sigpipe-die: New file.
1324         * lib/sigpipe-die.h: New file.
1325         * lib/sigpipe-die.c: New file.
1326         * MODULES.html.sh (Signal handling): Add sigpipe-die.
1327
1328 2008-08-31  Bruno Haible  <bruno@clisp.org>
1329
1330         Don't override previously installed signal handlers.
1331         * lib/fatal-signal.c (saved_sigactions): New variable.
1332         (uninstall_handlers): Reset the signal to the saved handler, not
1333         to SIG_DFL (except when ignored).
1334         (install_handlers): Save the previous handlers.
1335
1336 2008-08-30  Bruno Haible  <bruno@clisp.org>
1337
1338         * gnulib-tool (func_reset_sigpipe): New function.
1339         (func_get_automake_snippet, func_modules_transitive_closure,
1340         func_import): Invoke it before a join command that reads from stdin,
1341         to avoid "echo: write error: Broken pipe" error messages on stderr.
1342         Reported by Sam Steingold <sds@gnu.org>.
1343
1344 2008-08-30  Bruno Haible  <bruno@clisp.org>
1345
1346         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
1347         Code copied from m4/open.m4.
1348         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
1349         access and the filename ends in a slash. Code copied from lib/open.c.
1350         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
1351         * tests/test-fopen.c (main): Check against bug with trailing slash.
1352
1353 2008-08-29  Bruno Haible  <bruno@clisp.org>
1354
1355         Avoid some "gcc -pedantic" warnings.
1356         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
1357         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
1358         * lib/dirent.in.h: Likewise.
1359         * lib/fcntl.in.h: Likewise.
1360         * lib/float.in.h: Likewise.
1361         * lib/iconv.in.h: Likewise.
1362         * lib/inttypes.in.h: Likewise.
1363         * lib/locale.in.h: Likewise.
1364         * lib/math.in.h: Likewise.
1365         * lib/netinet_in.in.h: Likewise.
1366         * lib/search.in.h: Likewise.
1367         * lib/signal.in.h: Likewise.
1368         * lib/stdarg.in.h: Likewise.
1369         * lib/stdint.in.h: Likewise.
1370         * lib/stdio.in.h: Likewise.
1371         * lib/stdlib.in.h: Likewise.
1372         * lib/string.in.h: Likewise.
1373         * lib/strings.in.h: Likewise.
1374         * lib/sys_select.in.h: Likewise.
1375         * lib/sys_socket.in.h: Likewise.
1376         * lib/sys_stat.in.h: Likewise.
1377         * lib/sys_time.in.h: Likewise.
1378         * lib/sysexits.in.h: Likewise.
1379         * lib/time.in.h: Likewise.
1380         * lib/unistd.in.h: Likewise.
1381         * lib/wchar.in.h: Likewise.
1382         * lib/wctype.in.h: Likewise.
1383         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
1384         * modules/fchdir (Makefile.am): Likewise.
1385         * modules/fcntl (Makefile.am): Likewise.
1386         * modules/float (Makefile.am): Likewise.
1387         * modules/iconv_open (Makefile.am): Likewise.
1388         * modules/inttypes (Makefile.am): Likewise.
1389         * modules/locale (Makefile.am): Likewise.
1390         * modules/math (Makefile.am): Likewise.
1391         * modules/netinet_in (Makefile.am): Likewise.
1392         * modules/search (Makefile.am): Likewise.
1393         * modules/signal (Makefile.am): Likewise.
1394         * modules/stdarg (Makefile.am): Likewise.
1395         * modules/stdint (Makefile.am): Likewise.
1396         * modules/stdio (Makefile.am): Likewise.
1397         * modules/stdlib (Makefile.am): Likewise.
1398         * modules/string (Makefile.am): Likewise.
1399         * modules/strings (Makefile.am): Likewise.
1400         * modules/sys_select (Makefile.am): Likewise.
1401         * modules/sys_socket (Makefile.am): Likewise.
1402         * modules/sys_stat (Makefile.am): Likewise.
1403         * modules/sys_time (Makefile.am): Likewise.
1404         * modules/sysexits (Makefile.am): Likewise.
1405         * modules/time (Makefile.am): Likewise.
1406         * modules/unistd (Makefile.am): Likewise.
1407         * modules/wchar (Makefile.am): Likewise.
1408         * modules/wctype (Makefile.am): Likewise.
1409         Reported by Reuben Thomas <rrt@sc3d.org>.
1410
1411 2008-08-29  Bruno Haible  <bruno@clisp.org>
1412
1413         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
1414         any more.
1415
1416 2008-08-29  Simon Josefsson  <simon@josefsson.org>
1417
1418         * MODULES.html.sh (Misc): Add bitrotate.
1419
1420         * modules/bitrotate: New file.
1421
1422         * lib/bitrotate.h: New file.
1423
1424         * modules/bitrotate-tests: New file.
1425
1426         * tests/test-bitrotate.c: New file.
1427
1428         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
1429         on the bitrotate module.
1430
1431         * lib/arctwo.c: Use new bitrotate module.
1432
1433 2008-08-29  Jim Meyering  <meyering@redhat.com>
1434
1435         bootstrap: merge changes from coreutils
1436         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
1437         of copied files.  Remove a kludge, now that this is fixed.
1438         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
1439         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
1440         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
1441
1442 2008-08-29  Bruno Haible  <bruno@clisp.org>
1443
1444         * MODULES.html.sh: Remove --cvs-urls option.
1445
1446 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
1447
1448         maint.mk: adjust to file name change
1449         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
1450
1451 2008-08-28  Jim Meyering  <meyering@redhat.com>
1452
1453         * modules/getndelim2 (License): Relicense to LGPLv2+.
1454         Approved by Richard Stallman for the version of 1995, and by
1455         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
1456
1457 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
1458
1459         * lib/getdelim.c (flockfile, funlockfile): Make all of them
1460         dummy if one is not available.  Do not touch them if
1461         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
1462         (getc_maybe_unlocked): New.
1463         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
1464
1465 2008-08-26  Eric Blake  <ebb9@byu.net>
1466
1467         doc/INSTALL: resync from autoconf
1468         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
1469         (INSTALL_PRELUDE): Delete; this is done more efficiently by
1470         moving...
1471         * install.texi [!autoconf]: ...here.  Resync from autoconf.
1472         * INSTALL: Regenerate.
1473         * INSTALL.ISO: New file.
1474         * INSTALL.UTF-8: Likewise.
1475
1476 2008-08-26  Jim Meyering  <meyering@redhat.com>
1477
1478         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
1479         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
1480         these definitions conditional, so that they may be overridden, too.
1481
1482 2008-08-26  Bruno Haible  <bruno@clisp.org>
1483
1484         Generate INSTALL file variants with prettier quotes.
1485         * doc/Makefile (INSTALL_PRELUDE): New macro.
1486         (INSTALL): Use it.
1487         (INSTALL.ISO, INSTALL.UTF-8): New rules.
1488
1489 2008-08-26  Bruno Haible  <bruno@clisp.org>
1490
1491         Run makeinfo in an English locale.
1492         * doc/Makefile (MAKEINFO): New variable.
1493
1494 2008-08-26  Bruno Haible  <bruno@clisp.org>
1495
1496         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
1497         Suggested by Eric Blake.
1498
1499 2008-08-25  Bruno Haible  <bruno@clisp.org>
1500
1501         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
1502
1503 2008-08-25  Eric Blake  <ebb9@byu.net>
1504
1505         c-stack: test that stack overflow can be caught
1506         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
1507         that platform allows handling stack overflow; at least OS/2 EMX
1508         has sigaltstack, but crashes before transferring control to
1509         handler on stack overflow.
1510         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
1511         check for HAVE_STACK_OVERFLOW_HANDLING.
1512         Reported by Elbert Pol.
1513
1514 2008-08-25  Bruno Haible  <bruno@clisp.org>
1515
1516         * doc/posix-functions/strftime.texi: Fix description of strftime
1517         module.
1518
1519 2008-08-24  Bruno Haible  <bruno@clisp.org>
1520
1521         * tests/uniwidth/test-uc_width2.c: New file.
1522         * tests/uniwidth/test-uc_width2.sh: New file.
1523         * modules/uniwidth/width-tests (Files): Add the new files.
1524         (TESTS): Add uniwidth/test-uc_width2.sh.
1525         (TESTS_ENVIRONMENT): New variable.
1526         (check_PROGRAMS): Add test-uc_width2.
1527         (test_uc_width2_SOURCES): New variable.
1528
1529         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
1530         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
1531         not 0x00AB.
1532         Reported by Alexander V. Lukyanov <lav@netis.ru>.
1533
1534 2008-08-22  Eric Blake  <ebb9@byu.net>
1535
1536         test-lock, test-tls: mention why a test is skipped
1537         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
1538         skipped.
1539         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
1540
1541         count-one-bits: relax license
1542         * modules/count-one-bits (License): Relicense to LGPLv2+.
1543         Suggested by Ludovic Courtès, approved by Ben Pfaff.
1544
1545 2008-08-22  Andreas Schwab  <schwab@suse.de>
1546
1547         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
1548         Remove spurious space in assignment.
1549
1550 2008-08-21  Simon Josefsson  <simon@josefsson.org>
1551
1552         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
1553         Paul Eggert <eggert@CS.UCLA.EDU>.
1554
1555 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
1556
1557         * modules/gettext: Add m4/threadlib.m4.
1558
1559 2008-08-19  Eric Blake  <ebb9@byu.net>
1560
1561         test-c-stack: fix compilation failure on FreeBSD 5.0
1562         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
1563         headers before <sys/resource.h>.
1564         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
1565         the bug.
1566         Reported by Nelson H. F. Beebe.
1567
1568         strverscmp: migrate from "strverscmp.h" to <string.h>
1569         * modules/string (Makefile.am): Add new hooks.
1570         * modules/strverscmp (Files): Remove strverscmp.h.
1571         (Depends-on): Add string.
1572         (configure.ac): Add indicator.
1573         (Include): Mention new header.
1574         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
1575         defaults.
1576         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
1577         results.
1578         * lib/strverscmp.h: Delete.
1579         * lib/string.in.h (strverscmp): Provide declaration, when needed.
1580         * tests/test-strverscmp.c (includes): Adjust client.
1581         * lib/check-version.c (includes): Likewise.
1582         * NEWS: Document the change.
1583
1584         strverscmp: add unit test
1585         * modules/strverscmp-tests: New file.
1586         * tests/test-strverscmp.c: Likewise.
1587
1588 2008-08-19  Simon Josefsson  <simon@josefsson.org>
1589
1590         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
1591         regarding Windows crypto stuff, from Mono.
1592
1593 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
1594
1595         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
1596         if present, for intel RND.  Return error on failures.
1597
1598 2008-08-18  Ben Pfaff  <blp@gnu.org>
1599
1600         gitlog-to-changelog: give better diagnostic for failed pipe-open
1601         * build-aux/gitlog-to-changelog: Improve error message: suggest
1602         that the version of Git may be too old.
1603
1604 2008-08-18  Simon Josefsson  <simon@josefsson.org>
1605
1606         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
1607         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
1608
1609 2008-08-18  Bruno Haible  <bruno@clisp.org>
1610
1611         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
1612         pthread_in_use().
1613
1614 2008-08-18  Bruno Haible  <bruno@clisp.org>
1615
1616         * lib/glthread/threadlib.c: Include <pthread.h>.
1617
1618 2008-08-18  Bruno Haible  <bruno@clisp.org>
1619
1620         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
1621         glthread_recursive_lock_* macros.
1622         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
1623         Fix syntax error.
1624
1625 2008-08-18  Bruno Haible  <bruno@clisp.org>
1626
1627         * lib/glthread/thread.c: Avoid forcing a context switch right after
1628         thread creation.
1629
1630 2008-08-17  Bruno Haible  <bruno@clisp.org>
1631
1632         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
1633         * lib/glthread/thread.h: Provide Win32 specific implementation.
1634         * modules/thread (Files): Add lib/glthread/thread.c.
1635         (Depends-on): Add lock.
1636         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
1637
1638 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1639
1640         New module 'yield'.
1641         * modules/yield: New file.
1642         * lib/glthread/yield.h: New file.
1643         * m4/yield.m4: New file.
1644         * MODULES.html.sh (Multithreading): Add yield.
1645
1646 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1647
1648         New module 'thread'.
1649         * modules/thread: New file.
1650         * lib/glthread/thread.h: New file.
1651         * m4/thread.m4: New file.
1652         * MODULES.html.sh (Multithreading): Add thread.
1653
1654 2008-08-17  Bruno Haible  <bruno@clisp.org>
1655
1656         * lib/glthread/lock.h: Include <stdlib.h> always.
1657         * lib/glthread/tls.h: Likewise.
1658         * lib/glthread/cond.h: Likewise.
1659
1660 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1661
1662         New module 'cond'.
1663         * modules/cond: New file.
1664         * lib/glthread/cond.h: New file.
1665         * lib/glthread/cond.c: New file.
1666         * m4/cond.m4: New file.
1667         * MODULES.html.sh (Multithreading): Add cond.
1668
1669 2008-08-16  Eric Blake  <ebb9@byu.net>
1670
1671         c-stack: fix regression on Irix 5.3 from 2008-06-21
1672         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
1673         sa_sigaction...
1674         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
1675         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
1676         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
1677         * modules/signal (Makefile.am): Use the value.
1678         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
1679         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
1680         * doc/posix-headers/signal.texi (signal.h): Document this
1681         portability issue.
1682         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
1683         Reported by Tom G. Christensen.
1684
1685 2008-08-17  Bruno Haible  <bruno@clisp.org>
1686
1687         New module 'threadlib'.
1688         * modules/threadlib: New file.
1689         * lib/glthread/threadlib.c: New file, extracted from
1690         lib/glthread/lock.c.
1691         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
1692         functions.
1693         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
1694         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
1695         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
1696         macros.
1697         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
1698         (gl_DISABLE_THREADS): Remove macro.
1699         * modules/lock (Files): Remove build-aux/config.rpath.
1700         (Depends-on): Remove havelib. Add threadlib.
1701         (configure.ac-early): Remove section.
1702         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
1703         * modules/tls (Depends-on): Remove lock. Add threadlib.
1704         (Link): New section, copied from threadlib.
1705         * MODULES.html.sh (Multithreading): Add threadlib.
1706
1707 2008-08-14  Bruno Haible  <bruno@clisp.org>
1708
1709         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
1710         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
1711         glthread_rwlock_unlock, glthread_rwlock_destroy,
1712         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
1713         glthread_recursive_lock_destroy): Define as macros always.
1714         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
1715         glthread_lock_lock.
1716         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
1717         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
1718         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
1719         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
1720         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
1721         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
1722         (glthread_recursive_lock_lock_func): Renamed from
1723         glthread_recursive_lock_lock.
1724         (glthread_recursive_lock_unlock_func): Renamed from
1725         glthread_recursive_lock_unlock.
1726         (glthread_recursive_lock_destroy_func): Renamed from
1727         glthread_recursive_lock_destroy.
1728
1729 2008-08-14  Bruno Haible  <bruno@clisp.org>
1730
1731         * lib/glthread/lock.h: Renamed from lib/lock.h.
1732         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
1733         * lib/glthread/tls.h: Renamed from lib/tls.h.
1734         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
1735         * lib/fstrcmp.c: Update includes.
1736         * lib/strsignal.c: Update includes.
1737         * modules/lock (Files, Makefile.am): Update.
1738         (Include): Change to "glthread/lock.h".
1739         * modules/tls (Files, Makefile.am): Update.
1740         (Include): Change to "glthread/tls.h".
1741         * tests/test-lock.c: Update includes.
1742         * tests/test-tls.c: Update includes.
1743         * NEWS: Mention the renamed header files.
1744
1745 2008-08-11  Jim Meyering  <meyering@redhat.com>
1746
1747         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
1748
1749 2008-08-11  Eric Blake  <ebb9@byu.net>
1750
1751         test-c-stack: avoid C99-ism
1752         * tests/test-c-stack.c (main): Fix whitespace, move declaration
1753         before statement.
1754         Reported by Alain Guibert.
1755
1756 2008-08-10  Jim Meyering  <meyering@redhat.com>
1757
1758         ensure that return value of uinttostr et al are not ignored
1759         * lib/inttostr.h (__GNUC_PREREQ): Define.
1760         (__attribute_warn_unused_result__): Define.
1761         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
1762
1763 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
1764
1765         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
1766         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
1767
1768 2008-08-07  Jim Meyering  <meyering@redhat.com>
1769
1770         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
1771
1772         * modules/mkstemp (License): Relicense under LGPLv2+.
1773         * modules/tempname (License): Likewise.
1774
1775 2008-08-06  Bruno Haible  <bruno@clisp.org>
1776
1777         * lib/poll.c (poll): Further micro-optimization.
1778
1779 2008-08-06  Jim Meyering  <meyering@redhat.com>
1780
1781         inet_pton.c: use locale-independent tolower
1782         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
1783         (inet_pton6): Use c_tolower rather than tolower.
1784         * modules/inet_pton (Depends-on): Add c-ctype.
1785
1786 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
1787
1788         * lib/poll.c (poll): Avoid division when timeout is 0, cache
1789         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
1790
1791 2008-08-06  Jim Meyering  <meyering@redhat.com>
1792
1793         * modules/inet_pton (License): Relicense under LGPLv2+.
1794
1795 2008-08-03  Bruno Haible  <bruno@clisp.org>
1796
1797         Additional non-aborting API for lock and tls.
1798         * lib/lock.h: Include <errno.h>.
1799         (glthread_lock_init): New macro/function.
1800         (gl_lock_init): Define as wrapper around glthread_lock_init.
1801         (glthread_lock_lock): New macro/function.
1802         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
1803         (glthread_lock_unlock): New macro/function.
1804         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
1805         (glthread_lock_destroy): New macro/function.
1806         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
1807         (glthread_rwlock_init): New macro/function.
1808         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
1809         (glthread_rwlock_rdlock): New macro/function.
1810         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
1811         (glthread_rwlock_wrlock): New macro/function.
1812         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
1813         (glthread_rwlock_unlock): New macro/function.
1814         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
1815         (glthread_rwlock_destroy): New macro/function.
1816         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
1817         (glthread_recursive_lock_init): New macro/function.
1818         (gl_recursive_lock_init): Define as wrapper around
1819         glthread_recursive_lock_init.
1820         (glthread_recursive_lock_lock): New macro/function.
1821         (gl_recursive_lock_lock): Define as wrapper around
1822         glthread_recursive_lock_lock.
1823         (glthread_recursive_lock_unlock): New macro/function.
1824         (gl_recursive_lock_unlock): Define as wrapper around
1825         glthread_recursive_lock_unlock.
1826         (glthread_recursive_lock_destroy): New macro/function.
1827         (gl_recursive_lock_destroy): Define as wrapper around
1828         glthread_recursive_lock_destroy.
1829         (glthread_once): New macro/function.
1830         (gl_once): Define as wrapper around glthread_once.
1831         Update function declarations.
1832         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
1833         glthread_rwlock_init. Return error code.
1834         (glthread_rwlock_rdlock_multithreaded): Renamed from
1835         glthread_rwlock_rdlock. Return error code.
1836         (glthread_rwlock_wrlock_multithreaded): Renamed from
1837         glthread_rwlock_wrlock. Return error code.
1838         (glthread_rwlock_unlock_multithreaded): Renamed from
1839         glthread_rwlock_unlock. Return error code.
1840         (glthread_rwlock_destroy_multithreaded): Renamed from
1841         glthread_rwlock_destroy. Return error code.
1842         (glthread_recursive_lock_init_multithreaded): Renamed from
1843         glthread_recursive_lock_init. Return error code.
1844         (glthread_recursive_lock_lock_multithreaded): Renamed from
1845         glthread_recursive_lock_lock. Return error code.
1846         (glthread_recursive_lock_unlock_multithreaded): Renamed from
1847         glthread_recursive_lock_unlock. Return error code.
1848         (glthread_recursive_lock_destroy_multithreaded): Renamed from
1849         glthread_recursive_lock_destroy. Return error code.
1850         (glthread_once_call): Make static.
1851         (glthread_once_multithreaded): Renamed from glthread_once.
1852         * lib/tls.h: Include <errno.h>.
1853         (glthread_tls_key_init): New macro/function.
1854         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
1855         (glthread_tls_set): New macro/function.
1856         (gl_tls_set): Define as wrapper around glthread_tls_set.
1857         (glthread_tls_key_destroy): New macro/function.
1858         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
1859         Update function declarations.
1860         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
1861         glthread_tls_get.
1862         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
1863
1864 2008-08-04  Eric Blake  <ebb9@byu.net>
1865
1866         gnumakefile: use space, not TAB, outside of targets
1867         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
1868
1869 2008-08-02  Jim Meyering  <meyering@redhat.com>
1870
1871         getdate.y: avoid locale-dependent date parsing failure
1872         In Turkish locales, getdate would fail to recognize keywords
1873         containing a lowercase "i".  The solution is not to rely on
1874         locale-sensitive case-conversion.
1875         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
1876         (lookup_word): Use c_toupper in place of toupper.
1877         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
1878         Reported by Vefa Bicakci <bicave@superonline.com> in
1879         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
1880         * modules/getdate (Depends-on): Add c-ctype.
1881
1882 2008-08-02  Bruno Haible  <bruno@clisp.org>
1883
1884         * gnulib-tool (func_import): When updating or creating a .gitignore
1885         file, prepend each added line with a slash, and ignore leading slashes
1886         from the existing lines.
1887         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
1888
1889 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1890
1891         Portability fix for GNU make 3.79.1.
1892         * top/GNUmakefile: Avoid 'else COND', which older GNU make
1893         versions do not understand.
1894
1895 2008-08-01  Bruno Haible  <bruno@clisp.org>
1896
1897         Work around bug of HP-UX 10.20 cc with -0.0 literal.
1898         * tests/test-isnanf.h (zero): New variable.
1899         (main): Avoid literal -0.0f.
1900         * tests/test-isnand.h (zero): New variable.
1901         (main): Avoid literal -0.0.
1902         * tests/test-isnanl.h (zero): New variable.
1903         (main): Avoid literal -0.0L.
1904         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
1905         (test_float, test_double, test_long_double): Avoid literals -0.0f,
1906         -0.0, -0.0L.
1907         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
1908         (test_signbitd): Avoid literal -0.0.
1909         (test_signbitl): Avoid literal -0.0L.
1910         * tests/test-ceilf1.c (zero): New variable.
1911         (main): Avoid literal -0.0f.
1912         * tests/test-ceill.c (zero): New variable.
1913         (main): Avoid literal -0.0L.
1914         * tests/test-floorf1.c (zero): New variable.
1915         (main): Avoid literal -0.0f.
1916         * tests/test-floorl.c (zero): New variable.
1917         (main): Avoid literal -0.0L.
1918         * tests/test-roundf1.c (zero): New variable.
1919         (main): Avoid literal -0.0f.
1920         * tests/test-round1.c (zero): New variable.
1921         (main): Avoid literal -0.0.
1922         * tests/test-roundl.c (zero): New variable.
1923         (main): Avoid literal -0.0L.
1924         * tests/test-truncf1.c (zero): New variable.
1925         (main): Avoid literal -0.0f.
1926         * tests/test-trunc1.c (zero): New variable.
1927         (main): Avoid literal -0.0.
1928         * tests/test-truncl.c (zero): New variable.
1929         (main): Avoid literal -0.0L.
1930         * tests/test-frexp.c (zero): New variable.
1931         (main): Avoid literal -0.0.
1932         * tests/test-frexpl.c (zero): New variable.
1933         (main): Avoid literal -0.0L.
1934         * tests/test-ldexpl.c (zero): New variable.
1935         (main): Avoid literal -0.0L.
1936         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1937         (zerod, zerol): New variables.
1938         (test_function): Avoid literals -0.0, -0.0L.
1939         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
1940         (zerod, zerol): New variables.
1941         (test_function): Avoid literals -0.0, -0.0L.
1942         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1943         (zerod, zerol): New variables.
1944         (test_function): Avoid literals -0.0, -0.0L.
1945         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
1946         (zerod, zerol): New variables.
1947         (test_function): Avoid literals -0.0, -0.0L.
1948         * tests/test-strtod.c (zero): New variable.
1949         (main): Avoid literal -0.0.
1950         Reported by Jonathan C. Patschke <jp@centtech.com>.
1951
1952 2008-07-31  Jim Meyering  <meyering@redhat.com>
1953
1954         sha256.h: correct definition of SHA224_DIGEST_SIZE
1955         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
1956         Reported by Paulie Pena IV <paulie4@gmail.com>.
1957         Define as 224 / 8, rather than as a literal.
1958         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
1959         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
1960         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
1961
1962 2008-07-31  Bruno Haible  <bruno@clisp.org>
1963
1964         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
1965         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
1966         Reported by Jonathan Patschke <jp@centtech.com>.
1967
1968 2008-07-31  Bruno Haible  <bruno@clisp.org>
1969
1970         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
1971         Reported by Paolo Bonzini <bonzini@gnu.org>.
1972
1973 2008-07-30  Eric Blake  <ebb9@byu.net>
1974
1975         test-strtod: allow compilation without -lm
1976         * tests/test-strtod.c (main): Avoid link dependence on fabs.
1977         Reported by Dennis Clarke <blastwave@gmail.com>.
1978
1979 2008-07-28  Jim Meyering  <meyering@redhat.com>
1980
1981         bootstrap: work also when there are no .po files in po/
1982         * build-aux/bootstrap (update_po_files): Complete the change
1983         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
1984
1985 2008-07-27  Jim Meyering  <meyering@redhat.com>
1986
1987         * users.txt: Add zile.
1988
1989 2008-07-26  Ben Pfaff  <blp@gnu.org>
1990
1991         Add missing dependencies on new m4/exponent[fdl].m4 files.
1992         * modules/isnanf-nolibm: Add m4/exponentf.m4.
1993         * modules/isnand-nolibm: Add m4/exponentd.m4.
1994         * modules/isnanl-nolibm: Add m4/exponentl.m4.
1995         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
1996         m4/isnan[fdl].m4, because the macros actually used moved.
1997         Reported by Jim Meyering.
1998
1999 2008-07-14  Ben Pfaff  <blp@gnu.org>
2000
2001         Add isinf module.
2002         * lib/isinf.c: New file.
2003         * lib/math.in.h: Define isinf macro if we have decided to replace
2004         it.
2005         * m4/isinf.m4: New file.
2006         * m4/math_h.m4: Initialize and substitute variables for isinf
2007         module.
2008         * modules/isinf: New file.
2009         * modules/isinf-tests: New file.
2010         * modules/math: Add substitutions for new module.
2011         * tests/test-isinf.c: New file.
2012         * doc/posix-functions/isinf.texi: Mention new module.
2013         * MODULES.html.sh: Mention new module.
2014
2015 2008-07-14  Ben Pfaff  <blp@gnu.org>
2016
2017         Factor out some macros for use by additional modules.
2018         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
2019         exponentf.m4.
2020         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
2021         exponentd.m4.
2022         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
2023         file exponentl.m4.
2024         * m4/exponentf.m4: New file.
2025         * m4/exponentd.m4: New file.
2026         * m4/exponentl.m4: New file.
2027         * modules/isnanf: Use new file m4/exponentf.m4.
2028         * modules/isnand: Use new file m4/exponentd.m4.
2029         * modules/isnanl: Use new file m4/exponentl.m4.
2030
2031 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
2032
2033         mktime.c: normalize tp->tm_isdst value to -1/0/1.
2034         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
2035         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
2036         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
2037
2038         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
2039         readlink on platforms without PATH_MAX.
2040
2041 2008-07-21  Eric Blake  <ebb9@byu.net>
2042
2043         Warn, not fail, on stale version.
2044         * top/GNUmakefile (_curr-ver): Tone down previous patch.
2045
2046         Don't allow installation with stale devel version number.
2047         * top/GNUmakefile (_is-install-target): New macro.
2048         (_curr-ver): Forbid installation with stale version number.
2049
2050 2008-07-20  Bruno Haible  <bruno@clisp.org>
2051
2052         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
2053         TESTS_ENVIRONMENT.
2054         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
2055
2056 2008-07-20  Bruno Haible  <bruno@clisp.org>
2057
2058         * lib/c-stack.h (c_stack_action): Add documentation.
2059         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
2060
2061 2008-07-20  Bruno Haible  <bruno@clisp.org>
2062
2063         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
2064         * modules/readlink (License): Likewise.
2065
2066 2008-07-17  Eric Blake  <ebb9@byu.net>
2067
2068         * modules/c-stack (Link): Fix typo.
2069
2070         Make c-stack use libsigsegv, when available.
2071         * modules/c-stack (Depends-on): Add libsigsegv.
2072         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
2073         needed.
2074         * lib/c-stack.c (SIGSTKSZ): Define fallback.
2075         (segv_handler, overflow_handler, c_stack_action)
2076         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
2077         implementation when libsigsegv is available, but only when using
2078         the library is necessary.
2079         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
2080         comment, explaining why XSI check fails on Linux.
2081         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
2082         * tests/test-c-stack2.sh: Tweak skip message.
2083         * NEWS: Document new link-time requirements.
2084
2085 2008-07-16  Eric Blake  <ebb9@byu.net>
2086
2087         c-stack: Expose false positives when not using libsigsegv.
2088         * modules/c-stack-tests (Files): Expand test.
2089         * tests/test-c-stack.c (main): Add means to conditionally trigger
2090         non-overflow SIGSEGV.
2091         * tests/test-c-stack2.sh: New file.
2092
2093 2008-07-14  Bruno Haible  <bruno@clisp.org>
2094
2095         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
2096         Reported by Eric Blake.
2097
2098 2008-07-14  Sam Steingold  <sds@gnu.org>
2099             Bruno Haible  <bruno@clisp.org>
2100
2101         New module libsigsegv.
2102         * modules/libsigsegv: New file.
2103         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
2104         modifications.
2105         * MODULES.html.sh (Signal handling): New section.
2106
2107 2008-07-14  Bruno Haible  <bruno@clisp.org>
2108
2109         * modules/unictype/ctype-* (Description): Add the word "function".
2110         Improves the resulting doc in MODULES.html.
2111
2112 2008-07-12  Ben Pfaff  <blp@gnu.org>
2113
2114         Add longlong module.
2115         * modules/longlong: New file.
2116
2117 2008-07-12  Bruno Haible  <bruno@clisp.org>
2118
2119         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
2120         to empty.
2121
2122 2008-07-10  Ben Pfaff  <blp@gnu.org>
2123
2124         Add isnan module.
2125         * doc/posix-functions/isnan.texi: Mention new module.
2126         * lib/math.in.h: Define isnan macro if we have decided to replace
2127         it.
2128         * m4/isnan.m4: New file.
2129         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
2130         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
2131         also.
2132         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
2133         redundancy.
2134         * m4/math_h.m4: Initialize and substitute variables for isnan
2135         module.
2136         * modules/isnan: New file.
2137         * modules/isnan-tests: New file.
2138         * modules/math: Add substitutions for new module.
2139         * tests/test-isnan.c: New file.
2140         * MODULES.html.sh: Mention new module.
2141
2142 2008-07-10  Ben Pfaff  <blp@gnu.org>
2143
2144         Add isnanf module.
2145         * lib/isnanf.m4: New file.
2146         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
2147         (gl_HAVE_ISNANF_IN_LIBM): New macro.
2148         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
2149         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
2150         * modules/isnanf: New file.
2151         * modules/isnanf-tests: New file.
2152         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
2153         files.
2154         * tests/test-isnanf-nolibm.c: factored most of its contents into
2155         new file tests/test-isnanf.h.
2156         * tests/test-isnanf.h: New file.
2157         * tests/test-isnanf.c: New file.
2158         * MODULES.html.sh: Mention new module.
2159         * doc/glibc-functions/isnanf.texi: Mention new module.
2160
2161 2008-07-10  Ben Pfaff  <blp@gnu.org>
2162
2163         Add isnand module.
2164         * lib/isnand.h: New file.
2165         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
2166         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
2167         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
2168         functionality also.
2169         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
2170         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
2171         (gl_HAVE_ISNAND_IN_LIBM): New macro.
2172         * modules/isnand: New file.
2173         * modules/isnand-tests: New file.
2174         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
2175         files.
2176         * tests/test-isnand-nolibm.c: factored most of its contents into
2177         new file tests/test-isnand.h.
2178         * tests/test-isnand.h: New file.
2179         * tests/test-isnand.c: New file.
2180         * MODULES.html.sh: Mention new module.
2181
2182 2008-07-10  Ben Pfaff  <blp@gnu.org>
2183
2184         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
2185         * lib/isnand.h: Rename lib/isnand-nolibm.h.
2186         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
2187         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
2188         * modules/isnanf-nolibm: Update references to renamed files.
2189         * modules/isnand-nolibm: Likewise.
2190         * modules/isnanf-nolibm-tests: Likewise.
2191         * modules/isnand-nolibm-tests: Likewise.
2192         * lib/frexp.c: Likewise.
2193         * lib/isfinite.c: Likewise.
2194         * lib/signbitd.c: Likewise.
2195         * lib/signbitf.c: Likewise.
2196         * lib/vasnprintf.c: Likewise.
2197         * tests/test-ceilf1.c: Likewise.
2198         * tests/test-ceilf2.c: Likewise.
2199         * tests/test-floorf1.c: Likewise.
2200         * tests/test-floorf2.c: Likewise.
2201         * tests/test-frexp.c: Likewise.
2202         * tests/test-round1.c: Likewise.
2203         * tests/test-round2.c: Likewise.
2204         * tests/test-roundf1.c: Likewise.
2205         * tests/test-strtod.c: Likewise.
2206         * tests/test-trunc1.c: Likewise.
2207         * tests/test-trunc2.c: Likewise.
2208         * tests/test-truncf1.c: Likewise.
2209         * tests/test-truncf2.c: Likewise.
2210         * NEWS: Mention the renamed header files.
2211
2212 2008-07-11  Jim Meyering  <meyering@redhat.com>
2213
2214         vc-list-files: make the last-resort awk code more portable
2215         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
2216         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
2217         does not support it.
2218
2219 2008-07-10  Eric Blake  <ebb9@byu.net>
2220
2221         Work with tar's bootstrap.
2222         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
2223         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
2224         an m4 comment.
2225
2226 2008-07-09  Jim Meyering  <meyering@redhat.com>
2227
2228         posix-shell.m4: fix typo that made this test malfunction
2229         * m4/posix-shell.m4: Remove capitalization in variable name.
2230
2231 2008-07-08  Bruno Haible  <bruno@clisp.org>
2232
2233         * m4/onceonly.m4: Update comments.
2234         Reported by Ben Pfaff <blp@cs.stanford.edu>.
2235
2236 2008-07-04  Jim Meyering  <meyering@redhat.com>
2237
2238         * users.txt: Add vc-dwim.
2239         (bison, coreutils): Use the gitweb URL.
2240
2241 2008-07-03  Jim Meyering  <meyering@redhat.com>
2242
2243         * users.txt: Add libffcall.  From Sam Steingold.
2244
2245 2008-07-03  Ondřej Vašík  <ovasik@redhat.com>
2246
2247         getdate.y: do not ignore TZ with relative day, month or year offset
2248         * lib/getdate.y (get_date): Move the tz-handling block to follow the
2249         relative-date-handling, since otherwise, the latter would clobber the
2250         sole output (an updated Start value) of the tz-handling block.
2251         * tests/test-getdate.c: Tests for the fix
2252
2253 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2254
2255         Recognize 'foo_LIBRARIES += libgnu.a'.
2256         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
2257         makefile snippet has already specified an installation location,
2258         also using '+='.
2259
2260 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
2261
2262         getdate.y: factor out common actions
2263         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
2264         Use them in place of open-coded actions.
2265
2266 2008-07-01  Simon Josefsson  <simon@josefsson.org>
2267
2268         Add self-test for getdate module.
2269         * modules/getdate-tests: New file.
2270         * tests/test-getdate.c: New file.
2271
2272 2008-06-29  Bruno Haible  <bruno@clisp.org>
2273
2274         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
2275         .gitignore.
2276         Reported by Sylvain Beucler <beuc@beuc.net>.
2277
2278 2008-06-29  Bruno Haible  <bruno@clisp.org>
2279
2280         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
2281         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
2282
2283 2008-06-29  Bruno Haible  <bruno@clisp.org>
2284
2285         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
2286         EXTRA_DIST.
2287         Reported by Sylvain Beucler <beuc@beuc.net>.
2288
2289 2008-06-26  Jim Meyering  <meyering@redhat.com>
2290
2291         make several modules depend on the "open" module
2292         This provides slightly increased consistency when opening-for-write
2293         the name of a non-directory spelled with a trailing slash.
2294         * modules/chdir-safer: Likewise.
2295         * modules/chown: Likewise.
2296         * modules/clean-temp: Likewise.
2297         * modules/copy-file: Likewise.
2298         * modules/fchdir: Likewise.
2299         * modules/fcntl-safer: Likewise.
2300         * modules/pipe: Likewise.
2301         * modules/utime: Likewise.
2302         Prompted by Eric Blake and Bruno Haible.
2303
2304 2008-06-24  Andreas Schwab  <schwab@suse.de>
2305
2306         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
2307         literals can be used as initializers for global variables.
2308
2309 2008-06-23  Eric Blake  <ebb9@byu.net>
2310
2311         Make gnulib-cache.m4 easier to diff.
2312         * gnulib-tool (func_import): Allow newlines when reading cached
2313         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
2314
2315 2008-06-23  Bruno Haible  <bruno@clisp.org>
2316
2317         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
2318         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
2319         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
2320         m4/signalblocking.m4.
2321         (gl_PREREQ_SIGACTION): Don't invoke it.
2322         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
2323         gl_PREREQ_SIG_HANDLER_H.
2324         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2325         Don't check for sigaction here.
2326
2327 2008-06-23  Bruno Haible  <bruno@clisp.org>
2328
2329         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
2330         (install_handlers): Don't set the SA_RESETHAND flag.
2331
2332 2008-06-23  Bruno Haible  <bruno@clisp.org>
2333
2334         * m4/sigaction.m4: Comment fixes.
2335         * lib/signal.in.h: Likewise.
2336
2337 2008-06-23  Eric Blake  <ebb9@byu.net>
2338
2339         Fix typo.
2340         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
2341
2342         Avoid SA_ namespace.
2343         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
2344         Reported by Ralf Wildenhues.
2345
2346         Avoid test failure due to SA_RESTORER.
2347         * tests/test-sigaction.c (SA_MASK): New macro.
2348         (main): Avoid failing due to extension flags being set.
2349         Reported by Jim Meyering.
2350
2351         Revert use of sig-handler.h in sigprocmask.c.
2352         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
2353         it requires the existence of struct sigaction.
2354         * lib/sigprocmask.c (handler_t): Restore typedef.
2355         (rpl_signal, old_handlers): Use local type.
2356
2357 2008-06-22  Bruno Haible  <bruno@clisp.org>
2358
2359         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
2360         conditionally.
2361         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
2362
2363 2008-06-22  Bruno Haible  <bruno@clisp.org>
2364
2365         * doc/posix-functions/siginterrupt.texi: Move note.
2366
2367         * lib/signal.in.h (SA_RESTART): New macro.
2368         * lib/sigaction.c: Update comment.
2369
2370         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
2371
2372         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
2373         (gl_PREREQ_SIGPROCMASK): Invoke it.
2374         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
2375
2376         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
2377
2378         * lib/sigprocmask.c: Update a comment.
2379
2380 2008-06-21  Eric Blake  <ebb9@byu.net>
2381
2382         Use sigaction module rather than signal().
2383         * modules/c-stack (Depends-on): Add sigaction.
2384         * modules/fatal-signal (Depends-on): Likewise.
2385         * modules/nanosleep (Depends-on): Likewise.
2386         * modules/sigprocmask (Files): Add sig-handler.h.
2387         * modules/sigaction (Files): Likewise.
2388         * lib/sig-handler.h (get_handler): New file, suggested by Paul
2389         Eggert.
2390         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
2391         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
2392         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
2393         (init_fatal_signals): Likewise.
2394         * lib/nanosleep.c (rpl_nanosleep): Likewise.
2395         (siginterrupt): Delete fallback.
2396         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
2397         instead.
2398         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
2399         siginterrupt.
2400
2401         New module sigaction, for mingw.
2402         * modules/sigaction: New module...
2403         * modules/sigaction-tests: ...and its test.
2404         * m4/sigaction.m4: New file.
2405         * lib/sigaction.c: Likewise.
2406         * tests/test-sigaction.c: Likewise.
2407         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
2408         * modules/signal (Makefile.am): Likewise.
2409         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
2410         needed.
2411         * doc/posix-headers/signal.texi (signal.h): Mention provided
2412         types.
2413         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
2414         that sigaction is preferable.
2415         * doc/posix-functions/sigaction.texi (sigaction): Mention new
2416         module.
2417         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2418         sigaction.
2419
2420         Improve robustness of sigprocmask by overriding signal.
2421         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
2422         is in use.
2423         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
2424         (SIGKILL, SIGSTOP): Provide fallbacks.
2425         (rpl_signal): Implement.
2426         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
2427         signal can be called inside handlers.
2428
2429         Fix nanosleep module on mingw.
2430         * modules/nanosleep (Depends-on): Add sys_select.
2431         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
2432
2433         Fix licensing of sigprocmask.
2434         * modules/raise (License): Relicense as LGPL.
2435
2436 2008-06-21  Bruno Haible  <bruno@clisp.org>
2437
2438         * lib/propername.c (proper_name_utf8): Don't use the transliterated
2439         result if it contains question marks.
2440         Reported by Michael Geng <linux@michaelgeng.de>.
2441
2442 2008-06-19  Bruno Haible  <bruno@clisp.org>
2443
2444         Fix CVS-ism.
2445         * doc/gnulib.texi: Include updated-stamp.texi.
2446         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
2447         (updated-stamp.texi): New rule.
2448         (gnulib.info): Depend on it.
2449         * doc/.gitignore: Add updated-stamp.texi.
2450         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
2451
2452 2008-06-19  Bruno Haible  <bruno@clisp.org>
2453
2454         * doc/Makefile (gnulib.info): Update and simplify dependencies.
2455         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2456
2457 2008-06-19  Eric Blake  <ebb9@byu.net>
2458
2459         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
2460         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
2461         Reported by Stepan Kasal.
2462
2463 2008-06-18  Bruno Haible  <bruno@clisp.org>
2464
2465         * lib/fatal-signal.c (init_fatal_signals): Add comment.
2466         Reported by Eric Blake.
2467
2468 2008-06-18  Eric Blake  <ebb9@byu.net>
2469
2470         Work around cygwin 1.5.25 strsignal bug.
2471         * tests/test-strsignal.c: Allow for const char *.
2472         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
2473
2474 2008-06-18  Simon Josefsson  <simon@josefsson.org>
2475
2476         * users.txt: Update URL to article and add author/date
2477         information.
2478
2479 2008-06-17  Bruno Haible  <bruno@clisp.org>
2480
2481         New macro gl_DISABLE_THREADS.
2482         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
2483         if the user did not pass --enable-threads or --disable-threads option.
2484         (gl_DISABLE_THREADS): New macro.
2485         Reported by Eric Blake <ebb9@byu.net>.
2486
2487 2008-06-17  Bruno Haible  <bruno@clisp.org>
2488
2489         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
2490         when the macro ignores it.
2491         Based on a patch by Eric Blake <ebb9@byu.net>.
2492
2493 2008-06-17  Bruno Haible  <bruno@clisp.org>
2494
2495         * modules/tls (License): Change to LGPLv2+.
2496         Reported by Eric Blake.
2497
2498 2008-06-17  Eric Blake  <ebb9@byu.net>
2499
2500         Simplify c-stack prerequisites.
2501         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
2502         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
2503         no longer requires <ucontext.h> to exist.  Optimize setrlimit
2504         check.
2505         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
2506         <sys/resource.h>.
2507
2508         Move c-stack test into testsuite.
2509         * modules/c-stack-tests: New file.
2510         * lib/c-stack.c [DEBUG]: Move test program...
2511         * tests/test-c-stack.c: ...into this new file.  Skip rather than
2512         fail test if sigaltstack is lacking.
2513         * tests/test-c-stack.sh: New driver file.
2514
2515 2008-06-16  Eric Blake  <ebb9@byu.net>
2516
2517         Use raise module consistently.
2518         * modules/fatal-signal (Depends-on): Add raise.
2519         * modules/sigprocmask (Depends-on): Likewise.
2520         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
2521         * lib/sigprocmask.c (sigprocmask): Likewise.
2522         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
2523         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
2524
2525         Fix compliance bug in sigpending.
2526         * lib/sigprocmask.c (sigpending): Return pending array via
2527         parameter, not return value.
2528
2529 2008-06-14  Eric Blake  <ebb9@byu.net>
2530
2531         Improve obstack-printf test code.
2532         * tests/test-obstack-printf.c (test_function): Fix comment, and
2533         simplify usage of obstack_* in macros.  Add a test for coverage.
2534         Reported by Bruno Haible.
2535
2536 2008-06-14  Bruno Haible  <bruno@clisp.org>
2537
2538         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
2539         array size as a constant, not as a const variable.
2540         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
2541         AC_USE_SYSTEM_EXTENSIONS.
2542         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
2543         Test whether the obstack_printf function actually exists.
2544         * modules/obstack-printf (Depends-on): Add extensions.
2545         (Include): Remove obstack.h.
2546         * modules/obstack-printf-posix (Depends-on): Add extensions.
2547         (Include): Remove obstack.h.
2548
2549 2008-06-13  Eric Blake  <ebb9@byu.net>
2550
2551         Add obstack-printf and obstack-printf-posix modules.
2552         * modules/obstack-printf: New file.
2553         * modules/obstack-printf-posix: Likewise.
2554         * MODULES.html.sh (Misc): Mention them.
2555         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
2556         Likewise.
2557         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
2558         Likewise.
2559         * modules/stdio (Makefile.am): Accomodate new modules.
2560         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
2561         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
2562         Declare.
2563         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
2564         functions.
2565         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
2566         (gl_REPLACE_OBSTACK_PRINTF): New macros
2567         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
2568         * tests/test-obstack-printf.c: New file.
2569         * modules/obstack-printf-tests: Likewise.
2570         * modules/obstack-printf-posix-tests: Likewise.
2571
2572 2008-06-11  Bruno Haible  <bruno@clisp.org>
2573
2574         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
2575         * lib/open.c: Include errno.h.
2576         (open): Fail when attempting to write to a file that has a trailing
2577         slash.
2578         * tests/test-open.c (main): Test against trailing slash bug.
2579         * doc/posix-functions/open.texi: Mention the trailing slash bug.
2580
2581 2008-06-10  Bruno Haible  <bruno@clisp.org>
2582
2583         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
2584         for $? to work inside the trap command, with various /bin/sh-s.
2585         * tests/test-vc-list-files-cvs.sh: Likewise.
2586
2587 2008-06-10  Bruno Haible  <bruno@clisp.org>
2588
2589         * lib/acl-internal.h: Don't include gettext.h here.
2590         * lib/set-mode-acl.c: Include gettext.h here.
2591         * lib/copy-acl.c: Likewise.
2592
2593 2008-06-10  Bruno Haible  <bruno@clisp.org>
2594
2595         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
2596         * lib/wait-process.c (wait_subprocess): Likewise.
2597         * lib/execute.h (execute): Add termsigp argument.
2598         * lib/execute.c (execute): Likewise.
2599         * lib/csharpcomp.c (compile_csharp_using_pnet,
2600         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
2601         * lib/csharpexec.c (execute_csharp_using_pnet,
2602         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
2603         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
2604         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
2605         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
2606         is_jikes_present): Update.
2607         * lib/javaexec.c (execute_java_class): Update.
2608         * lib/javaversion.c (execute_and_read_line): Update.
2609         * NEWS: Document the changes.
2610         Reported by Eric Blake.
2611
2612 2008-06-10  Eric Blake  <ebb9@byu.net>
2613
2614         Add missing include.
2615         * tests/test-strstr.c (includes): Add <signal.h>.
2616         * tests/test-strcasestr.c (includes): Likewise.
2617         * tests/test-memmem.c (includes): Likewise.
2618
2619 2008-06-10  Bruno Haible  <bruno@clisp.org>
2620
2621         * lib/wait-process.c (wait_subprocess): Add an assertion.
2622
2623 2008-06-10  Bruno Haible  <bruno@clisp.org>
2624
2625         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
2626
2627 2008-06-10  Bruno Haible  <bruno@clisp.org>
2628
2629         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
2630         using alarm().
2631         * tests/test-strcasestr.c (main): Likewise.
2632         * tests/test-strstr.c (main): Likewise.
2633
2634 2008-06-09  Bruno Haible  <bruno@clisp.org>
2635
2636         Work around the Solaris 10 ACE ACLs ABI change.
2637         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
2638         declare if ACL_NO_TRIVIAL is present.
2639         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
2640         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
2641         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
2642         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
2643         define if ACL_NO_TRIVIAL is present.
2644         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
2645         and use the current ABI.
2646         (file_has_acl): Use same #if condition as elsewhere.
2647         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
2648         in use, and use the current ABI.
2649         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
2650         Reported by Jim Meyering.
2651
2652 2008-06-09  Eric Blake  <ebb9@byu.net>
2653
2654         Work around environments that (stupidly) ignore SIGALRM.
2655         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
2656         before using alarm().
2657         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
2658         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
2659         Reported by Ian Beckwith <ianb@erislabs.net>.
2660
2661         Produce autobuild blurb earlier in log.
2662         * modules/autobuild (configure.ac-early): Move AB_INIT here.
2663
2664 2008-06-09  Jim Meyering  <meyering@redhat.com>
2665         and Ondřej Vašík  <ovasik@redhat.com>
2666
2667         utimens.c: correct kernel bug work-around
2668         Ondřej Vašík found that the invalid return value of 280 indicates
2669         failure, not success, and the kernel bug we're trying to work
2670         around affects not just the utimensat call, but also the fallback
2671         futimens call.
2672         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
2673         not success.
2674         [HAVE_FUTIMENS]: Use the same work-around, here.
2675
2676 2008-06-09  Jim Meyering  <meyering@redhat.com>
2677
2678         add more guards around definition of ACE_-related code
2679         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
2680         ALLOW and ACE_OWNER are also defined.
2681
2682 2008-06-08  Bruno Haible  <bruno@clisp.org>
2683
2684         * lib/acl-internal.h: Add me as co-author.
2685         * lib/file-has-acl.c: Likewise.
2686         * lib/set-mode-acl.c: Likewise.
2687         * lib/copy-acl.c: Likewise.
2688
2689 2008-06-08  Bruno Haible  <bruno@clisp.org>
2690
2691         Add support for AIX ACLs.
2692         * lib/acl-internal.h (acl_nontrivial): New declaration.
2693         * lib/file-has-acl.c (acl_nontrivial): New function.
2694         (file_has_acl): Add implementation using AIX 4 ACL API.
2695         * lib/set-mode-acl.c (qset_acl): Likewise.
2696         * lib/copy-acl.c (qcopy_acl): Likewise.
2697
2698 2008-06-08  Bruno Haible  <bruno@clisp.org>
2699
2700         Add support for HP-UX ACLs.
2701         * lib/acl-internal.h (acl_nontrivial): New declaration.
2702         * lib/file-has-acl.c (acl_nontrivial): New function.
2703         (file_has_acl): Add implementation using HP-UX 11 ACL API.
2704         * lib/set-mode-acl.c (qset_acl): Likewise.
2705         * lib/copy-acl.c (qcopy_acl): Likewise.
2706
2707 2008-06-08  Bruno Haible  <bruno@clisp.org>
2708
2709         Add support for Cygwin ACLs.
2710         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
2711         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
2712         the chmod_or_fchmod call.
2713         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
2714
2715 2008-06-08  Bruno Haible  <bruno@clisp.org>
2716
2717         Fix bug with setuid modes in Solaris 10+ code.
2718         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
2719         succeeded, when the mode contains some special bits.
2720
2721 2008-06-08  Bruno Haible  <bruno@clisp.org>
2722
2723         Add support for Solaris 7..10 ACLs.
2724         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
2725         declarations.
2726         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
2727         functions.
2728         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
2729         * lib/set-mode-acl.c (qset_acl): Likewise.
2730         * lib/copy-acl.c (qcopy_acl): Likewise.
2731
2732 2008-06-08  Bruno Haible  <bruno@clisp.org>
2733
2734         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
2735         declaration.
2736         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
2737         (acl_access_nontrivial): Remove MacOS X case.
2738         (file_has_acl): Use acl_extended_nontrivial.
2739         * lib/copy-acl.c (qcopy_acl): Likewise.
2740
2741 2008-06-08  Bruno Haible  <bruno@clisp.org>
2742
2743         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
2744
2745 2008-06-08  Jim Meyering  <meyering@redhat.com>
2746
2747         * modules/acl (Maintainer): Add Bruno Haible.
2748
2749 2008-06-07  Bruno Haible  <bruno@clisp.org>
2750
2751         Improve support for Tru64 ACLs.
2752         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
2753         ACL on OSF/1.
2754
2755 2008-06-07  Bruno Haible  <bruno@clisp.org>
2756
2757         Add support for MacOS X ACLs.
2758         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
2759         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
2760         * lib/set-mode-acl.c (qset_acl): Likewise.
2761         * lib/copy-acl.c (qcopy_acl): Likewise.
2762
2763 2008-06-07  Bruno Haible  <bruno@clisp.org>
2764
2765         Fix memory leak introduced on 2008-05-22.
2766         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
2767         use.
2768
2769 2008-06-07  Bruno Haible  <bruno@clisp.org>
2770
2771         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
2772         to construct an empty ACL.
2773
2774 2008-06-07  Bruno Haible  <bruno@clisp.org>
2775
2776         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
2777         precisely.
2778         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
2779
2780 2008-06-07  Bruno Haible  <bruno@clisp.org>
2781
2782         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
2783         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
2784
2785 2008-06-07  Bruno Haible  <bruno@clisp.org>
2786
2787         * doc/posix-functions/_setjmp.texi: Explain the use of this function
2788         regardless of POSIX.
2789         * doc/posix-functions/_longjmp.texi: Likewise.
2790         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
2791         SystemV platform in this case.
2792
2793 2008-06-06  Eric Blake  <ebb9@byu.net>
2794
2795         Document abort() bugs.
2796         * doc/posix-functions/abort.texi (abort): Mention anomalies.
2797
2798         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
2799         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
2800         sigsetjmp.
2801         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
2802         siglongjmp, but only as a macro.
2803         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
2804         is obsolete.
2805         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
2806
2807         Tweak documentation to cover cygwin argz bugs.
2808         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
2809         argz bug fix; no code change needed since no cygwin releases
2810         occurred between the last fix and the bug being tested.
2811         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
2812         module and recently fixed cygwin bugs.
2813         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
2814         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
2815         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
2816         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
2817         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
2818         Likewise.
2819         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
2820         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
2821         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
2822         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
2823         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
2824         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
2825         Likewise.
2826
2827         Avoid gcc warning on cygwin.
2828         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
2829         !ACL_NO_TRIVIAL]: Avoid unused variable.
2830
2831 2008-06-05  Eric Blake  <ebb9@byu.net>
2832
2833         Be tolerant of UNKNOWN version in gnulib-tool test dir.
2834         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
2835         git-version-gen fails to come up with a version.
2836         Reported by Simon Josefsson.
2837
2838 2008-06-05  Jim Meyering  <meyering@redhat.com>
2839             Paul Eggert  <eggert@cs.ucla.edu>
2840
2841         utimens.c: work around a probable Linux kernel bug
2842         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
2843         appears to be a kernel bug that causes utimensat to return 280
2844         instead of 0, indicating success.
2845
2846 2008-06-04  Bruno Haible  <bruno@clisp.org>
2847
2848         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
2849         2008-06-01 commit.
2850
2851 2008-06-04  Bruno Haible  <bruno@clisp.org>
2852
2853         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
2854         * lib/file-has-acl.c (acl_access_nontrivial): New function.
2855         (file_has_acl): Use it. Save errno afterwards.
2856         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
2857
2858 2008-06-03  Bruno Haible  <bruno@clisp.org>
2859
2860         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
2861         draft code. Simplify #ifs.
2862         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
2863         Put Solaris code after POSIX-draft code. Fix comments regarding
2864         Solaris 10, HP-UX. Mention Cygwin.
2865         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
2866
2867 2008-06-03  Eric Blake  <ebb9@byu.net>
2868
2869         Provide fallback for older kernels.
2870         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
2871         Provide runtime fallback if kernel lacks support.
2872         Reported by Mike Frysinger.
2873
2874 2008-06-02  Bruno Haible  <bruno@clisp.org>
2875
2876         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
2877         it exists.
2878
2879 2008-06-02  Bruno Haible  <bruno@clisp.org>
2880
2881         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
2882         * lib/copy-acl.c (qcopy_acl): Update comment.
2883
2884 2008-06-02  Bruno Haible  <bruno@clisp.org>
2885
2886         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
2887         like ACL APIs.
2888
2889 2008-06-02  Bruno Haible  <bruno@clisp.org>
2890
2891         * tests/test-file-has-acl.sh: Use different code for Cygwin.
2892         * tests/test-set-mode-acl.sh: Likewise.
2893         * tests/test-copy-acl.sh: Likewise.
2894         * tests/test-copy-file.sh: Likewise.
2895
2896 2008-06-02  Bruno Haible  <bruno@clisp.org>
2897
2898         * tests/test-file-has-acl.sh: Remove unused code.
2899
2900 2008-06-01  Bruno Haible  <bruno@clisp.org>
2901
2902         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
2903         (copy_acl): Just a wrapper around qcopy_acl that emits the error
2904         messages.
2905         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
2906
2907 2008-06-01  Bruno Haible  <bruno@clisp.org>
2908
2909         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
2910         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
2911         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
2912         APIs.
2913         * modules/acl-tests (configure.ac): Remove tests now contained in
2914         m4/acl.m4.
2915
2916 2008-06-02  Jim Meyering  <meyering@redhat.com>
2917
2918         announce-gen: use a better key-server host name
2919         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
2920         it may be more consistently reliable.  Suggested by Werner Koch
2921         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
2922
2923 2008-06-01  Bruno Haible  <bruno@clisp.org>
2924
2925         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
2926         Reported by Voroskoi Andras <voroskoi@gmail.com>.
2927
2928 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
2929
2930         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
2931
2932 2008-06-01  Bruno Haible  <bruno@clisp.org>
2933
2934         New ACL tests.
2935         * tests/test-file-has-acl.sh: New file.
2936         * tests/test-file-has-acl.c: New file.
2937         * tests/test-set-mode-acl.sh: New file.
2938         * tests/test-set-mode-acl.c: New file.
2939         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
2940         * tests/test-copy-acl.c: New file.
2941         * modules/acl-tests: New file, based on modules/copy-file-tests.
2942         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
2943         (Depends-on): Add acl-tests.
2944         (configure.ac): Remove checks.
2945         (Makefile.am): Don't create test-sameacls program here any more.
2946
2947 2008-06-01  Bruno Haible  <bruno@clisp.org>
2948
2949         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
2950         * tests/test-sameacls.c: Include progname.h.
2951         (main): Invoke set_program_name. Portability fixes for MacOS X,
2952         Solaris, HP-UX.
2953
2954 2008-06-01  Bruno Haible  <bruno@clisp.org>
2955
2956         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
2957         function.
2958         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
2959
2960 2008-06-01  Bruno Haible  <bruno@clisp.org>
2961
2962         * modules/rpmatch (Depends-on): Add strdup.
2963
2964 2008-06-01  Bruno Haible  <bruno@clisp.org>
2965
2966         * lib/pipe.c: Include unistd-safer.h.
2967         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
2968         * modules/pipe (Depends-on): Add unistd-safer.
2969
2970 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2971
2972         * modules/autobuild (configure.ac): Call AB_INIT.
2973
2974 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2975
2976         * tests/test-getaddrinfo.c: Don't print debug messages by default.
2977         Suggested by Bruno Haible <bruno@clisp.org>.
2978
2979 2008-05-30  Simon Josefsson  <simon@josefsson.org>
2980
2981         * tests/test-base64.c: Cast size_t to unsigned long when invoking
2982         printf.  Use %lu instead of %d.  Reported by Bruno Haible
2983         <bruno@clisp.org>.
2984
2985 2008-05-29  Eric Blake  <ebb9@byu.net>
2986
2987         Prefer new POSIX 200x interfaces over futimesat.
2988         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
2989         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
2990         when available.
2991         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
2992
2993 2008-05-28  Bruno Haible  <bruno@clisp.org>
2994
2995         * modules/stpcpy (License): Change to LGPLv2+.
2996         Requested by David Lutterkort <dlutter@redhat.com>.
2997
2998 2008-05-27  Bruno Haible  <bruno@clisp.org>
2999
3000         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
3001         current mingw.
3002         Reported by Jose E. Marchesi <jemarch@gnu.org>.
3003
3004 2008-05-27  Bruno Haible  <bruno@clisp.org>
3005
3006         * modules/iconv_open (Link): New section, from module 'iconv'.
3007         * modules/striconv (Link): Likewise.
3008         * modules/striconveh (Link): Likewise.
3009         * modules/xstriconv (Link): Likewise.
3010         * modules/unicodeio (Link): Likewise.
3011         * modules/propername (Link): Likewise.
3012         Reported by Jim Meyering.
3013
3014 2008-05-26  Jim Meyering  <meyering@redhat.com>
3015
3016         sha256: do not artificially restrict buffer length to be < 2^32
3017         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
3018         uint32_t to size_t.
3019         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
3020         to match.
3021
3022         avoid unaligned access errors, e.g., on sparc
3023         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
3024         direct access through a possibly-unaligned uint64* pointer.
3025         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
3026         direct access through a possibly-unaligned uint32* pointer.
3027         Prompted by this patch from Tom "spot" Callaway:
3028         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
3029
3030         sha512.c: fix typo in comment
3031         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
3032
3033 2008-05-25  Bruno Haible  <bruno@clisp.org>
3034
3035         * lib/set-mode-acl.c: Renamed from lib/acl.c.
3036         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
3037         (Makefile.am): Update lib_SOURCES.
3038
3039 2008-05-25  Bruno Haible  <bruno@clisp.org>
3040
3041         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
3042
3043 2008-05-25  Jim Meyering  <meyering@redhat.com>
3044
3045         useless-if-before-free: freed expr may have white-space differences
3046         * build-aux/useless-if-before-free: Recognize cases in which the
3047         freed expression differs from the tested one in embedded white
3048         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
3049         $1 was used, so we can't make any regexp shy.  Improved tests now
3050         detect this.
3051
3052         useless-if-before-free: accept white space in the expression.
3053         * build-aux/useless-if-before-free: For now, any white space
3054         in the expression must be identical in the free argument.
3055
3056         useless-if-before-free: efficiency tweak
3057         * build-aux/useless-if-before-free: Make the expression-matching
3058         regexp "shy".
3059         Make the *outer* regexp shy, not the expr-matching one.
3060
3061         update code-in-comment to accept cast of free arg
3062         * build-aux/useless-if-before-free: Update regexp.
3063
3064 2008-05-25  Bruno Haible  <bruno@clisp.org>
3065
3066         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
3067         * modules/copy-file-tests (Files, Makefile.am): Update.
3068         * tests/test-copy-file.c (func_test_copy): Update.
3069
3070 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
3071
3072         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
3073
3074 2008-05-23  Bruno Haible  <bruno@clisp.org>
3075
3076         Improve support for ACLs on OSF/1.
3077         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
3078         Remove fallback for unknown flavors of ACLs.
3079
3080 2008-05-22  Bruno Haible  <bruno@clisp.org>
3081
3082         Add support for ACLs on OSF/1.
3083         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
3084         replacements.
3085         (acl_free_text): New macro fallback.
3086         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
3087         acl_free.
3088         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
3089         acl_free_text function. Require AC_C_INLINE.
3090
3091 2008-05-22  Bruno Haible  <bruno@clisp.org>
3092
3093         Make copy_acl work on MacOS X 10.5.
3094         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
3095         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
3096         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
3097         If MODE_INSIDE_ACL, don't assume that every system has the same text
3098         representation for ACLs as FreeBSD.
3099         * lib/copy-acl.c (copy_acl): Add support for platforms with
3100         !MODE_INSIDE_ACL.
3101         * lib/file-has-acl.c (file_has_acl): Likewise.
3102         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
3103         FreeBSD, MacOS X, or IRIX, respectively.
3104
3105 2008-05-22  Bruno Haible  <bruno@clisp.org>
3106
3107         * lib/acl.h: Don't include <sys/acl.h>.
3108         (GETACLCNT): Move fallback to lib/acl-internal.h.
3109         * lib/acl-internal.h: Include <sys/acl.h> here.
3110         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
3111
3112 2008-05-22  Bruno Haible  <bruno@clisp.org>
3113
3114         Split off copy_acl function to separate file.
3115         * lib/copy-acl.c: New file, extracted from lib/acl.c.
3116         * lib/acl.c (copy_acl): Moved function to separate file.
3117         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
3118         * modules/acl (Files): Add lib/copy-acl.c.
3119         (Makefiles.am): Augment lib_SOURCES.
3120
3121 2008-05-22  Bruno Haible  <bruno@clisp.org>
3122
3123         * modules/copy-file-tests: New file.
3124         * tests/test-copy-file.sh: New file.
3125         * tests/test-copy-file.c: New file.
3126         * tests/test-copy-file-sameacls.c: New file.
3127
3128 2008-05-22  Eric Blake  <ebb9@byu.net>
3129
3130         Avoid gcc warning.
3131         * tests/test-memcmp.c (main): Pass NULL indirectly.
3132
3133 2008-05-21  Bruno Haible  <bruno@clisp.org>
3134
3135         Add reference doc about ACLs.
3136         * doc/acl-resources.txt: New file.
3137         * doc/acl-cygwin.txt: New file.
3138
3139 2008-05-21  Bruno Haible  <bruno@clisp.org>
3140
3141         Avoid one more warning from gcc.
3142         * lib/vasnprintf.c (IF_LINT): Update comments.
3143         (VASNPRINTF): Use it also for the 'prefix' array initializer.
3144
3145 2008-05-21  Jim Meyering  <meyering@redhat.com>
3146
3147         avoid a warning from gcc
3148         * lib/vasnprintf.c (IF_LINT): Define.
3149         (scale10_round_decimal_long_double):
3150         Use it to avoid a "may be used uninitialized" warning.
3151         (scale10_round_decimal_double): Likewise.
3152
3153 2008-05-21  Simon Josefsson  <simon@josefsson.org>
3154
3155         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
3156         declared.
3157
3158 2008-05-20  Bruno Haible  <bruno@clisp.org>
3159
3160         * tests/test-memcmp.c (main): Test also the sign of the result. Test
3161         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
3162
3163 2008-05-20  Simon Josefsson  <simon@josefsson.org>
3164
3165         * modules/memcmp-tests: New file.
3166         * tests/test-memcmp.c: New file.
3167
3168 2008-05-19  Bruno Haible  <bruno@clisp.org>
3169
3170         * modules/propername (Notice, configure.ac): Put quoted "..." into
3171         --keyword option.
3172         * lib/propername.h: Update comments accordingly.
3173         Reported by Eric Blake.
3174
3175 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
3176
3177         * modules/getpass-gnu (Depends-on): Add fseeko.
3178
3179 2008-05-19  Simon Josefsson  <simon@josefsson.org>
3180
3181         * modules/base64-tests: New file.
3182
3183 2008-05-19  Bo Borgerson <gigabo@gmail.com>
3184
3185         * lib/base64.c (base64_decode_ctx): If a decode context structure
3186         was passed in use it to ignore newlines.  If a context structure
3187         was _not_ passed in, continue to treat newlines as garbage (this
3188         is the historical behavior).  Formerly base64_decode.
3189         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
3190         takes a decode context structure.
3191         * lib/base64.h (base64_decode): Macro for four-argument calls.
3192         (base64_decode_alloc): Likewise.
3193         * lib/base64.c (base64_decode_ctx): If a decode context structure
3194         was passed in use it to ignore newlines.  If a context structure
3195         was _not_ passed in, continue to treat newlines as garbage (this
3196         is the historical behavior).  Formerly base64_decode.
3197         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
3198         takes a decode context structure.
3199         * lib/base64.h (base64_decode): Macro for four-argument calls.
3200         (base64_decode_alloc): Likewise.
3201
3202 2008-05-19  Jim Meyering  <meyering@redhat.com>
3203
3204         avoid a warning from gcc
3205         * lib/trim.c (IF_LINT): Define.
3206         (trim2): Use it to avoid a "may be used uninitialized" warning.
3207
3208         Fix doc typo.
3209         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
3210
3211 2008-05-19  Bruno Haible  <bruno@clisp.org>
3212
3213         * doc/glibc-functions/getpass.texi: Document limits of other
3214         implementations.
3215
3216 2008-05-19  Simon Josefsson  <simon@josefsson.org>
3217             Bruno Haible <bruno@clisp.org>
3218
3219         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
3220
3221 2008-05-18  Bruno Haible  <bruno@clisp.org>
3222
3223         * modules/propername: New file, from GNU gettext.
3224         * lib/propername.h: New file, from GNU gettext.
3225         * lib/propername.c: New file, from GNU gettext.
3226         * MODULES.html.sh (Internationalization functions): Add propername.
3227
3228 2008-05-16  Jim Meyering  <meyering@redhat.com>
3229             Bruno Haible  <bruno@clisp.org>
3230
3231         Avoid some warnings from "gcc -Wshadow".
3232         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
3233
3234 2008-05-15  Eric Blake  <ebb9@byu.net>
3235
3236         Extend previous patch to cygwin 1.7.0.
3237         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
3238         fast implementation in cygwin >= 1.7.0.
3239         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3240         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3241
3242 2008-05-15  Bruno Haible  <bruno@clisp.org>
3243
3244         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
3245         implementation in glibc >= 2.9.
3246         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
3247         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
3248
3249 2008-05-15  Bruno Haible  <bruno@clisp.org>
3250
3251         * MODULES.html.sh (Internationalization functions): Remove linebreak.
3252         (Unicode string functions): Add unilbrk/*.
3253         Reported by Karl Berry.
3254
3255 2008-05-15  Eric Blake  <ebb9@byu.net>
3256
3257         Fix violation of <stdbool.h> replacement in regex.
3258         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
3259         * lib/regexec.c (re_search_internal): Likewise.
3260         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
3261
3262 2008-05-15  Jim Meyering  <meyering@redhat.com>
3263
3264         avoid distracting test output when git or cvs is not found
3265         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
3266         * tests/test-vc-list-files-git.sh: Likewise.
3267
3268 2008-05-15  Eric Blake  <ebb9@byu.net>
3269
3270         Glibc finally accepted the memmem speedup code, bugzilla #5514.
3271         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
3272         glibc version.
3273         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
3274         * doc/posix-functions/strstr.texi (strstr): Likewise.
3275         * lib/str-two-way.h (MAX): Sychronize with glibc.
3276
3277 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
3278
3279         * lib/regcomp.c (optimize_utf8): Add a note on why we test
3280         opr.ctx_type.
3281         (calc_first): Initialize constraint field.
3282         (duplicate_node_closure): Use it instead of special casing ANCHORS.
3283         Fix grammar.
3284         (duplicate_node): Merge constraint field for all node types.
3285         (calc_eclosure_iter): Look at constraint field for all node types.
3286         * lib/regex_internal.c (create_cd_newstate): Don't look at
3287         opr.ctx_type.
3288
3289 2008-05-14  Bruno Haible  <bruno@clisp.org>
3290
3291         Help GCC to do better code generation.
3292         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
3293         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
3294         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
3295         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
3296         Declare with attribute 'malloc' if supported.
3297
3298 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
3299
3300         use "echo STR|wc -c" rather than unportable "expr length STR"
3301         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
3302         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
3303
3304 2008-05-14  Jim Meyering  <meyering@redhat.com>
3305
3306         use dd ibs=$n count=1 ... rather than less-portable head -c$n
3307         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
3308         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
3309         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
3310         via Collin Lasse.
3311
3312 2008-05-14  Eric Blake  <ebb9@byu.net>
3313
3314         Avoid quadratic growth in gl_LIBSOURCES.
3315         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
3316         Suggested by Bruno Haible.
3317
3318         Test xmemdup0.
3319         * modules/xmemdup0-tests: New file.
3320         * tests/test-xmemdup0.c: Likewise.
3321
3322 2008-05-13  Eric Blake  <ebb9@byu.net>
3323
3324         Split xmemdup0 into its own module.
3325         * modules/xmemdup0: New file.
3326         * lib/xmemdup0.h: Likewise.
3327         * lib/xmemdup0.c: Likewise.
3328         * MODULES.html.sh (Memory management functions): Add xmemdup0.
3329         * lib/xalloc.h (xmemdup0): Remove.
3330         * lib/xmalloc.c (xmemdup0): Likewise.
3331
3332 2008-05-13  Eric Blake  <ebb9@byu.net>
3333             Bruno Haible  <bruno@clisp.org>
3334
3335         Reduce number of forks required during autoconf.
3336         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
3337         and gl_LIBSOURCES_DIR.
3338         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
3339         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
3340         m4_syscmd per file.
3341         <m4_foreach_w>: Move...
3342         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
3343
3344 2008-05-13  Eric Blake  <ebb9@byu.net>
3345
3346         * gnulib-tool: Fix various comment typos.
3347
3348 2008-05-12  Bruno Haible  <bruno@clisp.org>
3349
3350         Tailor the linebreaking algorithm.
3351         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
3352
3353 2008-05-12  Bruno Haible  <bruno@clisp.org>
3354
3355         Update to Unicode 5.0.0.
3356         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3357         LBP_JV, LBP_JT. Redistribute values.
3358         (unilbrk_table): Change size.
3359         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
3360         Unicode TR#14 rev. 22.
3361         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
3362         LBP_JV, LBP_JT. Redistribute values.
3363         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
3364         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
3365         Update.
3366         * lib/unilbrk/lbrkprop1.h: Regenerated.
3367         * lib/unilbrk/lbrkprop2.h: Regenerated.
3368         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
3369         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
3370         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
3371         Likewise.
3372         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
3373         Likewise.
3374         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
3375         result.
3376         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
3377         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
3378         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
3379         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
3380         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
3381         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
3382
3383 2008-05-11  Bruno Haible  <bruno@clisp.org>
3384
3385         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
3386
3387 2008-05-11  Bruno Haible  <bruno@clisp.org>
3388
3389         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
3390         * modules/unilbrk/gen-lbrk: New file.
3391
3392 2008-05-11  Bruno Haible  <bruno@clisp.org>
3393
3394         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
3395         * m4/sha512.m4 (gl_SHA512): Likewise.
3396
3397 2008-05-11  Jim Meyering  <meyering@redhat.com>
3398
3399         New modules: crypto/sha256, crypto/sha512 (from coreutils)
3400         * modules/crypto/sha256: New file.
3401         * modules/crypto/sha512: Likewise.
3402         * lib/sha256.c: Likewise.
3403         * lib/sha256.h: Likewise.
3404         * lib/sha512.c: Likewise.
3405         * lib/sha512.h: Likewise.
3406         * lib/u64.h: Likewise.
3407         * m4/sha256.m4: Likewise.
3408         * m4/sha512.m4: Likewise.
3409         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
3410
3411 2008-05-10  Bruno Haible  <bruno@clisp.org>
3412
3413         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
3414         (Input/Output <stdio.h>): Add xprintf.
3415         (Signal handling <signal.h>): Add strsignal.
3416         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
3417         (Core language properties): Add func.
3418         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
3419         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
3420         strings.
3421         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
3422         (Input/output): New section.
3423         (File system functions): Add openat-die, stat-macros.
3424         (Networking functions): Add sockets.
3425         (Unicode string functions): Add unictype/*.
3426         (Support for building libraries and executables): Add gperf.
3427         (Support for building documentation): Add agpl-3.0.
3428         (Misc): Add nocrash.
3429
3430 2008-05-10  Bruno Haible  <bruno@clisp.org>
3431
3432         * modules/unictype/gen-ctype: New file.
3433
3434 2008-05-10  Jim Meyering  <meyering@redhat.com>
3435
3436         Make chdir-safer.c more efficient on a system with no symlinks.
3437         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
3438         also if ELOOP is zero.  Suggested by Bruno Haible.
3439
3440         Make chdir-safer.c slightly safer.
3441         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
3442         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
3443
3444         Avoid compile failure on systems without ELOOP (like mingw).
3445         * lib/chdir-safer.c (ELOOP): Define if not already defined.
3446         Reported by Bruno Haible.
3447
3448 2008-05-10  Bruno Haible  <bruno@clisp.org>
3449
3450         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
3451         (is_utf8_encoding): Use a case-insensitive comparison.
3452         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
3453         streq.
3454
3455 2008-05-10  Bruno Haible  <bruno@clisp.org>
3456
3457         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
3458         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
3459         * lib/unilbrk/ulc-common.h (iconv_string_length,
3460         iconv_string_keeping_offsets): Remove declarations.
3461         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
3462         Don't include <iconv.h>, streq.h, xsize.h.
3463         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
3464         conversion.
3465         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
3466         <iconv.h>, streq.h, xsize.h.
3467         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
3468         conversion.
3469         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
3470         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
3471         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
3472         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
3473
3474 2008-05-10  Bruno Haible  <bruno@clisp.org>
3475
3476         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
3477         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
3478
3479         * modules/unilbrk/u32-width-linebreaks-tests: New file.
3480         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
3481
3482         * modules/unilbrk/u16-width-linebreaks-tests: New file.
3483         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
3484
3485         * modules/unilbrk/u8-width-linebreaks-tests: New file.
3486         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
3487
3488         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
3489         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
3490
3491         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
3492         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
3493
3494         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
3495         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
3496
3497         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
3498         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
3499
3500 2008-05-10  Bruno Haible  <bruno@clisp.org>
3501
3502         Split up 'linebreak' module.
3503         * lib/unilbrk.h: New file, based on lib/linebreak.h.
3504         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
3505         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
3506         modifications.
3507         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
3508         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
3509         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
3510         lib/linebreak.c.
3511         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
3512         lib/linebreak.c.
3513         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
3514         lib/linebreak.c.
3515         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
3516         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
3517         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
3518         lib/linebreak.c.
3519         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
3520         lib/linebreak.c.
3521         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
3522         lib/linebreak.c.
3523         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
3524         lib/linebreak.c.
3525         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
3526         lib/linebreak.c.
3527         * modules/unilbrk/base: New file.
3528         * modules/unilbrk/tables: New file.
3529         * modules/unilbrk/u8-possible-linebreaks: New file.
3530         * modules/unilbrk/u16-possible-linebreaks: New file.
3531         * modules/unilbrk/u32-possible-linebreaks: New file.
3532         * modules/unilbrk/ulc-common: New file.
3533         * modules/unilbrk/ulc-possible-linebreaks: New file.
3534         * modules/unilbrk/u8-width-linebreaks: New file.
3535         * modules/unilbrk/u16-width-linebreaks: New file.
3536         * modules/unilbrk/u32-width-linebreaks: New file.
3537         * modules/unilbrk/ulc-width-linebreaks: New file.
3538         * lib/linebreak.h: Remove file.
3539         * lib/linebreak.c: Remove file.
3540         * m4/linebreak.m4: Remove file.
3541         * modules/linebreak: Remove file.
3542         * NEWS: Mention the changes.
3543
3544 2008-05-09  Eric Blake  <ebb9@byu.net>
3545
3546         Add xmemdup0.
3547         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
3548         implementation.
3549         * lib/xmalloc.c (xmemdup0): New C implementation.
3550
3551 2008-05-08  Bruno Haible  <bruno@clisp.org>
3552
3553         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
3554
3555 2008-05-07  Eric Blake  <ebb9@byu.net>
3556
3557         Support cross-compilation of <wctype.h>.
3558         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
3559         AC_CACHE_CHECK.
3560
3561 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
3562
3563         * build-aux/vc-list-files: Add support for bzr.
3564
3565 2008-05-03  Jim Meyering  <meyering@redhat.com>
3566
3567         avoid failed assertion with tight malloc
3568         * tests/test-getndelim2.c: Correct an off-by-one assertion.
3569
3570 2008-05-03  Simon Josefsson  <simon@josefsson.org>
3571
3572         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
3573         are needed from arpa/inet.h.
3574         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
3575         Reported by Bruno Haible.
3576
3577 2008-05-02  Jim Meyering  <meyering@redhat.com>
3578
3579         avoid compilation error on FreeBSD 6
3580         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
3581
3582 2008-05-01  Jim Meyering  <meyering@redhat.com>
3583
3584         useless-if-before-free: correct --help's exit status description
3585         * build-aux/useless-if-before-free (usage): Like grep, exit 0
3586         for one or more matches, etc.  Reported by Bruno Haible.
3587
3588         vc-list-files: make the stand-alone gnulib test work
3589         * modules/vc-list-files-tests (configure.ac):
3590         Define and AC_SUBST abs_aux_dir.
3591         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
3592         $(abs_top_srcdir) to each script and having each of them
3593         duplicate the work of setting PATH, set PATH here, using
3594         the new variable, abs_aux_dir instead.
3595         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
3596         * tests/test-vc-list-files-git.sh: Likewise.
3597         Reported by Bruno Haible.
3598
3599 2008-05-01  Bruno Haible  <bruno@clisp.org>
3600
3601         * lib/getndelim2.c (getndelim2): Fix newsize computation during
3602         reallocation. Rename 'done' to 'found_delimiter'.
3603
3604 2008-05-01  Jim Meyering  <meyering@redhat.com>
3605
3606         vc-list-files: accommodate /bin/sh like the one from Solaris 10
3607         * build-aux/vc-list-files: Use `...`, not $(...).
3608
3609 2008-04-30  Jim Meyering  <meyering@redhat.com>
3610
3611         add tests for vc-list-files
3612         * modules/vc-list-files-tests: New module.
3613         * tests/test-vc-list-files-cvs.sh: New file.
3614         * tests/test-vc-list-files-git.sh: New file.
3615
3616         avoid a warning from gcc
3617         * lib/getndelim2.c (IF_LINT): Define.
3618         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
3619
3620         vc-list-files: work properly with build-aux/cvsu, too
3621         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
3622         to all cvs-based clauses.
3623
3624         vc-list-files: work properly in the CVS+awk case, too
3625         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
3626
3627         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
3628         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
3629         take more than one file argument, so .  Add quotes, just in case $dir
3630         ever contains a shell meta-character.  Prompted by Soren Hansen in
3631         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
3632
3633 2008-04-29  Eric Blake  <ebb9@byu.net>
3634
3635         Optimize getndelim2 to use block operations when possible.
3636         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
3637         freadseek, and memchr2.
3638         * lib/getndelim2.c (getndelim2): Use them for block reads.
3639
3640 2008-04-29  Bruno Haible  <bruno@clisp.org>
3641
3642         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
3643         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3644         * modules/inet_ntop (Depends-on): Add extensions.
3645         * modules/inet_pton (Depends-on): Likewise.
3646         Reported by Simon Josefsson.
3647
3648 2008-04-29  Jim Meyering  <meyering@redhat.com>
3649
3650         When the is more than one match in a block, match all of them.
3651         * build-aux/useless-if-before-free: Iterate through each block
3652         until there are no more matches.
3653
3654         Fix broken useless-if-before-free script.
3655         * build-aux/useless-if-before-free: Fix typo: missing "?" after
3656         the expression to match cast of argument to free-like function.
3657
3658 2008-04-29  Eric Blake  <ebb9@byu.net>
3659
3660         Use new header.
3661         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
3662
3663 2008-04-29  Jim Meyering  <meyering@redhat.com>
3664
3665         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
3666         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
3667         by gnulib to exist and to declare e.g., inet_ntop.
3668         Don't include "inet_ntop.h", now removed.
3669
3670         * m4/arpa_inet_h.m4: Remove trailing blanks.
3671
3672 2008-04-29  Eric Blake  <ebb9@byu.net>
3673
3674         Silence valgrind on safe reads beyond potential array bounds.
3675         * lib/rawmemchr.valgrind: New file.
3676         * lib/strchrnul.valgrind: Likewise.
3677         * modules/rawmemchr (Files): Distribute new file.
3678         * modules/strchrnul (Files): Likewise.
3679         Suggested by Bruno Haible.
3680
3681 2008-04-29  Bruno Haible  <bruno@clisp.org>
3682
3683         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
3684         (inet_ntop, inet_pton): Change portability warning's wording.
3685         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
3686         Invoke gl_CHECK_NEXT_HEADERS.
3687         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
3688         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
3689         set ARPA_INET_H.
3690         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
3691         * modules/arpa_inet (Description): No longer only for systems that
3692         lack it.
3693         (Depends-on): Add include_next.
3694         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
3695         HAVE_ARPA_INET_H.
3696
3697 2008-04-29  Jim Meyering  <meyering@redhat.com>
3698
3699         * modules/mkdir (License): Re-license as LGPLv2+.
3700
3701 2008-04-29  Bruno Haible  <bruno@clisp.org>
3702
3703         * modules/rawmemchr (Maintainer): Set to Eric.
3704         * modules/strchrnul (Maintainer): Likewise.
3705
3706 2008-04-29  Simon Josefsson  <simon@josefsson.org>
3707
3708         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
3709         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
3710
3711         * modules/arpa_inet (arpa/inet.h): Use them.
3712
3713 2008-04-28  Eric Blake  <ebb9@byu.net>
3714
3715         Test getndelim2.
3716         * modules/getndelim2-tests: New file.
3717         * tests/test-getndelim2.c: Likewise.
3718         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
3719         stream.
3720         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
3721
3722         * MODULES.html.sh: Document new module.
3723
3724 2008-04-20  Bruno Haible  <bruno@clisp.org>
3725
3726         * lib/c-stack.c (die): Use raise.
3727         * modules/c-stack (Depends-on): Add raise.
3728
3729 2008-04-28  Bruno Haible  <bruno@clisp.org>
3730
3731         Expect rpmatch to be declared.
3732         * lib/yesno.c (rpmatch): Remove declaration.
3733
3734         Declare rpmatch.
3735         * lib/stdlib.in.h (rpmatch): New declaration.
3736         * lib/rpmatch.c: Include <stdlib.h> first.
3737         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
3738         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
3739         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
3740         HAVE_RPMATCH.
3741         * modules/rpmatch (Depends-on): Add stdlib, extensions.
3742         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3743         (Include): Set to <stdlib.h>.
3744         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
3745         HAVE_RPMATCH.
3746         * NEWS: Document the change.
3747
3748 2008-04-28  Bruno Haible  <bruno@clisp.org>
3749
3750         Change rpmatch to use nl_langinfo when appropriate.
3751         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
3752         (N_): New macro.
3753         (localized_pattern): New function/macro.
3754         (try): Remove match, nomatch arguments. Copy the pattern into safe
3755         memory before caching it.
3756         (rpmatch): Use localized_pattern. Add translator comments.
3757         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
3758         Suggested by Eric Blake.
3759         * modules/rpmatch (Depends-on): Add stdbool.
3760
3761 2008-04-28  Eric Blake  <ebb9@byu.net>
3762
3763         Add rawmemchr module, matching glibc.
3764         * modules/string (Makefile.am): New indicator.
3765         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
3766         * lib/string.in.h (rawmemchr): Declare when appropriate.
3767         * modules/rawmemchr: New file.
3768         * m4/rawmemchr.m4: Likewise.
3769         * lib/rawmemchr.c: Likewise.
3770         * modules/rawmemchr-tests: Likewise.
3771         * tests/test-rawmemchr.c: Likewise.
3772         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
3773         module.
3774         * modules/strchrnul (Depends-on): Add rawmemchr.
3775         * lib/strchrnul.c (strchrnul): Optimize a corner case.
3776
3777         Whitespace cleanup.
3778         * tests/test-strchrnul.c: Reindent.
3779         * lib/strchrnul.c: Likewise.
3780
3781         Optimize and test strchrnul.
3782         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
3783         * modules/strchrnul-tests: New file.
3784         * tests/test-strchrnul.c: Likewise.
3785
3786         Remove intprops dependency.
3787         * modules/memchr (Depends-on): Remove intprops.
3788         * modules/memrchr (Depends-on): Likewise.
3789         * modules/memchr2 (Depends-on): Likewise.
3790         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
3791         * lib/memrchr.c (__memrchr): Likewise.
3792         * lib/memrchr2.c (memchr2): Likewise.
3793         Reported by Simon Josefsson.
3794
3795 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3796
3797         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
3798         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3799
3800 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3801
3802         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
3803
3804         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
3805
3806         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
3807
3808         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
3809         declarations.
3810         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
3811
3812         * m4/inet_pton.m4: Don't check for header files.
3813
3814         * m4/inet_ntop.m4: Don't check for header files.
3815
3816 2008-04-28  Simon Josefsson  <simon@josefsson.org>
3817
3818         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
3819         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
3820         trigger for cygwin).
3821         Reported by Bruno Haible  <bruno@clisp.org>.
3822
3823 2008-04-28  Bruno Haible  <bruno@clisp.org>
3824
3825         * doc/posix-functions/strdup.texi: Mention mingw problem.
3826
3827 2008-04-27  Bruno Haible  <bruno@clisp.org>
3828
3829         * modules/stat-time-tests (Depends-on): Add sleep.
3830         * tests/test-stat-time.c (force_unlink): New function.
3831         (cleanup): Use it.
3832         (test_mtime): Remove the ctime related tests.
3833         (test_ctime): New function, containing the ctime related tests.
3834         (main): Call test_ctime, except on native Windows platforms.
3835
3836 2008-04-27  Bruno Haible  <bruno@clisp.org>
3837
3838         * lib/rpmatch.c (rpmatch): Add some comments.
3839         Reported by James Youngman <jay@gnu.org>.
3840
3841 2008-04-27  Bruno Haible  <bruno@clisp.org>
3842
3843         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
3844         quiet NaNs.
3845
3846 2008-04-27  Bruno Haible  <bruno@clisp.org>
3847
3848         Make test-yesno.sh work on mingw.
3849         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
3850         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
3851         (main): Set stdin to binary mode.
3852         * modules/yesno-tests (Depends-on): Add binary-io.
3853
3854 2008-04-27  Bruno Haible  <bruno@clisp.org>
3855
3856         Fix 'isfinite' on x86, x86_64, ia64 platforms.
3857         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
3858         argument that lie outside the IEEE 854 domain.
3859         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
3860         (gl_ISFINITE): Use it.
3861         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
3862
3863 2008-04-27  Bruno Haible  <bruno@clisp.org>
3864
3865         Allow local renaming in config.h.
3866         * lib/memrchr.c (memrchr): Don't undefine outside libc.
3867
3868 2008-04-27  Bruno Haible  <bruno@clisp.org>
3869
3870         * lib/memchr.c (__memchr): Change type of 'i'.
3871         * lib/memchr2.c (memchr2): Likewise.
3872
3873 2008-04-26  Eric Blake  <ebb9@byu.net>
3874         and Bruno Haible  <bruno@clisp.org>
3875
3876         Optimize and test memrchr.
3877         * modules/memrchr (Depends-on): Add intprops.
3878         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
3879         * modules/memrchr-tests: New file.
3880         * tests/test-memrchr.c: New file.
3881
3882 2008-04-26  Bruno Haible  <bruno@clisp.org>
3883
3884         Add tentative support for DragonFly BSD.
3885         * lib/stdio-impl.h: Add macros for DragonFly BSD.
3886         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
3887         fp.
3888         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3889         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
3890         * lib/fpurge.c (fpurge): Likewise.
3891         * lib/freadable.c (freaadable): Likewise.
3892         * lib/freadahead.c (freadahead): Likewise.
3893         * lib/freading.c (freading): Likewise.
3894         * lib/freadptr.c (freadptr): Likewise.
3895         * lib/freadseek.c (freadptrinc): Likewise.
3896         * lib/fseeko.c (fseeko): Likewise.
3897         * lib/fseterr.c (fseterr): Likewise.
3898         * lib/fwritable.c (fwritable): Likewise.
3899         * lib/fwriting.c (fwriting): Likewise.
3900
3901 2008-04-26  Bruno Haible  <bruno@clisp.org>
3902
3903         * lib/stdio-impl.h: New file.
3904         * lib/fbufmode.c: Include stdio-impl.h.
3905         (fbufmode): Use fp_, remove redundant #defines.
3906         * lib/fflush.c: Include stdio-impl.h.
3907         (clear_ungetc_buffer): Remove redundant #defines.
3908         * lib/fpurge.c: Include stdio-impl.h.
3909         (fpurge): Remove redundant #defines.
3910         * lib/freadable.c: Include stdio-impl.h.
3911         (freadable): Remove redundant #defines.
3912         * lib/freadahead.c: Include stdio-impl.h.
3913         (freadahead): Remove redundant #defines.
3914         * lib/freading.c: Include stdio-impl.h.
3915         (freading): Remove redundant #defines.
3916         * lib/freadptr.c: Include stdio-impl.h.
3917         (freadptr): Remove redundant #defines.
3918         * lib/freadseek.c: Include stdio-impl.h.
3919         (freadptrinc): Remove redundant #defines.
3920         * lib/fseeko.c: Include stdio-impl.h.
3921         (rpl_fseeko): Remove redundant #defines.
3922         * lib/fseterr.c: Include stdio-impl.h.
3923         (fseterr): Remove redundant #defines.
3924         * lib/fwritable.c: Include stdio-impl.h.
3925         (fwritable: Remove redundant #defines.
3926         * lib/fwriting.c: Include stdio-impl.h.
3927         (fwriting): Remove redundant #defines.
3928         * modules/fbufmode (Files): Add lib/stdio-impl.h.
3929         * modules/fflush (Files): Likewise.
3930         * modules/fpurge (Files): Likewise.
3931         * modules/freadable (Files): Likewise.
3932         * modules/freadahead (Files): Likewise.
3933         * modules/freading (Files): Likewise.
3934         * modules/freadptr (Files): Likewise.
3935         * modules/freadseek (Files): Likewise.
3936         * modules/fseeko (Files): Likewise.
3937         * modules/fseterr (Files): Likewise.
3938         * modules/fwritable (Files): Likewise.
3939         * modules/fwriting (Files): Likewise.
3940
3941 2008-04-26  Bruno Haible  <bruno@clisp.org>
3942
3943         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
3944         restore_seek_optimization, update_fpos_cache): New functions, extracted
3945         from rpl_fflush.
3946         (rpl_fflush): Use them.
3947         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
3948         (gl_REPLACE_FFLUSH): Use it.
3949
3950 2008-04-26  Bruno Haible  <bruno@clisp.org>
3951
3952         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
3953         on Solaris.
3954         * tests/test-xstrtoimax.sh: Likewise.
3955         * tests/test-xstrtoumax.sh: Likewise.
3956         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3957
3958 2008-04-26  Bruno Haible  <bruno@clisp.org>
3959
3960         * modules/memchr-tests: New file.
3961         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
3962
3963 2008-04-26  Eric Blake  <ebb9@byu.net>
3964             Bruno Haible  <bruno@clisp.org>
3965
3966         * lib/memchr.c: Include intprops.h.
3967         (__memchr): Optimize parallel detection of matching bytes. Rename local
3968         variables. Add explanatory comments.
3969
3970 2008-04-26  Bruno Haible  <bruno@clisp.org>
3971
3972         Fix module 'memchr', broken since 2000-10-28.
3973         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
3974
3975 2008-04-26  Bruno Haible  <bruno@clisp.org>
3976
3977         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
3978         comments.
3979
3980 2008-04-25  Eric Blake  <ebb9@byu.net>
3981
3982         Use native fstatat on cygwin 1.7.0.
3983         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
3984         first.
3985
3986 2008-04-23  Eric Blake  <ebb9@byu.net>
3987
3988         Improve memchr2 performance.
3989         * lib/memchr2.c (memchr2): Further optimize parallel detection of
3990         NUL bytes.
3991         * modules/memchr2 (Depends-on): Use intprops.h.
3992
3993 2008-04-23  Simon Josefsson  <simon@josefsson.org>
3994
3995         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
3996         an inline function instead of a CPP macro.  Patch by Ben Pfaff
3997         <blp@cs.stanford.edu>.
3998
3999 2008-04-23  Simon Josefsson  <simon@josefsson.org>
4000
4001         * lib/arpa_inet.in.h: New file.
4002
4003         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
4004         (Makefile.am): Sed in substitute header file.
4005
4006         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
4007         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
4008
4009         * modules/inet_ntop (configure.ac): Use
4010         gl_ARPA_INET_MODULE_INDICATOR.
4011
4012         * modules/inet_pton (configure.ac): Use
4013         gl_ARPA_INET_MODULE_INDICATOR.
4014
4015 2008-04-22  Jim Meyering  <meyering@redhat.com>
4016
4017         * modules/verify (License): Re-license as LGPLv2+.
4018
4019 2008-04-22  Simon Josefsson  <simon@josefsson.org>
4020
4021         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
4022         parameter to void* as per POSIX standard (MinGW uses char*).
4023
4024 2008-04-21  Bruno Haible  <bruno@clisp.org>
4025
4026         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
4027         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
4028         Define to replacements if REPLACE_ISWCNTRL is 1.
4029         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
4030         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
4031         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
4032         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
4033         what it fixes.
4034         * doc/posix-functions/iswalpha.texi: Likewise.
4035         * doc/posix-functions/iswblank.texi: Likewise.
4036         * doc/posix-functions/iswcntrl.texi: Likewise.
4037         * doc/posix-functions/iswdigit.texi: Likewise.
4038         * doc/posix-functions/iswgraph.texi: Likewise.
4039         * doc/posix-functions/iswlower.texi: Likewise.
4040         * doc/posix-functions/iswprint.texi: Likewise.
4041         * doc/posix-functions/iswpunct.texi: Likewise.
4042         * doc/posix-functions/iswspace.texi: Likewise.
4043         * doc/posix-functions/iswupper.texi: Likewise.
4044         * doc/posix-functions/iswxdigit.texi: Likewise.
4045         Reported by Alain Guibert.
4046
4047 2008-04-21  Bruno Haible  <bruno@clisp.org>
4048
4049         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
4050         Patch by Alain Guibert.
4051
4052 2008-04-21  Bruno Haible  <bruno@clisp.org>
4053
4054         Fix test failures on mingw.
4055         * tests/test-xstrtol.c (print_no_progname): New function.
4056         (main): Install it in error_print_progname hook.
4057         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
4058         * tests/test-xstrtoimax.sh: Likewise.
4059         * tests/test-xstrtoumax.sh: Likewise.
4060
4061 2008-04-21  Bruno Haible  <bruno@clisp.org>
4062
4063         Fix test failure on mingw.
4064         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
4065
4066 2008-04-21  Bruno Haible  <bruno@clisp.org>
4067
4068         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
4069         Actually assign a value.
4070
4071 2008-04-20  Bruno Haible  <bruno@clisp.org>
4072
4073         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
4074         take 2.
4075         * lib/canonicalize.c (canonicalize_file_name): Elide if the
4076         'canonicalize-lgpl' module is also used.
4077         * lib/canonicalize-lgpl.c: Undo last change.
4078         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
4079
4080 2008-04-20  Bruno Haible  <bruno@clisp.org>
4081
4082         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
4083         config.h. Provide _mkdir based fallback for mingw.
4084         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
4085         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
4086         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
4087         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
4088         rather than defining mkdir in config.h.
4089         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
4090         (gl_SYS_STAT_H_DEFAULTS): New macro.
4091         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
4092         HAVE_IO_H any more.
4093         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
4094         HAVE_DECL_MKDIR and HAVE_IO_H.
4095
4096 2008-04-20  Bruno Haible  <bruno@clisp.org>
4097
4098         * lib/isapipe.c: Port to native Windows platforms.
4099
4100 2008-04-20  Bruno Haible  <bruno@clisp.org>
4101
4102         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
4103
4104 2008-04-21  Eric Blake  <ebb9@byu.net>
4105
4106         Work around preprocessors that don't handle UINTMAX_MAX.
4107         * lib/memchr2.c (memchr2): Avoid embedded #if.
4108         Reported by Alain Guibert, fix suggested by Bruno Haible.
4109
4110 2008-04-21  Simon Josefsson  <simon@josefsson.org>
4111
4112         * doc/posix-functions/strftime.texi (strftime): Explain better
4113         Windows incompatibility.  Suggested by Micah Cowan
4114         <micah@cowan.name>.
4115
4116 2008-04-20  Bruno Haible  <bruno@clisp.org>
4117
4118         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
4119         unistr/u8-mblen.
4120
4121 2008-04-20  Bruno Haible  <bruno@clisp.org>
4122
4123         Fix test failure on platforms with non-GNU iconv.
4124         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
4125         (U_TO_U8): Use it, rather than u16_to_u8.
4126         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
4127         units at the end of the input string.
4128         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
4129
4130 2008-04-20  Bruno Haible  <bruno@clisp.org>
4131
4132         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
4133         when the resulting length is 0.
4134         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
4135
4136 2008-04-20  Bruno Haible  <bruno@clisp.org>
4137
4138         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
4139         works.
4140         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
4141
4142 2008-04-20  Bruno Haible  <bruno@clisp.org>
4143
4144         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
4145         * modules/tsearch-tests (configure.ac): Test for initstate function.
4146
4147 2008-04-20  Bruno Haible  <bruno@clisp.org>
4148
4149         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
4150         for nlink_t if missing.
4151         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
4152
4153 2008-04-19  Bruno Haible  <bruno@clisp.org>
4154
4155         Work around snprintf bug on Linux libc5.
4156         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
4157         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
4158         gl_SNPRINTF_SIZE1.
4159         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4160         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
4161         that test failed.
4162         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
4163         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
4164         * modules/snprintf (Files): Add m4/printf.m4.
4165         * modules/vsnprintf (Files): Likewise.
4166         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
4167         * doc/posix-functions/vsnprintf.texi: Likewise.
4168
4169 2008-04-19  Bruno Haible  <bruno@clisp.org>
4170
4171         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
4172         from 0.0058 to less than 10^-7.
4173
4174 2008-04-19  Bruno Haible  <bruno@clisp.org>
4175
4176         Fix rounding when a precision is given.
4177         * lib/vasnprintf.c (is_borderline): New function.
4178         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
4179         9...9x.
4180         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
4181         %e, %g.
4182         * tests/test-vasprintf-posix.c (test_function): Likewise.
4183         * tests/test-snprintf-posix.h (test_function): Likewise.
4184         * tests/test-sprintf-posix.h (test_function): Likewise.
4185         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
4186         * tests/test-printf-posix.h (test_function): Likewise.
4187         * tests/test-printf-posix.output: Update.
4188         Reported by John Darrington <john@darrington.wattle.id.au> via
4189         Ben Pfaff <blp@cs.stanford.edu>.
4190
4191 2008-04-18  Simon Josefsson  <simon@josefsson.org>
4192
4193         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
4194         Suggested by Bruno Haible <bruno@clisp.org>.
4195
4196 2008-04-17  Bruno Haible  <bruno@clisp.org>
4197
4198         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
4199         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
4200         implementation.
4201         Patch by Bruce Merry <bmerry@gmail.com>.
4202
4203 2008-04-17  Simon Josefsson  <simon@josefsson.org>
4204
4205         * doc/posix-functions/strftime.texi (strftime): Mention that %e
4206         doesn't work under Windows.
4207
4208 2008-04-16  Bruno Haible  <bruno@clisp.org>
4209
4210         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
4211         New macros.
4212         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
4213         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
4214         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
4215         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
4216         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
4217         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
4218         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
4219         macros.
4220         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
4221         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
4222         Northern Sotho, Uighur.
4223
4224 2008-04-16  Bruno Haible  <bruno@clisp.org>
4225
4226         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
4227         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
4228         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
4229         Reported by Daniel Bergström <daniel@octocode.com>.
4230
4231 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
4232             Bruno Haible  <bruno@clisp.org>
4233
4234         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
4235         function.
4236         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
4237         New functions, mostly extracted from gl_locale_name_default.
4238         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
4239
4240 2008-04-16  Eric Blake  <ebb9@byu.net>
4241
4242         Adjust strtod detection to catch glibc 2.7 bug.
4243         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
4244         Reported by John Gatewood Ham.
4245
4246 2008-04-16  Bruno Haible  <bruno@clisp.org>
4247
4248         Add tentative support for Linux libc5.
4249         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
4250         * lib/fpurge.c (fpurge): Likewise.
4251         * lib/freadable.c (freadable): Likewise.
4252         * lib/freadahead.c (freadahead): Likewise.
4253         * lib/freading.c (freading): Likewise.
4254         * lib/freadptr.c (freadptr): Likewise.
4255         * lib/freadseek.c (freadptrinc): Likewise.
4256         * lib/fseeko.c (rpl_fseeko): Likewise.
4257         * lib/fseterr.c (fseterr): Likewise.
4258         * lib/fwritable.c (fwritable): Likewise.
4259         * lib/fwriting.c (fwriting): Likewise.
4260         Reported by Alain Guibert <alguibert+bts@free.fr>.
4261
4262 2008-04-15  Bruno Haible  <bruno@clisp.org>
4263
4264         * modules/mathl (configure.ac): Define module indicator.
4265
4266 2008-04-15  Bruno Haible  <bruno@clisp.org>
4267
4268         * lib/logl.c (logl): Remove unused variables.
4269
4270 2008-04-15  Bruno Haible  <bruno@clisp.org>
4271
4272         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
4273         fails.
4274
4275 2008-04-15  Bruno Haible  <bruno@clisp.org>
4276
4277         * lib/trim.c (trim2): Fix argument of isspace() macro.
4278
4279 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
4280
4281         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
4282         to 0.
4283         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
4284
4285 2008-04-14  Bruno Haible  <bruno@clisp.org>
4286
4287         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
4288         AC_LANG_PROGRAM argument.
4289         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
4290         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
4291         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4292         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4293         * m4/math_h.m4 (gl_MATH_H): Likewise.
4294         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
4295         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
4296         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
4297         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
4298         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
4299         * m4/regex.m4 (gl_REGEX): Likewise.
4300         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
4301         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
4302         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
4303         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
4304         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4305         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
4306         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4307         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
4308
4309 2008-04-14  Jim Meyering  <meyering@redhat.com>
4310
4311         test-strtod: fix typos: s/abs/fabs/
4312         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
4313
4314 2008-04-13  Bruno Haible  <bruno@clisp.org>
4315
4316         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
4317         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
4318         module is also used and while not building the reloc-wrapper.
4319
4320 2008-04-13  Bruno Haible  <bruno@clisp.org>
4321
4322         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
4323
4324 2008-04-13  Bruno Haible  <bruno@clisp.org>
4325
4326         Fix AIX compilation failure introduced on 2008-04-02.
4327         * tests/test-frexp.c (exp): Undefine before redefining.
4328         * tests/test-frexpl.c (exp): Likewise.
4329
4330 2008-04-13  Bruno Haible  <bruno@clisp.org>
4331
4332         Work around a HP-UX stdio bug.
4333         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
4334         * tests/test-ftello.c (main): Likewise.
4335         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
4336         * doc/posix-functions/ftello.texi: Likewise.
4337
4338 2008-04-13  Bruno Haible  <bruno@clisp.org>
4339
4340         Make test-signbit pass on HP-UX/hppa.
4341         * tests/test-signbit.c (minus_zerol): New variable.
4342         (test_signbitl): Use it.
4343
4344 2008-04-13  Bruno Haible  <bruno@clisp.org>
4345
4346         Make truncl work on OSF/1 4.0.
4347         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
4348         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4349         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
4350         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
4351         HAVE_DECL_TRUNCL.
4352         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
4353         HAVE_DECL_TRUNCL.
4354         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
4355
4356 2008-04-13  Bruno Haible  <bruno@clisp.org>
4357
4358         * lib/unictype.h: Remove trailing comma from enumeration definitions.
4359
4360 2008-04-13  Bruno Haible  <bruno@clisp.org>
4361
4362         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
4363         expression, so as to avoid HP-UX 11 cc compiler bug.
4364
4365 2008-04-13  Bruno Haible  <bruno@clisp.org>
4366
4367         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
4368
4369 2008-04-13  Bruno Haible  <bruno@clisp.org>
4370
4371         * lib/git-merge-changelog.c: Remove empty declaration outside of
4372         functions.
4373
4374 2008-04-13  Bruno Haible  <bruno@clisp.org>
4375
4376         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
4377
4378 2008-04-13  Bruno Haible  <bruno@clisp.org>
4379
4380         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
4381         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
4382         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
4383         also if it exists but lacks definitions of the SHUT_* macros.
4384         * modules/sys_socket (Description): Update.
4385         Reported by Elbert Pol <e.pol@chello.nl>.
4386
4387 2008-04-13  Bruno Haible  <bruno@clisp.org>
4388
4389         * lib/localcharset.c (OS2): Don't redefine if already defined.
4390         Reported by Elbert Pol <e.pol@chello.nl>.
4391
4392 2008-04-13  Bruno Haible  <bruno@clisp.org>
4393
4394         * lib/binary-io.h [__EMX__]: Include <io.h>.
4395         Reported by Elbert Pol <e.pol@chello.nl>.
4396
4397 2008-04-12  Bruno Haible  <bruno@clisp.org>
4398
4399         * lib/fpucw.h: Enable the definitions also for x86_64.
4400         Needed for NetBSD/x86_64.
4401         Reported by Thomas Klausner <tk@giga.or.at>.
4402
4403 2008-04-12  Bruno Haible  <bruno@clisp.org>
4404
4405         * tests/test-strtod.c: Include isnand.h.
4406         (main): Use isnand instead of isnan.
4407         Reported by Jim Meyering.
4408
4409 2008-04-12  Bruno Haible  <bruno@clisp.org>
4410
4411         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
4412         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
4413
4414 2008-04-12  Jim Meyering  <meyering@redhat.com>
4415
4416         * m4/math_h.m4 (gl_MATH_H): Fix typos.
4417
4418 2008-04-12  Bruno Haible  <bruno@clisp.org>
4419
4420         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
4421         Reported by Elbert Pol <e.pol@chello.nl>.
4422
4423 2008-04-12  Eric Blake  <ebb9@byu.net>
4424
4425         Work around Solaris 10 math.h bug.
4426         * m4/math_h.m4 (gl_MATH_H): Check for bug.
4427         (gl_MATH_H_DEFAULTS): Set up default.
4428         * modules/math (Makefile.am): Replace new indicators.
4429         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
4430         * tests/test-math.c (main): Test this.
4431         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
4432         * doc/posix-headers/math.texi (math.h): Mention bug.
4433         Reported by Nelson H. F. Beebe and Jim Meyering.
4434
4435 2008-04-11  Bruno Haible  <bruno@clisp.org>
4436
4437         Adapt to future versions of Apple GCC.
4438         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
4439         Reported by Peter O'Gorman <peter@pogma.com>.
4440
4441 2008-04-11  Bruno Haible  <bruno@clisp.org>
4442
4443         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
4444
4445 2008-04-11  Bruno Haible  <bruno@clisp.org>
4446
4447         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
4448
4449         * modules/getaddrinfo-tests (Makefile.am): Define
4450         test_getaddrinfo_LDADD.
4451
4452 2008-04-11  Bruno Haible  <bruno@clisp.org>
4453
4454         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
4455         (init): Fix syntax error.
4456         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
4457         is declared.
4458
4459 2008-04-11  Bruno Haible  <bruno@clisp.org>
4460
4461         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
4462         * modules/glob (Depends-on): Add stdbool.
4463
4464 2008-04-11  Bruno Haible  <bruno@clisp.org>
4465
4466         * lib/trim.c: Include <string.h>.
4467
4468 2008-04-11  Eric Blake  <ebb9@byu.net>
4469
4470         Avoid compile failure on OS/2.
4471         * lib/regex_internal.h (internal_function): Disable optimization
4472         on OS/2 (__EMX__), where it caused compiler error.
4473         Reported by Elbert Pol.
4474
4475 2008-04-11  Bruno Haible  <bruno@clisp.org>
4476
4477         Flush the standard error stream before aborting. Needed on mingw.
4478         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
4479         * tests/test-array_list.c (ASSERT): Likewise.
4480         * tests/test-array_oset.c (ASSERT): Likewise.
4481         * tests/test-avltree_list.c (ASSERT): Likewise.
4482         * tests/test-avltree_oset.c (ASSERT): Likewise.
4483         * tests/test-avltreehash_list.c (ASSERT): Likewise.
4484         * tests/test-binary-io.c (ASSERT): Likewise.
4485         * tests/test-byteswap.c (ASSERT): Likewise.
4486         * tests/test-c-ctype.c (ASSERT): Likewise.
4487         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
4488         * tests/test-c-strcasestr.c (ASSERT): Likewise.
4489         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
4490         * tests/test-c-strstr.c (ASSERT): Likewise.
4491         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
4492         * tests/test-canonicalize.c (ASSERT): Likewise.
4493         * tests/test-carray_list.c (ASSERT): Likewise.
4494         * tests/test-ceilf1.c (ASSERT): Likewise.
4495         * tests/test-ceilf2.c (ASSERT): Likewise.
4496         * tests/test-ceill.c (ASSERT): Likewise.
4497         * tests/test-count-one-bits.c (ASSERT): Likewise.
4498         * tests/test-fbufmode.c (ASSERT): Likewise.
4499         * tests/test-fflush2.c (ASSERT): Likewise.
4500         * tests/test-floorf1.c (ASSERT): Likewise.
4501         * tests/test-floorf2.c (ASSERT): Likewise.
4502         * tests/test-floorl.c (ASSERT): Likewise.
4503         * tests/test-fopen.c (ASSERT): Likewise.
4504         * tests/test-fpending.c (ASSERT): Likewise.
4505         * tests/test-fprintf-posix.c (ASSERT): Likewise.
4506         * tests/test-fpurge.c (ASSERT): Likewise.
4507         * tests/test-freadable.c (ASSERT): Likewise.
4508         * tests/test-freadahead.c (ASSERT): Likewise.
4509         * tests/test-freading.c (ASSERT): Likewise.
4510         * tests/test-freadptr.c (ASSERT): Likewise.
4511         * tests/test-freadptr2.c (ASSERT): Likewise.
4512         * tests/test-freadseek.c (ASSERT): Likewise.
4513         * tests/test-freopen.c (ASSERT): Likewise.
4514         * tests/test-frexp.c (ASSERT): Likewise.
4515         * tests/test-frexpl.c (ASSERT): Likewise.
4516         * tests/test-fseek.c (ASSERT): Likewise.
4517         * tests/test-fseeko.c (ASSERT): Likewise.
4518         * tests/test-fstrcmp.c (ASSERT): Likewise.
4519         * tests/test-ftell.c (ASSERT): Likewise.
4520         * tests/test-ftello.c (ASSERT): Likewise.
4521         * tests/test-func.c (ASSERT): Likewise.
4522         * tests/test-fwritable.c (ASSERT): Likewise.
4523         * tests/test-fwriting.c (ASSERT): Likewise.
4524         * tests/test-getdelim.c (ASSERT): Likewise.
4525         * tests/test-getline.c (ASSERT): Likewise.
4526         * tests/test-i-ring.c (ASSERT): Likewise.
4527         * tests/test-iconv-utf.c (ASSERT): Likewise.
4528         * tests/test-iconv.c (ASSERT): Likewise.
4529         * tests/test-isfinite.c (ASSERT): Likewise.
4530         * tests/test-isnand.c (ASSERT): Likewise.
4531         * tests/test-isnanf.c (ASSERT): Likewise.
4532         * tests/test-isnanl.h (ASSERT): Likewise.
4533         * tests/test-ldexpl.c (ASSERT): Likewise.
4534         * tests/test-linked_list.c (ASSERT): Likewise.
4535         * tests/test-linkedhash_list.c (ASSERT): Likewise.
4536         * tests/test-localename.c (ASSERT): Likewise.
4537         * tests/test-lseek.c (ASSERT): Likewise.
4538         * tests/test-mbscasecmp.c (ASSERT): Likewise.
4539         * tests/test-mbscasestr1.c (ASSERT): Likewise.
4540         * tests/test-mbscasestr2.c (ASSERT): Likewise.
4541         * tests/test-mbscasestr3.c (ASSERT): Likewise.
4542         * tests/test-mbscasestr4.c (ASSERT): Likewise.
4543         * tests/test-mbschr.c (ASSERT): Likewise.
4544         * tests/test-mbscspn.c (ASSERT): Likewise.
4545         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
4546         * tests/test-mbspbrk.c (ASSERT): Likewise.
4547         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
4548         * tests/test-mbsrchr.c (ASSERT): Likewise.
4549         * tests/test-mbsspn.c (ASSERT): Likewise.
4550         * tests/test-mbsstr1.c (ASSERT): Likewise.
4551         * tests/test-mbsstr2.c (ASSERT): Likewise.
4552         * tests/test-mbsstr3.c (ASSERT): Likewise.
4553         * tests/test-memchr2.c (ASSERT): Likewise.
4554         * tests/test-memmem.c (ASSERT): Likewise.
4555         * tests/test-open.c (ASSERT): Likewise.
4556         * tests/test-printf-frexp.c (ASSERT): Likewise.
4557         * tests/test-printf-frexpl.c (ASSERT): Likewise.
4558         * tests/test-printf-posix.c (ASSERT): Likewise.
4559         * tests/test-quotearg.c (ASSERT): Likewise.
4560         * tests/test-rbtree_list.c (ASSERT): Likewise.
4561         * tests/test-rbtree_oset.c (ASSERT): Likewise.
4562         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
4563         * tests/test-round1.c (ASSERT): Likewise.
4564         * tests/test-roundf1.c (ASSERT): Likewise.
4565         * tests/test-roundl.c (ASSERT): Likewise.
4566         * tests/test-signbit.c (ASSERT): Likewise.
4567         * tests/test-sleep.c (ASSERT): Likewise.
4568         * tests/test-snprintf-posix.c (ASSERT): Likewise.
4569         * tests/test-snprintf.c (ASSERT): Likewise.
4570         * tests/test-sprintf-posix.c (ASSERT): Likewise.
4571         * tests/test-stat-time.c (ASSERT): Likewise.
4572         * tests/test-strcasestr.c (ASSERT): Likewise.
4573         * tests/test-strerror.c (ASSERT): Likewise.
4574         * tests/test-striconv.c (ASSERT): Likewise.
4575         * tests/test-striconveh.c (ASSERT): Likewise.
4576         * tests/test-striconveha.c (ASSERT): Likewise.
4577         * tests/test-strsignal.c (ASSERT): Likewise.
4578         * tests/test-strstr.c (ASSERT): Likewise.
4579         * tests/test-strtod.c (ASSERT): Likewise.
4580         * tests/test-trunc1.c (ASSERT): Likewise.
4581         * tests/test-trunc2.c (ASSERT): Likewise.
4582         * tests/test-truncf1.c (ASSERT): Likewise.
4583         * tests/test-truncf2.c (ASSERT): Likewise.
4584         * tests/test-truncl.c (ASSERT): Likewise.
4585         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
4586         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
4587         * tests/test-vasnprintf.c (ASSERT): Likewise.
4588         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
4589         * tests/test-vasprintf.c (ASSERT): Likewise.
4590         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
4591         * tests/test-vprintf-posix.c (ASSERT): Likewise.
4592         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
4593         * tests/test-vsnprintf.c (ASSERT): Likewise.
4594         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
4595         * tests/test-wcwidth.c (ASSERT): Likewise.
4596         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
4597         * tests/test-xprintf-posix.c (ASSERT): Likewise.
4598         * tests/test-xvasprintf.c (ASSERT): Likewise.
4599         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
4600         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
4601         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
4602         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
4603         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
4604         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
4605         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
4606         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
4607         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
4608         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
4609         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
4610         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
4611         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
4612         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
4613         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
4614         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
4615         * tests/unictype/test-block_list.c (ASSERT): Likewise.
4616         * tests/unictype/test-block_of.c (ASSERT): Likewise.
4617         * tests/unictype/test-block_test.c (ASSERT): Likewise.
4618         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
4619         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
4620         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
4621         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
4622         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
4623         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
4624         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
4625         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
4626         * tests/unictype/test-combining.c (ASSERT): Likewise.
4627         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
4628         * tests/unictype/test-digit.c (ASSERT): Likewise.
4629         * tests/unictype/test-mirror.c (ASSERT): Likewise.
4630         * tests/unictype/test-numeric.c (ASSERT): Likewise.
4631         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
4632         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
4633         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
4634         * tests/unictype/test-scripts.c (ASSERT): Likewise.
4635         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
4636         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
4637         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
4638         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
4639         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
4640         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
4641         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
4642         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
4643         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
4644         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
4645         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
4646         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
4647         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
4648         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
4649         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
4650         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
4651         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
4652         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
4653         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
4654         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
4655         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
4656         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
4657         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
4658         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
4659         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
4660         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
4661         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
4662         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
4663         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
4664         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
4665         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
4666         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
4667         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
4668         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
4669         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
4670         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
4671         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
4672         Reported by Eric Blake.
4673
4674 2008-04-11  Bruno Haible  <bruno@clisp.org>
4675
4676         * lib/wchar.in.h: Tweak comment.
4677
4678 2008-04-11  Bruno Haible  <bruno@clisp.org>
4679
4680         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
4681         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
4682         gl_COMMON.
4683         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
4684
4685 2008-04-11  Bruno Haible  <bruno@clisp.org>
4686
4687         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
4688
4689 2008-04-11  Simon Josefsson  <simon@josefsson.org>
4690
4691         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
4692         of attempting to use non-existing /dev/*random.  Based on patch
4693         from Adam Strzelecki <ono@java.pl> in
4694         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
4695
4696 2008-04-08  Bruno Haible  <bruno@clisp.org>
4697
4698         Add tentative support for emx+gcc.
4699         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
4700         * lib/fpurge.c (fpurge): Likewise.
4701         * lib/freadable.c (freadable): Likewise.
4702         * lib/freadahead.c (freadahead): Likewise.
4703         * lib/freading.c (freading): Likewise.
4704         * lib/freadptr.c (freadptr): Likewise.
4705         * lib/freadseek.c (freadptrinc): Likewise.
4706         * lib/fseeko.c (rpl_fseeko): Likewise.
4707         * lib/fseterr.c (fseterr): Likewise.
4708         * lib/fwritable.c (fwritable): Likewise.
4709         * lib/fwriting.c (fwriting): Likewise.
4710         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
4711
4712 2008-04-09  Eric Blake  <ebb9@byu.net>
4713
4714         Avoid some autoconf warnings.
4715         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
4716         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
4717         * m4/afs.m4 (gl_AFS): Likewise.
4718         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
4719         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
4720         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
4721         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
4722         (gl_INTEGER_TYPE_SUFFIX): Likewise.
4723         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
4724         (AC_CHECK_DECLS_ONCE): Likewise.
4725         Rename file...
4726         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
4727         gnulib-tool requires autoconf 2.59 or better.
4728         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
4729
4730 2008-04-08  Eric Blake  <ebb9@byu.net>
4731
4732         Use 'git describe --match' if present (added in git 1.5.5).
4733         * build-aux/git-version-gen: Limit result to tags that match 'v*'
4734         if possible.
4735
4736 2008-04-08  Bruno Haible  <bruno@clisp.org>
4737
4738         Add tentative support for OpenServer.
4739         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
4740         _ptr, _cnt.
4741         * lib/fpurge.c (fpurge): Likewise.
4742         * lib/freadable.c (freadable): Likewise.
4743         * lib/freadahead.c (freadahead): Likewise.
4744         * lib/freading.c (freading): Likewise.
4745         * lib/freadptr.c (freadptr): Likewise.
4746         * lib/freadseek.c (freadptrinc): Likewise.
4747         * lib/fseeko.c (rpl_fseeko): Likewise.
4748         * lib/fseterr.c (fseterr): Likewise.
4749         * lib/fwritable.c (fwritable): Likewise.
4750         * lib/fwriting.c (fwriting): Likewise.
4751         Reported by Roger Cornelius <rac@tenzing.org> and
4752         Brian K. White <brian@aljex.com>.
4753
4754 2008-04-06  Jim Meyering  <meyering@redhat.com>
4755
4756         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
4757
4758 2008-04-06  Bruno Haible  <bruno@clisp.org>
4759
4760         Avoid possible error with non-ASCII bytes in UTF-8 locales.
4761         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
4762         * tests/test-printf-posix.sh: Likewise.
4763         * tests/test-vfprintf-posix.sh: Likewise.
4764         * tests/test-vprintf-posix.sh: Likewise.
4765         * tests/test-xprintf-posix.sh: Likewise.
4766
4767 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4768
4769         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
4770         hide error from 'ls', needed on OS/2.
4771         Report by Elbert Pol <elbert.pol@gmail.com>.
4772
4773 2008-04-04  Eric Blake  <ebb9@byu.net>
4774
4775         Make test-fseeko.c failures meaningful.
4776         * tests/test-fseeko.c: Print line number on failure.
4777         * tests/test-fseek.c: Likewise.
4778         Reported by Nelson H. F. Beebe.
4779
4780         Improve strtod bug detection check.
4781         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
4782         required for Solaris 10.
4783         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
4784
4785 2008-04-04  Bruno Haible  <bruno@clisp.org>
4786
4787         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
4788         by m4/setenv.m4.
4789
4790 2008-04-03  Eric Blake  <ebb9@byu.net>
4791
4792         Ensure sane .version contents.
4793         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
4794         version string.
4795         * build-aux/git-version-gen: Improve documentation.
4796
4797         Make GNU make output nicer.
4798         * top/GNUmakefile [!_have-Makefile]: Add dependency on
4799         MAKECMDGOALS to enforce message for all command line targets.  Set
4800         srcdir for use in maint.mk.
4801
4802         Another maintainer tweak.
4803         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
4804         a target that regenerates version.
4805
4806 2008-04-03  Jim Meyering  <meyering@redhat.com>
4807
4808         vc-list-files: don't cause coreutils "make po-check" failure
4809         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
4810
4811 2008-04-03  Eric Blake  <ebb9@byu.net>
4812
4813         Allow VPATH usage of vc-list-files.
4814         * build-aux/vc-list-files (scriptversion): Add timestamp.
4815         (options): Add --help, --version, -C.
4816         (CVS): Support installed cvsu.
4817
4818 2008-04-02  Bruno Haible  <bruno@clisp.org>
4819
4820         Avoid some "statement with no effect" warnings from gcc.
4821         * tests/test-wctype.c (main): Explicitly ignore unused values.
4822         Reported by Jim Meyering.
4823
4824 2008-04-02  Jim Meyering  <meyering@redhat.com>
4825
4826         Avoid some warnings from "gcc -Wshadow".
4827         * tests/test-frexp.c (exp): Define to a different identifier.
4828         * tests/test-frexpl.c (exp): Likewise.
4829
4830 2008-04-03  Jim Meyering  <meyering@redhat.com>
4831
4832         bootstrap: remove dangling *.[ch] symlinks from lib
4833         * build-aux/bootstrap [dangling symlink removal]: Move find's
4834         -depth option to precede all others, to avoid a warning.
4835         Remove *.[ch] files too, and from "$source_base" (usually lib/).
4836
4837 2008-04-02  Bruno Haible  <bruno@clisp.org>
4838
4839         Avoid some warnings from "gcc -Wshadow".
4840         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
4841         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
4842         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
4843         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
4844         Reported by Jim Meyering.
4845
4846 2008-04-01  Bruno Haible  <bruno@clisp.org>
4847
4848         Fix test to work on IRIX 6.5 with cc.
4849         * tests/test-math.c (numeric_equal): New function.
4850         (main): Use it.
4851
4852 2008-04-01  Bruno Haible  <bruno@clisp.org>
4853
4854         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
4855
4856 2008-04-01  Bruno Haible  <bruno@clisp.org>
4857
4858         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
4859         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4860         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
4861         (Depends-on): Remove math.
4862
4863         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
4864         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4865         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
4866         (Depends-on): Remove math.
4867
4868         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
4869         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4870         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
4871         (Depends-on): Remove math.
4872         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
4873         (Depends-on): Remove math.
4874
4875         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
4876         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
4877         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
4878         (Depends-on): Remove math.
4879         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
4880         (Depends-on): Remove math.
4881
4882         * tests/test-round1.c: Include nan.h.
4883         (main): Use NaNd instead of NAN.
4884         * modules/round-tests (Files): Add tests/nan.h.
4885
4886         * tests/test-trunc1.c: Include nan.h.
4887         (main): Use NaNd instead of NAN.
4888         * modules/trunc-tests (Files): Add tests/nan.h.
4889
4890         * tests/test-roundf1.c: Include nan.h.
4891         (main): Use NaNf instead of NAN.
4892         * modules/roundf-tests (Files): Add tests/nan.h.
4893
4894         * tests/test-truncf1.c: Include nan.h.
4895         (main): Use NaNf instead of NAN.
4896         * modules/truncf-tests (Files): Add tests/nan.h.
4897
4898         * tests/test-ceilf1.c: Include nan.h.
4899         (main): Use NaNf instead of NAN.
4900         * modules/ceilf-tests (Files): Add tests/nan.h.
4901
4902         * tests/test-floorf1.c: Include nan.h.
4903         (main): Use NaNf instead of NAN.
4904         * modules/floorf-tests (Files): Add tests/nan.h.
4905
4906         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
4907         (main): Use NaNf instead of NAN.
4908         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
4909
4910         * tests/test-isnand.c: Include nan.h instead of <math.h>.
4911         (main): Use NaNd instead of NAN.
4912         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
4913
4914         * tests/test-frexp.c: Include nan.h.
4915         (main): Use NaNd instead of NAN.
4916         * modules/frexp-tests (Files): Add tests/nan.h.
4917
4918         * lib/isnan.c: Don't include <math.h>.
4919         (FUNC): Don't use NAN macro.
4920         * modules/isnand-nolibm (Depends-on): Remove math.
4921         * modules/isnanf-nolibm (Depends-on): Remove math.
4922         * modules/isnanl (Depends-on): Remove math.
4923         * modules/isnanl-nolibm (Depends-on): Remove math.
4924
4925         * tests/nan.h: New file.
4926
4927 2008-04-01  Eric Blake  <ebb9@byu.net>
4928
4929         Fix typos.
4930         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
4931         values to be the right type.
4932
4933         For now, cater to gnulib strtod inaccuracies.
4934         * tests/test-strtod.c (main): Allow 1-ulp error on expected
4935         fractional results.  While not as nice from a QoI perspective, it
4936         is a quicker patch than correctly implementing decimal to binary
4937         rounding.
4938
4939 2008-03-31  Eric Blake  <ebb9@byu.net>
4940
4941         Guarantee a definition of NAN.
4942         * lib/math.in.h (NAN): Define if missing.
4943         * tests/test-math.c (main): Test it.
4944         * doc/posix-headers/math.texi (math.h): Document this.
4945         * lib/isnan.c (rpl_isnand): Use it.
4946         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
4947         * tests/test-floorf1.c (NaN): Likewise.
4948         * tests/test-frexp.c (NaN): Likewise.
4949         * tests/test-isnand.c (NaN): Likewise.
4950         * tests/test-isnanf.c (NaN): Likewise.
4951         * tests/test-round1.c (NaN): Likewise.
4952         * tests/test-roundf1.c (NaN): Likewise.
4953         * tests/test-snprintf-posix.h (NaN): Likewise.
4954         * tests/test-sprintf-posix.h (NaN): Likewise.
4955         * tests/test-trunc1.c (NaN): Likewise.
4956         * tests/test-truncf1.c (NaN): Likewise.
4957         * tests/test-vasnprintf-posix.c (NaN): Likewise.
4958         * tests/test-vasprintf-posix.c (NaN): Likewise.
4959         * modules/isnand-nolibm (Depends-on): Add math.
4960         * modules/isnanf-nolibm (Depends-on): Likewise.
4961         * modules/isnanl (Depends-on): Likewise.
4962         * modules/isnanl-nolibm (Depends-on): Likewise.
4963         * modules/snprintf-posix-tests (Depends-on): Likewise.
4964         * modules/sprintf-posix-tests (Depends-on): Likewise.
4965         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
4966         * modules/vsprintf-posix-tests (Depends-on): Likewise.
4967         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
4968         * modules/vasprintf-posix-tests (Depends-on): Likewise.
4969
4970 2008-03-31  Bruno Haible  <bruno@clisp.org>
4971
4972         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
4973         * doc/posix-functions/strtod.texi: Likewise.
4974
4975 2008-03-31  Bruno Haible  <bruno@clisp.org>
4976
4977         * tests/test-strtod.c (main): Don't use C99 syntax.
4978
4979 2008-03-31  Bruno Haible  <bruno@clisp.org>
4980
4981         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
4982         Reported by Eric Blake.
4983
4984 2008-03-31  Jim Meyering  <meyering@redhat.com>
4985
4986         Don't compare actual signbit return values.
4987         * tests/test-strtod.c (main): Rather, compare only their
4988         zero/non-zero nature.
4989
4990 2008-03-31  Eric Blake  <ebb9@byu.net>
4991
4992         More strtod documentation.
4993         * doc/posix-functions/strtod.texi (strtod): Interpret more test
4994         failures as distinct bugs.
4995
4996 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
4997
4998         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
4999         Problem reported by Erik Benada in
5000         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
5001
5002 2008-03-30  Bruno Haible  <bruno@clisp.org>
5003
5004         * tests/test-strtod.c: Add comments about which assertion fails on which
5005         platform.
5006         * doc/posix-functions/strtod.texi: Add info about many more platforms.
5007
5008 2008-03-30  Eric Blake  <ebb9@byu.net>
5009
5010         Test signbit behavior on zeros.
5011         * tests/test-signbit.c (test_signbitf): Add tests for zero.
5012         (test_signbitd, test_signbitl): Likewise.
5013
5014         More strtod touchups.
5015         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
5016         sign of negative underflow, for now.  Use .5, not .1.
5017         * doc/posix-functions/strtod.texi (strtod): Mention these
5018         limitations.
5019         Reported by Jim Meyering.
5020
5021 2008-03-30  Bruno Haible  <bruno@clisp.org>
5022
5023         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
5024         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
5025
5026 2008-03-30  Bruno Haible  <bruno@clisp.org>
5027
5028         Avoid failure when attempting to return empty iconv results on some
5029         platforms.
5030         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
5031         allocation, don't report ENOMEM when the resulting string is empty.
5032
5033 2008-03-30  Bruno Haible  <bruno@clisp.org>
5034
5035         Fix buffer overrun.
5036         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
5037         Don't consider the width for tmp_length. Check count against tmp_length
5038         before doing the padding. Ensure enough allocation during padding.
5039
5040 2008-03-30  Eric Blake  <ebb9@byu.net>
5041
5042         strtod touchups.
5043         * lib/strtod.c (strtod): Avoid compiler warnings.
5044         Reported by Jim Meyering.
5045
5046 2008-03-30  Bruno Haible  <bruno@clisp.org>
5047
5048         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
5049         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
5050         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
5051         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
5052         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
5053         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
5054         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
5055         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
5056
5057         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
5058         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
5059         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
5060         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
5061         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
5062         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
5063         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
5064         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
5065
5066         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
5067         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
5068         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
5069         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
5070         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
5071         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
5072         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
5073         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
5074
5075         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
5076         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
5077
5078         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
5079         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
5080
5081         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
5082         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
5083
5084         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
5085         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
5086         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
5087
5088         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
5089         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
5090         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
5091
5092         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
5093         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
5094         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
5095
5096         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
5097         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
5098         * modules/vasprintf (Depends-on): Add EOVERFLOW.
5099
5100         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
5101         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
5102         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
5103         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
5104         (Depends-on): Add EOVERFLOW.
5105         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
5106         (Depends-on): Add EOVERFLOW.
5107         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
5108         (Depends-on): Add EOVERFLOW.
5109         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
5110         (Depends-on): Add EOVERFLOW.
5111         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
5112         (Depends-on): Add EOVERFLOW.
5113         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
5114         (Depends-on): Add EOVERFLOW.
5115         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
5116         (Depends-on): Add EOVERFLOW.
5117         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
5118         (Depends-on): Add EOVERFLOW.
5119
5120         * lib/sprintf.c (EOVERFLOW): Remove fallback.
5121         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
5122         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
5123
5124         * lib/snprintf.c (EOVERFLOW): Remove fallback.
5125         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
5126         * modules/snprintf (Depends-on): Add EOVERFLOW.
5127
5128         * lib/poll.c (EOVERFLOW): Remove fallback.
5129         * modules/poll (Depends-on): Add EOVERFLOW.
5130
5131         * lib/getugroups.c (EOVERFLOW): Remove fallback.
5132         * modules/getugroups (Depends-on): Add EOVERFLOW.
5133
5134         * lib/getdelim.c (EOVERFLOW): Remove fallback.
5135         * modules/getdelim (Depends-on): Add EOVERFLOW.
5136
5137         * lib/ftell.c (EOVERFLOW): Remove fallback.
5138         * modules/ftell (Depends-on): Add EOVERFLOW.
5139
5140         * lib/fprintf.c (EOVERFLOW): Remove fallback.
5141         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
5142         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
5143
5144         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
5145
5146         * modules/EOVERFLOW-tests: New file.
5147         * tests/test-EOVERFLOW.c: New file.
5148
5149         * modules/EOVERFLOW: New file.
5150         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
5151
5152 2008-03-30  Bruno Haible  <bruno@clisp.org>
5153
5154         Fix bug introduced on 2007-06-10.
5155         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
5156         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
5157
5158 2008-03-30  Bruno Haible  <bruno@clisp.org>
5159
5160         Improve freadseek's efficiency after ungetc.
5161         * lib/freadseek.c: Include freadahead.h.
5162         (freadptrinc): New function, extracted from freadseek.
5163         (freadseek): Use it in a loop. Use freadahead to determine the number
5164         of loop iterations.
5165         * modules/freadseek (Depends-on): Add freadahead.
5166         (configure.ac): Require AC_C_INLINE.
5167
5168 2008-03-30  Bruno Haible  <bruno@clisp.org>
5169
5170         * lib/freadseek.c (freadseek): Don't ignore the return value of
5171         freadptr.
5172
5173 2008-03-29  Eric Blake  <ebb9@byu.net>
5174
5175         Add hex float support.
5176         * modules/strtod (Depends-on): Add c-ctype.
5177         (Link): Mention POW_LIB.
5178         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
5179         whitespace between 'e' and exponent.
5180         * tests/test-strtod.c (main): Enable hex float tests.
5181         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
5182         now provides.
5183
5184         Document various strtod bugs, with some fixes.
5185         * doc/posix-functions/strtod.texi (strtod): Document bugs with
5186         "-0x", "inf", "nan", and hex constants.
5187         * doc/posix-functions/atof.texi (atof): Likewise.
5188         * modules/stdlib (Makefile.am): Support strtod.
5189         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
5190         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
5191         detect additional strtod bugs.
5192         * lib/stdlib.in.h (rpl_strtod): Add declarations.
5193         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
5194         bool where appropriate.  Parse 'inf' and 'nan'.
5195         * tests/test-strtod.c: New file.
5196         * modules/strtod (Depends-on): Add stdbool, stdlib.
5197         (configure.ac): Turn on module indicator.
5198         * modules/strtod-tests: New module.
5199
5200 2008-03-29  Eric Blake  <ebb9@byu.net>
5201
5202         Fix ftell on mingw.
5203         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
5204         * modules/ftell-tests (Depends-on): Add binary-io.
5205         * modules/ftello-tests (Depends-on): Likewise.
5206         * tests/test-ftell.c (main): Enhance test to cover behavior after
5207         ungetc.  Enforce binary mode.
5208         * tests/test-ftello.c (main): Likewise.
5209
5210         Pass test-freadseek on cygwin.
5211         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
5212         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
5213         ungetc buffer.
5214
5215         * tests/test-fflush2.c (main): Fix typo.
5216
5217 2008-03-29  Bruno Haible  <bruno@clisp.org>
5218
5219         * tests/test-fflush2.c (main): Temporarily disable the contents of
5220         this test.
5221         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
5222         Reported by Eric Blake.
5223
5224 2008-03-28  Simon Josefsson  <simon@josefsson.org>
5225
5226         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
5227         (GC_SHA224_DIGEST_SIZE): Add.
5228
5229         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
5230         (gc_hash_digest_length): Likewise.
5231         (gc_hash_buffer): Likewise.
5232
5233 2008-03-25  Bruno Haible  <bruno@clisp.org>
5234
5235         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
5236         detail which gettext release to use.
5237         Reported by Simon Josefsson.
5238
5239 2008-03-26  Jim Meyering  <meyering@redhat.com>
5240
5241         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
5242         * modules/gnumakefile (clean-GNUmakefile): Also, use
5243         test ... && ... || : syntax rather than if-then ... fi.
5244
5245         gnumakefile: Don't double-quote-expand $(VPATH) value.
5246         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
5247
5248 2008-03-24  Eric Blake  <ebb9@byu.net>
5249
5250         Alter GNUmakefile to install into top directory.
5251         * modules/maintainer-makefile: Split, and add dependency...
5252         * modules/gnumakefile: to this new module.
5253         * build-aux/GNUmakefile: Move...
5254         * top/GNUmakefile: ...here.
5255         * build-aux/maint.mk: Move...
5256         * top/maint.mk: ...here.
5257         * MODULES.html.sh (Support for maintaining...): Document new
5258         module.
5259
5260 2008-03-23  Bruno Haible  <bruno@clisp.org>
5261
5262         * gnulib-tool: New options --vc-files, --no-vc-files.
5263         (func_usage): Document them.
5264         (vc_files): New variable.
5265         (func_import): Consider vc_files.
5266         (func_create_testdir): Set vc_files to empty.
5267         Suggested by Jim Meyering and Karl Berry.
5268
5269 2008-03-23  Bruno Haible  <bruno@clisp.org>
5270
5271         Fix regex compilation error on HP-UX 11.
5272         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
5273         * modules/regex (Files): Add m4/mbstate_t.m4.
5274         Reported by Ton Voon <ton.voon@altinity.com>.
5275
5276 2008-03-23  Bruno Haible  <bruno@clisp.org>
5277
5278         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
5279
5280 2008-03-23  Eric Blake  <ebb9@byu.net>
5281             Bruno Haible  <bruno@clisp.org>
5282
5283         Install files from top/ in the destination directory.
5284         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
5285         augmentation also for the files from top/.
5286         (func_import, func_create_testdir): Rewrite file names:
5287         top/filename -> filename.
5288
5289 2008-03-23  Bruno Haible  <bruno@clisp.org>
5290
5291         Tweak "gnulib --version" output.
5292         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
5293
5294 2008-03-23  Bruno Haible  <bruno@clisp.org>
5295
5296         Tweak "gnulib --version" output.
5297         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
5298         rather than contents of ChangeLog, when possible.
5299
5300 2008-03-21  Eric Blake  <ebb9@byu.net>
5301
5302         More --version tweaks.
5303         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
5304         date of last ChangeLog entry.
5305
5306 2008-03-21  Jim Meyering  <meyering@redhat.com>
5307
5308         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
5309
5310 2008-03-20  Eric Blake  <ebb9@byu.net>
5311
5312         VPATH fix.
5313         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
5314
5315 2008-03-20  Simon Josefsson  <simon@josefsson.org>
5316
5317         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
5318         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
5319
5320 2008-03-20  Eric Blake  <ebb9@byu.net>
5321
5322         Sync GNUmakefile with coreutils.
5323         * build-aux/GNUmakefile (have-Makefile): Rename...
5324         (_have-Makefile): ...to this, for namespace consideration.
5325         (GNUmakefile.cfg): Include, if present.
5326         (_autoreconf): Define a default.
5327         (_is-dist-target): New rule for rebuilds to pick up intra-release
5328         version.
5329         (maint-cfg.mk): Rename...
5330         (cfg.mk): ...to this.
5331
5332 2008-03-18  Jim Meyering  <meyering@redhat.com>
5333
5334         New script and module: mktempd
5335         * MODULES.html.sh (maint+release support): Add mktempd.
5336         * build-aux/mktempd: New file.
5337         * modules/mktempd: New file.
5338
5339 2008-03-15  Jim Meyering  <meyering@redhat.com>
5340
5341         Undo last change.
5342         * lib/sha1.c, lib/md5.c: 63 != ~63.
5343         Reported by Andreas Schwab.
5344
5345         sha1.c, md5.c: Hoist a redundant expression.
5346         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
5347         "ctx->buflen" only once, before calling *_process_block.
5348         * lib/md5.c (md5_process_bytes): Likewise.
5349
5350 2008-03-14  Eric Blake  <ebb9@byu.net>
5351
5352         Bump copyright year in files generated by gnulib-tool.
5353         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
5354         gnulib-tool, rather than hard-coding it.
5355
5356         Fix 'gnulib-tool --version' output to work with git.
5357         * gnulib-tool (func_gnulib_dir): New function, extracted from...
5358         (startup): ...here.
5359         (func_version): Use it to invoke git-version-gen, rather than
5360         relying on CVS keyword expansion.  Modernize wording.
5361         (cvsdatestamp, last_checkin_date, version): Kill unused
5362         variables.
5363
5364 2008-03-12  Jim Meyering  <meyering@redhat.com>
5365
5366         Recognize optional cast of the argument to free.
5367         * build-aux/useless-if-before-free: Update regexps.
5368
5369         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
5370
5371 2008-03-11  Bruno Haible  <bruno@clisp.org>
5372
5373         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
5374         by a single package.
5375         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
5376         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
5377         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
5378         Reported by Sam Steingold <sds@gnu.org>.
5379
5380 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5381
5382         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
5383         repositories.
5384
5385 2008-03-11  Bruno Haible  <bruno@clisp.org>
5386
5387         Avoid conflicts between local macro definitions.
5388         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
5389         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
5390
5391 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
5392             Bruno Haible  <bruno@clisp.org>
5393
5394         Make va_copy work with some version of xlc on AIX 5.1.
5395         * lib/stdarg.in.h: New file.
5396         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
5397         On AIX, use a <stdarg.h> file substitute.
5398         * modules/stdarg (Files): Add lib/stdarg.in.h.
5399         (Depends-on): Add include_next.
5400         (Makefile.am): Build a stdarg.h substitute if requested.
5401         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
5402
5403 2008-03-10  Bruno Haible  <bruno@clisp.org>
5404
5405         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
5406         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
5407         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5408
5409 2008-03-10  Bruno Haible  <bruno@clisp.org>
5410
5411         * modules/stdlib (Depends-on): Add include_next, remove
5412         absolute-header.
5413
5414 2008-03-09  Bruno Haible  <bruno@clisp.org>
5415
5416         * lib/freadahead.h (freadahead): Document more precisely.
5417         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
5418         the sum of both buffer sizes.
5419         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
5420         * NEWS: Document the change.
5421
5422 2008-03-09  Bruno Haible  <bruno@clisp.org>
5423
5424         Extend freadptr to return also the buffer size.
5425         * lib/freadptr.h (freadptr): Add sizep argument.
5426         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
5427         (freadptr): Add sizep argument. Determine buffer size like freadahead
5428         does.
5429         * tests/test-freadptr.c: Don't include freadahead.h.
5430         (main): Adapt for new calling convention of freadptr.
5431         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
5432         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
5433         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
5434         tests/test-freadptr2.sh.
5435         (Depends): Remove freadahead.
5436         (TESTS): Add test-freadptr2.sh.
5437         (check_PROGRAMS): Add test-freadptr2.
5438
5439 2008-03-09  Bruno Haible  <bruno@clisp.org>
5440
5441         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
5442         Report and solution by Simon Josefsson.
5443
5444 2008-03-06  Bruno Haible  <bruno@clisp.org>
5445
5446         Make fflush after ungetc work on BSD platforms.
5447         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
5448         * tests/test-fflush2.c: New file.
5449         * tests/test-fflush2.sh: New file.
5450         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
5451         tests/test-fflush2.c.
5452         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
5453         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
5454
5455 2008-03-06  Eric Blake  <ebb9@byu.net>
5456
5457         Likewise for ftello.
5458         * modules/ftello (Dependencies): Add extensions.
5459         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
5460
5461 2008-03-06  Bruno Haible  <bruno@clisp.org>
5462
5463         * modules/fseeko (Dependencies): Add extensions.
5464         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
5465         Needed on glibc systems.
5466
5467 2008-03-06  Bruno Haible  <bruno@clisp.org>
5468
5469         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
5470         email address.
5471         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5472
5473 2008-03-06  Bruno Haible  <bruno@clisp.org>
5474
5475         * users.txt: Add libgnupdf.
5476
5477 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
5478
5479         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
5480         (Header File Substitutes, Function Substitutes,
5481         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
5482         (Build robot for gnulib): Fix typo.
5483
5484 2008-03-06  Bruno Haible  <bruno@clisp.org>
5485
5486         * doc/gnulib-tool.texi (VCS Issues): Small updates.
5487         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
5488
5489 2008-03-06  Bruno Haible  <bruno@clisp.org>
5490
5491         * doc/func.texi: New file, extracted from doc/gnulib.texi.
5492         * doc/gnulib.texi: Include it.
5493
5494 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5495
5496         * modules/func (License): Change license to unlimited; there was
5497         no LGPL parts in the module anyway.
5498
5499 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5500
5501         * modules/__func__: Renamed to modules/func.
5502         * modules/__func__-tests: Renamed to modules/func-tests.
5503         * tests/test-__func__.c: Renamed to tests/test-func.c.
5504         * m4/__func__.m4: Renamed to m4/func.m4.
5505         * doc/gnulib.texi (__func__): Section renamed to func.
5506         Suggested by Eric Blake <ebb9@byu.net>.
5507
5508 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5509
5510         * doc/gnulib.texi (__func__): Use C99 terminology when talking
5511         about __func__.  Make example self-contained.  Suggested by Eric
5512         Blake <ebb9@byu.net>.
5513
5514         * tests/test-__func__.c (main): Avoid extraneous () around __func.
5515         Suggested by Eric Blake <ebb9@byu.net>.
5516
5517 2008-03-06  Simon Josefsson  <simon@josefsson.org>
5518
5519         * modules/__func__: New file.
5520         * modules/__func__-tests: New file.
5521         * tests/test-__func__.c: New file.
5522         * m4/__func__.m4: New file.
5523         * doc/gnulib.texi (__func__): Document __func__ module.
5524
5525 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5526
5527         * modules/byteswap (License): Re-license as LGPLv2+.
5528
5529 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5530
5531         * doc/Makefile: Add pdf target.
5532
5533 2008-03-05  Simon Josefsson  <simon@josefsson.org>
5534
5535         * modules/inline (License): Use 'unlimited', since there are only
5536         *.m4 files in this module.
5537
5538 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5539             Bruno Haible  <bruno@clisp.org>
5540
5541         Add support for HP C 7.1 on OpenVMS 8.3.
5542         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
5543
5544 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
5545
5546         Update VMS specifics.
5547         * lib/getopt.c [VMS]: Remove include of unixlib.h.
5548
5549 2008-03-02  Jim Meyering  <meyering@redhat.com>
5550
5551         Remove the last dependency on the "free" module.
5552         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
5553         Reported by Bob Proulx.
5554
5555         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
5556
5557         Remove useless "if" tests before free.  Deprecate "free" module.
5558         * doc/posix-functions/free.texi: Mention that this
5559         module is no longer useful.
5560         * modules/free (Notice): Say this module is obsolete.
5561         * modules/readutmp (Depends-on): Remove free.
5562         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
5563         * lib/putenv.c (putenv): Likewise.
5564         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
5565         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
5566         * tests/test-c-strcasestr.c (main): Likewise.
5567         * tests/test-c-strstr.c (main): Likewise.
5568         * tests/test-mbscasestr1.c (main): Likewise.
5569         * tests/test-mbscasestr2.c (main): Likewise.
5570         * tests/test-mbsstr1.c (main): Likewise.
5571         * tests/test-mbsstr2.c (main): Likewise.
5572         * tests/test-memmem.c (main): Likewise.
5573         * tests/test-strcasestr.c (main): Likewise.
5574         * tests/test-striconv.c (main): Likewise.
5575         * tests/test-striconveh.c (main): Likewise.
5576         * tests/test-striconveha.c (main): Likewise.
5577         * tests/test-strstr.c (main): Likewise.
5578
5579         * build-aux/git-version-gen: Adjust a comment and the Usage string.
5580
5581         bootstrap: sync from coreutils again
5582         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
5583
5584 2008-03-01  Jim Meyering  <meyering@redhat.com>
5585
5586         bootstrap: sync from coreutils
5587         * build-aux/bootstrap (update_po_files): Copy a .po file into place
5588         also when the target doesn't exist.
5589
5590 2008-03-01  Eric Blake  <ebb9@byu.net>
5591
5592         Fix bugs in last patch.
5593         * lib/memchr2.c (memchr2): Fix typo.
5594         * tests/test-memchr2.c: Test previous bug, and don't use GNU
5595         extension.
5596         Reported by Bruce Korb.
5597
5598         New module 'memchr2'.
5599         * modules/memchr2: New file.
5600         * modules/memchr2-tests: Likewise.
5601         * lib/memchr2.h: Likewise.
5602         * lib/memchr2.c: Likewise, based on memchr.c.
5603         * tests/test-memchr2.c: New test.
5604         * MODULES.html.sh (String handling): Add memchr2.
5605
5606 2008-02-29  Bruno Haible  <bruno@clisp.org>
5607
5608         * modules/freadseek-tests: New file.
5609         * tests/test-freadseek.sh: New file.
5610         * tests/test-freadseek.c: New file.
5611
5612         New module 'freadseek'.
5613         * modules/freadseek: New file.
5614         * lib/freadseek.h: New file.
5615         * lib/freadseek.c: New file.
5616         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
5617
5618 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
5619
5620         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
5621         wydawca.
5622
5623         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
5624         program_invocation_name and program_invocation_short_name are
5625         present.
5626
5627 2008-02-28  Bruno Haible  <bruno@clisp.org>
5628
5629         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
5630         * tests/test-freadptr.sh: Also test non-seekable stdin.
5631
5632 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
5633
5634         * build-aux/bootstrap (source_base, m4_base)
5635         (doc_base, tests_base): New variables.
5636         (gnulib_tool_options): Do not hardcode base directories, use
5637         the above variables instead.
5638
5639 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
5640
5641         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
5642
5643 2008-02-28  Bruno Haible  <bruno@clisp.org>
5644
5645         * modules/freadptr-tests: New file.
5646         * tests/test-freadptr.sh: New file.
5647         * tests/test-freadptr.c: New file.
5648
5649         New module 'freadptr'.
5650         * modules/freadptr: New file.
5651         * lib/freadptr.h: New file.
5652         * lib/freadptr.c: New file.
5653         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
5654
5655 2008-02-26  Karl Berry  <karl@freefriends.org>
5656
5657         Sync from Libtool:
5658         * libltdl/argz.c (argz_add, argz_count): New functions.
5659         * libltdl/argz.in.h: Declare them.
5660         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
5661
5662 2008-02-22  Bruno Haible  <bruno@clisp.org>
5663
5664         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
5665         is a pointer type.  Needed for HP-UX 10.
5666         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
5667         * doc/posix-functions/gmtime_r.texi: Likewise.
5668         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
5669
5670 2008-02-24  Bruno Haible  <bruno@clisp.org>
5671
5672         * modules/environ-tests: New file.
5673         * tests/test-environ.c: New file.
5674
5675         New module 'environ'.
5676         * modules/environ: New file.
5677         * lib/unistd.in.h (environ): New declaration.
5678         * m4/environ.m4: New file.
5679         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
5680         after use.
5681         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
5682         HAVE_DECL_ENVIRON.
5683         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
5684         HAVE_DECL_ENVIRON.
5685         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
5686         wrong claim that 'environ' is missing on some systems.
5687         * modules/execute (Depends-on): Add environ.
5688         * lib/execute.c (environ): Remove fallback declaration.
5689         * modules/pipe (Depends-on): Add environ.
5690         * lib/pipe.c (environ): Remove fallback declaration.
5691         * modules/setenv (Depends-on): Add environ.
5692         * lib/setenv.c (environ): Remove fallback declaration.
5693         * modules/unsetenv (Depends-on): Add environ.
5694         * lib/unsetenv.c (environ): Remove fallback declaration.
5695         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
5696         m4/environ.m4.
5697         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
5698         (gl_PREREQ_UNSETENV): Likewise.
5699
5700 2008-02-24  Bruno Haible  <bruno@clisp.org>
5701
5702         * doc/posix-functions/environ.texi: Document the MacOS X problem.
5703
5704 2008-02-20  Bob Proulx  <bob@proulx.com>
5705
5706         Enable use of older two part flavor 'git describe'.
5707         * build-aux/git-version-gen: If using the older two part flavor of
5708         git version then recreate the third part now present in the
5709         newer three part flavor of git describe.
5710
5711 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
5712
5713         * lib/fts.c (fts_build): Typo correction to comment.
5714
5715 2008-02-17  Bruno Haible  <bruno@clisp.org>
5716
5717         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
5718         generating no-op conflicts.
5719
5720 2008-02-17  Bruno Haible  <bruno@clisp.org>
5721
5722         Speed up by 10%.
5723         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
5724         result_entries, rather than an index-based loop.
5725
5726 2008-02-17  Bruno Haible  <bruno@clisp.org>
5727
5728         Speed up by 25%.
5729         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
5730         'hashcode_cached'.
5731         (entry_create): New function.
5732         (entry_hashcode): Use the cached hashcode if possible.
5733         (read_changelog_file, try_split_merged_entry): Use entry_create.
5734
5735 2008-02-17  Bruno Haible  <bruno@clisp.org>
5736
5737         Speed up from O(n^2) to O(n) for long ChangeLog files.
5738         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
5739         (read_changelog_file): Change implementation of entries_reversed list
5740         to rbtreehash.
5741         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
5742
5743 2008-02-17  Bruno Haible  <bruno@clisp.org>
5744
5745         New option --split-merged-entry.
5746         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
5747         (find_paragraph_end, try_split_merged_entry): New functions.
5748         (long_options): Add option --split-merged-entry.
5749         (usage): Document option --split-merged-entry.
5750         (main): Implement option --split-merged-entry.
5751         Reported by Eric Blake.
5752
5753 2008-02-17  Bruno Haible  <bruno@clisp.org>
5754
5755         * lib/git-merge-changelog.c: Include c-strstr.h.
5756         (main): Support the "git pull --rebase" situation.
5757         * modules/git-merge-changelog (Depends-on): Add c-strstr.
5758         Reported by Eric Blake.
5759
5760 2008-02-16  Eric Blake  <ebb9@byu.net>
5761
5762         Avoid doubling \ in common case of "c-maybe" quoting style.
5763         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
5764         eliding outer quotes.
5765         * lib/quotearg.h: Document this.
5766         * tests/test-quotearg.c (result_strings, inputs, results_g)
5767         (flag_results, locale_results): Test it by adding a new string to
5768         each test group.
5769         (compare_strings): Test new string.
5770
5771 2008-02-13  Eric Blake  <ebb9@byu.net>
5772
5773         Avoid trigraph quoting in default output.
5774         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
5775         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
5776         unless explicitly requested.
5777         * tests/test-quotearg.c (flag_results, main): Add additional tests.
5778
5779 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
5780
5781         Don't rely on signed integer overflowing to negative value.
5782         * lib/getugroups.c (getugroups): Include <limits.h>.
5783         Instead, compare against INT_MAX, and increment only if the test passes.
5784
5785 2008-02-13  Jim Meyering  <meyering@redhat.com>
5786         and Eric Blake  <ebb9@byu.net>
5787
5788         Avoid shadowing warning and compile errors on Linux.
5789         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
5790         forwarding macros on Linux.
5791         (dcgettext): Define a stub, for Linux.
5792         (results_g, main): Avoid warnings.
5793
5794 2008-02-12  Eric Blake  <ebb9@byu.net>
5795
5796         Silence warning in last patch.
5797         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
5798
5799         Quotearg part 4: add tests, fix c-maybe colon quoting.
5800         * lib/quotearg.h: Improve documentation.
5801         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
5802         escapes when adding outer quotes.  When quoting trigraphs, use
5803         valid C notation.  When quoting NUL, omit extra characters if next
5804         character is not digit.  Alter prototype.
5805         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
5806         callers.
5807         * modules/quotearg-tests: New module.
5808         * tests/test-quotearg.c: New test.
5809
5810 2008-02-07  Eric Blake  <ebb9@byu.net>
5811
5812         Quotearg part 3: add flag to control outer quote elision.
5813         * lib/quotearg.h (c_maybe_quoting_style): New style.
5814         (enum quoting_flags): Better documentation of flags.
5815         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
5816         c-maybe style.
5817         (quotearg_buffer_restyled): Handle new flag to elide outer
5818         quotes.
5819
5820         Quotearg part 2: add flag that can control NUL elision.
5821         * lib/quotearg.h (set_quoting_flags): New prototype.
5822         * lib/quotearg.c (struct quoting_options): Add flag field.
5823         (set_quoting_flags): New function.
5824         (quotearg_buffer_restyled): Add flags parameter.
5825         (quotearg_alloc_mem): Set the flag if length cannot be returned.
5826         (quotearg_n_options): Set the flag, since length cannot be
5827         returned.
5828         (quoting_options_from_style): Default flags correctly.
5829
5830         Quotearg part 1: more wrappers, restore quotearg_char state.
5831         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
5832         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
5833         (quotearg_colon_mem): New wrappers.
5834         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
5835         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
5836         functions.
5837         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
5838         (quotearg_colon_mem): New functions.
5839
5840 2008-02-11  Bruno Haible  <bruno@clisp.org>
5841
5842         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
5843         library in the current directory: it does not work with parallel make.
5844         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5845
5846 2008-02-11  Bruno Haible  <bruno@clisp.org>
5847
5848         * .gitattributes: New file.
5849
5850 2008-02-11  Jim Meyering  <meyering@redhat.com>
5851
5852         useless-if-before-free: Fix reversed exit values.
5853         * build-aux/useless-if-before-free: Use correct values
5854         for EXIT_MATCH and EXIT_NO_MATCH.
5855
5856         * build-aux/useless-if-before-free: Close stdout carefully.
5857
5858 2008-02-10  Bruno Haible  <bruno@clisp.org>
5859
5860         New module 'git-merge-changelog'.
5861         * modules/git-merge-changelog: New file.
5862         * lib/git-merge-changelog.c: New file.
5863
5864 2008-02-10  Jim Meyering  <meyering@redhat.com>
5865
5866         useless-if-before-free: New option: --list (-l).
5867
5868         useless-if-before-free: Don't exit immediately upon open failure.
5869         * build-aux/useless-if-before-free: Exit 2 for errors.
5870         Upon failure to open a file, don't exit immediately.
5871         Rather, just warn and continue with any remaining files.
5872
5873 2008-02-10  Bruno Haible  <bruno@clisp.org>
5874
5875         New abstract list operation 'node_set_value'.
5876         * lib/gl_list.h (gl_list_node_set_value): New function.
5877         (struct gl_list_implementation): New field node_set_value.
5878         * lib/gl_list.c (gl_list_node_set_value): New function.
5879         * lib/gl_array_list.c (gl_array_node_set_value): New function.
5880         (gl_array_list_implementation): Update.
5881         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
5882         (gl_carray_list_implementation): Update.
5883         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
5884         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
5885         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
5886         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
5887         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
5888         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
5889         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
5890         Update.
5891         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
5892         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
5893         (gl_sublist_list_implementation): Update.
5894
5895 2008-02-10  Bruno Haible  <bruno@clisp.org>
5896
5897         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
5898         Needed when ELEMENT is #defined to 'some_type *'.
5899
5900 2008-02-10  Jim Meyering  <meyering@redhat.com>
5901
5902         New script and module: useless-if-before-free
5903         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
5904         * build-aux/useless-if-before-free: New file.
5905         * modules/useless-if-before-free: New file.
5906
5907         * build-aux/gitlog-to-changelog: Use committer date, not author date.
5908
5909         xstrtol_error: Fix typo.
5910         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
5911         s/exit_failure/exit_status/.
5912
5913 2008-02-09  Jim Meyering  <meyering@redhat.com>
5914
5915         New script and module: gitlog-to-changelog
5916         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
5917         * modules/gitlog-to-changelog: New file.
5918         * build-aux/gitlog-to-changelog: New file.
5919
5920 2008-02-08  Jim Meyering  <meyering@redhat.com>
5921
5922         Avoid two "parameter unused" warnings.
5923         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
5924         Mark "st" as used.
5925
5926         Use "git COMMAND", not "git-COMMAND".
5927         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
5928         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
5929         * build-aux/git-version-gen: Use "git status", not "git-status".
5930
5931 2008-02-07  Bruno Haible  <bruno@clisp.org>
5932
5933         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
5934         Avoids a crash on Windows Vista.
5935         Reported by Adam Strzelecki <ono@java.pl> via
5936         Simon Josefsson <simon@josefsson.org>.
5937
5938 2008-02-06  Bruno Haible  <bruno@clisp.org>
5939
5940         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
5941         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
5942         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
5943         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
5944         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5945         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5946         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
5947         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
5948         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5949         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5950         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5951         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5952         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5953         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5954         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5955         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
5956         left-adjust flag.
5957         * tests/test-snprintf-posix.h (test_function): Likewise.
5958         * tests/test-sprintf-posix.h (test_function): Likewise.
5959         * tests/test-vasprintf-posix.c (test_function): Likewise.
5960         * doc/posix-functions/fprintf.texi: Update.
5961         * doc/posix-functions/printf.texi: Update.
5962         * doc/posix-functions/snprintf.texi: Update.
5963         * doc/posix-functions/sprintf.texi: Update.
5964         * doc/posix-functions/vfprintf.texi: Update.
5965         * doc/posix-functions/vprintf.texi: Update.
5966         * doc/posix-functions/vsnprintf.texi: Update.
5967         * doc/posix-functions/vsprintf.texi: Update.
5968         Reported by Peter Fales <psfales@alcatel-lucent.com>.
5969
5970 2008-02-06  Bruno Haible  <bruno@clisp.org>
5971
5972         Fix bug introduced on 2008-01-26.
5973         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
5974
5975 2008-02-06  Bruno Haible  <bruno@clisp.org>
5976
5977         Fix bug introduced on 2007-06-10.
5978         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
5979         !NEED_PRINTF_FLAG_ZERO.
5980
5981 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
5982
5983         getloadavg: use libperfstat on AIX5
5984         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
5985
5986 2008-02-03  Bruno Haible  <bruno@clisp.org>
5987
5988         * lib/diffseq.h: Add comments about required #includes.
5989         Reported by Michael Biggs <gnulib@doubleplum.net>.
5990
5991 2008-02-01  Bruno Haible  <bruno@clisp.org>
5992
5993         * users.txt: Add gnuit.
5994
5995 2008-01-31  Bruno Haible  <bruno@clisp.org>
5996
5997         * lib/md4.c (set_uint32): Mark as inline.
5998         * lib/md5.c (set_uint32): Likewise.
5999         * lib/sha1.c (set_uint32): Likewise.
6000         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
6001         * m4/md5.m4 (gl_MD5): Likewise.
6002         * m4/sha1.m4 (gl_SHA1): Likewise.
6003
6004 2008-01-31  Jim Meyering  <meyering@redhat.com>
6005
6006         Use "sizeof VAR", rather than a literal "4".
6007         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
6008         * lib/md4.c (md4_read_ctx): Likewise.
6009         * lib/sha1.c (sha1_read_ctx): Likewise.
6010
6011 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6012
6013         * tests/test-sha1.c: New file, based on test-md5.c.
6014
6015         * modules/crypto/sha1-tests: New file.
6016
6017 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6018
6019         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
6020
6021 2008-01-31  Jim Meyering  <meyering@redhat.com>
6022
6023         Prefer "sizeof v" over the equivalent "4".
6024         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
6025         * lib/md5.c (set_uint32): Likewise.
6026         * lib/sha1.c (set_uint32): Likewise.
6027
6028 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6029
6030         * lib/sha1.c (set_uint32): Mark function as static.
6031
6032 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6033
6034         md2: clarify comments to say that alignment is not required.
6035         * lib/md2.h: Remove warning about alignment in comment.
6036         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
6037         never been required.
6038
6039 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6040
6041         md4: adapt alignment constraint fix from sha1.
6042         * lib/md4.c (set_uint32): New function, from sha1.c
6043         (md4_read_ctx): Use it.
6044         (md4_finish_ctx): Doc fix.
6045         * lib/md4.h: Doc fix.
6046
6047 2008-01-31  Simon Josefsson  <simon@josefsson.org>
6048
6049         md5: adapt alignment constraint fix from sha1.
6050         * lib/md5.c (set_uint32): New function, from sha1.c
6051         (md5_read_ctx): Use it.
6052         (md5_finish_ctx): Doc fix.
6053         * lib/md5.h: Doc fix.
6054
6055 2008-01-30  Peter Palfrader  <weasel@debian.org>
6056
6057         sha1: remove the result buffer alignment constraint
6058         * lib/sha1.c (set_uint32): New function.
6059         (sha1_read_ctx): Rewrite to remove the result buffer alignment
6060         constraint.
6061         (sha1_finish_ctx): Remove comment warning about alignment constraint.
6062         * lib/sha1.h: Likewise.
6063
6064 2008-01-30  Andreas Schwab  <schwab@suse.de>
6065             Bruno Haible  <bruno@clisp.org>
6066
6067         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
6068         correct definition of LDBL_MIN_EXP.
6069
6070 2008-01-30  Karl Berry  <karl@gnu.org>
6071
6072         * config/srclist-update: try to preserve x bit on updates.
6073         * config/srclistvars.sh: update for karl.
6074
6075 2008-01-29  Jim Meyering  <meyering@redhat.com>
6076
6077         vasnprintf.c: Avoid warning about unused label
6078         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
6079         "overflow" label definition and associated code with the
6080         same cpp condition that guards the sole use of that label.
6081
6082 2008-01-26  Bruno Haible  <bruno@clisp.org>
6083
6084         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
6085         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
6086         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
6087         * lib/isnanl-nolibm.h (isnanl): Likewise.
6088         Reported by Paul Eggert <eggert@cs.ucla.edu>.
6089
6090 2008-01-26  Bruno Haible  <bruno@clisp.org>
6091
6092         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
6093         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
6094
6095 2008-01-26  Bruno Haible  <bruno@clisp.org>
6096
6097         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
6098         GCC >= 4.0 built-in.
6099         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
6100
6101 2008-01-26  Bruno Haible  <bruno@clisp.org>
6102
6103         Rename isnan, applicable to 'double' only, to isnand.
6104         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
6105         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
6106         (configure.ac): Update.
6107         (Include): Replace "isnan.h" with "isnand.h".
6108         * m4/isnand.m4: Renamed from m4/isnan.m4.
6109         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
6110         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
6111         instead of isnan.c.
6112         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
6113         instead of HAVE_ISNAN_IN_LIBC.
6114         (isnand): Renamed from isnan.
6115         * lib/isnand.c: New file.
6116         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
6117         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
6118         (Makefile.am): Update.
6119         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
6120         Include isnand.h instead of isnan.h.
6121         (main): Test isnand instead of isnan.
6122         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
6123         isnan-nolibm.
6124         * modules/frexp (Depends-on): Likewise.
6125         * modules/frexp-tests (Depends-on): Likewise.
6126         * modules/frexp-nolibm (Depends-on): Likewise.
6127         * modules/frexp-nolibm-tests (Depends-on): Likewise.
6128         * modules/isfinite (Depends-on): Likewise.
6129         * modules/round-tests (Depends-on): Likewise.
6130         * modules/signbit (Depends-on): Likewise.
6131         * modules/signbit-tests (Depends-on): Likewise.
6132         * modules/snprintf-posix (Depends-on): Likewise.
6133         * modules/sprintf-posix (Depends-on): Likewise.
6134         * modules/trunc-tests (Depends-on): Likewise.
6135         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
6136         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6137         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6138         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6139         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6140         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6141         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6142         * modules/vasnprintf-posix (Depends-on): Likewise.
6143         * modules/vasprintf-posix (Depends-on): Likewise.
6144         * modules/vfprintf-posix (Depends-on): Likewise.
6145         * modules/vsnprintf-posix (Depends-on): Likewise.
6146         * modules/vsprintf-posix (Depends-on): Likewise.
6147         * lib/frexp.c: Include isnand.h instead of isnan.h.
6148         (ISNAN): Set to isnand instead of isnan.
6149         * lib/isfinite.c: Include isnand.h instead of isnan.h.
6150         (gl_isfinited): Use isnand instead of isnan.
6151         * lib/signbitd.c: Include isnand.h instead of isnan.h.
6152         (gl_signbitd): Use isnand instead of isnan.
6153         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
6154         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
6155         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
6156         (main): Use isnand instead of isnan.
6157         * tests/test-round1.c: Include isnand.h.
6158         (main): Use isnand instead of isnan.
6159         * tests/test-round2.c: Include isnand.h instead of isnan.h.
6160         (ISNAN): Set to isnand instead of isnan.
6161         * tests/test-trunc1.c: Include isnand.h.
6162         (main): Use isnand instead of isnan.
6163         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
6164         (equal): Use isnand instead of isnan.
6165         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
6166         isnand-nolibm.
6167         * NEWS: Mention the change.
6168
6169 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
6170             Bruno Haible  <bruno@clisp.org>
6171
6172         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
6173         the GCC builtins for signbits are present and set
6174         REPLACE_SIGNBIT_USING_GCC if so.
6175         * lib/math.in.h (signbit): Define using GCC builtins if
6176         REPLACE_SIGNBIT_USING_GCC is set.
6177         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
6178         REPLACE_SIGNBIT_USING_GCC.
6179         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
6180
6181 2008-01-25  Jim Meyering  <meyering@redhat.com>
6182
6183         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
6184         * lib/poll.c: Include <config.h>, not "config.h".
6185         * tests/test-getaddrinfo.c: Likewise.
6186
6187 2008-01-25  Simon Josefsson  <simon@josefsson.org>
6188
6189         * modules/sockets-tests: New file.
6190
6191 2008-01-24  Simon Josefsson  <simon@josefsson.org>
6192
6193         * modules/sockets: New module, can be used to call WSA_Startup and
6194         WSA_Cleanup when needed.
6195
6196         * lib/sockets.h, lib/sockets.c: New files.
6197
6198         * m4/sockets.m4: New file.
6199
6200         * tests/test-sockets.c: New file.
6201
6202 2008-01-19  Bruno Haible  <bruno@clisp.org>
6203
6204         * doc/posix-headers: Renamed from doc/headers.
6205         * doc/posix-functions: Renamed from doc/functions.
6206         * doc/gnulib.texi: Update.
6207
6208 2008-01-19  Bruno Haible  <bruno@clisp.org>
6209
6210         * doc/glibc-functions/strcasestr.texi: Include contents of
6211         doc/functions/strcasestr.texi, fixing the list of platforms.
6212         * doc/functions/strcasestr.texi: Remove file.
6213
6214 2008-01-19  Bruno Haible  <bruno@clisp.org>
6215
6216         * doc/glibc-functions/memmem.texi: Include contents of
6217         doc/functions/memmem.texi.
6218         * doc/functions/memmem.texi: Remove file.
6219
6220 2008-01-18  Bruno Haible  <bruno@clisp.org>
6221
6222         * doc/glibc-functions/*.texi: New files.
6223         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
6224         to use the new files.
6225
6226 2008-01-17  Bruno Haible  <bruno@clisp.org>
6227
6228         * tests/test-gethostname.c (main): Fix printf statement.
6229
6230 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6231
6232         * modules/gethostname-tests: New file.
6233
6234         * tests/test-gethostname.c: New file.
6235
6236 2008-01-17  Simon Josefsson  <simon@josefsson.org>
6237
6238         * lib/gethostname.c: Include string.h unconditionally, strncpy is
6239         used by the UNAME case.  Reported by Bruno Haible
6240         <bruno@clisp.org>.
6241
6242 2008-01-17  Eric Blake  <ebb9@byu.net>
6243
6244         Convert c-strcasestr to be more efficient.
6245         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
6246         (Depends-on): Add c-strcase, remove malloca, strnlen.
6247         * tests/test-c-strcasestr.c (main): Enhance test.
6248         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
6249
6250 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
6251
6252         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
6253         Use it in creating po/Makevars.
6254
6255 2008-01-15  Simon Josefsson  <simon@josefsson.org>
6256
6257         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
6258         Applications that requires it should initialize libgcrypt
6259         manually.
6260
6261 2008-01-16  Simon Josefsson  <simon@josefsson.org>
6262
6263         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
6264
6265 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
6266
6267         Fix problem with getdate on mingw32 reported by Simon Josefsson
6268         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
6269         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
6270         tzname", when deciding whether to declare tzname.
6271         * lib/strftime.c (tzname): Likewise.
6272
6273 2008-01-15  Bruno Haible  <bruno@clisp.org>
6274
6275         Work around a MacOS X 10.5 bug in frexpl().
6276         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
6277         * doc/functions/frexpl.texi: Document the bug.
6278         Reported by Elias Pipping <pipping@gentoo.org>.
6279
6280 2008-01-14  Eric Blake  <ebb9@byu.net>
6281
6282         Touch up previous patch.
6283         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
6284         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
6285
6286         Convert strcasestr module to use Two-Way algorithm.
6287         * modules/strcasestr-simple: New module, based on the old
6288         strcasestr, but with Two-Way rather than KMP.
6289         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
6290         * lib/string.in.h (rpl_strcasestr): Declare.
6291         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
6292         performance.
6293         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
6294         * modules/string (Makefile.am): Support strcasestr.
6295         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6296         * modules/strcasestr-tests (Depends-on): Check for alarm.
6297         * tests/test-strcasestr.c: Augment test.
6298         * lib/str-two-way.h: Clean up stray macro.
6299         * NEWS: Document new module.
6300         * MODULES.html.sh (string handling): Likewise.
6301         * doc/functions/strcasestr.texi: New file.
6302         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
6303         here, since it is not a POSIX function.
6304
6305 2008-01-14  Colin Watson  <cjwatson@debian.org>
6306             Bruno Haible  <bruno@clisp.org>
6307
6308         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
6309         works fine; if not, set REPLACE_STRSIGNAL.
6310         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
6311         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6312         REPLACE_STRSIGNAL.
6313         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
6314         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
6315         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
6316
6317 2008-01-14  Bruno Haible  <bruno@clisp.org>
6318
6319         * modules/strsignal (Include): Change to <string.h>.
6320
6321 2008-01-14  Colin Watson  <cjwatson@debian.org>
6322
6323         * modules/argp (Notice): Add a notice recommending to change
6324         XGETTEXT_OPTIONS.
6325         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
6326
6327 2008-01-13  Colin Watson  <cjwatson@debian.org>
6328
6329         * modules/strsignal-tests: New file.
6330         * tests/test-strsignal.c: New file.
6331
6332         * lib/strsignal.c: New file, from glibc with modifications.
6333         * lib/siglist.h: New file, from glibc with modifications.
6334         * lib/string.in.h (strsignal): New declaration.
6335         * m4/strsignal.m4: New file.
6336         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6337         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
6338         * modules/strsignal: New file.
6339         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
6340         HAVE_DECL_STRSIGNAL.
6341
6342 2008-01-13  Bruno Haible  <bruno@clisp.org>
6343
6344         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
6345         locale encoding is not ASCII. Needed for OpenBSD 4.0.
6346         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
6347         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
6348
6349 2008-01-13  Bruno Haible  <bruno@clisp.org>
6350
6351         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
6352         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
6353         * lib/argp.h (__attribute__): Likewise.
6354         * lib/c-stack.c (__attribute__): Likewise.
6355         * lib/error.h (__attribute__): Likewise.
6356         * lib/fts.c (__attribute__): Likewise.
6357         * lib/openat.h (__attribute__): Likewise.
6358         * lib/stdio.in.h (__attribute__): Likewise.
6359         * lib/string.in.h (__attribute__): Likewise.
6360         * lib/utimens.c (__attribute__): Likewise.
6361         * lib/vasnprintf.h (__attribute__): Likewise.
6362         * lib/xalloc.h (__attribute__): Likewise.
6363         * lib/xprintf.h (__attribute__): Likewise.
6364         * lib/xstrtol.h (__attribute__): Likewise.
6365         * lib/xvasprintf.h (__attribute__): Likewise.
6366
6367 2008-01-12  Bruno Haible  <bruno@clisp.org>
6368
6369         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
6370         * doc/glibc-headers/a.out.texi: New file.
6371         * doc/glibc-headers/aliases.texi: New file.
6372         * doc/glibc-headers/alloca.texi: New file.
6373         * doc/glibc-headers/ar.texi: New file.
6374         * doc/glibc-headers/argp.texi: New file.
6375         * doc/glibc-headers/argz.texi: New file.
6376         * doc/glibc-headers/byteswap.texi: New file.
6377         * doc/glibc-headers/crypt.texi: New file.
6378         * doc/glibc-headers/endian.texi: New file.
6379         * doc/glibc-headers/envz.texi: New file.
6380         * doc/glibc-headers/err.texi: New file.
6381         * doc/glibc-headers/error.texi: New file.
6382         * doc/glibc-headers/execinfo.texi: New file.
6383         * doc/glibc-headers/fpu_control.texi: New file.
6384         * doc/glibc-headers/fstab.texi: New file.
6385         * doc/glibc-headers/fts.texi: New file.
6386         * doc/glibc-headers/getopt.texi: New file.
6387         * doc/glibc-headers/ieee754.texi: New file.
6388         * doc/glibc-headers/ifaddrs.texi: New file.
6389         * doc/glibc-headers/libintl.texi: New file.
6390         * doc/glibc-headers/mcheck.texi: New file.
6391         * doc/glibc-headers/mntent.texi: New file.
6392         * doc/glibc-headers/obstack.texi: New file.
6393         * doc/glibc-headers/paths.texi: New file.
6394         * doc/glibc-headers/printf.texi: New file.
6395         * doc/glibc-headers/pty.texi: New file.
6396         * doc/glibc-headers/resolv.texi: New file.
6397         * doc/glibc-headers/shadow.texi: New file.
6398         * doc/glibc-headers/sysexits.texi: New file.
6399         * doc/glibc-headers/ttyent.texi: New file.
6400
6401 2008-01-12  Jim Meyering  <meyering@redhat.com>
6402
6403         announce-gen: emit Gnulib's git-based version string.
6404         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
6405         New option --gnulib-version=V, where V is expected to be
6406         the output of running git describe in the gnulib directory.
6407         (get_tool_versions): Request feedback on xdelta.  I suspect it's
6408         not useful, and plan to stop publishing an xdelta file with each
6409         coreutils release.
6410
6411         * build-aux/announce-gen: Also check for lzma-compressed files.
6412
6413 2008-01-11  Bruno Haible  <bruno@clisp.org>
6414
6415         * tests/test-memmem.c (main): Increase maximum allowed time.
6416         * tests/test-strstr.c (main): Likewise.
6417
6418 2008-01-11  Bruno Haible  <bruno@clisp.org>
6419
6420         * doc/functions/memmem.texi: Add more precisions about platforms.
6421         * doc/functions/strstr.texi: Likewise.
6422
6423 2008-01-10  Eric Blake  <ebb9@byu.net>
6424
6425         * m4/strstr.m4: Delete cruft from copy-n-paste.
6426         Reported by Bruno Haible.
6427
6428 2008-01-10  Bruno Haible  <bruno@clisp.org>
6429
6430         Make c-strstr rely on strstr.
6431         * lib/c-strstr.c: Don't include str-kmp.h.
6432         (c_strstr): Define in terms of strstr.
6433         * modules/c-strstr (Files): Remove lib/str-kmp.h.
6434         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
6435
6436 2008-01-10  Bruno Haible  <bruno@clisp.org>
6437
6438         * doc/gnulib.texi (String Functions in C Locale): New section.
6439         * doc/c-ctype.texi: New file.
6440         * doc/c-strcase.texi: New file.
6441         * doc/c-strcaseeq.texi: New file.
6442         * doc/c-strcasestr.texi: New file.
6443         * doc/c-strstr.texi: New file.
6444         * doc/c-strtod.texi: New file.
6445         * doc/c-strtold.texi: New file.
6446
6447 2008-01-10  Eric Blake  <ebb9@byu.net>
6448
6449         * lib/relocatable.h: Fix a comment.
6450
6451 2008-01-10  Eric Blake  <ebb9@byu.net>
6452
6453         Share two-way algorithm.
6454         * lib/str-two-way.h: New file, merged from...
6455         * lib/memmem.c: ...here...
6456         * lib/strstr.c: ...and here.
6457         * modules/memmem (Files): Use it.
6458         * modules/strstr (Files): Likewise.
6459
6460         Avoid quadratic strstr implementations.
6461         * lib/strstr.c: New file.
6462         * m4/strstr.m4: Likewise.
6463         * modules/strstr: Likewise.
6464         * modules/strstr-tests: Likewise.
6465         * tests/test-strstr.c: Likewise.
6466         * lib/string.in.h (rpl_strstr): Declare.
6467         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
6468         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
6469         * modules/string (Makefile.am): Likewise.
6470         * MODULES.html.sh (string handling): Mention new module.
6471         * doc/functions/strstr.texi (strstr): Document the bug.
6472
6473 2008-01-10  Bruno Haible  <bruno@clisp.org>
6474
6475         * lib/relocatable.h (relocate): State whether result is freshly
6476         allocated or not.
6477         * lib/relocatable.c (relocate): Return a freshly allocated string
6478         instead of a pointer to a privately held string.
6479         Reported by Sylvain Beucler <beuc@gnu.org>.
6480
6481 2008-01-10  Colin Watson  <cjwatson@debian.org>
6482
6483         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
6484         s/S_ISNLK/S_ISLNK/.
6485
6486 2008-01-09  Bruno Haible  <bruno@clisp.org>
6487
6488         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
6489         and other files.
6490         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
6491         if it's only a guess.
6492         * modules/memmem: Simplify by depending on memmem-simple.
6493
6494 2008-01-09  Bruno Haible  <bruno@clisp.org>
6495
6496         Work around OpenBSD 4.0 tdelete() bug.
6497         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
6498         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
6499         macros and don't redefine the enum values.
6500         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
6501         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
6502         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
6503
6504 2008-01-09  Bruno Haible  <bruno@clisp.org>
6505
6506         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
6507         (main): Don't perform the tests if setlocale did not install a UTF-8
6508         locale. Needed on OpenBSD 4.0.
6509         * modules/wcwidth-tests (Depends-on): Add localcharset.
6510
6511 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6512
6513         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
6514         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
6515         * NEWS: announce this.
6516         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
6517
6518 2008-01-09  Simon Josefsson  <simon@josefsson.org>
6519         and Eric Blake  <ebb9@byu.net>
6520
6521         Add memmem-simple module.
6522         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
6523         (gl_FUNC_MEMMEM): Separate performance from presence checks.
6524         * modules/memmem-simple: New file.
6525         * modules/memmem (Description): Tweak.
6526         * MODULES.html.sh (string handling): Mention new module.
6527         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
6528         addressed by memmem-simple.
6529         * NEWS: Document the difference.
6530
6531 2008-01-09  Eric Blake  <ebb9@byu.net>
6532
6533         Give gcc some memmem optimization hints.
6534         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
6535         (strcasestr): Declare as pure.
6536         * modules/memmem (Maintainer): Claim my implementation.
6537
6538 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6539
6540         Support AIX 6.1 and higher.
6541         * build-aux/config.libpath: Likewise.
6542         * build-aux/config.rpath: Likewise.
6543
6544 2008-01-08  Jim Meyering  <meyering@redhat.com>
6545             Bruno Haible  <bruno@clisp.org>
6546
6547         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
6548         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
6549         Reported by Peter Fales in
6550         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
6551
6552 2008-01-08  Bruno Haible  <bruno@clisp.org>
6553
6554         * modules/unictype/category-of (Depends-on): Add
6555         unictype/category-none.
6556         * modules/unictype/category-and-tests (Depends-on): Add
6557         unictype/category-{L,N,Lu,Nd}.
6558         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
6559         * modules/unictype/category-or-tests (Depends-on): Add
6560         unictype/category-{L,N}.
6561         * modules/unictype/category-name-tests (Depends-on): Add
6562         unictype/category-{Z,Nl}.
6563         Reported by Simon Josefsson.
6564
6565 2008-01-08  Bruno Haible  <bruno@clisp.org>
6566
6567         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
6568         convention better.
6569         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
6570         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
6571         Reported by Peter Miller <millerp@canb.auug.org.au>.
6572
6573 2008-01-08  Eric Blake  <ebb9@byu.net>
6574
6575         Rewrite memmem to guarantee linear complexity without malloc.
6576         * lib/memmem.c (memmem): Use Two-Way rather than
6577         Knuth-Morris-Pratt, to allow O(1) space usage.
6578         (critical_factorization, two_way_short_needle)
6579         (two_way_long_needle): New functions.
6580         (knuth_morris_pratt): Delete.
6581         * modules/memmem (Depends-on): No longer need malloca or stdbool.
6582         Add stdint.
6583         * tests/test-memmem.c (main): Add tests for periodic needle and
6584         sublinear performance.
6585         * doc/functions/memmem.texi (memmem): Document other deficiencies
6586         in cygwin and older glibc.
6587
6588 2008-01-08  Bruno Haible  <bruno@clisp.org>
6589
6590         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
6591         augmentation.
6592
6593 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
6594
6595         Add a configure time option: --disable-acl.
6596         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
6597         AC_ARG_ENABLE(acl).
6598
6599 2008-01-06  Simon Josefsson  <simon@josefsson.org>
6600
6601         * tests/test-localename.c: Don't include obsolete "setenv.h".
6602
6603         * modules/localename-tests (Depends-on): Need unsetenv.
6604
6605 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6606
6607         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
6608
6609 2008-01-06  Colin Watson  <cjwatson@debian.org>
6610
6611         * users.txt: Add man-db.
6612
6613 2008-01-07  Bruno Haible  <bruno@clisp.org>
6614
6615         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
6616         previous section name.
6617
6618 2008-01-07  Bruno Haible  <bruno@clisp.org>
6619
6620         * lib/progname.c (set_program_name): Don't strip off a leading
6621         "lt-" prefix outside a .libs directory.
6622         Suggested by Paul Eggert.
6623
6624 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
6625             Bruno Haible  <bruno@clisp.org>
6626
6627         Improve memory cleanup in 'relocatable' module.
6628         * lib/relocatable.h (compute_curr_prefix): Change return type to
6629         'char *'.
6630         * lib/relocatable.c (compute_curr_prefix): Change return type to
6631         'char *'. Free curr_installdir after use.
6632         (relocate): Free curr_prefix_better after use.
6633         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
6634
6635 2008-01-01  Bruno Haible  <bruno@clisp.org>
6636
6637         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
6638         failure on older glibc systems.
6639         Reported by Peter Fales <psfales@alcatel-lucent.com>.
6640
6641 2008-01-05  Eric Blake  <ebb9@byu.net>
6642
6643         Avoid quadratic system memmem.
6644         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
6645         Reported by Ralf Wildenhues.
6646
6647         Fix memmem test for mingw.
6648         * modules/memmem-tests (configure.ac): Check for alarm.
6649         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
6650         it.
6651         * doc/functions/memmem.texi: New file.
6652         * doc/gnulib.texi (Function Substitutes): Add memmem.
6653         Reported by Bruno Haible.
6654
6655 2008-01-04  Bruno Haible  <bruno@clisp.org>
6656
6657         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
6658         Require gl_HEADER_STRINGS_H_DEFAULTS, not
6659         gl_HEADER_STRING_H_DEFAULTS.
6660
6661 2008-01-04  Eric Blake  <ebb9@byu.net>
6662
6663         Shorten duration of memmem test.
6664         * tests/test-memmem.c (main): Use alarm to declare failure if test
6665         is taking too long.
6666         Reported by Ralf Wildenhues.
6667
6668 2007-12-21  Simon Josefsson  <simon@josefsson.org>
6669
6670         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
6671         string, needed by strerror.
6672
6673 2008-01-03  Colin Watson  <cjwatson@debian.org>
6674             Bruno Haible  <bruno@clisp.org>
6675
6676         * doc/gnulib-tool.texi (Localization): New section.
6677
6678 2008-01-02  Bruno Haible  <bruno@clisp.org>
6679
6680         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
6681         variables to 'unsigned char *' type.
6682         Reported by Paul Eggert.
6683
6684 2008-01-02  Jim Meyering  <jim@meyering.net>
6685
6686         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
6687
6688 2007-12-31  Jim Meyering  <jim@meyering.net>
6689
6690         Avoid use of private FTS type name.
6691         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
6692
6693 2007-12-30  Karl Berry  <karl@gnu.org>
6694
6695         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
6696         work around defect in Texinfo and/or the standalone Info browser.
6697
6698 2007-12-30  Bruno Haible  <bruno@clisp.org>
6699
6700         Unify 5 copies of the KMP code.
6701         * lib/str-kmp.h: New file.
6702         * lib/c-strcasestr.c: Include str-kmp.h.
6703         (knuth_morris_pratt): Remove function.
6704         (c_strcasestr): Update.
6705         * lib/c-strstr.c: Include str-kmp.h.
6706         (knuth_morris_pratt): Remove function.
6707         (c_strcasestr): Update.
6708         * lib/mbscasestr.c: Include str-kmp.h.
6709         (knuth_morris_pratt_unibyte): Remove function.
6710         * lib/mbsstr.c: Include str-kmp.h.
6711         (knuth_morris_pratt_unibyte): Remove function.
6712         * lib/strcasestr.c: Include str-kmp.h.
6713         (knuth_morris_pratt): Remove function.
6714         (strcasestr): Update.
6715         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
6716         * modules/c-strstr (Files): Likewise.
6717         * modules/mbscasestr (Files): Likewise.
6718         * modules/mbsstr (Files): Likewise.
6719         * modules/strcasestr (Files): Likewise.
6720         Suggested by Paul Eggert.
6721
6722 2007-12-30  Bruno Haible  <bruno@clisp.org>
6723
6724         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
6725         defined.
6726
6727 2007-12-30  Bruno Haible  <bruno@clisp.org>
6728
6729         * lib/xmalloca.h: Include xalloc.h.
6730         (xnmalloca): New macro.
6731
6732 2007-12-30  Bruno Haible  <bruno@clisp.org>
6733
6734         * lib/malloca.h (nmalloca): New macro.
6735         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
6736         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
6737         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
6738         knuth_morris_pratt_multibyte): Likewise.
6739         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
6740         knuth_morris_pratt_multibyte): Likewise.
6741         * lib/memmem.c (knuth_morris_pratt): Likewise.
6742         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
6743
6744 2007-12-25  Bruno Haible  <bruno@clisp.org>
6745
6746         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
6747         * lib/glob.c: Don't include openat.h.
6748         (link_exists2_p): Add back the code that deals with the
6749         !GLOB_ALTDIRFUNC case.
6750         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
6751         let it do the filename concatenation.
6752         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
6753         * modules/glob (Depends-on): Remove openat.
6754
6755 2007-12-31  Bruno Haible  <bruno@clisp.org>
6756
6757         * modules/dirfd (License): Change to LGPLv2+.
6758         Approved by Jim Meyering.
6759
6760 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6761
6762         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
6763         when multiplying M by sizeof (size_t).
6764
6765 2007-12-10  Martin Lambers  <marlam@marlam.de>
6766
6767         Override getpagesize on mingw.
6768         * lib/getpagesize.c: New file.
6769         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
6770         * modules/getpagesize (Files): Add lib/getpagesize.c.
6771         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
6772         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6773         REPLACE_GETPAGESIZE.
6774         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
6775
6776 2007-12-25  Bruno Haible  <bruno@clisp.org>
6777
6778         * modules/localcharset (Notice): New field.
6779         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
6780         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
6781
6782 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6783             Bruno Haible  <bruno@clisp.org>
6784
6785         Avoid using the syntax symbol() in formatted documentation.
6786         * MODULES.html.sh (func_module): When replacing symbol() with a
6787         hyperlink, remove the parentheses. Show an error if some remain.
6788         Recognize and render the '...' syntax.
6789         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
6790         Rework. Add paragraph about GCC's inlining.
6791         * doc/alloca.texi: Likewise.
6792         * doc/error.texi: Remove parentheses from symbol reference.
6793         * doc/gnulib-intro.texi: Likewise.
6794         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
6795         * modules/fnmatch (Description): Reword to say "the ... function".
6796         * modules/full-read (Description): Likewise.
6797         * modules/full-write (Description): Likewise.
6798         * modules/safe-read (Description): Likewise.
6799         * modules/safe-write (Description): Likewise.
6800         * modules/strchrnul (Description): Likewise.
6801         * modules/trim (Description): Likewise.
6802         * modules/error (Description): Remove parentheses from symbol
6803         references.
6804         * modules/verror (Description): Likewise.
6805         Reported by Karl Berry.
6806
6807 2007-12-25  Bruno Haible  <bruno@clisp.org>
6808
6809         Fixup after 2007-10-16 commit.
6810         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
6811
6812 2007-12-24  Bruno Haible  <bruno@clisp.org>
6813
6814         Make --enable-relocatable work with DESTDIR.
6815         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
6816         to compute installdir from destprog.
6817         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
6818         also set the RELOC_DESTDIR variable.
6819         Reported by Левашев Иван <octagram@bluebottle.com>.
6820
6821 2007-12-24  Bruno Haible  <bruno@clisp.org>
6822
6823         Fix link error due to xalloc_die().
6824         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
6825         of xreadlink.
6826         * lib/relocwrapper.c: Update comments.
6827         * build-aux/install-reloc: Remove xreadlink.c from file list.
6828         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
6829         xreadlink.c.
6830         Reported by Левашев Иван <octagram@bluebottle.com>.
6831
6832 2007-12-24  Bruno Haible  <bruno@clisp.org>
6833
6834         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
6835         * lib/setenv.h: Remove file.
6836         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
6837         lib/setenv.h.
6838         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
6839         (Depends-on): Add stdlib.
6840         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
6841         gl_FUNC_UNSETENV.
6842         (Include): Replace setenv.h with <stdlib.h>.
6843         * modules/unsetenv: New file.
6844         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
6845         * lib/unsetenv.c: Include <stdlib.h> first.
6846         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
6847         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
6848         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
6849         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
6850         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
6851         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6852         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
6853         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
6854         * doc/functions/unsetenv.texi: Update.
6855         * modules/xsetenv (Depends-on): Add unsetenv.
6856         * modules/getdate (Depends-on): Likewise.
6857         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
6858         * lib/xsetenv.c: Don't include setenv.h.
6859         * lib/getdate.y: Likewise.
6860         * lib/relocwrapper.c: Likewise.
6861         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
6862         (Depends-on): Add stdlib.
6863         * NEWS: Mention the changes.
6864         Reported by Левашев Иван <octagram@bluebottle.com>.
6865
6866 2007-12-23  Bruno Haible  <bruno@clisp.org>
6867
6868         * lib/memmem.c (memmem): Use lowercase variable names. Tab
6869         indentation.
6870
6871 2007-12-23  Bruno Haible  <bruno@clisp.org>
6872
6873         * lib/c-strcasestr.c: Add more comments.
6874         * lib/c-strstr.c: Likewise.
6875         * lib/mbscasestr.c: Likewise.
6876         * lib/mbsstr.c: Likewise.
6877         * lib/strcasestr.c: Likewise.
6878         * lib/memmem.c: Likewise.
6879
6880 2007-12-23  Bruno Haible  <bruno@clisp.org>
6881
6882         * tests/test-memmem.c: Include <string.h> first.
6883
6884 2007-12-22  Bruno Haible  <bruno@clisp.org>
6885
6886         * gnulib-tool (func_create_testdir): Change $auxdir while generating
6887         the contents of $testsbase.
6888         Reported by Ralf Wildenhues.
6889
6890 2007-12-22  Bruno Haible  <bruno@clisp.org>
6891
6892         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
6893         two variables local_ldadd_before, local_ldadd_last.
6894
6895 2007-12-20  Eric Blake  <ebb9@byu.net>
6896
6897         Work around circular library issue when cross-compiling.
6898         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
6899         that progname.o does not need to pull in rpl_memcmp.
6900
6901 2007-12-19  Eric Blake  <ebb9@byu.net>
6902
6903         Fix memmem to avoid O(n^2) worst-case complexity.
6904         * lib/memmem.c (knuth_morris_pratt): New function.
6905         (memmem): Use it if first few naive iterations fail.
6906         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
6907         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
6908         * modules/memchr (License): Likewise.
6909         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
6910         malloca.
6911         * tests/test-memmem.c: Rewrite, borrowing ideas from
6912         test-mbsstr1.c; the old version wouldn't even compile!
6913         * modules/memmem-tests: New file.
6914         * lib/string.in.h (rpl_memmem): Add declaration.
6915         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
6916         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
6917         REPLACE_MEMMEM.
6918
6919 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6920
6921         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
6922         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
6923         before any system include files, and undef after them all.  This
6924         should fix a problem on VMS reported by John E. Malmberg in
6925         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
6926
6927 2007-12-17  Eric Blake  <ebb9@byu.net>
6928
6929         Revert addition of verify, for BSD/OS.
6930         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
6931         can't handle large files, for the sake of obsolete platforms.
6932         * modules/fseeko (Depends-on): Remove verify.
6933         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
6934         * doc/functions/ftello.texi (ftello): Likewise.
6935         * doc/functions/fgetpos.texi (fgetpos): Likewise.
6936         Reported by Larry Jones.
6937
6938 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
6939
6940         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
6941         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
6942
6943 2007-12-17  Jim Meyering  <meyering@redhat.com>
6944
6945         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
6946         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
6947         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
6948         * modules/getcwd (Depends-on): Add openat.
6949         Reported by Petr Salinger.
6950
6951 2007-12-17  Bruno Haible  <bruno@clisp.org>
6952
6953         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
6954         avoid a segmentation fault of the configure test on x86_64 systems.
6955
6956 2007-12-15  Jim Meyering  <meyering@redhat.com>
6957
6958         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
6959
6960 2007-12-13  Eric Blake  <ebb9@byu.net>
6961
6962         Another fseek test.
6963         * tests/test-fseek.c (main): Also test ungetc handling.
6964         * tests/test-fseeko.c (main): Likewise.
6965         * modules/fseeko (Depends-on): Add verify.
6966         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
6967         large.
6968         Reported by Larry Jones.
6969
6970         Fix fseeko on mingw.
6971         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
6972         seek.
6973
6974         Beef up fseek tests.
6975         * tests/test-fseek.c (main): Also test eof handling.
6976         * tests/test-fseeko.c (main): Likewise.
6977         Reported by Larry Jones.
6978
6979 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
6980
6981         Fix fseeko on BSD-based platforms.
6982         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
6983         successful seek.
6984
6985 2007-12-12  Eric Blake  <ebb9@byu.net>
6986
6987         Allow circular dependency of separate libtests.a
6988         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
6989         when use_libtests.
6990
6991 2007-12-11  Eric Blake  <ebb9@byu.net>
6992
6993         Fix bug with -0.0L in previous patch.
6994         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
6995         * tests/test-isnan.c (main): Also test on zeroes.
6996         * tests/test-isnanf.c (main): Likewise.
6997         * tests/test-isnanl.h (main): Likewise.
6998
6999         Detect pseudo-denormals on x86 even when cross-compiling.
7000         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
7001         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
7002         invalid bit patterns that happen to satisfy ==.
7003
7004         Avoid link failures with separate libtests.a.
7005         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
7006         last, to satisfy circular dependencies.
7007
7008 2007-12-11  Eric Blake  <ebb9@byu.net>
7009         and Bruno Haible  <bruno@clisp.org>
7010
7011         Fix OpenBSD 4.0 <float.h> handling of long double.
7012         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
7013         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
7014         * doc/headers/float.texi (float.h): Document OpenBSD bug.
7015
7016 2007-12-11  Jim Meyering  <meyering@redhat.com>
7017
7018         * users.txt: Add libvirt.
7019
7020         Support versions of autoconf prior to 2.59c.
7021         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
7022         if it is not already defined.
7023
7024 2007-12-09  Bruno Haible  <bruno@clisp.org>
7025
7026         Let 'gnulib-tool --import' collect sources needed for the tests in
7027         tests/ rather than in lib/.
7028         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
7029         argument. If true, add rules to generate libtests.a, and put libtests.a
7030         into $(LDADD). Consider source files in subdirectories and set
7031         uses_subdirs.
7032         (func_emit_initmacro_start, func_emit_initmacro_end,
7033         func_emit_initmacro_done): Pass all arguments explicitly.
7034         (func_import): Determine two module lists main_modules,
7035         testsrelated_modules. Determine use_libtests. Determine two variables
7036         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
7037         instead of just sed_transform_lib_file. Determine two variables
7038         main_files and testsrelated_files. Compute 'files' as the union of
7039         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
7040         func_add_or_update. In the generated gnulib-comp.m4, collect the
7041         object files for tests/ in different variables than those for lib/.
7042         Substitute LIBTESTS_LIBDEPS.
7043         (func_create_testdir): Combine the uses_subdirs results from
7044         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
7045
7046 2007-12-09  Bruno Haible  <bruno@clisp.org>
7047
7048         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
7049         the build-aux directory.
7050
7051 2007-12-09  Bruno Haible  <bruno@clisp.org>
7052
7053         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
7054         introduced on 2006-09-09.
7055
7056 2007-12-07  Jim Meyering  <meyering@redhat.com>
7057
7058         Let these macros work also with autoconf-2.59.
7059         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
7060         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
7061         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
7062
7063 2007-12-06  Jim Meyering  <meyering@redhat.com>
7064
7065         Avoid a configure-time syntax error in gl_FUNC_ACL.
7066         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
7067         function in each branch, before testing the cache variable.
7068
7069 2007-12-04  Eric Blake  <ebb9@byu.net>
7070
7071         Make scripts executable.
7072         * build-aux/config.guess: Add execute permissions.
7073         * build-aux/config.sub: Likewise.
7074         * build-aux/gendocs.sh: Likewise.
7075
7076         Fix frexp on mingw.
7077         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
7078         cross-compiling.
7079         * doc/functions/frexp.texi (frexp): Document the bug.
7080
7081         Make cygwin fseeko check more reliable.
7082         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
7083         version numbers, rather than unrelated feature check.
7084         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
7085         * doc/functions/ftello.texi (ftello): Likewise.
7086         Reported by Bruno Haible.
7087
7088         * m4/strerror.m4: Bump version number.
7089
7090 2007-12-03  Bruno Haible  <bruno@clisp.org>
7091
7092         * doc/functions/mprotect.texi: Mention the mingw problem.
7093
7094 2007-12-03  Eric Blake  <ebb9@byu.net>
7095
7096         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
7097         REPLACE_STRERROR is initialized before this macro.
7098
7099 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
7100
7101         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
7102         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
7103         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
7104         put -lsec in even for programs other than 'ls'.  This fixes a problem
7105         for gettext reported by Bruno Haible in
7106         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
7107         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
7108         Add support for Solaris 10.  This isn't efficient, but should get the
7109         job done for now.
7110
7111 2007-12-03  James Youngman  <jay@gnu.org>
7112
7113         * doc/regexprops-generic.texi: change "an close-group" to "a
7114         close-group" and "illegal" to "not allowed".
7115
7116 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7117
7118         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
7119         pr_byname.h. Needed for the rare case when the maintainer has done
7120         "make maintainer-clean" in the source directory and then attempts a
7121         build outside the source directory.
7122         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
7123         scripts_byname.h.
7124
7125 2007-12-02  Martin Lambers <marlam@marlam.de>
7126             Bruno Haible  <bruno@clisp.org>
7127
7128         * lib/getpagesize.h: Remove file.
7129         * lib/unistd.in.h: Include declaration of getpagesize here.
7130         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
7131         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
7132         HAVE_SYS_PARAM_H.
7133         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
7134         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
7135         * modules/getpagesize (Files): Remove lib/getpagesize.h.
7136         (Depends-on): Add unistd.
7137         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7138         (Include): Use <unistd.h> instead of getpagesize.h.
7139         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
7140         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
7141         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
7142         gl_GETPAGESIZE invocation, already handled by module dependency.
7143         * lib/pagealign_alloc.c: Don't include getpagesize.h.
7144
7145 2007-12-02  Bruno Haible  <bruno@clisp.org>
7146
7147         * modules/strings-tests: New file.
7148         * tests/test-strings.c: New file.
7149
7150         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
7151         * lib/strings.in.h: New file.
7152         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
7153         * m4/strings_h.m4: New file.
7154         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
7155         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
7156         * modules/strings: New file.
7157         * modules/string (Makefile.am): Update.
7158         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
7159         Reported by Karl Berry.
7160
7161 2007-12-01  Eric Blake  <ebb9@byu.net>
7162
7163         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
7164         accomodate fix in cygwin 1.5.25.
7165
7166 2007-12-01  Jim Meyering  <meyering@redhat.com>
7167
7168         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
7169         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
7170         that would inhibit utf8-optimization of a regexp containing line-
7171         or buffer-anchors, e.g., `^', `$'.
7172
7173 2007-11-30  Bruno Haible  <bruno@clisp.org>
7174
7175         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
7176         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
7177         glthread_recursive_lock_init.
7178         * lib/lock.c (glthread_recursive_lock_init)
7179         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
7180         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
7181
7182 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
7183
7184         New function qset_acl, like set_acl but with syscall semantics.
7185         * lib/acl.h (qset_acl): New decl.
7186         * lib/acl.c (qset_acl): New function.
7187         (set_acl): Use new function.  Use more-consistent diagnostics.
7188
7189 2007-11-28  Jim Meyering  <meyering@redhat.com>
7190
7191         * modules/physmem (License): Change from GPL to LGPLv2+.
7192
7193 2007-11-26  Bruno Haible  <bruno@clisp.org>
7194
7195         * lib/vasnprintf.c (decode_long_double): Don't abort if the
7196         'long double' type has excess precision.
7197         Reported by Jim Meyering in
7198         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
7199
7200 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7201
7202         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
7203         Sync from <http://gnu.org/licenses>.
7204         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
7205         with license text from same location.
7206         * doc/maintain.texi, doc/standards.texi:  Sync from
7207         <http://savannah.gnu.org/projects/gnustandards>.
7208
7209 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
7210         and Jim Meyering  <meyering@redhat.com>
7211
7212         Adjust getdate' grammar to accept a slightly more regular language.
7213         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
7214         Before, the former was rejected.
7215         * lib/getdate.y (digits_to_date_time): New function, factored
7216         out of ...
7217         (number): ...here.  Just call digits_to_date_time.
7218         (hybrid): New non-terminal to handle an <unsigned number,
7219         signed relative offset> sequence consistently.
7220
7221 2007-11-18  Jim Meyering  <meyering@redhat.com>
7222
7223         Pull my changes from coreutils:
7224         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
7225         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
7226         use of $gnulib_tool_option_extras, so that it's separated from the
7227         preceding argument.
7228
7229         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
7230         * build-aux/bootstrap (cp_mark_as_generated): Create any required
7231         parent destination directories before copying a file into place.
7232
7233 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7234
7235         bootstrap: work also with 4-argument variant of AC_INIT
7236         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
7237
7238 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
7239
7240         Port test-getaddrinfo to Solaris.
7241         Problem reported by Bruno Haible in
7242         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
7243         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
7244         explanation of setting 'hints'.
7245         Don't reject an implementation merely because it returns EAI_SERVICE.
7246         (EAI_SERVICE): Define to 0 if not defined.
7247
7248 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
7249
7250         The license of gnu-make and posix-shell is now "GPLed build tool".
7251         * modules/gnu-make (License): Likewise.
7252         * modules/posix-shell (License): Likewise.
7253
7254         New module posix-shell, for determining a POSIX shell
7255         or perhaps something that is close enough to a POSIX shell.
7256         * m4/posix-shell.m4: New file.
7257         * modules/posix-shell: New file.
7258
7259         * MODULES.html.sh: Mention new module.
7260
7261         New module gnu-make, for determining whether we're using GNU Make.
7262         * m4/gnu-make.m4: New file.
7263         * modules/gnu-make: New file.
7264         * MODULES.html.sh: Mention new module.
7265
7266 2007-11-14  Jim Meyering  <meyering@redhat.com>
7267
7268         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
7269         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
7270         use this macro to create a function _definition_.
7271         Remove useless "#undef ARGMATCH_DIE".
7272
7273 2007-11-14  Bruno Haible  <bruno@clisp.org>
7274
7275         * lib/config.charset: Update for OpenBSD 4.1.
7276         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
7277
7278 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
7279
7280         Document 64-bit #if problems in stdint.texi.
7281         * doc/headers/stdint.texi (stdint.h): Mention problems with
7282         64-bit-#if, and how to work around them.
7283
7284         Don't insist on 'long long int' support in the preprocessor.  It
7285         breaks too many things.  For example, PRIdMAX still uses a 'long
7286         long int' format with the latest Sun compiler, even though
7287         HAVE_LONG_LONG_INT isn't defined due to that compiler's
7288         preprocessor problem.  This causes the latest coreutils to dump
7289         core on Solaris 10 sparc with the Sun C compiler.
7290         Instead, fix the 2007-10-16 problem in a different way, by evaluating
7291         the troublesome expressions at configure-time, not at #if-time.
7292         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
7293         preprocessor.
7294         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
7295         compile-time C checks, done at 'configure'-time.
7296         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
7297         * modules/inttypes (Makefile): Substitute the new symbols that
7298         gl_INTTYPES_H now generates.
7299         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
7300
7301 2007-11-12  Bruno Haible  <bruno@clisp.org>
7302
7303         Tests for Unicode character classification functions.
7304
7305         * modules/unictype/bidicategory-byname-tests: New file.
7306         * modules/unictype/bidicategory-name-tests: New file.
7307         * modules/unictype/bidicategory-of-tests: New file.
7308         * modules/unictype/bidicategory-test-tests: New file.
7309         * modules/unictype/block-list-tests: New file.
7310         * modules/unictype/block-of-tests: New file.
7311         * modules/unictype/block-test-tests: New file.
7312         * modules/unictype/category-C-tests: New file.
7313         * modules/unictype/category-Cc-tests: New file.
7314         * modules/unictype/category-Cf-tests: New file.
7315         * modules/unictype/category-Cn-tests: New file.
7316         * modules/unictype/category-Co-tests: New file.
7317         * modules/unictype/category-Cs-tests: New file.
7318         * modules/unictype/category-L-tests: New file.
7319         * modules/unictype/category-Ll-tests: New file.
7320         * modules/unictype/category-Lm-tests: New file.
7321         * modules/unictype/category-Lo-tests: New file.
7322         * modules/unictype/category-Lt-tests: New file.
7323         * modules/unictype/category-Lu-tests: New file.
7324         * modules/unictype/category-M-tests: New file.
7325         * modules/unictype/category-Mc-tests: New file.
7326         * modules/unictype/category-Me-tests: New file.
7327         * modules/unictype/category-Mn-tests: New file.
7328         * modules/unictype/category-N-tests: New file.
7329         * modules/unictype/category-Nd-tests: New file.
7330         * modules/unictype/category-Nl-tests: New file.
7331         * modules/unictype/category-No-tests: New file.
7332         * modules/unictype/category-P-tests: New file.
7333         * modules/unictype/category-Pc-tests: New file.
7334         * modules/unictype/category-Pd-tests: New file.
7335         * modules/unictype/category-Pe-tests: New file.
7336         * modules/unictype/category-Pf-tests: New file.
7337         * modules/unictype/category-Pi-tests: New file.
7338         * modules/unictype/category-Po-tests: New file.
7339         * modules/unictype/category-Ps-tests: New file.
7340         * modules/unictype/category-S-tests: New file.
7341         * modules/unictype/category-Sc-tests: New file.
7342         * modules/unictype/category-Sk-tests: New file.
7343         * modules/unictype/category-Sm-tests: New file.
7344         * modules/unictype/category-So-tests: New file.
7345         * modules/unictype/category-Z-tests: New file.
7346         * modules/unictype/category-Zl-tests: New file.
7347         * modules/unictype/category-Zp-tests: New file.
7348         * modules/unictype/category-Zs-tests: New file.
7349         * modules/unictype/category-and-not-tests: New file.
7350         * modules/unictype/category-and-tests: New file.
7351         * modules/unictype/category-byname-tests: New file.
7352         * modules/unictype/category-name-tests: New file.
7353         * modules/unictype/category-none-tests: New file.
7354         * modules/unictype/category-of-tests: New file.
7355         * modules/unictype/category-or-tests: New file.
7356         * modules/unictype/category-test-withtable-tests: New file.
7357         * modules/unictype/combining-class-tests: New file.
7358         * modules/unictype/ctype-alnum-tests: New file.
7359         * modules/unictype/ctype-alpha-tests: New file.
7360         * modules/unictype/ctype-blank-tests: New file.
7361         * modules/unictype/ctype-cntrl-tests: New file.
7362         * modules/unictype/ctype-digit-tests: New file.
7363         * modules/unictype/ctype-graph-tests: New file.
7364         * modules/unictype/ctype-lower-tests: New file.
7365         * modules/unictype/ctype-print-tests: New file.
7366         * modules/unictype/ctype-punct-tests: New file.
7367         * modules/unictype/ctype-space-tests: New file.
7368         * modules/unictype/ctype-upper-tests: New file.
7369         * modules/unictype/ctype-xdigit-tests: New file.
7370         * modules/unictype/decimal-digit-tests: New file.
7371         * modules/unictype/digit-tests: New file.
7372         * modules/unictype/mirror-tests: New file.
7373         * modules/unictype/numeric-tests: New file.
7374         * modules/unictype/property-alphabetic-tests: New file.
7375         * modules/unictype/property-ascii-hex-digit-tests: New file.
7376         * modules/unictype/property-bidi-arabic-digit-tests: New file.
7377         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
7378         * modules/unictype/property-bidi-block-separator-tests: New file.
7379         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
7380         * modules/unictype/property-bidi-common-separator-tests: New file.
7381         * modules/unictype/property-bidi-control-tests: New file.
7382         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
7383         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
7384         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
7385         * modules/unictype/property-bidi-european-digit-tests: New file.
7386         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
7387         * modules/unictype/property-bidi-left-to-right-tests: New file.
7388         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
7389         * modules/unictype/property-bidi-other-neutral-tests: New file.
7390         * modules/unictype/property-bidi-pdf-tests: New file.
7391         * modules/unictype/property-bidi-segment-separator-tests: New file.
7392         * modules/unictype/property-bidi-whitespace-tests: New file.
7393         * modules/unictype/property-byname-tests: New file.
7394         * modules/unictype/property-combining-tests: New file.
7395         * modules/unictype/property-composite-tests: New file.
7396         * modules/unictype/property-currency-symbol-tests: New file.
7397         * modules/unictype/property-dash-tests: New file.
7398         * modules/unictype/property-decimal-digit-tests: New file.
7399         * modules/unictype/property-default-ignorable-code-point-tests: New file.
7400         * modules/unictype/property-deprecated-tests: New file.
7401         * modules/unictype/property-diacritic-tests: New file.
7402         * modules/unictype/property-extender-tests: New file.
7403         * modules/unictype/property-format-control-tests: New file.
7404         * modules/unictype/property-grapheme-base-tests: New file.
7405         * modules/unictype/property-grapheme-extend-tests: New file.
7406         * modules/unictype/property-grapheme-link-tests: New file.
7407         * modules/unictype/property-hex-digit-tests: New file.
7408         * modules/unictype/property-hyphen-tests: New file.
7409         * modules/unictype/property-id-continue-tests: New file.
7410         * modules/unictype/property-id-start-tests: New file.
7411         * modules/unictype/property-ideographic-tests: New file.
7412         * modules/unictype/property-ids-binary-operator-tests: New file.
7413         * modules/unictype/property-ids-trinary-operator-tests: New file.
7414         * modules/unictype/property-ignorable-control-tests: New file.
7415         * modules/unictype/property-iso-control-tests: New file.
7416         * modules/unictype/property-join-control-tests: New file.
7417         * modules/unictype/property-left-of-pair-tests: New file.
7418         * modules/unictype/property-line-separator-tests: New file.
7419         * modules/unictype/property-logical-order-exception-tests: New file.
7420         * modules/unictype/property-lowercase-tests: New file.
7421         * modules/unictype/property-math-tests: New file.
7422         * modules/unictype/property-non-break-tests: New file.
7423         * modules/unictype/property-not-a-character-tests: New file.
7424         * modules/unictype/property-numeric-tests: New file.
7425         * modules/unictype/property-other-alphabetic-tests: New file.
7426         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
7427         * modules/unictype/property-other-grapheme-extend-tests: New file.
7428         * modules/unictype/property-other-id-continue-tests: New file.
7429         * modules/unictype/property-other-id-start-tests: New file.
7430         * modules/unictype/property-other-lowercase-tests: New file.
7431         * modules/unictype/property-other-math-tests: New file.
7432         * modules/unictype/property-other-uppercase-tests: New file.
7433         * modules/unictype/property-paired-punctuation-tests: New file.
7434         * modules/unictype/property-paragraph-separator-tests: New file.
7435         * modules/unictype/property-pattern-syntax-tests: New file.
7436         * modules/unictype/property-pattern-white-space-tests: New file.
7437         * modules/unictype/property-private-use-tests: New file.
7438         * modules/unictype/property-punctuation-tests: New file.
7439         * modules/unictype/property-quotation-mark-tests: New file.
7440         * modules/unictype/property-radical-tests: New file.
7441         * modules/unictype/property-sentence-terminal-tests: New file.
7442         * modules/unictype/property-soft-dotted-tests: New file.
7443         * modules/unictype/property-space-tests: New file.
7444         * modules/unictype/property-terminal-punctuation-tests: New file.
7445         * modules/unictype/property-test-tests: New file.
7446         * modules/unictype/property-titlecase-tests: New file.
7447         * modules/unictype/property-unassigned-code-value-tests: New file.
7448         * modules/unictype/property-unified-ideograph-tests: New file.
7449         * modules/unictype/property-uppercase-tests: New file.
7450         * modules/unictype/property-variation-selector-tests: New file.
7451         * modules/unictype/property-white-space-tests: New file.
7452         * modules/unictype/property-xid-continue-tests: New file.
7453         * modules/unictype/property-xid-start-tests: New file.
7454         * modules/unictype/property-zero-width-tests: New file.
7455         * modules/unictype/scripts-tests: New file.
7456         * modules/unictype/syntax-c-ident-tests: New file.
7457         * modules/unictype/syntax-c-whitespace-tests: New file.
7458         * modules/unictype/syntax-java-ident-tests: New file.
7459         * modules/unictype/syntax-java-whitespace-tests: New file.
7460         * tests/unictype/test-bidi_byname.c: New file.
7461         * tests/unictype/test-bidi_name.c: New file.
7462         * tests/unictype/test-bidi_of.c: New file.
7463         * tests/unictype/test-bidi_test.c: New file.
7464         * tests/unictype/test-block_list.c: New file.
7465         * tests/unictype/test-block_of.c: New file.
7466         * tests/unictype/test-block_test.c: New file.
7467         * tests/unictype/test-categ_and.c: New file.
7468         * tests/unictype/test-categ_and_not.c: New file.
7469         * tests/unictype/test-categ_byname.c: New file.
7470         * tests/unictype/test-categ_name.c: New file.
7471         * tests/unictype/test-categ_none.c: New file.
7472         * tests/unictype/test-categ_of.c: New file.
7473         * tests/unictype/test-categ_or.c: New file.
7474         * tests/unictype/test-categ_test_withtable.c: New file.
7475         * tests/unictype/test-combining.c: New file.
7476         * tests/unictype/test-decdigit.c: New file.
7477         * tests/unictype/test-digit.c: New file.
7478         * tests/unictype/test-mirror.c: New file.
7479         * tests/unictype/test-numeric.c: New file.
7480         * tests/unictype/test-pr_byname.c: New file.
7481         * tests/unictype/test-pr_test.c: New file.
7482         * tests/unictype/test-predicate-part1.h: New file.
7483         * tests/unictype/test-predicate-part2.h: New file.
7484         * tests/unictype/test-scripts.c: New file.
7485         * tests/unictype/test-sy_c_ident.c: New file.
7486         * tests/unictype/test-sy_java_ident.c: New file.
7487
7488         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
7489         for Unicode 5.0.0.
7490         * tests/unictype/test-categ_Cc.c: Likewise.
7491         * tests/unictype/test-categ_Cf.c: Likewise.
7492         * tests/unictype/test-categ_Cn.c: Likewise.
7493         * tests/unictype/test-categ_Co.c: Likewise.
7494         * tests/unictype/test-categ_Cs.c: Likewise.
7495         * tests/unictype/test-categ_L.c: Likewise.
7496         * tests/unictype/test-categ_Ll.c: Likewise.
7497         * tests/unictype/test-categ_Lm.c: Likewise.
7498         * tests/unictype/test-categ_Lo.c: Likewise.
7499         * tests/unictype/test-categ_Lt.c: Likewise.
7500         * tests/unictype/test-categ_Lu.c: Likewise.
7501         * tests/unictype/test-categ_M.c: Likewise.
7502         * tests/unictype/test-categ_Mc.c: Likewise.
7503         * tests/unictype/test-categ_Me.c: Likewise.
7504         * tests/unictype/test-categ_Mn.c: Likewise.
7505         * tests/unictype/test-categ_N.c: Likewise.
7506         * tests/unictype/test-categ_Nd.c: Likewise.
7507         * tests/unictype/test-categ_Nl.c: Likewise.
7508         * tests/unictype/test-categ_No.c: Likewise.
7509         * tests/unictype/test-categ_P.c: Likewise.
7510         * tests/unictype/test-categ_Pc.c: Likewise.
7511         * tests/unictype/test-categ_Pd.c: Likewise.
7512         * tests/unictype/test-categ_Pe.c: Likewise.
7513         * tests/unictype/test-categ_Pf.c: Likewise.
7514         * tests/unictype/test-categ_Pi.c: Likewise.
7515         * tests/unictype/test-categ_Po.c: Likewise.
7516         * tests/unictype/test-categ_Ps.c: Likewise.
7517         * tests/unictype/test-categ_S.c: Likewise.
7518         * tests/unictype/test-categ_Sc.c: Likewise.
7519         * tests/unictype/test-categ_Sk.c: Likewise.
7520         * tests/unictype/test-categ_Sm.c: Likewise.
7521         * tests/unictype/test-categ_So.c: Likewise.
7522         * tests/unictype/test-categ_Z.c: Likewise.
7523         * tests/unictype/test-categ_Zl.c: Likewise.
7524         * tests/unictype/test-categ_Zp.c: Likewise.
7525         * tests/unictype/test-categ_Zs.c: Likewise.
7526         * tests/unictype/test-ctype_alnum.c: Likewise.
7527         * tests/unictype/test-ctype_alpha.c: Likewise.
7528         * tests/unictype/test-ctype_blank.c: Likewise.
7529         * tests/unictype/test-ctype_cntrl.c: Likewise.
7530         * tests/unictype/test-ctype_digit.c: Likewise.
7531         * tests/unictype/test-ctype_graph.c: Likewise.
7532         * tests/unictype/test-ctype_lower.c: Likewise.
7533         * tests/unictype/test-ctype_print.c: Likewise.
7534         * tests/unictype/test-ctype_punct.c: Likewise.
7535         * tests/unictype/test-ctype_space.c: Likewise.
7536         * tests/unictype/test-ctype_upper.c: Likewise.
7537         * tests/unictype/test-ctype_xdigit.c: Likewise.
7538         * tests/unictype/test-decdigit.h: Likewise.
7539         * tests/unictype/test-digit.h: Likewise.
7540         * tests/unictype/test-numeric.h: Likewise.
7541         * tests/unictype/test-pr_alphabetic.c: Likewise.
7542         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
7543         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
7544         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
7545         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
7546         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
7547         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
7548         * tests/unictype/test-pr_bidi_control.c: Likewise.
7549         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
7550         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
7551         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
7552         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
7553         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
7554         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
7555         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
7556         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
7557         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
7558         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
7559         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
7560         * tests/unictype/test-pr_combining.c: Likewise.
7561         * tests/unictype/test-pr_composite.c: Likewise.
7562         * tests/unictype/test-pr_currency_symbol.c: Likewise.
7563         * tests/unictype/test-pr_dash.c: Likewise.
7564         * tests/unictype/test-pr_decimal_digit.c: Likewise.
7565         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
7566         * tests/unictype/test-pr_deprecated.c: Likewise.
7567         * tests/unictype/test-pr_diacritic.c: Likewise.
7568         * tests/unictype/test-pr_extender.c: Likewise.
7569         * tests/unictype/test-pr_format_control.c: Likewise.
7570         * tests/unictype/test-pr_grapheme_base.c: Likewise.
7571         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
7572         * tests/unictype/test-pr_grapheme_link.c: Likewise.
7573         * tests/unictype/test-pr_hex_digit.c: Likewise.
7574         * tests/unictype/test-pr_hyphen.c: Likewise.
7575         * tests/unictype/test-pr_id_continue.c: Likewise.
7576         * tests/unictype/test-pr_id_start.c: Likewise.
7577         * tests/unictype/test-pr_ideographic.c: Likewise.
7578         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
7579         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
7580         * tests/unictype/test-pr_ignorable_control.c: Likewise.
7581         * tests/unictype/test-pr_iso_control.c: Likewise.
7582         * tests/unictype/test-pr_join_control.c: Likewise.
7583         * tests/unictype/test-pr_left_of_pair.c: Likewise.
7584         * tests/unictype/test-pr_line_separator.c: Likewise.
7585         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
7586         * tests/unictype/test-pr_lowercase.c: Likewise.
7587         * tests/unictype/test-pr_math.c: Likewise.
7588         * tests/unictype/test-pr_non_break.c: Likewise.
7589         * tests/unictype/test-pr_not_a_character.c: Likewise.
7590         * tests/unictype/test-pr_numeric.c: Likewise.
7591         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
7592         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
7593         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
7594         * tests/unictype/test-pr_other_id_continue.c: Likewise.
7595         * tests/unictype/test-pr_other_id_start.c: Likewise.
7596         * tests/unictype/test-pr_other_lowercase.c: Likewise.
7597         * tests/unictype/test-pr_other_math.c: Likewise.
7598         * tests/unictype/test-pr_other_uppercase.c: Likewise.
7599         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
7600         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
7601         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
7602         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
7603         * tests/unictype/test-pr_private_use.c: Likewise.
7604         * tests/unictype/test-pr_punctuation.c: Likewise.
7605         * tests/unictype/test-pr_quotation_mark.c: Likewise.
7606         * tests/unictype/test-pr_radical.c: Likewise.
7607         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
7608         * tests/unictype/test-pr_soft_dotted.c: Likewise.
7609         * tests/unictype/test-pr_space.c: Likewise.
7610         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
7611         * tests/unictype/test-pr_titlecase.c: Likewise.
7612         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
7613         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
7614         * tests/unictype/test-pr_uppercase.c: Likewise.
7615         * tests/unictype/test-pr_variation_selector.c: Likewise.
7616         * tests/unictype/test-pr_white_space.c: Likewise.
7617         * tests/unictype/test-pr_xid_continue.c: Likewise.
7618         * tests/unictype/test-pr_xid_start.c: Likewise.
7619         * tests/unictype/test-pr_zero_width.c: Likewise.
7620         * tests/unictype/test-sy_c_whitespace.c: Likewise.
7621         * tests/unictype/test-sy_java_whitespace.c: Likewise.
7622
7623 2007-11-12  Bruno Haible  <bruno@clisp.org>
7624
7625         Unicode character classification functions.
7626         * lib/unictype.h: New file.
7627         * modules/unictype/base: New file.
7628         * modules/unictype/category-L: New file.
7629         * modules/unictype/category-Lu: New file.
7630         * modules/unictype/category-Ll: New file.
7631         * modules/unictype/category-Lt: New file.
7632         * modules/unictype/category-Lm: New file.
7633         * modules/unictype/category-Lo: New file.
7634         * modules/unictype/category-M: New file.
7635         * modules/unictype/category-Mn: New file.
7636         * modules/unictype/category-Mc: New file.
7637         * modules/unictype/category-Me: New file.
7638         * modules/unictype/category-N: New file.
7639         * modules/unictype/category-Nd: New file.
7640         * modules/unictype/category-Nl: New file.
7641         * modules/unictype/category-No: New file.
7642         * modules/unictype/category-P: New file.
7643         * modules/unictype/category-Pc: New file.
7644         * modules/unictype/category-Pd: New file.
7645         * modules/unictype/category-Ps: New file.
7646         * modules/unictype/category-Pe: New file.
7647         * modules/unictype/category-Pi: New file.
7648         * modules/unictype/category-Pf: New file.
7649         * modules/unictype/category-Po: New file.
7650         * modules/unictype/category-S: New file.
7651         * modules/unictype/category-Sm: New file.
7652         * modules/unictype/category-Sc: New file.
7653         * modules/unictype/category-Sk: New file.
7654         * modules/unictype/category-So: New file.
7655         * modules/unictype/category-Z: New file.
7656         * modules/unictype/category-Zs: New file.
7657         * modules/unictype/category-Zl: New file.
7658         * modules/unictype/category-Zp: New file.
7659         * modules/unictype/category-C: New file.
7660         * modules/unictype/category-Cc: New file.
7661         * modules/unictype/category-Cf: New file.
7662         * modules/unictype/category-Cs: New file.
7663         * modules/unictype/category-Co: New file.
7664         * modules/unictype/category-Cn: New file.
7665         * modules/unictype/category-or: New file.
7666         * modules/unictype/category-of: New file.
7667         * modules/unictype/category-test: New file.
7668         * modules/unictype/category-test-withtable: New file.
7669         * modules/unictype/category-byname: New file.
7670         * modules/unictype/category-none: New file.
7671         * modules/unictype/category-and: New file.
7672         * modules/unictype/category-and-not: New file.
7673         * modules/unictype/category-name: New file.
7674         * modules/unictype/combining-class: New file.
7675         * modules/unictype/category-all: New file.
7676         * modules/unictype/bidicategory-all: New file.
7677         * modules/unictype/bidicategory-byname: New file.
7678         * modules/unictype/bidicategory-name: New file.
7679         * modules/unictype/bidicategory-of: New file.
7680         * modules/unictype/bidicategory-test: New file.
7681         * modules/unictype/decimal-digit: New file.
7682         * modules/unictype/digit: New file.
7683         * modules/unictype/numeric: New file.
7684         * modules/unictype/mirror: New file.
7685         * modules/unictype/property-white-space: New file.
7686         * modules/unictype/property-alphabetic: New file.
7687         * modules/unictype/property-other-alphabetic: New file.
7688         * modules/unictype/property-not-a-character: New file.
7689         * modules/unictype/property-default-ignorable-code-point: New file.
7690         * modules/unictype/property-other-default-ignorable-code-point: New
7691         file.
7692         * modules/unictype/property-deprecated: New file.
7693         * modules/unictype/property-logical-order-exception: New file.
7694         * modules/unictype/property-variation-selector: New file.
7695         * modules/unictype/property-private-use: New file.
7696         * modules/unictype/property-unassigned-code-value: New file.
7697         * modules/unictype/property-uppercase: New file.
7698         * modules/unictype/property-other-uppercase: New file.
7699         * modules/unictype/property-lowercase: New file.
7700         * modules/unictype/property-other-lowercase: New file.
7701         * modules/unictype/property-titlecase: New file.
7702         * modules/unictype/property-soft-dotted: New file.
7703         * modules/unictype/property-id-start: New file.
7704         * modules/unictype/property-other-id-start: New file.
7705         * modules/unictype/property-id-continue: New file.
7706         * modules/unictype/property-other-id-continue: New file.
7707         * modules/unictype/property-xid-start: New file.
7708         * modules/unictype/property-xid-continue: New file.
7709         * modules/unictype/property-pattern-white-space: New file.
7710         * modules/unictype/property-pattern-syntax: New file.
7711         * modules/unictype/property-join-control: New file.
7712         * modules/unictype/property-grapheme-base: New file.
7713         * modules/unictype/property-grapheme-extend: New file.
7714         * modules/unictype/property-other-grapheme-extend: New file.
7715         * modules/unictype/property-grapheme-link: New file.
7716         * modules/unictype/property-bidi-control: New file.
7717         * modules/unictype/property-bidi-left-to-right: New file.
7718         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
7719         * modules/unictype/property-bidi-arabic-right-to-left: New file.
7720         * modules/unictype/property-bidi-european-digit: New file.
7721         * modules/unictype/property-bidi-eur-num-separator: New file.
7722         * modules/unictype/property-bidi-eur-num-terminator: New file.
7723         * modules/unictype/property-bidi-arabic-digit: New file.
7724         * modules/unictype/property-bidi-common-separator: New file.
7725         * modules/unictype/property-bidi-block-separator: New file.
7726         * modules/unictype/property-bidi-segment-separator: New file.
7727         * modules/unictype/property-bidi-whitespace: New file.
7728         * modules/unictype/property-bidi-non-spacing-mark: New file.
7729         * modules/unictype/property-bidi-boundary-neutral: New file.
7730         * modules/unictype/property-bidi-pdf: New file.
7731         * modules/unictype/property-bidi-embedding-or-override: New file.
7732         * modules/unictype/property-bidi-other-neutral: New file.
7733         * modules/unictype/property-hex-digit: New file.
7734         * modules/unictype/property-ascii-hex-digit: New file.
7735         * modules/unictype/property-ideographic: New file.
7736         * modules/unictype/property-unified-ideograph: New file.
7737         * modules/unictype/property-radical: New file.
7738         * modules/unictype/property-ids-binary-operator: New file.
7739         * modules/unictype/property-ids-trinary-operator: New file.
7740         * modules/unictype/property-zero-width: New file.
7741         * modules/unictype/property-space: New file.
7742         * modules/unictype/property-non-break: New file.
7743         * modules/unictype/property-iso-control: New file.
7744         * modules/unictype/property-format-control: New file.
7745         * modules/unictype/property-dash: New file.
7746         * modules/unictype/property-hyphen: New file.
7747         * modules/unictype/property-punctuation: New file.
7748         * modules/unictype/property-line-separator: New file.
7749         * modules/unictype/property-paragraph-separator: New file.
7750         * modules/unictype/property-quotation-mark: New file.
7751         * modules/unictype/property-sentence-terminal: New file.
7752         * modules/unictype/property-terminal-punctuation: New file.
7753         * modules/unictype/property-currency-symbol: New file.
7754         * modules/unictype/property-math: New file.
7755         * modules/unictype/property-other-math: New file.
7756         * modules/unictype/property-paired-punctuation: New file.
7757         * modules/unictype/property-left-of-pair: New file.
7758         * modules/unictype/property-combining: New file.
7759         * modules/unictype/property-composite: New file.
7760         * modules/unictype/property-decimal-digit: New file.
7761         * modules/unictype/property-numeric: New file.
7762         * modules/unictype/property-diacritic: New file.
7763         * modules/unictype/property-extender: New file.
7764         * modules/unictype/property-ignorable-control: New file.
7765         * modules/unictype/property-test: New file.
7766         * modules/unictype/property-byname: New file.
7767         * modules/unictype/property-all: New file.
7768         * modules/unictype/scripts: New file.
7769         * modules/unictype/scripts-all: New file.
7770         * modules/unictype/block-of: New file.
7771         * modules/unictype/block-test: New file.
7772         * modules/unictype/block-list: New file.
7773         * modules/unictype/block-all: New file.
7774         * modules/unictype/syntax-c-whitespace: New file.
7775         * modules/unictype/syntax-java-whitespace: New file.
7776         * modules/unictype/syntax-c-ident: New file.
7777         * modules/unictype/syntax-java-ident: New file.
7778         * modules/unictype/ctype-alnum: New file.
7779         * modules/unictype/ctype-alpha: New file.
7780         * modules/unictype/ctype-cntrl: New file.
7781         * modules/unictype/ctype-digit: New file.
7782         * modules/unictype/ctype-graph: New file.
7783         * modules/unictype/ctype-lower: New file.
7784         * modules/unictype/ctype-print: New file.
7785         * modules/unictype/ctype-punct: New file.
7786         * modules/unictype/ctype-space: New file.
7787         * modules/unictype/ctype-upper: New file.
7788         * modules/unictype/ctype-xdigit: New file.
7789         * modules/unictype/ctype-blank: New file.
7790         * lib/unictype/bidi_byname.c: New file.
7791         * lib/unictype/bidi_name.c: New file.
7792         * lib/unictype/bidi_of.c: New file.
7793         * lib/unictype/bidi_test.c: New file.
7794         * lib/unictype/bitmap.h: New file.
7795         * lib/unictype/block_test.c: New file.
7796         * lib/unictype/blocks.c: New file.
7797         * lib/unictype/categ_C.c: New file.
7798         * lib/unictype/categ_Cc.c: New file.
7799         * lib/unictype/categ_Cf.c: New file.
7800         * lib/unictype/categ_Cn.c: New file.
7801         * lib/unictype/categ_Co.c: New file.
7802         * lib/unictype/categ_Cs.c: New file.
7803         * lib/unictype/categ_L.c: New file.
7804         * lib/unictype/categ_Ll.c: New file.
7805         * lib/unictype/categ_Lm.c: New file.
7806         * lib/unictype/categ_Lo.c: New file.
7807         * lib/unictype/categ_Lt.c: New file.
7808         * lib/unictype/categ_Lu.c: New file.
7809         * lib/unictype/categ_M.c: New file.
7810         * lib/unictype/categ_Mc.c: New file.
7811         * lib/unictype/categ_Me.c: New file.
7812         * lib/unictype/categ_Mn.c: New file.
7813         * lib/unictype/categ_N.c: New file.
7814         * lib/unictype/categ_Nd.c: New file.
7815         * lib/unictype/categ_Nl.c: New file.
7816         * lib/unictype/categ_No.c: New file.
7817         * lib/unictype/categ_P.c: New file.
7818         * lib/unictype/categ_Pc.c: New file.
7819         * lib/unictype/categ_Pd.c: New file.
7820         * lib/unictype/categ_Pe.c: New file.
7821         * lib/unictype/categ_Pf.c: New file.
7822         * lib/unictype/categ_Pi.c: New file.
7823         * lib/unictype/categ_Po.c: New file.
7824         * lib/unictype/categ_Ps.c: New file.
7825         * lib/unictype/categ_S.c: New file.
7826         * lib/unictype/categ_Sc.c: New file.
7827         * lib/unictype/categ_Sk.c: New file.
7828         * lib/unictype/categ_Sm.c: New file.
7829         * lib/unictype/categ_So.c: New file.
7830         * lib/unictype/categ_Z.c: New file.
7831         * lib/unictype/categ_Zl.c: New file.
7832         * lib/unictype/categ_Zp.c: New file.
7833         * lib/unictype/categ_Zs.c: New file.
7834         * lib/unictype/categ_and.c: New file.
7835         * lib/unictype/categ_and_not.c: New file.
7836         * lib/unictype/categ_byname.c: New file.
7837         * lib/unictype/categ_name.c: New file.
7838         * lib/unictype/categ_none.c: New file.
7839         * lib/unictype/categ_of.c: New file.
7840         * lib/unictype/categ_or.c: New file.
7841         * lib/unictype/categ_test.c: New file.
7842         * lib/unictype/combining.c: New file.
7843         * lib/unictype/ctype_alnum.c: New file.
7844         * lib/unictype/ctype_alpha.c: New file.
7845         * lib/unictype/ctype_blank.c: New file.
7846         * lib/unictype/ctype_cntrl.c: New file.
7847         * lib/unictype/ctype_digit.c: New file.
7848         * lib/unictype/ctype_graph.c: New file.
7849         * lib/unictype/ctype_lower.c: New file.
7850         * lib/unictype/ctype_print.c: New file.
7851         * lib/unictype/ctype_punct.c: New file.
7852         * lib/unictype/ctype_space.c: New file.
7853         * lib/unictype/ctype_upper.c: New file.
7854         * lib/unictype/ctype_xdigit.c: New file.
7855         * lib/unictype/decdigit.c: New file.
7856         * lib/unictype/digit.c: New file.
7857         * lib/unictype/identsyntaxmap.h: New file.
7858         * lib/unictype/mirror.c: New file.
7859         * lib/unictype/numeric.c: New file.
7860         * lib/unictype/pr_alphabetic.c: New file.
7861         * lib/unictype/pr_ascii_hex_digit.c: New file.
7862         * lib/unictype/pr_bidi_arabic_digit.c: New file.
7863         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
7864         * lib/unictype/pr_bidi_block_separator.c: New file.
7865         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
7866         * lib/unictype/pr_bidi_common_separator.c: New file.
7867         * lib/unictype/pr_bidi_control.c: New file.
7868         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
7869         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
7870         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
7871         * lib/unictype/pr_bidi_european_digit.c: New file.
7872         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
7873         * lib/unictype/pr_bidi_left_to_right.c: New file.
7874         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
7875         * lib/unictype/pr_bidi_other_neutral.c: New file.
7876         * lib/unictype/pr_bidi_pdf.c: New file.
7877         * lib/unictype/pr_bidi_segment_separator.c: New file.
7878         * lib/unictype/pr_bidi_whitespace.c: New file.
7879         * lib/unictype/pr_byname.c: New file.
7880         * lib/unictype/pr_byname.gperf: New file.
7881         * lib/unictype/pr_combining.c: New file.
7882         * lib/unictype/pr_composite.c: New file.
7883         * lib/unictype/pr_currency_symbol.c: New file.
7884         * lib/unictype/pr_dash.c: New file.
7885         * lib/unictype/pr_decimal_digit.c: New file.
7886         * lib/unictype/pr_default_ignorable_code_point.c: New file.
7887         * lib/unictype/pr_deprecated.c: New file.
7888         * lib/unictype/pr_diacritic.c: New file.
7889         * lib/unictype/pr_extender.c: New file.
7890         * lib/unictype/pr_format_control.c: New file.
7891         * lib/unictype/pr_grapheme_base.c: New file.
7892         * lib/unictype/pr_grapheme_extend.c: New file.
7893         * lib/unictype/pr_grapheme_link.c: New file.
7894         * lib/unictype/pr_hex_digit.c: New file.
7895         * lib/unictype/pr_hyphen.c: New file.
7896         * lib/unictype/pr_id_continue.c: New file.
7897         * lib/unictype/pr_id_start.c: New file.
7898         * lib/unictype/pr_ideographic.c: New file.
7899         * lib/unictype/pr_ids_binary_operator.c: New file.
7900         * lib/unictype/pr_ids_trinary_operator.c: New file.
7901         * lib/unictype/pr_ignorable_control.c: New file.
7902         * lib/unictype/pr_iso_control.c: New file.
7903         * lib/unictype/pr_join_control.c: New file.
7904         * lib/unictype/pr_left_of_pair.c: New file.
7905         * lib/unictype/pr_line_separator.c: New file.
7906         * lib/unictype/pr_logical_order_exception.c: New file.
7907         * lib/unictype/pr_lowercase.c: New file.
7908         * lib/unictype/pr_math.c: New file.
7909         * lib/unictype/pr_non_break.c: New file.
7910         * lib/unictype/pr_not_a_character.c: New file.
7911         * lib/unictype/pr_numeric.c: New file.
7912         * lib/unictype/pr_other_alphabetic.c: New file.
7913         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
7914         * lib/unictype/pr_other_grapheme_extend.c: New file.
7915         * lib/unictype/pr_other_id_continue.c: New file.
7916         * lib/unictype/pr_other_id_start.c: New file.
7917         * lib/unictype/pr_other_lowercase.c: New file.
7918         * lib/unictype/pr_other_math.c: New file.
7919         * lib/unictype/pr_other_uppercase.c: New file.
7920         * lib/unictype/pr_paired_punctuation.c: New file.
7921         * lib/unictype/pr_paragraph_separator.c: New file.
7922         * lib/unictype/pr_pattern_syntax.c: New file.
7923         * lib/unictype/pr_pattern_white_space.c: New file.
7924         * lib/unictype/pr_private_use.c: New file.
7925         * lib/unictype/pr_punctuation.c: New file.
7926         * lib/unictype/pr_quotation_mark.c: New file.
7927         * lib/unictype/pr_radical.c: New file.
7928         * lib/unictype/pr_sentence_terminal.c: New file.
7929         * lib/unictype/pr_soft_dotted.c: New file.
7930         * lib/unictype/pr_space.c: New file.
7931         * lib/unictype/pr_terminal_punctuation.c: New file.
7932         * lib/unictype/pr_test.c: New file.
7933         * lib/unictype/pr_titlecase.c: New file.
7934         * lib/unictype/pr_unassigned_code_value.c: New file.
7935         * lib/unictype/pr_unified_ideograph.c: New file.
7936         * lib/unictype/pr_uppercase.c: New file.
7937         * lib/unictype/pr_variation_selector.c: New file.
7938         * lib/unictype/pr_white_space.c: New file.
7939         * lib/unictype/pr_xid_continue.c: New file.
7940         * lib/unictype/pr_xid_start.c: New file.
7941         * lib/unictype/pr_zero_width.c: New file.
7942         * lib/unictype/scripts.c: New file.
7943         * lib/unictype/sy_c_ident.c: New file.
7944         * lib/unictype/sy_c_whitespace.c: New file.
7945         * lib/unictype/sy_java_ident.c: New file.
7946         * lib/unictype/sy_java_whitespace.c: New file.
7947
7948         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
7949         Unicode 5.0.0.
7950         * lib/unictype/blocks.h: Likewise.
7951         * lib/unictype/categ_C.h: Likewise.
7952         * lib/unictype/categ_Cc.h: Likewise.
7953         * lib/unictype/categ_Cf.h: Likewise.
7954         * lib/unictype/categ_Cn.h: Likewise.
7955         * lib/unictype/categ_Co.h: Likewise.
7956         * lib/unictype/categ_Cs.h: Likewise.
7957         * lib/unictype/categ_L.h: Likewise.
7958         * lib/unictype/categ_Ll.h: Likewise.
7959         * lib/unictype/categ_Lm.h: Likewise.
7960         * lib/unictype/categ_Lo.h: Likewise.
7961         * lib/unictype/categ_Lt.h: Likewise.
7962         * lib/unictype/categ_Lu.h: Likewise.
7963         * lib/unictype/categ_M.h: Likewise.
7964         * lib/unictype/categ_Mc.h: Likewise.
7965         * lib/unictype/categ_Me.h: Likewise.
7966         * lib/unictype/categ_Mn.h: Likewise.
7967         * lib/unictype/categ_N.h: Likewise.
7968         * lib/unictype/categ_Nd.h: Likewise.
7969         * lib/unictype/categ_Nl.h: Likewise.
7970         * lib/unictype/categ_No.h: Likewise.
7971         * lib/unictype/categ_P.h: Likewise.
7972         * lib/unictype/categ_Pc.h: Likewise.
7973         * lib/unictype/categ_Pd.h: Likewise.
7974         * lib/unictype/categ_Pe.h: Likewise.
7975         * lib/unictype/categ_Pf.h: Likewise.
7976         * lib/unictype/categ_Pi.h: Likewise.
7977         * lib/unictype/categ_Po.h: Likewise.
7978         * lib/unictype/categ_Ps.h: Likewise.
7979         * lib/unictype/categ_S.h: Likewise.
7980         * lib/unictype/categ_Sc.h: Likewise.
7981         * lib/unictype/categ_Sk.h: Likewise.
7982         * lib/unictype/categ_Sm.h: Likewise.
7983         * lib/unictype/categ_So.h: Likewise.
7984         * lib/unictype/categ_Z.h: Likewise.
7985         * lib/unictype/categ_Zl.h: Likewise.
7986         * lib/unictype/categ_Zp.h: Likewise.
7987         * lib/unictype/categ_Zs.h: Likewise.
7988         * lib/unictype/categ_of.h: Likewise.
7989         * lib/unictype/combining.h: Likewise.
7990         * lib/unictype/ctype_alnum.h: Likewise.
7991         * lib/unictype/ctype_alpha.h: Likewise.
7992         * lib/unictype/ctype_blank.h: Likewise.
7993         * lib/unictype/ctype_cntrl.h: Likewise.
7994         * lib/unictype/ctype_digit.h: Likewise.
7995         * lib/unictype/ctype_graph.h: Likewise.
7996         * lib/unictype/ctype_lower.h: Likewise.
7997         * lib/unictype/ctype_print.h: Likewise.
7998         * lib/unictype/ctype_punct.h: Likewise.
7999         * lib/unictype/ctype_space.h: Likewise.
8000         * lib/unictype/ctype_upper.h: Likewise.
8001         * lib/unictype/ctype_xdigit.h: Likewise.
8002         * lib/unictype/decdigit.h: Likewise.
8003         * lib/unictype/digit.h: Likewise.
8004         * lib/unictype/mirror.h: Likewise.
8005         * lib/unictype/numeric.h: Likewise.
8006         * lib/unictype/pr_alphabetic.h: Likewise.
8007         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
8008         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
8009         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
8010         * lib/unictype/pr_bidi_block_separator.h: Likewise.
8011         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
8012         * lib/unictype/pr_bidi_common_separator.h: Likewise.
8013         * lib/unictype/pr_bidi_control.h: Likewise.
8014         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
8015         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
8016         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
8017         * lib/unictype/pr_bidi_european_digit.h: Likewise.
8018         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
8019         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
8020         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
8021         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
8022         * lib/unictype/pr_bidi_pdf.h: Likewise.
8023         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
8024         * lib/unictype/pr_bidi_whitespace.h: Likewise.
8025         * lib/unictype/pr_combining.h: Likewise.
8026         * lib/unictype/pr_composite.h: Likewise.
8027         * lib/unictype/pr_currency_symbol.h: Likewise.
8028         * lib/unictype/pr_dash.h: Likewise.
8029         * lib/unictype/pr_decimal_digit.h: Likewise.
8030         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
8031         * lib/unictype/pr_deprecated.h: Likewise.
8032         * lib/unictype/pr_diacritic.h: Likewise.
8033         * lib/unictype/pr_extender.h: Likewise.
8034         * lib/unictype/pr_format_control.h: Likewise.
8035         * lib/unictype/pr_grapheme_base.h: Likewise.
8036         * lib/unictype/pr_grapheme_extend.h: Likewise.
8037         * lib/unictype/pr_grapheme_link.h: Likewise.
8038         * lib/unictype/pr_hex_digit.h: Likewise.
8039         * lib/unictype/pr_hyphen.h: Likewise.
8040         * lib/unictype/pr_id_continue.h: Likewise.
8041         * lib/unictype/pr_id_start.h: Likewise.
8042         * lib/unictype/pr_ideographic.h: Likewise.
8043         * lib/unictype/pr_ids_binary_operator.h: Likewise.
8044         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
8045         * lib/unictype/pr_ignorable_control.h: Likewise.
8046         * lib/unictype/pr_iso_control.h: Likewise.
8047         * lib/unictype/pr_join_control.h: Likewise.
8048         * lib/unictype/pr_left_of_pair.h: Likewise.
8049         * lib/unictype/pr_line_separator.h: Likewise.
8050         * lib/unictype/pr_logical_order_exception.h: Likewise.
8051         * lib/unictype/pr_lowercase.h: Likewise.
8052         * lib/unictype/pr_math.h: Likewise.
8053         * lib/unictype/pr_non_break.h: Likewise.
8054         * lib/unictype/pr_not_a_character.h: Likewise.
8055         * lib/unictype/pr_numeric.h: Likewise.
8056         * lib/unictype/pr_other_alphabetic.h: Likewise.
8057         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
8058         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
8059         * lib/unictype/pr_other_id_continue.h: Likewise.
8060         * lib/unictype/pr_other_id_start.h: Likewise.
8061         * lib/unictype/pr_other_lowercase.h: Likewise.
8062         * lib/unictype/pr_other_math.h: Likewise.
8063         * lib/unictype/pr_other_uppercase.h: Likewise.
8064         * lib/unictype/pr_paired_punctuation.h: Likewise.
8065         * lib/unictype/pr_paragraph_separator.h: Likewise.
8066         * lib/unictype/pr_pattern_syntax.h: Likewise.
8067         * lib/unictype/pr_pattern_white_space.h: Likewise.
8068         * lib/unictype/pr_private_use.h: Likewise.
8069         * lib/unictype/pr_punctuation.h: Likewise.
8070         * lib/unictype/pr_quotation_mark.h: Likewise.
8071         * lib/unictype/pr_radical.h: Likewise.
8072         * lib/unictype/pr_sentence_terminal.h: Likewise.
8073         * lib/unictype/pr_soft_dotted.h: Likewise.
8074         * lib/unictype/pr_space.h: Likewise.
8075         * lib/unictype/pr_terminal_punctuation.h: Likewise.
8076         * lib/unictype/pr_titlecase.h: Likewise.
8077         * lib/unictype/pr_unassigned_code_value.h: Likewise.
8078         * lib/unictype/pr_unified_ideograph.h: Likewise.
8079         * lib/unictype/pr_uppercase.h: Likewise.
8080         * lib/unictype/pr_variation_selector.h: Likewise.
8081         * lib/unictype/pr_white_space.h: Likewise.
8082         * lib/unictype/pr_xid_continue.h: Likewise.
8083         * lib/unictype/pr_xid_start.h: Likewise.
8084         * lib/unictype/pr_zero_width.h: Likewise.
8085         * lib/unictype/scripts.h: Likewise.
8086         * lib/unictype/scripts_byname.gperf: Likewise.
8087         * lib/unictype/sy_c_ident.h: Likewise.
8088         * lib/unictype/sy_c_whitespace.h: Likewise.
8089         * lib/unictype/sy_java_ident.h: Likewise.
8090         * lib/unictype/sy_java_whitespace.h: Likewise.
8091
8092         * lib/unictype/Makefile: New file.
8093         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
8094         glibc.
8095         * lib/unictype/3level.h: New file, copied from glibc.
8096         * lib/unictype/3levelbit.h: New file.
8097
8098 2007-11-11  Bruno Haible  <bruno@clisp.org>
8099
8100         * modules/gperf: New file.
8101         * modules/iconv_open (Depends-on): Add it.
8102         (Makefile.am): Remove the GPERF definition.
8103
8104 2007-11-11  Bruno Haible  <bruno@clisp.org>
8105
8106         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
8107         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
8108
8109 2007-11-11  Bruno Haible  <bruno@clisp.org>
8110
8111         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
8112         (usage): Remove function.
8113
8114 2007-11-11  Bruno Haible  <bruno@clisp.org>
8115
8116         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
8117         gl_FUNC_CEILF_LIBS.
8118         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
8119         gl_FUNC_CEIL_LIBS.
8120         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
8121         gl_FUNC_CEILL_LIBS.
8122         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
8123         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
8124         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
8125
8126 2007-11-11  Bruno Haible  <bruno@clisp.org>
8127
8128         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
8129         roundf were declared but do not exist on functions.
8130         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
8131         roundl were declared but do not exist on functions.
8132         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
8133         HAVE_FLOORL_AND_CEILL, respectively.
8134         Needed for Sun C on Solaris 10.
8135
8136 2007-11-11  Bruno Haible  <bruno@clisp.org>
8137
8138         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
8139         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
8140         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
8141         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
8142         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
8143         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
8144         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
8145         HAVE_DECL_ROUNDF.
8146         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
8147         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
8148         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
8149         of HAVE_DECL_ROUND*.
8150         * modules/math (Makefile.am): Update.
8151
8152 2007-11-10  Bruno Haible  <bruno@clisp.org>
8153
8154         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
8155         ptrdiff_t as m4/intl.m4.
8156
8157 2007-11-10  Jim Meyering  <meyering@redhat.com>
8158
8159         Avoid link failure for the argmatch test.
8160         * tests/test-argmatch.c (usage): Define function to avoid a link
8161         failure: argmatch_die requires a usage function.
8162
8163 2007-11-09  Bruno Haible  <bruno@clisp.org>
8164
8165         * doc/functions/snprintf.texi: Mention BeOS deficiency.
8166         * doc/functions/vsnprintf.texi: Likewise.
8167         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
8168         with a size argument < 2.
8169
8170 2007-11-09  Bruno Haible  <bruno@clisp.org>
8171
8172         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
8173         buffer. Fixes an inefficiency introduced on 2007-11-03.
8174
8175 2007-11-09  Bruno Haible  <bruno@clisp.org>
8176
8177         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
8178         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
8179
8180 2007-11-08  Jim Meyering  <meyering@redhat.com>
8181
8182         Change cache variable name prefix "jm_" to "gl_" everywhere.
8183         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
8184         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
8185         * m4/uptime.m4: s/gl_/jm_/
8186
8187 2007-11-07  Bruno Haible  <bruno@clisp.org>
8188
8189         Update to GNU gettext 0.17.
8190         * m4/intl.m4: Update to GNU gettext 0.17.
8191         * m4/po.m4: Likewise.
8192         * modules/gettext (Files): Remove m4/ulonglong.m4.
8193         (configure.ac): Require gettext infrastructure from version 0.17.
8194
8195 2007-11-06  Bruno Haible  <bruno@clisp.org>
8196
8197         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
8198         symbolic values are not defined in a public header.
8199         * lib/freadable.c (freadable) [QNX]: Likewise.
8200         * lib/freadahead.c (freadahead) [QNX]: Likewise.
8201         * lib/freading.c (freading) [QNX]: Likewise.
8202         * lib/fseterr.c (fseterr) [QNX]: Likewise.
8203         * lib/fwritable.c (fwritable) [QNX]: Likewise.
8204         * lib/fwriting.c (fwriting) [QNX]: Likewise.
8205         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
8206         Reported by Alain Magloire.
8207
8208         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
8209
8210 2007-11-05  Bruno Haible  <bruno@clisp.org>
8211
8212         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
8213         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
8214         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
8215         Reported by Eric Blake.
8216
8217 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8218             Bruno Haible  <bruno@clisp.org>
8219
8220         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
8221         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
8222         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
8223         (malloc): Undefine also before including <stdlib.h>.
8224         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
8225         Needed on OSF/1 4.0.
8226
8227 2007-11-05  Jim Meyering  <meyering@redhat.com>
8228
8229         git-version-gen: sync from coreutils.
8230         * build-aux/git-version-gen: Add comments.
8231         Change the first '-' to '.' in the snapshot version string,
8232         e.g., 6.9-377-08144 -> 6.9.377-08144
8233         Remove first parameter.
8234         Don't declare a version "-dirty" merely because a time
8235         stamp has changed.
8236
8237 2007-11-04  Bruno Haible  <bruno@clisp.org>
8238
8239         * lib/lock.h: Protect all macro definitions containing an 'if'
8240         statement through a "do { ... } while (0)".
8241         * lib/tls.h: Likewise.
8242
8243 2007-11-04  Bruno Haible  <bruno@clisp.org>
8244
8245         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
8246
8247 2007-11-04  Bruno Haible  <bruno@clisp.org>
8248
8249         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
8250         * modules/fprintf-posix (Depends-on): Add nocrash.
8251         * modules/snprintf-posix (Depends-on): Likewise.
8252         * modules/sprintf-posix (Depends-on): Likewise.
8253         * modules/vasnprintf-posix (Depends-on): Likewise.
8254         * modules/vasprintf-posix (Depends-on): Likewise.
8255         * modules/vfprintf-posix (Depends-on): Likewise.
8256         * modules/vsnprintf-posix (Depends-on): Likewise.
8257         * modules/vsprintf-posix (Depends-on): Likewise.
8258         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
8259         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
8260         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
8261         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
8262         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
8263         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
8264         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
8265
8266 2007-11-04  Bruno Haible  <bruno@clisp.org>
8267
8268         * modules/nocrash: New file.
8269         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
8270         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
8271
8272 2007-11-04  Bruno Haible  <bruno@clisp.org>
8273
8274         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
8275         precision handling.
8276         * tests/test-vasprintf-posix.c (test_function): Likewise.
8277         * tests/test-snprintf-posix.h (test_function): Likewise.
8278         * tests/test-sprintf-posix.h (test_function): Likewise.
8279
8280         Fix *printf behaviour for large precisions on mingw and BeOS.
8281         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
8282         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
8283         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
8284         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8285         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8286         gl_PRINTF_PRECISION and test its result. Invoke
8287         gl_PREREQ_VASNPRINTF_PRECISION.
8288         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8289         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8290         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8291         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8292         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8293         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8294         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8295         * doc/functions/fprintf.texi: Update.
8296         * doc/functions/printf.texi: Update.
8297         * doc/functions/snprintf.texi: Update.
8298         * doc/functions/sprintf.texi: Update.
8299         * doc/functions/vfprintf.texi: Update.
8300         * doc/functions/vprintf.texi: Update.
8301         * doc/functions/vsnprintf.texi: Update.
8302         * doc/functions/vsprintf.texi: Update.
8303
8304 2007-11-04  Bruno Haible  <bruno@clisp.org>
8305
8306         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
8307
8308 2007-11-04  Bruno Haible  <bruno@clisp.org>
8309
8310         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
8311         Reported by Sylvain Beucler <beuc@gnu.org>.
8312
8313 2007-11-03  Bruno Haible  <bruno@clisp.org>
8314
8315         * tests/test-fprintf-posix2.sh: New file.
8316         * tests/test-fprintf-posix2.c: New file.
8317         * modules/fprintf-posix-tests (Files): Add them.
8318         (TESTS): Add test-fprintf-posix2.sh.
8319         (configure.ac): Check for getrlimit and setrlimit.
8320         (check_PROGRAMS): Add test-fprintf-posix2.
8321
8322         * tests/test-printf-posix2.sh: New file.
8323         * tests/test-printf-posix2.c: New file.
8324         * modules/printf-posix-tests (Files): Add them.
8325         (TESTS): Add test-printf-posix2.sh.
8326         (configure.ac): Check for getrlimit and setrlimit.
8327         (check_PROGRAMS): Add test-printf-posix2.
8328
8329         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
8330         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
8331         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
8332         (decode_double): New function, copied from decode_long_double.
8333         (scale10_round_decimal_decoded): New function, extracted from
8334         scale10_round_decimal_long_double.
8335         (scale10_round_decimal_long_double): Use it.
8336         (scale10_round_decimal_double): New function.
8337         (floorlog10): New function.
8338         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
8339         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
8340         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8341         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8342         gl_PRINTF_ENOMEM and test its result. Invoke
8343         gl_PREREQ_VASNPRINTF_ENOMEM.
8344         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8345         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8346         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8347         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8348         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8349         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8350         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8351         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
8352         * modules/snprintf-posix (Depends-on): Likewise.
8353         * modules/sprintf-posix (Depends-on): Likewise.
8354         * modules/vasnprintf-posix (Depends-on): Likewise.
8355         * modules/vasprintf-posix (Depends-on): Likewise.
8356         * modules/vfprintf-posix (Depends-on): Likewise.
8357         * modules/vsnprintf-posix (Depends-on): Likewise.
8358         * modules/vsprintf-posix (Depends-on): Likewise.
8359         * doc/functions/fprintf.texi: Update.
8360         * doc/functions/printf.texi: Update.
8361         * doc/functions/snprintf.texi: Update.
8362         * doc/functions/sprintf.texi: Update.
8363         * doc/functions/vfprintf.texi: Update.
8364         * doc/functions/vprintf.texi: Update.
8365         * doc/functions/vsnprintf.texi: Update.
8366         * doc/functions/vsprintf.texi: Update.
8367
8368 2007-11-03  Bruno Haible  <bruno@clisp.org>
8369
8370         * modules/frexp-nolibm-tests: New file.
8371
8372         * modules/frexp-nolibm: New file.
8373         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
8374
8375 2007-11-03  Bruno Haible  <bruno@clisp.org>
8376
8377         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
8378         value is C99 compliant.
8379         Needed for OSF/1 5.1.
8380
8381 2007-11-03  Bruno Haible  <bruno@clisp.org>
8382
8383         Fix out-of-memory handling of vasnprintf.
8384         * lib/printf-parse.c: Include <errno.h>.
8385         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
8386         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
8387         is already set.
8388
8389 2007-11-02  Eric Blake  <ebb9@byu.net>
8390
8391         Fix tests on cygwin.
8392         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
8393
8394 2007-11-01  Bruno Haible  <bruno@clisp.org>
8395
8396         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
8397         warning.
8398         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
8399         needed for POSIX compatibility.
8400
8401 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
8402
8403         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
8404         for compatibility with GNU.
8405
8406 2007-11-01  Bruno Haible  <bruno@clisp.org>
8407
8408         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
8409         (putenv): Renamed from rpl_putenv. Change argument type from
8410         'const char *' to 'char *'.
8411         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
8412         of defining putenv in config.h, just set REPLACE_PUTENV.
8413         * modules/putenv (Depends-on): Add stdlib.
8414         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
8415         (Include): Use <stdlib.h>.
8416         * lib/stdlib.in.h (putenv): New declaration.
8417         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
8418         REPLACE_PUTENV.
8419         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
8420         REPLACE_PUTENV.
8421         Needed for MacOS X 10.5.0.
8422         Reported by Peter O'Gorman <peter@pogma.com>.
8423
8424 2007-11-01  Jim Meyering  <meyering@redhat.com>
8425
8426         Treat an empty date string exactly like "0".
8427         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
8428         if the remaining date string (to be parsed) is empty, use "0".
8429         Reported by Mischa Molhoek and discussed in this thread:
8430         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
8431
8432 2007-10-31  Bruno Haible  <bruno@clisp.org>
8433
8434         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
8435         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
8436         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
8437         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
8438         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
8439         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
8440
8441 2007-10-31  Bruno Haible  <bruno@clisp.org>
8442
8443         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
8444         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
8445         (AC_TYPE_LONG_LONG_INT): Use it.
8446         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
8447         it as well.
8448         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
8449         to m4/longlong.m4.
8450         * modules/stdint (Files): Remove m4/ulonglong.m4.
8451         * modules/strtoull (Files): Use m4/longlong.m4 instead of
8452         m4/ulonglong.m4.
8453         * modules/strtoumax (Files): Likewise.
8454
8455 2007-10-30  Bruno Haible  <bruno@clisp.org>
8456
8457         * modules/xvasprintf-posix: New file.
8458         Suggested by Eric Blake.
8459
8460 2007-10-30  Bruno Haible  <bruno@clisp.org>
8461
8462         * modules/xprintf-posix-tests: New file.
8463         * tests/test-xprintf-posix.sh: New file.
8464         * tests/test-xprintf-posix.c: New file.
8465         * tests/test-xfprintf-posix.c: New file.
8466
8467         * modules/xprintf-posix: New file.
8468
8469 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8470
8471         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
8472         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
8473         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
8474
8475 2007-10-29  Bruno Haible  <bruno@clisp.org>
8476
8477         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
8478         contain the special marker '_cv_'.
8479         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
8480         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
8481         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
8482         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
8483         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
8484         Reported by Ralf Wildenhues.
8485
8486 2007-10-29  Bruno Haible  <bruno@clisp.org>
8487
8488         * gnulib-tool (func_import): When --lgpl is not specified, set
8489         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
8490         GPLv3.
8491         Reported by Simon Josefsson.
8492
8493 2007-10-28  Bruno Haible  <bruno@clisp.org>
8494
8495         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
8496         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
8497         HAVE_DECL_ISFINITE.
8498         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8499         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
8500         HAVE_DECL_ISFINITE.
8501
8502 2007-10-28  Bruno Haible  <bruno@clisp.org>
8503
8504         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
8505         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
8506
8507 2007-10-28  Bruno Haible  <bruno@clisp.org>
8508
8509         Fix link errors with Sun C 5.0 on Solaris 10.
8510         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
8511         function is declared but not present in the compiler's libm.
8512         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
8513         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
8514         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
8515         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
8516         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
8517         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
8518         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
8519         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
8520         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
8521         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
8522         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
8523         HAVE_DECL_FLOORL.
8524
8525 2007-10-28  Bruno Haible  <bruno@clisp.org>
8526
8527         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
8528         gl_FUNC_FLOORL. Cache the result.
8529         (gl_FUNC_FLOORL): Use it.
8530         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
8531         gl_FUNC_CEILL. Cache the result.
8532         (gl_FUNC_CEILL): Use it.
8533
8534         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
8535         gl_FUNC_FLOOR. Cache the result.
8536         (gl_FUNC_FLOOR): Use it.
8537         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
8538         gl_FUNC_CEIL. Cache the result.
8539         (gl_FUNC_CEIL): Use it.
8540
8541         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
8542         gl_FUNC_FLOORF. Cache the result.
8543         (gl_FUNC_FLOORF): Use it.
8544         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
8545         gl_FUNC_CEILF. Cache the result.
8546         (gl_FUNC_CEILF): Use it.
8547
8548 2007-10-28  Bruno Haible  <bruno@clisp.org>
8549
8550         * gnulib-tool: Allow specifying the LGPL version number through
8551         --lgpl=2 or --lgpl=3.
8552         (func_usage): Document --lgpl with argument.
8553         Handle --lgpl=... arguments.
8554         (func_import): Recognize also gl_LGPL calls with an argument. When
8555         --lgpl=2 is used and the module's license is just LGPL, report an
8556         error. Set sed_transform_lib_file according to the lgpl variable. In
8557         the generated files, use --lgpl or gl_LGPL invocations with argument,
8558         if necessary.
8559         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
8560         an LGPv2+ license.
8561         * doc/gnulib-tool.texi (Modified imports): Update explanation of
8562         gl_LGPL macro.
8563
8564 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8565             Bruno Haible  <bruno@clisp.org>
8566
8567         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
8568         (u16_uctomb_aux): Likewise.
8569         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
8570         !HAVE_INLINE.
8571         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
8572
8573 2007-10-28  Bruno Haible  <bruno@clisp.org>
8574
8575         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
8576         Invoke AM_GETTEXT_OPTION if it exists.
8577         * modules/vasprintf: Likewise.
8578         * modules/verror: Likewise.
8579         * modules/xprintf: Likewise.
8580         * modules/xvasprintf: Likewise.
8581
8582 2007-10-27  Ben Pfaff  <blp@gnu.org>
8583
8584         * lib/math.in.h: Define isfinite macro and prototypes for
8585         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
8586         implementations.
8587         * m4/math_h.m4: New substitutions for isfinite module.
8588         * lib/isfinite.c: New file.
8589         * m4/isfinite.m4: New file.
8590         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
8591         * modules/isfinite: New file.
8592         * modules/isfinite-tests: New file.
8593         * tests/tests-isfinite.c: New file.
8594         * doc/functions/isfinite.texi: Mention isfinite module.
8595         * MODULES.html.sh: Mention new module.
8596
8597 2007-10-27  Ben Pfaff  <blp@gnu.org>
8598
8599         Ralf Wildenhues reported that Tru64 4.0D declares the round
8600         functions but does not have definitions.
8601         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
8602         cannot be found in any library, set the output variable to
8603         "missing" instead of "".
8604         * m4/round.m4: Also use our substitute if we cannot find round in
8605         any library, even if it is declared.
8606         * m4/roundf.m4: Likewise for roundf.
8607         * m4/roundl.m4: Likewise for roundl.
8608         * lib/math.in.h: Undefine roundf, round, roundl before defining
8609         their replacements, to allow for hypothetical systems where these
8610         may be defined as macros but not available in libraries.
8611
8612 2007-10-27  Bruno Haible  <bruno@clisp.org>
8613
8614         * doc/gnulib.texi: Invoke @firstparagraphindent.
8615         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
8616         changes in gnulib.
8617         (Source changes): New section.
8618
8619 2007-10-26  Bruno Haible  <bruno@clisp.org>
8620
8621         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
8622         borrowed from autoconf.
8623
8624 2007-10-26  Bruno Haible  <bruno@clisp.org>
8625
8626         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
8627         strerror returned the empty string. Needed on HP-UX 11.00.
8628
8629 2007-10-24  Micah Cowan  <micah@cowan.name>
8630
8631         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
8632         * build-aux/bootstrap: Remove support for now-unnecessary option,
8633         --cvs-user, and envvars CVS_USER, CVS_RSH.
8634
8635 2007-10-24  Jim Meyering  <meyering@redhat.com>
8636
8637         Avoid diagnostics from sha1sum when there is no cached checksum.
8638         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
8639         if the po.s1 file hasn't been created yet.
8640
8641         * build-aux/bootstrap: Sync from coreutils:
8642         2007-10-24  Jim Meyering  <meyering@redhat.com>
8643         Get gnulib from the git repository, not from an obsolete cvs one.
8644         * build-aux/bootstrap: Suggestion from Micah Cowan.
8645         2007-10-04  Jim Meyering  <jim@meyering.net>
8646         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
8647         (update_po_files): Work also when there are no .po files in po/.
8648
8649 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8650
8651         * README: Append ".git" to git and cg examples.
8652         Problem reported by Benoit Sigoure.
8653
8654 2007-10-23  Micah Cowan  <micah@cowan.name>
8655
8656         * users.txt: Add wget.
8657
8658 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8659
8660         Fix linking of some unistdio tests on FreeBSD.
8661         * modules/unistdio/u16-vsnprintf-tests
8662         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
8663         * modules/unistdio/u16-vsprintf-tests
8664         (test_u16_vsnprintf1_LDADD): Likewise.
8665         * modules/unistdio/u32-vsnprintf-tests
8666         (test_u32_vsnprintf1_LDADD): Likewise.
8667         * modules/unistdio/u32-vsprintf-tests
8668         (test_u32_vsprintf1_LDADD): Likewise.
8669         * modules/unistdio/u8-vsnprintf-tests
8670         (test_u8_vsnprintf1_LDADD): Likewise.
8671         * modules/unistdio/u8-vsprintf-tests
8672         (test_u8_vsprintf1_LDADD): Likewise.
8673         * modules/unistdio/ulc-vsnprintf-tests
8674         (test_ulc_vsnprintf1_LDADD): Likewise.
8675         * modules/unistdio/ulc-vsprintf-tests
8676         (test_ulc_vsprintf1_LDADD): Likewise.
8677
8678         Fix linking of some uniconv tests on FreeBSD.
8679         * modules/uniconv/u16-conv-from-enc-tests
8680         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
8681         * modules/uniconv/u16-conv-to-enc-tests
8682         (test_u16_conv_to_enc_LDADD): Likewise.
8683         * modules/uniconv/u16-strconv-from-enc-tests
8684         (test_u16_strconv_from_enc_LDADD): Likewise.
8685         * modules/uniconv/u16-strconv-to-enc-tests
8686         (test_u16_strconv_to_enc_LDADD): Likewise.
8687         * modules/uniconv/u32-conv-from-enc-tests
8688         (test_u32_conv_from_enc_LDADD): Likewise.
8689         * modules/uniconv/u32-conv-to-enc-tests
8690         (test_u32_conv_to_enc_LDADD): Likewise.
8691         * modules/uniconv/u32-strconv-from-enc-tests
8692         (test_u32_strconv_from_enc_LDADD): Likewise.
8693         * modules/uniconv/u32-strconv-to-enc-tests
8694         (test_u32_strconv_to_enc_LDADD): Likewise.
8695         * modules/uniconv/u8-conv-from-enc-tests
8696         (test_u8_conv_from_enc_LDADD): Likewise.
8697         * modules/uniconv/u8-conv-to-enc-tests
8698         (test_u8_conv_to_enc_LDADD): Likewise.
8699         * modules/uniconv/u8-strconv-from-enc-tests
8700         (test_u8_strconv_from_enc_LDADD): Likewise.
8701         * modules/uniconv/u8-strconv-to-enc-tests
8702         (test_u8_strconv_to_enc_LDADD): Likewise.
8703
8704 2007-10-22  Bruno Haible  <bruno@clisp.org>
8705
8706         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
8707         size.
8708
8709 2007-10-22  Eric Blake  <ebb9@byu.net>
8710
8711         Tweak x*printf documentation.
8712         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
8713         variable name and comments.
8714         Suggested by Bruno Haible.
8715
8716 2007-10-22  Bruno Haible  <bruno@clisp.org>
8717
8718         * lib/acl.c (copy_acl): Fix file name in comment.
8719
8720 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8721
8722         Fix Tru64 problem with stdbool.h.
8723         * lib/stdbool.in.h (false, true):
8724         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
8725         Don't declare as an enum in this situation; it runs afoul of Tru64.
8726         Problem reported by Steven M. Schweda in
8727         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
8728
8729 2007-10-22  Eric Blake  <ebb9@byu.net>
8730
8731         Also wrap vf?printf.
8732         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
8733         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
8734         (xvprintf, xvfprintf): New functions.
8735
8736 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8737
8738         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
8739         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
8740
8741         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
8742         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
8743
8744 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
8745
8746         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
8747         by Bruno Haible.
8748
8749 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8750
8751         * lib/getloadavg.c
8752         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
8753         Undef `sys' after including sys/table.h, for Tru64 4.0D.
8754
8755         * tests/test-i-ring.c: Work for C89.
8756
8757 2007-10-22  Bruno Haible  <bruno@clisp.org>
8758
8759         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
8760         -1u, in preprocessor expression, so that we don't test for the bug
8761         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
8762         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
8763
8764 2007-10-22  Eric Blake  <ebb9@byu.net>
8765
8766         * tests/test-yesno.sh: Silence stderr during test.
8767
8768 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8769
8770         * modules/crypto/gc-camellia: New file.
8771
8772         * m4/gc-camellia.m4: New file.
8773
8774         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
8775
8776         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
8777
8778 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8779
8780         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
8781         --help to stdout.  Reported by sms@antinode.org (Steven
8782         M. Schweda).
8783
8784 2007-10-22  Simon Josefsson  <simon@josefsson.org>
8785
8786         * users.txt: Fix link to libksba.
8787
8788 2007-10-21  Ben Pfaff  <blp@gnu.org>
8789
8790         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
8791         round.c roundf implementation that depends on floorf and ceilf to
8792         be tested unconditionally.
8793
8794 2007-10-21  Ben Pfaff  <blp@gnu.org>
8795
8796         * m4/check-libm-func.m4: Removed.
8797         * m4/check-math-lib.m4: New file.
8798         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
8799         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
8800         definition and lack of AC_LIBOBJ([roundf]).
8801         * m4/roundl.m4: Ditto, and similarly for roundl.
8802         * modules/round: Reference new m4 file.
8803         * modules/roundf: Ditto.
8804         * modules/roundl: Ditto.
8805         * tests/test-round2.c (main): Use ROUND instead of round.
8806         Bug report from Bruno Haible.
8807
8808 2007-10-21  Bruno Haible  <bruno@clisp.org>
8809
8810         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
8811         context.
8812
8813 2007-10-21  Bruno Haible  <bruno@clisp.org>
8814
8815         * tests/test-wcwidth.c (main): Allow negative result for some control
8816         characters.
8817
8818         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
8819         Needed on OSF/1 5.1.
8820
8821 2007-10-21  Bruno Haible  <bruno@clisp.org>
8822
8823         * tests/test-floorf1.c: Include isnanf.h.
8824         (main): Use isnanf() instead of isnan().
8825         * tests/test-ceilf1.c: Include isnanf.h.
8826         (main): Use isnanf() instead of isnan().
8827         * tests/test-truncf1.c: Include isnanf.h.
8828         (main): Use isnanf() instead of isnan().
8829         * tests/test-roundf1.c: Include isnanf.h.
8830         (main): Use isnanf() instead of isnan().
8831
8832 2007-10-21  Eric Blake  <ebb9@byu.net>
8833
8834         * users.txt: Update URL for m4.
8835
8836 2007-10-21  Bruno Haible  <bruno@clisp.org>
8837
8838         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
8839
8840 2007-10-21  Bruno Haible  <bruno@clisp.org>
8841
8842         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
8843         Git's management files if the CVS files are not present.
8844
8845 2007-10-20  Bruno Haible  <bruno@clisp.org>
8846
8847         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
8848         gcc-3.4.x.
8849
8850 2007-10-20  Ben Pfaff  <blp@gnu.org>
8851
8852         * lib/math.in.h: Declare round, roundf, roundl if we are providing
8853         implementations.
8854         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
8855         * lib/round.c: New file.
8856         * lib/roundf.c: New file.
8857         * lib/roundl.c: New file.
8858         * m4/round.m4: New file.
8859         * m4/roundf.m4: New file.
8860         * m4/roundl.m4: New file.
8861         * m4/check-libm-func-m4: New file.
8862         * modules/math: Replace round, roundf, roundl related @VARS@ in
8863         math.in.h.
8864         * modules/round: New file.
8865         * modules/round-tests: New file.
8866         * modules/roundf: New file.
8867         * modules/roundf-tests: New file.
8868         * modules/roundl: New file.
8869         * modules/roundl-tests: New file.
8870         * tests/test-round1.c: New file.
8871         * tests/test-round2.c: New file.
8872         * tests/test-roundf1.c: New file.
8873         * tests/test-roundf2.c: New file.
8874         * tests/test-roundl.c: New file.
8875         * doc/functions/round.texi: Mention round module.
8876         * doc/functions/roundf.texi: Mention roundf module.
8877         * doc/functions/roundl.texi: Mention roundl module.
8878         * MODULES.html.sh: Mention new modules.
8879         Thanks to Bruno Haible for suggestions.
8880
8881 2007-10-20  Jim Meyering  <meyering@redhat.com>
8882
8883         * lib/xprintf.c: Include <config.h> unconditionally.
8884
8885         Change xprintf's license to GPL.
8886         * modules/xprintf (License): s/LGPL/GPL/, since this module
8887         depends on modules (exit and exitfail) which are GPL.
8888         Suggestion from Bruno Haible.
8889
8890         xprintf fixes.
8891         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
8892         Use a clearer diagnostic.
8893         Patch from Bruno Haible.
8894
8895 2007-10-20  Bruno Haible  <bruno@clisp.org>
8896
8897         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
8898         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
8899         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8900
8901 2007-10-20  Bruno Haible  <bruno@clisp.org>
8902
8903         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
8904         precision in the comparison result > x - 1 or similar.
8905         * tests/test-ceilf2.c (correct_result_p): Likewise.
8906         * tests/test-truncf2.c (correct_result_p): Likewise.
8907         * tests/test-trunc2.c (correct_result_p): Likewise.
8908         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8909
8910 2007-10-20  Bruno Haible  <bruno@clisp.org>
8911
8912         * modules/ceil: New file.
8913         * m4/ceil.m4: New file.
8914         * doc/functions/ceil.texi: Mention the 'ceil' module.
8915
8916 2007-10-20  Bruno Haible  <bruno@clisp.org>
8917
8918         * modules/floor: New file.
8919         * m4/floor.m4: New file.
8920         * doc/functions/floor.texi: Mention the 'floor' module.
8921
8922 2007-10-20  Bruno Haible  <bruno@clisp.org>
8923
8924         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
8925         of %a.
8926         * modules/floorf-tests (Depends-on): Likewise.
8927         * modules/truncf-tests (Depends-on): Likewise.
8928         * modules/trunc-tests (Depends-on): Likewise.
8929         Reported by Ben Pfaff.
8930
8931 2007-10-19  Jim Meyering  <meyering@redhat.com>
8932
8933         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
8934         Don't bother testing specific errno values.  Just test ferror.
8935
8936         New module: xprintf
8937         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
8938
8939 2007-10-19  Bruno Haible  <bruno@clisp.org>
8940
8941         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
8942         syntax.
8943         * modules/javaexec (Makefile.am): Likewise.
8944         * modules/relocatable-prog (Makefile.am): Likewise.
8945         Suggested by Jim Meyering.
8946
8947 2007-10-18  Bruno Haible  <bruno@clisp.org>
8948
8949         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
8950         Reported by Jim Meyering.
8951
8952 2007-10-18  Eric Blake  <ebb9@byu.net>
8953
8954         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
8955
8956 2007-10-18  Bruno Haible  <bruno@clisp.org>
8957
8958         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
8959         the format string into writable memory. Needed in Fortify conditions.
8960
8961 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
8962             Bruno Haible  <bruno@clisp.org>
8963
8964         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
8965         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
8966         * modules/trim (Depends-on): Add mbchar.
8967         (configure.ac): Add gl_FUNC_MBRTOWC.
8968         (Makefile.am): Augment lib_SOURCES.
8969
8970 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
8971
8972         Modify glob.c to use fstatat and dirfd, to simplify it.
8973         Suggested by Eric Blake.
8974         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
8975         Don't include <stdbool.h>; not used.
8976         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
8977         (link_exists_p): Simplify implementation, since we can now assume
8978         dirfd and fstatat.
8979         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
8980
8981 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8982
8983         * gnulib-tool (func_get_dependencies): Fix sed script to
8984         match only tests.
8985
8986 2007-10-17  Bruno Haible  <bruno@clisp.org>
8987
8988         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
8989         allow locale names without encoding suffix.
8990         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
8991         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
8992
8993 2007-10-16  Bruno Haible  <bruno@clisp.org>
8994
8995         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
8996         * lib/getgroups.c (getgroups): Likewise.
8997         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
8998
8999 2007-10-16  Bruno Haible  <bruno@clisp.org>
9000
9001         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
9002         * modules/malloc-posix (License): Likewise.
9003         * modules/realloc-posix (License): Likewise.
9004         * modules/calloc-posix (License): Likewise.
9005         * modules/intprops (License): Change from GPL to LGPL, with
9006         Paul Eggert's approval.
9007
9008 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
9009
9010         Merge glibc changes into lib/glob.c.
9011
9012         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
9013         2007-10-15 04:59:03 UTC.  Here are the changes:
9014
9015         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
9016
9017         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
9018
9019         * lib/glob.c: Add some branch prediction throughout.
9020
9021         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
9022
9023         [BZ #5103]
9024         * lib/glob.c (glob): Recognize patterns starting \/.
9025
9026         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
9027
9028         [BZ #3996]
9029         * lib/glob.c (attribute_hidden): Define if not defined.
9030         (glob): Unescape dirname, filename or username when needed and not
9031         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
9032         is NULL.  Handle unescaped [ in pattern without closing ].
9033         Don't pass GLOB_CHECK down to recursive glob for directories.
9034         (__glob_pattern_type): New function.
9035         (__glob_pattern_p): Implement using __glob_pattern_type.
9036         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
9037         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
9038         Remove unreachable code.
9039
9040         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
9041
9042         * lib/glob.c (glob_in_dir): Add some comments and asserts to
9043         explain why there are no leaks.
9044
9045         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
9046
9047         [BZ #3253]
9048         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
9049         time, rather allocate increasingly bigger arrays of pointers, if
9050         possible with alloca, if too large with malloc.
9051
9052 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
9053
9054         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
9055         Problem reported by H.Merijn Brand in
9056         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
9057         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
9058         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
9059
9060 2007-10-15  Bruno Haible  <bruno@clisp.org>
9061
9062         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
9063         with explicit rpl_ prefix.
9064         * lib/fopen.c (fopen): Likewise.
9065         * lib/freopen.c (freopen): Likewise.
9066         * lib/iconv.c (iconv): Likewise.
9067         * lib/iconv_close.c (iconv_close): Likewise.
9068
9069 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9070
9071         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
9072
9073 2007-10-15  Bruno Haible  <bruno@clisp.org>
9074
9075         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
9076         <stddef.h> instead of <stdlib.h> since we only need NULL.
9077         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9078
9079 2007-10-15  Bruno Haible  <bruno@clisp.org>
9080
9081         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
9082         Replace paragraph talking about LIBOBJS.
9083         Reported by Colin Watson <cjwatson@debian.org>.
9084
9085 2007-10-15  Bruno Haible  <bruno@clisp.org>
9086
9087         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
9088         <stdlib.h> before using NULL.
9089
9090 2007-10-15  Simon Josefsson  <simon@josefsson.org>
9091
9092         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
9093         Reported by Albert Chin <china@thewrittenword.com>.
9094
9095 2007-10-14  Bruno Haible  <bruno@clisp.org>
9096
9097         * modules/iconv_open-utf-tests: New file.
9098         * tests/test-iconv-utf.c: New file.
9099
9100         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
9101         * modules/iconv_open-utf: New file.
9102         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
9103         (iconv, iconv_close): New declarations.
9104         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
9105         be defined.
9106         (iconv_open): Add special handling of conversion between UTF-8 and
9107         UTF-{16,32}{BE,LE}.
9108         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
9109         * lib/iconv_close.c: New file.
9110         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
9111         gl_FUNC_ICONV_OPEN.
9112         (gl_FUNC_ICONV_OPEN): Use it.
9113         (gl_FUNC_ICONV_OPEN_UTF): New macro.
9114         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
9115         and REPLACE_ICONV_UTF.
9116         * modules/iconv_open (Depends-on): Add c-strcase.
9117         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
9118         ICONV_CONST.
9119         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
9120
9121 2007-10-13  Albert Chin  <china@thewrittenword.com>
9122             Bruno Haible  <bruno@clisp.org>
9123
9124         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
9125         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
9126
9127 2007-10-13  Bruno Haible  <bruno@clisp.org>
9128
9129         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
9130         defined, use the ISO C99 inline semantics.
9131         * lib/argp.h (ARGP_EI): Likewise.
9132
9133 2007-10-13  Bruno Haible  <bruno@clisp.org>
9134
9135         Handle 'inline' change in gcc 4.3.0.
9136         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
9137         argp_fmtstream_write, argp_fmtstream_set_lmargin,
9138         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
9139         argp_fmtstream_point): Disable 'extern' declaration if the function
9140         definition is going to be provided inline.
9141         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
9142         semantics, not the ISO C99 inline semantics.
9143         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
9144         'extern' declaration if the function definition is going to be provided
9145         inline.
9146         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
9147         the GNU C inline semantics, not the ISO C99 inline semantics. With
9148         GCC 4.2, avoid a warning.
9149
9150 2007-10-13  Bruno Haible  <bruno@clisp.org>
9151
9152         * lib/freading.h (freading): Enable the use of __freading for
9153         glibc >= 2.7.
9154         * lib/freading.c (freading): Likewise.
9155
9156 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9157
9158         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
9159         "warning: C99 inline functions are not supported; using GNU89".
9160
9161 2007-10-12  Bruno Haible  <bruno@clisp.org>
9162
9163         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
9164         of 2.
9165         * tests/test-ceilf2.c: New file.
9166         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
9167
9168         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
9169         * modules/ceilf-tests: Update.
9170
9171 2007-10-12  Bruno Haible  <bruno@clisp.org>
9172
9173         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
9174         of 2.
9175         * tests/test-floorf2.c: New file.
9176         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
9177
9178         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
9179         * modules/floorf-tests: Update.
9180
9181 2007-10-12  Bruno Haible  <bruno@clisp.org>
9182
9183         * tests/test-trunc2.c: New file.
9184         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
9185
9186         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
9187         * modules/trunc-tests: Update.
9188
9189 2007-10-12  Bruno Haible  <bruno@clisp.org>
9190
9191         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
9192         of 2.
9193         * tests/test-truncf2.c: New file.
9194         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
9195
9196         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
9197         * modules/truncf-tests: Update.
9198
9199 2007-10-11  Eric Blake  <ebb9@byu.net>
9200
9201         Don't claim strerror is broken on Interix.
9202         * doc/functions/strerror.texi (strerror): Known broken systems are
9203         now Solaris 8, and not Interix.
9204         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
9205         Interix on cross-compile.
9206         Reported by Martin Koeppe in
9207         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
9208
9209 2007-10-11  Bruno Haible  <bruno@clisp.org>
9210
9211         * modules/i-ring-tests: New file.
9212         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
9213         instead of assert.
9214
9215 2007-10-11  Bruno Haible  <bruno@clisp.org>
9216
9217         * modules/filenamecat-tests: New file.
9218         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
9219         * lib/filenamecat.c: Remove test code.
9220
9221 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9222
9223         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
9224
9225         * lib/strerror.c: Include <string.h> always, to test interface,
9226         and to remove the need for the dummy.
9227         Include intprops.h to compute width instead of doing it ourselves
9228         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
9229         (strerror): Define it to return NULL if there's no system strerror.
9230         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
9231         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
9232         ancient pre-strerror Unix systems well any more.  Saying "unknown
9233         system error" is enough.
9234         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
9235         simpler strerror.c implementation.
9236         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
9237         Simplify the tests to reflect the simpler strerror implementation.
9238         * modules/strerror (Depends-on): Add intprops.
9239
9240 2007-10-09  Eric Blake  <ebb9@byu.net>
9241
9242         Silence test-fpending.
9243         * modules/fpending-tests (Files): Add wrapper script.
9244         * tests/test-fpending.sh: New file.
9245
9246 2007-10-09  Bruno Haible  <bruno@clisp.org>
9247
9248         * MODULES.html.sh (func_module): Don't create a hyperlink for
9249         function names like 'printf_frexp'.
9250         (Misc): Add crc, memxor.
9251         (Characteristics of floating types): New section.
9252         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
9253         isnanf-nolibm, signbit, trunc, truncf, truncl.
9254         (Enhancements for ISO C 99 functions): New subsection Input/output.
9255         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
9256         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
9257         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
9258         (Compatibility checks for POSIX:2001 functions): Add clock-time.
9259         (Enhancements for POSIX:2001 functions): Add chdir-long.
9260         (File system functions): Add areadlink, chdir-safer, read-file.
9261         Remove cycle-check.
9262         (File system as inode set): New section.
9263         (Date and time): Add gethrxtime.
9264         (Multithreading): Add openmp.
9265         (Internationalization functions): Add localename.
9266         (Unicode string functions): Add unistr/u*-mbsnlen.
9267         (Support for maintaining and releasing projects): Add git-version-gen.
9268         (Lone files): Remove directories.
9269
9270 2007-10-08  Ben Pfaff  <blp@gnu.org>
9271
9272         * lib/xmalloca.h: Fix typo in comment.
9273
9274 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
9275
9276         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
9277         when avoiding problems with integer overflow.  Use a portable test
9278         instead.
9279
9280 2007-10-08  Simon Josefsson  <simon@josefsson.org>
9281
9282         * modules/dummy (License): Change to LGPLv2+.
9283         * modules/float (License): Likewise
9284         * modules/realloc (License): Likewise
9285         * modules/stdlib (License): Likewise
9286
9287 2007-10-07  Bruno Haible  <bruno@clisp.org>
9288
9289         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
9290         * floor.c (TWO_MANT_DIG): Likewise.
9291         * ceil.c (TWO_MANT_DIG): Likewise.
9292         Reported by Ben Pfaff.
9293
9294 2007-10-07  Bruno Haible  <bruno@clisp.org>
9295
9296         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
9297         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
9298         * lib/frexp.c (FUNC): Likewise.
9299         * lib/printf-frexp.h (printf_frexp): Likewise.
9300         * lib/printf-frexpl.h (printf_frexpl): Likewise.
9301         * lib/printf-frexp.c (FUNC): Likewise.
9302         Suggested by Jim Meyering.
9303
9304 2007-10-07  Jim Meyering  <meyering@redhat.com>
9305
9306         Make xnanosleep's integer overflow test more robust.
9307         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
9308         so that gcc-4.3.0 doesn't optimize away this test for overflow.
9309
9310 2007-10-07  Bruno Haible  <bruno@clisp.org>
9311
9312         * NEWS: Mention the license change.
9313
9314         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
9315         abbreviations in the modules files.
9316
9317         Change copyright notice from GPLv2+ to GPLv3+.
9318         * README: Change copyright notice.
9319         * MODULES.html.sh: Likewise.
9320         * build-aux/bootstrap.conf: Likewise.
9321         * build-aux/config.libpath: Likewise.
9322         * build-aux/csharpcomp.sh.in: Likewise.
9323         * build-aux/csharpexec.sh.in: Likewise.
9324         * build-aux/install-reloc: Likewise.
9325         * build-aux/javacomp.sh.in: Likewise.
9326         * build-aux/javaexec.sh.in: Likewise.
9327         * build-aux/ldd.sh.in: Likewise.
9328         * build-aux/reloc-ldflags: Likewise.
9329         * build-aux/relocatable.sh.in: Likewise.
9330         * build-aux/x-to-1.in: Likewise.
9331         * check-module: Likewise.
9332         * config/srclistvars.sh: Likewise.
9333         * gnulib-tool: Likewise.
9334         * lib/acl-internal.h: Likewise.
9335         * lib/acl.c: Likewise.
9336         * lib/acl.h: Likewise.
9337         * lib/acl_entries.c: Likewise.
9338         * lib/areadlink-with-size.c: Likewise.
9339         * lib/areadlink.c: Likewise.
9340         * lib/areadlink.h: Likewise.
9341         * lib/argmatch.c: Likewise.
9342         * lib/argmatch.h: Likewise.
9343         * lib/argp-ba.c: Likewise.
9344         * lib/argp-eexst.c: Likewise.
9345         * lib/argp-fmtstream.c: Likewise.
9346         * lib/argp-fmtstream.h: Likewise.
9347         * lib/argp-fs-xinl.c: Likewise.
9348         * lib/argp-help.c: Likewise.
9349         * lib/argp-namefrob.h: Likewise.
9350         * lib/argp-parse.c: Likewise.
9351         * lib/argp-pin.c: Likewise.
9352         * lib/argp-pv.c: Likewise.
9353         * lib/argp-pvh.c: Likewise.
9354         * lib/argp-xinl.c: Likewise.
9355         * lib/argp.h: Likewise.
9356         * lib/at-func.c: Likewise.
9357         * lib/atanl.c: Likewise.
9358         * lib/backupfile.c: Likewise.
9359         * lib/backupfile.h: Likewise.
9360         * lib/basename.c: Likewise.
9361         * lib/binary-io.h: Likewise.
9362         * lib/byteswap.in.h: Likewise.
9363         * lib/c-stack.c: Likewise.
9364         * lib/c-stack.h: Likewise.
9365         * lib/c-strcasestr.c: Likewise.
9366         * lib/c-strcasestr.h: Likewise.
9367         * lib/c-strstr.c: Likewise.
9368         * lib/c-strstr.h: Likewise.
9369         * lib/c-strtod.c: Likewise.
9370         * lib/calloc.c: Likewise.
9371         * lib/canon-host.c: Likewise.
9372         * lib/canon-host.h: Likewise.
9373         * lib/canonicalize-lgpl.c: Likewise.
9374         * lib/canonicalize.c: Likewise.
9375         * lib/canonicalize.h: Likewise.
9376         * lib/ceil.c: Likewise.
9377         * lib/ceilf.c: Likewise.
9378         * lib/ceill.c: Likewise.
9379         * lib/chdir-long.c: Likewise.
9380         * lib/chdir-long.h: Likewise.
9381         * lib/chdir-safer.c: Likewise.
9382         * lib/chdir-safer.h: Likewise.
9383         * lib/chown.c: Likewise.
9384         * lib/classpath.c: Likewise.
9385         * lib/classpath.h: Likewise.
9386         * lib/clean-temp.c: Likewise.
9387         * lib/clean-temp.h: Likewise.
9388         * lib/cloexec.c: Likewise.
9389         * lib/close-stream.c: Likewise.
9390         * lib/closein.c: Likewise.
9391         * lib/closein.h: Likewise.
9392         * lib/closeout.c: Likewise.
9393         * lib/closeout.h: Likewise.
9394         * lib/concat-filename.c: Likewise.
9395         * lib/copy-file.c: Likewise.
9396         * lib/copy-file.h: Likewise.
9397         * lib/count-one-bits.h: Likewise.
9398         * lib/crc.c: Likewise.
9399         * lib/crc.h: Likewise.
9400         * lib/creat-safer.c: Likewise.
9401         * lib/csharpcomp.c: Likewise.
9402         * lib/csharpcomp.h: Likewise.
9403         * lib/csharpexec.c: Likewise.
9404         * lib/csharpexec.h: Likewise.
9405         * lib/cycle-check.c: Likewise.
9406         * lib/cycle-check.h: Likewise.
9407         * lib/diacrit.c: Likewise.
9408         * lib/diacrit.h: Likewise.
9409         * lib/diffseq.h: Likewise.
9410         * lib/dirchownmod.c: Likewise.
9411         * lib/dirent.in.h: Likewise.
9412         * lib/dirfd.c: Likewise.
9413         * lib/dirfd.h: Likewise.
9414         * lib/dirname.c: Likewise.
9415         * lib/dirname.h: Likewise.
9416         * lib/dummy.c: Likewise.
9417         * lib/dup-safer.c: Likewise.
9418         * lib/dup2.c: Likewise.
9419         * lib/eealloc.h: Likewise.
9420         * lib/error.c: Likewise.
9421         * lib/error.h: Likewise.
9422         * lib/euidaccess.c: Likewise.
9423         * lib/exclude.c: Likewise.
9424         * lib/exclude.h: Likewise.
9425         * lib/execute.c: Likewise.
9426         * lib/execute.h: Likewise.
9427         * lib/exitfail.c: Likewise.
9428         * lib/exitfail.h: Likewise.
9429         * lib/expl.c: Likewise.
9430         * lib/fatal-signal.c: Likewise.
9431         * lib/fatal-signal.h: Likewise.
9432         * lib/fbufmode.c: Likewise.
9433         * lib/fbufmode.h: Likewise.
9434         * lib/fchdir.c: Likewise.
9435         * lib/fchmodat.c: Likewise.
9436         * lib/fchownat.c: Likewise.
9437         * lib/fcntl--.h: Likewise.
9438         * lib/fcntl-safer.h: Likewise.
9439         * lib/fcntl.in.h: Likewise.
9440         * lib/fd-safer.c: Likewise.
9441         * lib/fflush.c: Likewise.
9442         * lib/file-has-acl.c: Likewise.
9443         * lib/file-set.c: Likewise.
9444         * lib/file-type.c: Likewise.
9445         * lib/file-type.h: Likewise.
9446         * lib/fileblocks.c: Likewise.
9447         * lib/filemode.c: Likewise.
9448         * lib/filemode.h: Likewise.
9449         * lib/filename.h: Likewise.
9450         * lib/filenamecat.c: Likewise.
9451         * lib/filenamecat.h: Likewise.
9452         * lib/findprog.c: Likewise.
9453         * lib/findprog.h: Likewise.
9454         * lib/float.in.h: Likewise.
9455         * lib/floor.c: Likewise.
9456         * lib/floorf.c: Likewise.
9457         * lib/floorl.c: Likewise.
9458         * lib/fopen-safer.c: Likewise.
9459         * lib/fopen.c: Likewise.
9460         * lib/fpending.c: Likewise.
9461         * lib/fpending.h: Likewise.
9462         * lib/fprintf.c: Likewise.
9463         * lib/fprintftime.h: Likewise.
9464         * lib/fpucw.h: Likewise.
9465         * lib/fpurge.c: Likewise.
9466         * lib/fpurge.h: Likewise.
9467         * lib/freadable.c: Likewise.
9468         * lib/freadable.h: Likewise.
9469         * lib/freadahead.c: Likewise.
9470         * lib/freadahead.h: Likewise.
9471         * lib/freading.c: Likewise.
9472         * lib/freading.h: Likewise.
9473         * lib/free.c: Likewise.
9474         * lib/freopen.c: Likewise.
9475         * lib/frexp.c: Likewise.
9476         * lib/frexpl.c: Likewise.
9477         * lib/fseek.c: Likewise.
9478         * lib/fseterr.c: Likewise.
9479         * lib/fseterr.h: Likewise.
9480         * lib/fstatat.c: Likewise.
9481         * lib/fstrcmp.c: Likewise.
9482         * lib/fstrcmp.h: Likewise.
9483         * lib/fsusage.c: Likewise.
9484         * lib/fsusage.h: Likewise.
9485         * lib/ftell.c: Likewise.
9486         * lib/ftello.c: Likewise.
9487         * lib/fts-cycle.c: Likewise.
9488         * lib/fts.c: Likewise.
9489         * lib/fts_.h: Likewise.
9490         * lib/full-read.c: Likewise.
9491         * lib/full-read.h: Likewise.
9492         * lib/full-write.c: Likewise.
9493         * lib/full-write.h: Likewise.
9494         * lib/fwritable.c: Likewise.
9495         * lib/fwritable.h: Likewise.
9496         * lib/fwriteerror.c: Likewise.
9497         * lib/fwriteerror.h: Likewise.
9498         * lib/fwriting.c: Likewise.
9499         * lib/fwriting.h: Likewise.
9500         * lib/gcd.c: Likewise.
9501         * lib/gcd.h: Likewise.
9502         * lib/getcwd.c: Likewise.
9503         * lib/getdate.h: Likewise.
9504         * lib/getdate.y: Likewise.
9505         * lib/getdomainname.c: Likewise.
9506         * lib/getdomainname.h: Likewise.
9507         * lib/getgroups.c: Likewise.
9508         * lib/gethostname.c: Likewise.
9509         * lib/gethrxtime.c: Likewise.
9510         * lib/gethrxtime.h: Likewise.
9511         * lib/getloadavg.c: Likewise.
9512         * lib/getndelim2.c: Likewise.
9513         * lib/getndelim2.h: Likewise.
9514         * lib/getnline.c: Likewise.
9515         * lib/getnline.h: Likewise.
9516         * lib/getopt.c: Likewise.
9517         * lib/getopt.in.h: Likewise.
9518         * lib/getopt1.c: Likewise.
9519         * lib/getopt_int.h: Likewise.
9520         * lib/getpagesize.h: Likewise.
9521         * lib/getsubopt.c: Likewise.
9522         * lib/gettime.c: Likewise.
9523         * lib/getugroups.c: Likewise.
9524         * lib/getugroups.h: Likewise.
9525         * lib/getusershell.c: Likewise.
9526         * lib/gl_anyavltree_list1.h: Likewise.
9527         * lib/gl_anyavltree_list2.h: Likewise.
9528         * lib/gl_anyhash_list1.h: Likewise.
9529         * lib/gl_anyhash_list2.h: Likewise.
9530         * lib/gl_anylinked_list1.h: Likewise.
9531         * lib/gl_anylinked_list2.h: Likewise.
9532         * lib/gl_anyrbtree_list1.h: Likewise.
9533         * lib/gl_anyrbtree_list2.h: Likewise.
9534         * lib/gl_anytree_list1.h: Likewise.
9535         * lib/gl_anytree_list2.h: Likewise.
9536         * lib/gl_anytree_oset.h: Likewise.
9537         * lib/gl_anytreehash_list1.h: Likewise.
9538         * lib/gl_anytreehash_list2.h: Likewise.
9539         * lib/gl_array_list.c: Likewise.
9540         * lib/gl_array_list.h: Likewise.
9541         * lib/gl_array_oset.c: Likewise.
9542         * lib/gl_array_oset.h: Likewise.
9543         * lib/gl_avltree_list.c: Likewise.
9544         * lib/gl_avltree_list.h: Likewise.
9545         * lib/gl_avltree_oset.c: Likewise.
9546         * lib/gl_avltree_oset.h: Likewise.
9547         * lib/gl_avltreehash_list.c: Likewise.
9548         * lib/gl_avltreehash_list.h: Likewise.
9549         * lib/gl_carray_list.c: Likewise.
9550         * lib/gl_carray_list.h: Likewise.
9551         * lib/gl_linked_list.c: Likewise.
9552         * lib/gl_linked_list.h: Likewise.
9553         * lib/gl_linkedhash_list.c: Likewise.
9554         * lib/gl_linkedhash_list.h: Likewise.
9555         * lib/gl_list.c: Likewise.
9556         * lib/gl_list.h: Likewise.
9557         * lib/gl_oset.c: Likewise.
9558         * lib/gl_oset.h: Likewise.
9559         * lib/gl_rbtree_list.c: Likewise.
9560         * lib/gl_rbtree_list.h: Likewise.
9561         * lib/gl_rbtree_oset.c: Likewise.
9562         * lib/gl_rbtree_oset.h: Likewise.
9563         * lib/gl_rbtreehash_list.c: Likewise.
9564         * lib/gl_rbtreehash_list.h: Likewise.
9565         * lib/gl_sublist.c: Likewise.
9566         * lib/gl_sublist.h: Likewise.
9567         * lib/group-member.c: Likewise.
9568         * lib/group-member.h: Likewise.
9569         * lib/hard-locale.c: Likewise.
9570         * lib/hard-locale.h: Likewise.
9571         * lib/hash-pjw.c: Likewise.
9572         * lib/hash-pjw.h: Likewise.
9573         * lib/hash-triple.c: Likewise.
9574         * lib/hash.c: Likewise.
9575         * lib/hash.h: Likewise.
9576         * lib/human.c: Likewise.
9577         * lib/human.h: Likewise.
9578         * lib/i-ring.c: Likewise.
9579         * lib/i-ring.h: Likewise.
9580         * lib/idcache.c: Likewise.
9581         * lib/imaxabs.c: Likewise.
9582         * lib/imaxdiv.c: Likewise.
9583         * lib/inet_pton.c: Likewise.
9584         * lib/inet_pton.h: Likewise.
9585         * lib/intprops.h: Likewise.
9586         * lib/inttostr.c: Likewise.
9587         * lib/inttostr.h: Likewise.
9588         * lib/inttypes.in.h: Likewise.
9589         * lib/isapipe.c: Likewise.
9590         * lib/isdir.c: Likewise.
9591         * lib/isnan.c: Likewise.
9592         * lib/isnan.h: Likewise.
9593         * lib/isnanf.c: Likewise.
9594         * lib/isnanf.h: Likewise.
9595         * lib/isnanl-nolibm.h: Likewise.
9596         * lib/isnanl.c: Likewise.
9597         * lib/isnanl.h: Likewise.
9598         * lib/javacomp.c: Likewise.
9599         * lib/javacomp.h: Likewise.
9600         * lib/javaexec.c: Likewise.
9601         * lib/javaexec.h: Likewise.
9602         * lib/javaversion.c: Likewise.
9603         * lib/javaversion.h: Likewise.
9604         * lib/javaversion.java: Likewise.
9605         * lib/lbrkprop.h: Likewise.
9606         * lib/lchmod.h: Likewise.
9607         * lib/lchown.c: Likewise.
9608         * lib/ldexpl.c: Likewise.
9609         * lib/linebreak.c: Likewise.
9610         * lib/linebreak.h: Likewise.
9611         * lib/linebuffer.c: Likewise.
9612         * lib/linebuffer.h: Likewise.
9613         * lib/locale.in.h: Likewise.
9614         * lib/logl.c: Likewise.
9615         * lib/long-options.c: Likewise.
9616         * lib/long-options.h: Likewise.
9617         * lib/lstat.c: Likewise.
9618         * lib/lstat.h: Likewise.
9619         * lib/math.in.h: Likewise.
9620         * lib/mbchar.c: Likewise.
9621         * lib/mbchar.h: Likewise.
9622         * lib/mbfile.h: Likewise.
9623         * lib/mbiter.h: Likewise.
9624         * lib/mbscasecmp.c: Likewise.
9625         * lib/mbscasestr.c: Likewise.
9626         * lib/mbschr.c: Likewise.
9627         * lib/mbscspn.c: Likewise.
9628         * lib/mbslen.c: Likewise.
9629         * lib/mbsncasecmp.c: Likewise.
9630         * lib/mbsnlen.c: Likewise.
9631         * lib/mbspbrk.c: Likewise.
9632         * lib/mbspcasecmp.c: Likewise.
9633         * lib/mbsrchr.c: Likewise.
9634         * lib/mbssep.c: Likewise.
9635         * lib/mbsspn.c: Likewise.
9636         * lib/mbsstr.c: Likewise.
9637         * lib/mbstok_r.c: Likewise.
9638         * lib/mbswidth.c: Likewise.
9639         * lib/mbswidth.h: Likewise.
9640         * lib/mbuiter.h: Likewise.
9641         * lib/memcasecmp.c: Likewise.
9642         * lib/memcasecmp.h: Likewise.
9643         * lib/memchr.c: Likewise.
9644         * lib/memcmp.c: Likewise.
9645         * lib/memcoll.c: Likewise.
9646         * lib/memcoll.h: Likewise.
9647         * lib/memcpy.c: Likewise.
9648         * lib/memrchr.c: Likewise.
9649         * lib/mkancesdirs.c: Likewise.
9650         * lib/mkdir-p.c: Likewise.
9651         * lib/mkdir-p.h: Likewise.
9652         * lib/mkdir.c: Likewise.
9653         * lib/mkdirat.c: Likewise.
9654         * lib/mkdtemp.c: Likewise.
9655         * lib/mkstemp-safer.c: Likewise.
9656         * lib/mkstemp.c: Likewise.
9657         * lib/modechange.c: Likewise.
9658         * lib/modechange.h: Likewise.
9659         * lib/mountlist.c: Likewise.
9660         * lib/mountlist.h: Likewise.
9661         * lib/mpsort.c: Likewise.
9662         * lib/nanosleep.c: Likewise.
9663         * lib/obstack.c: Likewise.
9664         * lib/obstack.h: Likewise.
9665         * lib/open-safer.c: Likewise.
9666         * lib/open.c: Likewise.
9667         * lib/openat-die.c: Likewise.
9668         * lib/openat-priv.h: Likewise.
9669         * lib/openat-proc.c: Likewise.
9670         * lib/openat.c: Likewise.
9671         * lib/openat.h: Likewise.
9672         * lib/pagealign_alloc.c: Likewise.
9673         * lib/pagealign_alloc.h: Likewise.
9674         * lib/physmem.c: Likewise.
9675         * lib/physmem.h: Likewise.
9676         * lib/pipe-safer.c: Likewise.
9677         * lib/pipe.c: Likewise.
9678         * lib/pipe.h: Likewise.
9679         * lib/posixtm.c: Likewise.
9680         * lib/posixtm.h: Likewise.
9681         * lib/posixver.c: Likewise.
9682         * lib/printf-frexp.c: Likewise.
9683         * lib/printf-frexp.h: Likewise.
9684         * lib/printf-frexpl.c: Likewise.
9685         * lib/printf-frexpl.h: Likewise.
9686         * lib/printf.c: Likewise.
9687         * lib/progname.c: Likewise.
9688         * lib/progname.h: Likewise.
9689         * lib/progreloc.c: Likewise.
9690         * lib/putenv.c: Likewise.
9691         * lib/quote.c: Likewise.
9692         * lib/quote.h: Likewise.
9693         * lib/quotearg.c: Likewise.
9694         * lib/quotearg.h: Likewise.
9695         * lib/raise.c: Likewise.
9696         * lib/readline.c: Likewise.
9697         * lib/readline.h: Likewise.
9698         * lib/readlink.c: Likewise.
9699         * lib/readtokens.c: Likewise.
9700         * lib/readtokens.h: Likewise.
9701         * lib/readtokens0.c: Likewise.
9702         * lib/readtokens0.h: Likewise.
9703         * lib/readutmp.c: Likewise.
9704         * lib/readutmp.h: Likewise.
9705         * lib/realloc.c: Likewise.
9706         * lib/relocwrapper.c: Likewise.
9707         * lib/rename-dest-slash.c: Likewise.
9708         * lib/rename.c: Likewise.
9709         * lib/rmdir.c: Likewise.
9710         * lib/rpmatch.c: Likewise.
9711         * lib/safe-read.c: Likewise.
9712         * lib/safe-read.h: Likewise.
9713         * lib/safe-write.c: Likewise.
9714         * lib/safe-write.h: Likewise.
9715         * lib/same-inode.h: Likewise.
9716         * lib/same.c: Likewise.
9717         * lib/same.h: Likewise.
9718         * lib/save-cwd.c: Likewise.
9719         * lib/save-cwd.h: Likewise.
9720         * lib/savedir.c: Likewise.
9721         * lib/savedir.h: Likewise.
9722         * lib/savewd.c: Likewise.
9723         * lib/savewd.h: Likewise.
9724         * lib/search.in.h: Likewise.
9725         * lib/setenv.c: Likewise.
9726         * lib/setenv.h: Likewise.
9727         * lib/settime.c: Likewise.
9728         * lib/sh-quote.c: Likewise.
9729         * lib/sh-quote.h: Likewise.
9730         * lib/sig2str.c: Likewise.
9731         * lib/sig2str.h: Likewise.
9732         * lib/signal.in.h: Likewise.
9733         * lib/signbitd.c: Likewise.
9734         * lib/signbitf.c: Likewise.
9735         * lib/signbitl.c: Likewise.
9736         * lib/sigprocmask.c: Likewise.
9737         * lib/sincosl.c: Likewise.
9738         * lib/sleep.c: Likewise.
9739         * lib/sprintf.c: Likewise.
9740         * lib/sqrtl.c: Likewise.
9741         * lib/stat-time.h: Likewise.
9742         * lib/stdio--.h: Likewise.
9743         * lib/stdio-safer.h: Likewise.
9744         * lib/stdlib--.h: Likewise.
9745         * lib/stdlib-safer.h: Likewise.
9746         * lib/stdlib.in.h: Likewise.
9747         * lib/stpcpy.c: Likewise.
9748         * lib/stpncpy.c: Likewise.
9749         * lib/strchrnul.c: Likewise.
9750         * lib/strcspn.c: Likewise.
9751         * lib/strerror.c: Likewise.
9752         * lib/strftime.c: Likewise.
9753         * lib/strftime.h: Likewise.
9754         * lib/striconveh.c: Likewise.
9755         * lib/striconveh.h: Likewise.
9756         * lib/striconveha.c: Likewise.
9757         * lib/striconveha.h: Likewise.
9758         * lib/stripslash.c: Likewise.
9759         * lib/strnlen1.c: Likewise.
9760         * lib/strnlen1.h: Likewise.
9761         * lib/strtod.c: Likewise.
9762         * lib/strtoimax.c: Likewise.
9763         * lib/strtok_r.c: Likewise.
9764         * lib/strtol.c: Likewise.
9765         * lib/strtoll.c: Likewise.
9766         * lib/strtoul.c: Likewise.
9767         * lib/strtoull.c: Likewise.
9768         * lib/sysexits.in.h: Likewise.
9769         * lib/tempname.c: Likewise.
9770         * lib/tempname.h: Likewise.
9771         * lib/timespec.h: Likewise.
9772         * lib/tls.c: Likewise.
9773         * lib/tls.h: Likewise.
9774         * lib/tmpdir.c: Likewise.
9775         * lib/tmpdir.h: Likewise.
9776         * lib/tmpfile-safer.c: Likewise.
9777         * lib/tmpfile.c: Likewise.
9778         * lib/trigl.c: Likewise.
9779         * lib/trigl.h: Likewise.
9780         * lib/trim.c: Likewise.
9781         * lib/trim.h: Likewise.
9782         * lib/trunc.c: Likewise.
9783         * lib/truncf.c: Likewise.
9784         * lib/truncl.c: Likewise.
9785         * lib/tsearch.c: Likewise.
9786         * lib/unicodeio.c: Likewise.
9787         * lib/unicodeio.h: Likewise.
9788         * lib/unistd--.h: Likewise.
9789         * lib/unistd-safer.h: Likewise.
9790         * lib/unistdio/ulc-fprintf.c: Likewise.
9791         * lib/unistdio/ulc-vfprintf.c: Likewise.
9792         * lib/unlinkdir.c: Likewise.
9793         * lib/unlinkdir.h: Likewise.
9794         * lib/unlocked-io.h: Likewise.
9795         * lib/unsetenv.c: Likewise.
9796         * lib/userspec.c: Likewise.
9797         * lib/utime.c: Likewise.
9798         * lib/utimecmp.c: Likewise.
9799         * lib/utimecmp.h: Likewise.
9800         * lib/utimens.c: Likewise.
9801         * lib/verify.h: Likewise.
9802         * lib/verror.c: Likewise.
9803         * lib/verror.h: Likewise.
9804         * lib/version-etc-fsf.c: Likewise.
9805         * lib/version-etc.c: Likewise.
9806         * lib/version-etc.h: Likewise.
9807         * lib/vfprintf.c: Likewise.
9808         * lib/vprintf.c: Likewise.
9809         * lib/vsprintf.c: Likewise.
9810         * lib/w32spawn.h: Likewise.
9811         * lib/wait-process.c: Likewise.
9812         * lib/wait-process.h: Likewise.
9813         * lib/wcwidth.c: Likewise.
9814         * lib/write-any-file.c: Likewise.
9815         * lib/xalloc-die.c: Likewise.
9816         * lib/xalloc.h: Likewise.
9817         * lib/xasprintf.c: Likewise.
9818         * lib/xgetcwd.c: Likewise.
9819         * lib/xgetcwd.h: Likewise.
9820         * lib/xgetdomainname.c: Likewise.
9821         * lib/xgetdomainname.h: Likewise.
9822         * lib/xgethostname.c: Likewise.
9823         * lib/xmalloc.c: Likewise.
9824         * lib/xmalloca.c: Likewise.
9825         * lib/xmalloca.h: Likewise.
9826         * lib/xmemcoll.c: Likewise.
9827         * lib/xnanosleep.c: Likewise.
9828         * lib/xreadlink.c: Likewise.
9829         * lib/xreadlink.h: Likewise.
9830         * lib/xsetenv.c: Likewise.
9831         * lib/xsetenv.h: Likewise.
9832         * lib/xstriconv.c: Likewise.
9833         * lib/xstriconv.h: Likewise.
9834         * lib/xstrndup.c: Likewise.
9835         * lib/xstrndup.h: Likewise.
9836         * lib/xstrtod.c: Likewise.
9837         * lib/xstrtod.h: Likewise.
9838         * lib/xstrtol-error.c: Likewise.
9839         * lib/xstrtol.c: Likewise.
9840         * lib/xstrtol.h: Likewise.
9841         * lib/xtime.h: Likewise.
9842         * lib/xvasprintf.c: Likewise.
9843         * lib/xvasprintf.h: Likewise.
9844         * lib/yesno.c: Likewise.
9845         * lib/yesno.h: Likewise.
9846         * posix-modules: Likewise.
9847         * tests/test-alloca-opt.c: Likewise.
9848         * tests/test-arcfour.c: Likewise.
9849         * tests/test-arctwo.c: Likewise.
9850         * tests/test-argmatch.c: Likewise.
9851         * tests/test-argp-2.sh: Likewise.
9852         * tests/test-argp.c: Likewise.
9853         * tests/test-arpa_inet.c: Likewise.
9854         * tests/test-array_list.c: Likewise.
9855         * tests/test-array_oset.c: Likewise.
9856         * tests/test-atexit.c: Likewise.
9857         * tests/test-avltree_list.c: Likewise.
9858         * tests/test-avltree_oset.c: Likewise.
9859         * tests/test-avltreehash_list.c: Likewise.
9860         * tests/test-base64.c: Likewise.
9861         * tests/test-binary-io.c: Likewise.
9862         * tests/test-byteswap.c: Likewise.
9863         * tests/test-c-ctype.c: Likewise.
9864         * tests/test-c-strcasecmp.c: Likewise.
9865         * tests/test-c-strcasestr.c: Likewise.
9866         * tests/test-c-strncasecmp.c: Likewise.
9867         * tests/test-c-strstr.c: Likewise.
9868         * tests/test-canonicalize-lgpl.c: Likewise.
9869         * tests/test-canonicalize.c: Likewise.
9870         * tests/test-carray_list.c: Likewise.
9871         * tests/test-ceilf.c: Likewise.
9872         * tests/test-ceill.c: Likewise.
9873         * tests/test-count-one-bits.c: Likewise.
9874         * tests/test-crc.c: Likewise.
9875         * tests/test-dirname.c: Likewise.
9876         * tests/test-fbufmode.c: Likewise.
9877         * tests/test-fcntl.c: Likewise.
9878         * tests/test-fflush.c: Likewise.
9879         * tests/test-floorf.c: Likewise.
9880         * tests/test-floorl.c: Likewise.
9881         * tests/test-fopen.c: Likewise.
9882         * tests/test-fprintf-posix.c: Likewise.
9883         * tests/test-fprintf-posix.h: Likewise.
9884         * tests/test-fpurge.c: Likewise.
9885         * tests/test-freadable.c: Likewise.
9886         * tests/test-freadahead.c: Likewise.
9887         * tests/test-freading.c: Likewise.
9888         * tests/test-freopen.c: Likewise.
9889         * tests/test-frexp.c: Likewise.
9890         * tests/test-frexpl.c: Likewise.
9891         * tests/test-fseek.c: Likewise.
9892         * tests/test-fseeko.c: Likewise.
9893         * tests/test-fseterr.c: Likewise.
9894         * tests/test-fstrcmp.c: Likewise.
9895         * tests/test-ftell.c: Likewise.
9896         * tests/test-ftello.c: Likewise.
9897         * tests/test-fwritable.c: Likewise.
9898         * tests/test-fwriting.c: Likewise.
9899         * tests/test-getaddrinfo.c: Likewise.
9900         * tests/test-getpass.c: Likewise.
9901         * tests/test-gettimeofday.c: Likewise.
9902         * tests/test-hmac-md5.c: Likewise.
9903         * tests/test-hmac-sha1.c: Likewise.
9904         * tests/test-iconv.c: Likewise.
9905         * tests/test-iconvme.c: Likewise.
9906         * tests/test-inttypes.c: Likewise.
9907         * tests/test-isnan.c: Likewise.
9908         * tests/test-isnanf.c: Likewise.
9909         * tests/test-isnanl-nolibm.c: Likewise.
9910         * tests/test-isnanl.c: Likewise.
9911         * tests/test-isnanl.h: Likewise.
9912         * tests/test-ldexpl.c: Likewise.
9913         * tests/test-linked_list.c: Likewise.
9914         * tests/test-linkedhash_list.c: Likewise.
9915         * tests/test-locale.c: Likewise.
9916         * tests/test-localename.c: Likewise.
9917         * tests/test-lock.c: Likewise.
9918         * tests/test-lseek.c: Likewise.
9919         * tests/test-malloca.c: Likewise.
9920         * tests/test-math.c: Likewise.
9921         * tests/test-mbscasecmp.c: Likewise.
9922         * tests/test-mbscasestr1.c: Likewise.
9923         * tests/test-mbscasestr2.c: Likewise.
9924         * tests/test-mbscasestr3.c: Likewise.
9925         * tests/test-mbscasestr4.c: Likewise.
9926         * tests/test-mbschr.c: Likewise.
9927         * tests/test-mbscspn.c: Likewise.
9928         * tests/test-mbsncasecmp.c: Likewise.
9929         * tests/test-mbspbrk.c: Likewise.
9930         * tests/test-mbspcasecmp.c: Likewise.
9931         * tests/test-mbsrchr.c: Likewise.
9932         * tests/test-mbsspn.c: Likewise.
9933         * tests/test-mbsstr1.c: Likewise.
9934         * tests/test-mbsstr2.c: Likewise.
9935         * tests/test-mbsstr3.c: Likewise.
9936         * tests/test-md5.c: Likewise.
9937         * tests/test-memmem.c: Likewise.
9938         * tests/test-netinet_in.c: Likewise.
9939         * tests/test-open.c: Likewise.
9940         * tests/test-printf-frexp.c: Likewise.
9941         * tests/test-printf-frexpl.c: Likewise.
9942         * tests/test-printf-posix.c: Likewise.
9943         * tests/test-printf-posix.h: Likewise.
9944         * tests/test-rbtree_list.c: Likewise.
9945         * tests/test-rbtree_oset.c: Likewise.
9946         * tests/test-rbtreehash_list.c: Likewise.
9947         * tests/test-read-file.c: Likewise.
9948         * tests/test-rijndael.c: Likewise.
9949         * tests/test-search.c: Likewise.
9950         * tests/test-signbit.c: Likewise.
9951         * tests/test-sleep.c: Likewise.
9952         * tests/test-snprintf-posix.c: Likewise.
9953         * tests/test-snprintf-posix.h: Likewise.
9954         * tests/test-snprintf.c: Likewise.
9955         * tests/test-sprintf-posix.c: Likewise.
9956         * tests/test-sprintf-posix.h: Likewise.
9957         * tests/test-stat-time.c: Likewise.
9958         * tests/test-stdbool.c: Likewise.
9959         * tests/test-stdint.c: Likewise.
9960         * tests/test-stdio.c: Likewise.
9961         * tests/test-stdlib.c: Likewise.
9962         * tests/test-stpncpy.c: Likewise.
9963         * tests/test-strcasestr.c: Likewise.
9964         * tests/test-striconv.c: Likewise.
9965         * tests/test-striconveh.c: Likewise.
9966         * tests/test-striconveha.c: Likewise.
9967         * tests/test-string.c: Likewise.
9968         * tests/test-sys_select.c: Likewise.
9969         * tests/test-sys_socket.c: Likewise.
9970         * tests/test-sys_stat.c: Likewise.
9971         * tests/test-sys_time.c: Likewise.
9972         * tests/test-sysexits.c: Likewise.
9973         * tests/test-time.c: Likewise.
9974         * tests/test-tls.c: Likewise.
9975         * tests/test-trunc.c: Likewise.
9976         * tests/test-truncf.c: Likewise.
9977         * tests/test-truncl.c: Likewise.
9978         * tests/test-unistd.c: Likewise.
9979         * tests/test-vasnprintf-posix.c: Likewise.
9980         * tests/test-vasnprintf-posix2.c: Likewise.
9981         * tests/test-vasnprintf.c: Likewise.
9982         * tests/test-vasprintf-posix.c: Likewise.
9983         * tests/test-vasprintf.c: Likewise.
9984         * tests/test-verify.c: Likewise.
9985         * tests/test-vfprintf-posix.c: Likewise.
9986         * tests/test-vprintf-posix.c: Likewise.
9987         * tests/test-vsnprintf-posix.c: Likewise.
9988         * tests/test-vsnprintf.c: Likewise.
9989         * tests/test-vsprintf-posix.c: Likewise.
9990         * tests/test-wchar.c: Likewise.
9991         * tests/test-wctype.c: Likewise.
9992         * tests/test-wcwidth.c: Likewise.
9993         * tests/test-xstrtol.c: Likewise.
9994         * tests/test-xvasprintf.c: Likewise.
9995         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
9996         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
9997         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
9998         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
9999         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
10000         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
10001         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
10002         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
10003         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
10004         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
10005         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
10006         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
10007         * tests/uniname/test-uninames.c: Likewise.
10008         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
10009         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
10010         * tests/unistdio/test-u16-printf1.h: Likewise.
10011         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
10012         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
10013         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
10014         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
10015         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
10016         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
10017         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
10018         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
10019         * tests/unistdio/test-u32-printf1.h: Likewise.
10020         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
10021         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
10022         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
10023         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
10024         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
10025         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
10026         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
10027         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
10028         * tests/unistdio/test-u8-printf1.h: Likewise.
10029         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
10030         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
10031         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
10032         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
10033         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
10034         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
10035         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
10036         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
10037         * tests/unistdio/test-ulc-printf1.h: Likewise.
10038         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
10039         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
10040         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
10041         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
10042         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
10043         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
10044         * tests/uniwidth/test-u16-strwidth.c: Likewise.
10045         * tests/uniwidth/test-u16-width.c: Likewise.
10046         * tests/uniwidth/test-u32-strwidth.c: Likewise.
10047         * tests/uniwidth/test-u32-width.c: Likewise.
10048         * tests/uniwidth/test-u8-strwidth.c: Likewise.
10049         * tests/uniwidth/test-u8-width.c: Likewise.
10050         * tests/uniwidth/test-uc_width.c: Likewise.
10051         * config/srclist-update: Likewise.
10052         (fixlicense): Update to GPLv3+.
10053
10054         Change copyright notice from LGPLv2.1+ to LGPLv3+.
10055         * tests/test-tsearch.c: Change copyright notice.
10056
10057         Change copyright notice from LGPLv2.0+ to LGPLv3+.
10058         * lib/c-strcaseeq.h: Change copyright notice.
10059         * lib/streq.h: Likewise.
10060         * lib/uniconv.h: Likewise.
10061         * lib/uniconv/u-conv-from-enc.h: Likewise.
10062         * lib/uniconv/u-conv-to-enc.h: Likewise.
10063         * lib/uniconv/u-strconv-from-enc.h: Likewise.
10064         * lib/uniconv/u-strconv-to-enc.h: Likewise.
10065         * lib/uniconv/u16-conv-from-enc.c: Likewise.
10066         * lib/uniconv/u16-conv-to-enc.c: Likewise.
10067         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
10068         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
10069         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
10070         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
10071         * lib/uniconv/u32-conv-from-enc.c: Likewise.
10072         * lib/uniconv/u32-conv-to-enc.c: Likewise.
10073         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
10074         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
10075         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
10076         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
10077         * lib/uniconv/u8-conv-from-enc.c: Likewise.
10078         * lib/uniconv/u8-conv-to-enc.c: Likewise.
10079         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
10080         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
10081         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
10082         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
10083         * lib/uniname.h: Likewise.
10084         * lib/uniname/uniname.c: Likewise.
10085         * lib/unistdio.h: Likewise.
10086         * lib/unistdio/u-asnprintf.h: Likewise.
10087         * lib/unistdio/u-asprintf.h: Likewise.
10088         * lib/unistdio/u-printf-args.c: Likewise.
10089         * lib/unistdio/u-printf-args.h: Likewise.
10090         * lib/unistdio/u-printf-parse.h: Likewise.
10091         * lib/unistdio/u-snprintf.h: Likewise.
10092         * lib/unistdio/u-sprintf.h: Likewise.
10093         * lib/unistdio/u-vasprintf.h: Likewise.
10094         * lib/unistdio/u-vsnprintf.h: Likewise.
10095         * lib/unistdio/u-vsprintf.h: Likewise.
10096         * lib/unistdio/u16-asnprintf.c: Likewise.
10097         * lib/unistdio/u16-asprintf.c: Likewise.
10098         * lib/unistdio/u16-printf-parse.c: Likewise.
10099         * lib/unistdio/u16-snprintf.c: Likewise.
10100         * lib/unistdio/u16-sprintf.c: Likewise.
10101         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
10102         * lib/unistdio/u16-u16-asprintf.c: Likewise.
10103         * lib/unistdio/u16-u16-snprintf.c: Likewise.
10104         * lib/unistdio/u16-u16-sprintf.c: Likewise.
10105         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
10106         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
10107         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
10108         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
10109         * lib/unistdio/u16-vasnprintf.c: Likewise.
10110         * lib/unistdio/u16-vasprintf.c: Likewise.
10111         * lib/unistdio/u16-vsnprintf.c: Likewise.
10112         * lib/unistdio/u16-vsprintf.c: Likewise.
10113         * lib/unistdio/u32-asnprintf.c: Likewise.
10114         * lib/unistdio/u32-asprintf.c: Likewise.
10115         * lib/unistdio/u32-printf-parse.c: Likewise.
10116         * lib/unistdio/u32-snprintf.c: Likewise.
10117         * lib/unistdio/u32-sprintf.c: Likewise.
10118         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
10119         * lib/unistdio/u32-u32-asprintf.c: Likewise.
10120         * lib/unistdio/u32-u32-snprintf.c: Likewise.
10121         * lib/unistdio/u32-u32-sprintf.c: Likewise.
10122         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
10123         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
10124         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
10125         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
10126         * lib/unistdio/u32-vasnprintf.c: Likewise.
10127         * lib/unistdio/u32-vasprintf.c: Likewise.
10128         * lib/unistdio/u32-vsnprintf.c: Likewise.
10129         * lib/unistdio/u32-vsprintf.c: Likewise.
10130         * lib/unistdio/u8-asnprintf.c: Likewise.
10131         * lib/unistdio/u8-asprintf.c: Likewise.
10132         * lib/unistdio/u8-printf-parse.c: Likewise.
10133         * lib/unistdio/u8-snprintf.c: Likewise.
10134         * lib/unistdio/u8-sprintf.c: Likewise.
10135         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
10136         * lib/unistdio/u8-u8-asprintf.c: Likewise.
10137         * lib/unistdio/u8-u8-snprintf.c: Likewise.
10138         * lib/unistdio/u8-u8-sprintf.c: Likewise.
10139         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
10140         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
10141         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
10142         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
10143         * lib/unistdio/u8-vasnprintf.c: Likewise.
10144         * lib/unistdio/u8-vasprintf.c: Likewise.
10145         * lib/unistdio/u8-vsnprintf.c: Likewise.
10146         * lib/unistdio/u8-vsprintf.c: Likewise.
10147         * lib/unistdio/ulc-asnprintf.c: Likewise.
10148         * lib/unistdio/ulc-asprintf.c: Likewise.
10149         * lib/unistdio/ulc-printf-parse.c: Likewise.
10150         * lib/unistdio/ulc-snprintf.c: Likewise.
10151         * lib/unistdio/ulc-sprintf.c: Likewise.
10152         * lib/unistdio/ulc-vasnprintf.c: Likewise.
10153         * lib/unistdio/ulc-vasprintf.c: Likewise.
10154         * lib/unistdio/ulc-vsnprintf.c: Likewise.
10155         * lib/unistdio/ulc-vsprintf.c: Likewise.
10156         * lib/unistr.h: Likewise.
10157         * lib/unistr/u-cpy-alloc.h: Likewise.
10158         * lib/unistr/u-cpy.h: Likewise.
10159         * lib/unistr/u-endswith.h: Likewise.
10160         * lib/unistr/u-move.h: Likewise.
10161         * lib/unistr/u-set.h: Likewise.
10162         * lib/unistr/u-startswith.h: Likewise.
10163         * lib/unistr/u-stpcpy.h: Likewise.
10164         * lib/unistr/u-stpncpy.h: Likewise.
10165         * lib/unistr/u-strcat.h: Likewise.
10166         * lib/unistr/u-strcpy.h: Likewise.
10167         * lib/unistr/u-strcspn.h: Likewise.
10168         * lib/unistr/u-strdup.h: Likewise.
10169         * lib/unistr/u-strlen.h: Likewise.
10170         * lib/unistr/u-strncat.h: Likewise.
10171         * lib/unistr/u-strncpy.h: Likewise.
10172         * lib/unistr/u-strnlen.h: Likewise.
10173         * lib/unistr/u-strpbrk.h: Likewise.
10174         * lib/unistr/u-strspn.h: Likewise.
10175         * lib/unistr/u-strstr.h: Likewise.
10176         * lib/unistr/u-strtok.h: Likewise.
10177         * lib/unistr/u16-check.c: Likewise.
10178         * lib/unistr/u16-chr.c: Likewise.
10179         * lib/unistr/u16-cmp.c: Likewise.
10180         * lib/unistr/u16-cpy-alloc.c: Likewise.
10181         * lib/unistr/u16-cpy.c: Likewise.
10182         * lib/unistr/u16-endswith.c: Likewise.
10183         * lib/unistr/u16-mblen.c: Likewise.
10184         * lib/unistr/u16-mbsnlen.c: Likewise.
10185         * lib/unistr/u16-mbtouc-aux.c: Likewise.
10186         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
10187         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
10188         * lib/unistr/u16-mbtouc.c: Likewise.
10189         * lib/unistr/u16-mbtoucr.c: Likewise.
10190         * lib/unistr/u16-move.c: Likewise.
10191         * lib/unistr/u16-next.c: Likewise.
10192         * lib/unistr/u16-prev.c: Likewise.
10193         * lib/unistr/u16-set.c: Likewise.
10194         * lib/unistr/u16-startswith.c: Likewise.
10195         * lib/unistr/u16-stpcpy.c: Likewise.
10196         * lib/unistr/u16-stpncpy.c: Likewise.
10197         * lib/unistr/u16-strcat.c: Likewise.
10198         * lib/unistr/u16-strchr.c: Likewise.
10199         * lib/unistr/u16-strcmp.c: Likewise.
10200         * lib/unistr/u16-strcpy.c: Likewise.
10201         * lib/unistr/u16-strcspn.c: Likewise.
10202         * lib/unistr/u16-strdup.c: Likewise.
10203         * lib/unistr/u16-strlen.c: Likewise.
10204         * lib/unistr/u16-strmblen.c: Likewise.
10205         * lib/unistr/u16-strmbtouc.c: Likewise.
10206         * lib/unistr/u16-strncat.c: Likewise.
10207         * lib/unistr/u16-strncmp.c: Likewise.
10208         * lib/unistr/u16-strncpy.c: Likewise.
10209         * lib/unistr/u16-strnlen.c: Likewise.
10210         * lib/unistr/u16-strpbrk.c: Likewise.
10211         * lib/unistr/u16-strrchr.c: Likewise.
10212         * lib/unistr/u16-strspn.c: Likewise.
10213         * lib/unistr/u16-strstr.c: Likewise.
10214         * lib/unistr/u16-strtok.c: Likewise.
10215         * lib/unistr/u16-to-u32.c: Likewise.
10216         * lib/unistr/u16-to-u8.c: Likewise.
10217         * lib/unistr/u16-uctomb-aux.c: Likewise.
10218         * lib/unistr/u16-uctomb.c: Likewise.
10219         * lib/unistr/u32-check.c: Likewise.
10220         * lib/unistr/u32-chr.c: Likewise.
10221         * lib/unistr/u32-cmp.c: Likewise.
10222         * lib/unistr/u32-cpy-alloc.c: Likewise.
10223         * lib/unistr/u32-cpy.c: Likewise.
10224         * lib/unistr/u32-endswith.c: Likewise.
10225         * lib/unistr/u32-mblen.c: Likewise.
10226         * lib/unistr/u32-mbsnlen.c: Likewise.
10227         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
10228         * lib/unistr/u32-mbtouc.c: Likewise.
10229         * lib/unistr/u32-mbtoucr.c: Likewise.
10230         * lib/unistr/u32-move.c: Likewise.
10231         * lib/unistr/u32-next.c: Likewise.
10232         * lib/unistr/u32-prev.c: Likewise.
10233         * lib/unistr/u32-set.c: Likewise.
10234         * lib/unistr/u32-startswith.c: Likewise.
10235         * lib/unistr/u32-stpcpy.c: Likewise.
10236         * lib/unistr/u32-stpncpy.c: Likewise.
10237         * lib/unistr/u32-strcat.c: Likewise.
10238         * lib/unistr/u32-strchr.c: Likewise.
10239         * lib/unistr/u32-strcmp.c: Likewise.
10240         * lib/unistr/u32-strcpy.c: Likewise.
10241         * lib/unistr/u32-strcspn.c: Likewise.
10242         * lib/unistr/u32-strdup.c: Likewise.
10243         * lib/unistr/u32-strlen.c: Likewise.
10244         * lib/unistr/u32-strmblen.c: Likewise.
10245         * lib/unistr/u32-strmbtouc.c: Likewise.
10246         * lib/unistr/u32-strncat.c: Likewise.
10247         * lib/unistr/u32-strncmp.c: Likewise.
10248         * lib/unistr/u32-strncpy.c: Likewise.
10249         * lib/unistr/u32-strnlen.c: Likewise.
10250         * lib/unistr/u32-strpbrk.c: Likewise.
10251         * lib/unistr/u32-strrchr.c: Likewise.
10252         * lib/unistr/u32-strspn.c: Likewise.
10253         * lib/unistr/u32-strstr.c: Likewise.
10254         * lib/unistr/u32-strtok.c: Likewise.
10255         * lib/unistr/u32-to-u16.c: Likewise.
10256         * lib/unistr/u32-to-u8.c: Likewise.
10257         * lib/unistr/u32-uctomb.c: Likewise.
10258         * lib/unistr/u8-check.c: Likewise.
10259         * lib/unistr/u8-chr.c: Likewise.
10260         * lib/unistr/u8-cmp.c: Likewise.
10261         * lib/unistr/u8-cpy-alloc.c: Likewise.
10262         * lib/unistr/u8-cpy.c: Likewise.
10263         * lib/unistr/u8-endswith.c: Likewise.
10264         * lib/unistr/u8-mblen.c: Likewise.
10265         * lib/unistr/u8-mbsnlen.c: Likewise.
10266         * lib/unistr/u8-mbtouc-aux.c: Likewise.
10267         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
10268         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
10269         * lib/unistr/u8-mbtouc.c: Likewise.
10270         * lib/unistr/u8-mbtoucr.c: Likewise.
10271         * lib/unistr/u8-move.c: Likewise.
10272         * lib/unistr/u8-next.c: Likewise.
10273         * lib/unistr/u8-prev.c: Likewise.
10274         * lib/unistr/u8-set.c: Likewise.
10275         * lib/unistr/u8-startswith.c: Likewise.
10276         * lib/unistr/u8-stpcpy.c: Likewise.
10277         * lib/unistr/u8-stpncpy.c: Likewise.
10278         * lib/unistr/u8-strcat.c: Likewise.
10279         * lib/unistr/u8-strchr.c: Likewise.
10280         * lib/unistr/u8-strcmp.c: Likewise.
10281         * lib/unistr/u8-strcpy.c: Likewise.
10282         * lib/unistr/u8-strcspn.c: Likewise.
10283         * lib/unistr/u8-strdup.c: Likewise.
10284         * lib/unistr/u8-strlen.c: Likewise.
10285         * lib/unistr/u8-strmblen.c: Likewise.
10286         * lib/unistr/u8-strmbtouc.c: Likewise.
10287         * lib/unistr/u8-strncat.c: Likewise.
10288         * lib/unistr/u8-strncmp.c: Likewise.
10289         * lib/unistr/u8-strncpy.c: Likewise.
10290         * lib/unistr/u8-strnlen.c: Likewise.
10291         * lib/unistr/u8-strpbrk.c: Likewise.
10292         * lib/unistr/u8-strrchr.c: Likewise.
10293         * lib/unistr/u8-strspn.c: Likewise.
10294         * lib/unistr/u8-strstr.c: Likewise.
10295         * lib/unistr/u8-strtok.c: Likewise.
10296         * lib/unistr/u8-to-u16.c: Likewise.
10297         * lib/unistr/u8-to-u32.c: Likewise.
10298         * lib/unistr/u8-uctomb-aux.c: Likewise.
10299         * lib/unistr/u8-uctomb.c: Likewise.
10300         * lib/unitypes.h: Likewise.
10301         * lib/uniwidth.h: Likewise.
10302         * lib/uniwidth/cjk.h: Likewise.
10303         * lib/uniwidth/u16-strwidth.c: Likewise.
10304         * lib/uniwidth/u16-width.c: Likewise.
10305         * lib/uniwidth/u32-strwidth.c: Likewise.
10306         * lib/uniwidth/u32-width.c: Likewise.
10307         * lib/uniwidth/u8-strwidth.c: Likewise.
10308         * lib/uniwidth/u8-width.c: Likewise.
10309         * lib/uniwidth/width.c: Likewise.
10310
10311 2007-10-07  Bruno Haible  <bruno@clisp.org>
10312
10313         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
10314         The file is still under LGPL (see modules/inttypes).
10315
10316 2007-10-06  Bruno Haible  <bruno@clisp.org>
10317
10318         * modules/trunc (Dependencies): Add 'extensions'.
10319         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
10320         Reported by Ben Pfaff <blp@gnu.org>.
10321
10322 2007-10-06  Bruno Haible  <bruno@clisp.org>
10323
10324         * modules/freopen-tests: New file.
10325         * tests/test-freopen.c: New file.
10326
10327         * modules/fopen-tests: New file.
10328         * tests/test-fopen.c: New file.
10329
10330         * modules/fopen: New file.
10331         * lib/fopen.c: New file.
10332         * m4/fopen.m4: New file.
10333         * modules/freopen: New file.
10334         * lib/freopen.c: New file.
10335         * m4/freopen.m4: New file.
10336         * lib/stdio.in.h (fopen, freopen): New declarations.
10337         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
10338         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10339         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
10340         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
10341         * doc/functions/fopen.texi: Mention the 'fopen' module.
10342         * doc/functions/freopen.texi: Mention the 'freopen' module.
10343
10344 2007-10-06  Bruno Haible  <bruno@clisp.org>
10345
10346         * modules/open-tests: New file.
10347         * tests/test-open.c: New file.
10348
10349         * modules/open: New file.
10350         * lib/open.c: New file.
10351         * m4/open.m4: New file.
10352         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
10353         lib/open.c does.
10354         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
10355         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
10356         macros.
10357         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
10358         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
10359         REPLACE_OPEN.
10360         * doc/functions/open.texi: Mention the 'open' module.
10361
10362 2007-10-04  Bruno Haible  <bruno@clisp.org>
10363
10364         * modules/ceill-tests: New file.
10365         * tests/test-ceill.c: New file.
10366
10367         * modules/ceill: New file.
10368         * lib/ceill.c: Replace entire file.
10369         * m4/ceill.m4: New file.
10370         * lib/math.in.h (ceill): Replace declaration.
10371         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
10372         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
10373         * doc/functions/ceill.texi: Mention the 'ceill' module.
10374         * modules/mathl (Files): Remove lib/ceill.c.
10375         (Depends-on): Add ceill.
10376
10377 2007-10-04  Bruno Haible  <bruno@clisp.org>
10378
10379         * modules/ceilf-tests: New file.
10380         * tests/test-ceilf.c: New file.
10381
10382         * modules/ceilf: New file.
10383         * lib/ceil.c: New file.
10384         * lib/ceilf.c: New file.
10385         * m4/ceilf.m4: New file.
10386         * lib/math.in.h (ceilf): New declaration.
10387         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
10388         HAVE_DECL_CEILF.
10389         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
10390         HAVE_DECL_CEILF.
10391         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
10392
10393 2007-10-04  Bruno Haible  <bruno@clisp.org>
10394
10395         * modules/floorl-tests: New file.
10396         * tests/test-floorl.c: New file.
10397
10398         * modules/floorl: New file.
10399         * lib/floorl.c: Replace entire file.
10400         * m4/floorl.m4: New file.
10401         * lib/math.in.h (floorl): Replace declaration.
10402         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
10403         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
10404         * doc/functions/floorl.texi: Mention the 'floorl' module.
10405         * modules/mathl (Files): Remove lib/floorl.c.
10406         (Depends-on): Add floorl.
10407
10408 2007-10-04  Bruno Haible  <bruno@clisp.org>
10409
10410         * modules/floorf-tests: New file.
10411         * tests/test-floorf.c: New file.
10412
10413         * modules/floorf: New file.
10414         * lib/floor.c: New file.
10415         * lib/floorf.c: New file.
10416         * m4/floorf.m4: New file.
10417         * lib/math.in.h (floorf): New declaration.
10418         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
10419         HAVE_DECL_FLOORF.
10420         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
10421         HAVE_DECL_FLOORF.
10422         * doc/functions/floorf.texi: Mention the 'floorf' module.
10423
10424 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
10425             Bruno Haible  <bruno@clisp.org>
10426
10427         Advertise for the Git server instead of the CVS server.
10428         * doc/gnulib-intro.texi (Steady Development): Mention the Git
10429         repository instead of the CVS one.
10430         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
10431         about all VCS systems generically.
10432         * doc/gnulib.texi (Introduction): Capitalize `Git'.
10433
10434 2007-10-04  Bruno Haible  <bruno@clisp.org>
10435
10436         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
10437         means.
10438         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
10439
10440 2007-10-04  Bruno Haible  <bruno@clisp.org>
10441
10442         * modules/truncl-tests: New file.
10443         * tests/test-truncl.c: New file.
10444
10445         * modules/truncl: New file.
10446         * lib/truncl.c: New file.
10447         * m4/truncl.m4: New file.
10448         * lib/math.in.h (truncl): New declaration.
10449         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
10450         HAVE_DECL_TRUNCL.
10451         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
10452         HAVE_DECL_TRUNCL.
10453         * doc/functions/truncl.texi: Mention the 'truncl' module.
10454
10455 2007-10-04  Bruno Haible  <bruno@clisp.org>
10456
10457         * modules/truncf-tests: New file.
10458         * tests/test-truncf.c: New file.
10459
10460         * modules/truncf: New file.
10461         * lib/trunc.c: Make paramerizable through USE_* macros.
10462         * lib/truncf.c: New file.
10463         * m4/truncf.m4: New file.
10464         * lib/math.in.h (truncf): New declaration.
10465         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
10466         HAVE_DECL_TRUNCF.
10467         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
10468         HAVE_DECL_TRUNCF.
10469         * doc/functions/truncf.texi: Mention the 'truncf' module.
10470
10471 2007-10-03  Bruno Haible  <bruno@clisp.org>
10472
10473         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
10474         augmentation also for tests modules.
10475         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
10476         * modules/atexit-tests (Makefile.am): Likewise.
10477         * modules/binary-io-tests (Makefile.am): Likewise.
10478         * modules/c-strcase-tests (Makefile.am): Likewise.
10479         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
10480         * modules/canonicalize-tests (Makefile.am): Likewise.
10481         * modules/closein-tests (Makefile.am): Likewise.
10482         * modules/fprintf-posix-tests (Makefile.am): Likewise.
10483         * modules/freadahead-tests (Makefile.am): Likewise.
10484         * modules/fseek-tests (Makefile.am): Likewise.
10485         * modules/fseeko-tests (Makefile.am): Likewise.
10486         * modules/ftell-tests (Makefile.am): Likewise.
10487         * modules/ftello-tests (Makefile.am): Likewise.
10488         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
10489         * modules/isnanl-tests (Makefile.am): Likewise.
10490         * modules/lseek-tests (Makefile.am): Likewise.
10491         * modules/mbscasecmp-tests (Makefile.am): Likewise.
10492         * modules/mbscasestr-tests (Makefile.am): Likewise.
10493         * modules/mbschr-tests (Makefile.am): Likewise.
10494         * modules/mbscspn-tests (Makefile.am): Likewise.
10495         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
10496         * modules/mbspbrk-tests (Makefile.am): Likewise.
10497         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
10498         * modules/mbsrchr-tests (Makefile.am): Likewise.
10499         * modules/mbsspn-tests (Makefile.am): Likewise.
10500         * modules/mbsstr-tests (Makefile.am): Likewise.
10501         * modules/printf-posix-tests (Makefile.am): Likewise.
10502         * modules/snprintf-posix-tests (Makefile.am): Likewise.
10503         * modules/sprintf-posix-tests (Makefile.am): Likewise.
10504         * modules/tsearch-tests (Makefile.am): Likewise.
10505         * modules/uniname/uniname-tests (Makefile.am): Likewise.
10506         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
10507         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
10508         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
10509         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
10510         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
10511         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
10512         * modules/vprintf-posix-tests (Makefile.am): Likewise.
10513         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
10514         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
10515         * modules/xstrtoimax-tests (Makefile.am): Likewise.
10516         * modules/xstrtol-tests (Makefile.am): Likewise.
10517         * modules/xstrtoumax-tests (Makefile.am): Likewise.
10518         * modules/yesno-tests (Makefile.am): Likewise.
10519
10520 2007-10-03  Bruno Haible  <bruno@clisp.org>
10521
10522         * modules/trunc-tests: New file.
10523         * tests/test-trunc.c: New file.
10524
10525         * modules/trunc: New file.
10526         * lib/trunc.c: New file.
10527         * m4/trunc.m4: New file.
10528         * lib/math.in.h (trunc): New declaration.
10529         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
10530         HAVE_DECL_TRUNC.
10531         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
10532         HAVE_DECL_TRUNC.
10533         * doc/functions/trunc.texi: Mention the 'trunc' module.
10534
10535 2007-10-03  Bruno Haible  <bruno@clisp.org>
10536
10537         * tests/test-fpending.c: New file, mostly copied
10538         from coreutils/lib/t-fpending.c.
10539         * modules/fpending-tests: New file.
10540
10541 2007-10-03  Bruno Haible  <bruno@clisp.org>
10542
10543         Port the stdio extensions to QNX (untested).
10544         * lib/fseterr.c (fseterr): Add support for QNX.
10545         * lib/fbufmode.c (fbufmode): Likewise.
10546         * lib/freadable.c (freadable): Likewise.
10547         * lib/fwritable.c (fwritable): Likewise.
10548         * lib/freading.c (freading): Likewise.
10549         * lib/fwriting.c (fwriting): Likewise.
10550         * lib/freadahead.c (freadahed): Likewise.
10551         * lib/fpurge.c (fpurge): Likewise.
10552         * lib/fseeko.c (rpl_fseeko): Likewise.
10553
10554 2007-10-03  Bruno Haible  <bruno@clisp.org>
10555             Jim Meyering  <jim@meyering.net>
10556             Eric Blake  <ebb9@byu.net>
10557
10558         * doc/relocatable.texi: Use @command instead of @program.
10559
10560 2007-10-02  Jim Meyering  <jim@meyering.net>
10561
10562         Perform one more "_.h" -> ".in.h" substitution.
10563         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
10564         instead of unistd_.h here, too.
10565
10566 2007-10-01  Bruno Haible  <bruno@clisp.org>
10567
10568         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
10569         Needed for the alloca-opt module.
10570
10571 2007-09-30  Bruno Haible  <bruno@clisp.org>
10572
10573         * lib/alloca.in.h: Renamed from lib/alloca_.h.
10574         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
10575         alloca_.h.
10576         * lib/argz.in.h: Renamed from lib/argz_.h.
10577         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
10578         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
10579         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
10580         byteswap_.h.
10581         * lib/dirent.in.h: Renamed from lib/dirent_.h.
10582         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
10583         dirent_.h.
10584         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
10585         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
10586         fcntl_.h.
10587         * lib/float.in.h: Renamed from lib/float_.h.
10588         * modules/float (Files, Makefile.am): Use float.in.h instead of
10589         float_.h.
10590         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
10591         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
10592         fnmatch_.h.
10593         * lib/getopt.in.h: Renamed from lib/getopt_.h.
10594         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
10595         getopt_.h.
10596         * lib/glob.in.h: Renamed from lib/glob_.h.
10597         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
10598         * lib/iconv.in.h: Renamed from lib/iconv_.h.
10599         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
10600         iconv_.h.
10601         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
10602         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
10603         inttypes_.h.
10604         * lib/locale.in.h: Renamed from lib/locale_.h.
10605         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
10606         locale_.h.
10607         * lib/math.in.h: Renamed from lib/math_.h.
10608         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
10609         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
10610         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
10611         of netinet_in_.h. Add dependency.
10612         * lib/poll.in.h: Renamed from lib/poll_.h.
10613         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
10614         * lib/search.in.h: Renamed from lib/search_.h.
10615         * modules/search (Files, Makefile.am): Use search.in.h instead of
10616         search_.h.
10617         * lib/signal.in.h: Renamed from lib/signal_.h.
10618         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
10619         _signal.h.
10620         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
10621         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
10622         stdbool_.h.
10623         * lib/stdint.in.h: Renamed from lib/stdint_.h.
10624         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
10625         stdint_.h.
10626         * lib/stdio.in.h: Renamed from lib/stdio_.h.
10627         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
10628         stdio_.h.
10629         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
10630         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
10631         stdlib_.h.
10632         * lib/string.in.h: Renamed from lib/string_.h.
10633         * modules/string (Files, Makefile.am): Use string.in.h instead of
10634         string_.h.
10635         * doc/gnulib-tool.texi (Initial import): Update.
10636         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
10637         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
10638         of sys_select_.h. Add dependency.
10639         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
10640         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
10641         of sys_socket_.h.
10642         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
10643         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
10644         sys_stat_.h.
10645         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
10646         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
10647         sys_time_.h.
10648         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
10649         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
10650         sysexits_.h.
10651         * lib/time.in.h: Renamed from lib/time_.h.
10652         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
10653         * lib/unistd.in.h: Renamed from lib/unistd_.h.
10654         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
10655         unistd_.h.
10656         * lib/wchar.in.h: Renamed from lib/wchar_.h.
10657         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
10658         wchar_.h.
10659         * lib/wctype.in.h: Renamed from lib/wctype_.h.
10660         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
10661         wctype_.h.
10662         * build-aux/bootstrap (slurp): Update.
10663         * lib/.cppi-disable: Update.
10664
10665 2007-09-30  Bruno Haible  <bruno@clisp.org>
10666
10667         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
10668         Needed on BeOS.
10669
10670 2007-09-30  Bruno Haible  <bruno@clisp.org>
10671
10672         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
10673
10674 2007-09-29  Bruno Haible  <bruno@clisp.org>
10675
10676         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
10677
10678 2007-09-29  Bruno Haible  <bruno@clisp.org>
10679
10680         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
10681         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
10682         * build-aux/install-reloc: Compile also areadlink.c.
10683         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
10684
10685 2007-09-29  Bruno Haible  <bruno@clisp.org>
10686
10687         * gnulib-tool (func_emit_initmacro_done): Indentation.
10688
10689 2007-09-29  Bruno Haible  <bruno@clisp.org>
10690
10691         * README: Add CVS checkout update instructions.
10692         Info from Bob Proulx <bob@proulx.com>.
10693
10694 2007-09-28  Eric Blake  <ebb9@byu.net>
10695
10696         Provide move-if-change.
10697         * build-aux/move-if-change: New file, based on best practice
10698         rather than any canonical upstream location.
10699
10700 2007-09-28  Jim Meyering  <jim@meyering.net>
10701
10702         Fix canonicalize loop-detection corner case.
10703         Do not attempt to stat the symlink values stored via seen_triple.
10704         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
10705         on linux-2.6.18, (but not 2.6.22).
10706         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
10707         triple_compare.  The former compares dev,ino,filename, while the latter
10708         would actually stat dirname(filename) when dev and ino were equal.
10709         * lib/hash-triple.c: Install <string.h>.
10710         (STREQ): Define.
10711         (triple_compare_ino_str): New function.
10712         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
10713
10714 2007-09-28  Eric Blake  <ebb9@byu.net>
10715
10716         Enforce that AC_REPLACE_FUNCS files exist.
10717         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
10718         override check for typos.
10719
10720         Fix test-closein on Solaris 10.
10721         * tests/test-closein.c (main): Don't assume stdin can be inherited
10722         closed on all systems.
10723         * tests/test-closein.sh: Likewise.
10724         Reported by Piotr Tarnowski.
10725
10726 2007-09-28  Jim Meyering  <jim@meyering.net>
10727
10728         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
10729
10730 2007-09-27  Jim Meyering  <jim@meyering.net>
10731
10732         canonicalize: Avoid a false-positive cycle failure.
10733         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
10734         Sort.  Remove cycle-check.
10735         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
10736         not cycle-check.h.
10737         (seen_triple): New function.
10738         (canonicalize_filename_mode): Use it instead of cycle-check.
10739         * tests/test-canonicalize.c: Add a test for this bug.
10740         * tests/test-canonicalize.sh: Set up and run the test.
10741
10742         New module, file-set, from coreutils.
10743         * modules/file-set: Define it.
10744         * lib/file-set.c, lib/file-set.h: Implement.
10745
10746         New module, hash-triple, from coreutils.
10747         * modules/hash-triple: Define it.
10748         * lib/hash-triple.c, lib/hash-triple.h: Implement.
10749
10750 2007-09-25  Eric Blake  <ebb9@byu.net>
10751
10752         Fix strerror on Interix.
10753         * lib/string_.h (strerror): Declare replacement.
10754         * doc/functions/strerror.texi (strerror): Document the Interix
10755         shortcoming.
10756         * modules/string (Makefile.am): Support new hooks.
10757         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
10758         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
10759         gl_FUNC_STRERROR_SEPARATE.
10760         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
10761         * lib/strerror.c (rpl_strerror): Provide replacement.
10762         * modules/strerror (Depends-on): Add string.
10763         (configure.ac): Detect use of module.
10764         * tests/test-strerror.c: New file.
10765         * modules/strerror-tests: New test module.
10766         * modules/argp (Depends-on): Add strerror.
10767         * modules/error (Depends-on): Likewise.
10768         Reported by Martin Koeppe.
10769
10770 2007-09-24  Bruno Haible  <bruno@clisp.org>
10771
10772         * README: Update git instructions.
10773
10774 2007-09-24  Eric Blake  <ebb9@byu.net>
10775
10776         Revert fpending breakage from 2007-09-08.
10777         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
10778         __fpending.c.
10779
10780 2007-09-24  Jim Meyering  <jim@meyering.net>
10781
10782         filenamecat.c: Add a test.
10783         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
10784         showing how the function works when DIR is the empty string.
10785
10786 2007-09-21  Simon Josefsson  <simon@josefsson.org>
10787
10788         * tests/test-canonicalize.sh: Turn on executable bit.
10789
10790 2007-09-19  Eric Blake  <ebb9@byu.net>
10791
10792         * README: Update CVS instructions.
10793
10794 2007-09-18  Bruno Haible  <bruno@clisp.org>
10795
10796         * modules/areadlink: New file.
10797         * lib/areadlink.h (areadlink): New declaration.
10798         * lib/areadlink.c: New file, based on lib/xreadlink.c.
10799
10800 2007-09-17  Jim Meyering  <jim@meyering.net>
10801
10802         * lib/savewd.c (ESTALE) [!defined]: Define.
10803         Reported to be required on Interix by Martin Koeppe.
10804
10805 2007-09-17  Bruno Haible  <bruno@clisp.org>
10806
10807         * gnulib-tool (func_version): Use $version.
10808
10809 2007-09-16  Bruno Haible  <bruno@clisp.org>
10810
10811         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
10812         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
10813         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
10814         Reported by Greg Schafer <gschafer@zip.com.au>.
10815
10816 2007-09-15  Bruno Haible  <bruno@clisp.org>
10817
10818         * gnulib-tool (sed): Try a little harder to make bash understand the
10819         alias.
10820         Reported by Bruce Korb <bruce.korb@gmail.com>.
10821
10822 2007-09-13  Eric Blake  <ebb9@byu.net>
10823
10824         * ChangeLog: Remove conflict markers.
10825
10826 2007-09-13  Simon Josefsson  <simon@josefsson.org>
10827
10828         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
10829         Reported by Bruno Haible <bruno@clisp.org>.
10830
10831 2007-09-12  Bruno Haible  <bruno@clisp.org>
10832
10833         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
10834         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
10835         is not defined.
10836
10837 2007-09-12  Eric Blake  <ebb9@byu.net>
10838
10839         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
10840         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
10841         Autoconf definition.
10842         * modules/euidaccess (Depends-on): Add extensions, for
10843         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
10844         * modules/fnmatch (Depends-on): Likewise.
10845         * modules/getaddrinfo (Depends-on): Likewise.
10846         * modules/getdelim (Depends-on): Likewise.
10847         * modules/getline (Depends-on): Likewise.
10848         * modules/getsubopt (Depends-on): Likewise.
10849         * modules/gettext (Depends-on): Likewise.
10850         * modules/group-member (Depends-on): Likewise.
10851         * modules/mbchar (Depends-on): Likewise.
10852         * modules/memmem (Depends-on): Likewise.
10853         * modules/mempcpy (Depends-on): Likewise.
10854         * modules/memrchr (Depends-on): Likewise.
10855         * modules/pagealign_alloc (Depends-on): Likewise.
10856         * modules/readutmp (Depends-on): Likewise.
10857         * modules/stpcpy (Depends-on): Likewise.
10858         * modules/stpncpy (Depends-on): Likewise.
10859         * modules/strchrnul (Depends-on): Likewise.
10860         * modules/strndup (Depends-on): Likewise.
10861         * modules/strsep (Depends-on): Likewise.
10862         * modules/strverscmp (Depends-on): Likewise.
10863         * modules/vasprintf (Depends-on): Likewise.
10864         * modules/wcwidth (Depends-on): Likewise.
10865         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
10866         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
10867         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
10868         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
10869         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
10870         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
10871         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
10872         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
10873         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
10874         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
10875         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
10876         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
10877         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
10878         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
10879         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
10880         * m4/readutmp.m4 (gl_READUTMP): Likewise.
10881         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10882         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
10883         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
10884         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
10885         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
10886         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
10887         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
10888         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
10889         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
10890         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
10891         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
10892         so that lock.m4 can be used in gettext without extensions module.
10893
10894 2007-09-11  Bruno Haible  <bruno@clisp.org>
10895
10896         * m4/isc-posix.m4: Remove file.
10897         Suggested by Eric Blake.
10898
10899 2007-09-11  Eric Blake  <ebb9@byu.net>
10900
10901         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
10902
10903 2007-09-10  Bruno Haible  <bruno@clisp.org>
10904
10905         * posix-modules: Fix typo in error message.
10906         Reported by Matt <mkraai@beckman.com>.
10907
10908 2007-09-09  Bruno Haible  <bruno@clisp.org>
10909
10910         * doc/functions/getdelim.texi: Update list of platforms lacking the
10911         function.
10912         * doc/functions/getline.texi: Likewise.
10913
10914 2007-09-09  Jim Meyering  <jim@meyering.net>
10915
10916         * lib/hash.c (hash_initialize): Detect calloc failure.
10917         Reported by Bruno Haible.
10918
10919 2007-09-09  Bruno Haible  <bruno@clisp.org>
10920
10921         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
10922         malloc or realloc fails.
10923
10924 2007-09-09  Bruno Haible  <bruno@clisp.org>
10925
10926         * modules/getcwd (Depends-on): Add malloc-posix.
10927         * modules/glob (Depends-on): Likewise.
10928         * modules/putenv (Depends-on): Likewise.
10929         * modules/strdup (Depends-on): Likewise.
10930         * modules/getdelim (Depends-on): Add realloc-posix.
10931         * modules/read-file (Depends-on): Likewise.
10932
10933 2007-09-09  Bruno Haible  <bruno@clisp.org>
10934
10935         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
10936         (gl_FUNC_MALLOC_POSIX): Require it.
10937         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
10938         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
10939         * modules/realloc (Files): Add m4/malloc.m4.
10940         * modules/calloc (Files): Likewise.
10941
10942 2007-09-09  Bruno Haible  <bruno@clisp.org>
10943
10944         * modules/malloc-posix: New file.
10945         * modules/malloc (Depends-on): Add malloc-posix.
10946         * lib/malloc.c: Include errno.h.
10947         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
10948         and a POSIX-compatible malloc into a single function. Set ENOMEM
10949         when returning NULL.
10950         * m4/malloc.m4: New file.
10951         * doc/functions/malloc.texi: Mention the malloc-posix module.
10952         * lib/stdlib_.h (malloc): New declaration.
10953         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10954         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
10955         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
10956         and HAVE_MALLOC_POSIX.
10957
10958 2007-09-09  Bruno Haible  <bruno@clisp.org>
10959
10960         * modules/realloc-posix: New file.
10961         * modules/realloc (Depends-on): Add realloc-posix.
10962         * lib/realloc.c: Include errno.h.
10963         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
10964         and a POSIX-compatible realloc into a single function. Set ENOMEM
10965         when returning NULL.
10966         * m4/realloc.m4: New file.
10967         * doc/functions/realloc.texi: Mention the realloc-posix module.
10968         * lib/stdlib_.h (realloc): New declaration.
10969         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10970         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
10971         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
10972         and HAVE_REALLOC_POSIX.
10973
10974 2007-09-09  Bruno Haible  <bruno@clisp.org>
10975
10976         * modules/calloc-posix: New file.
10977         * modules/calloc (Depends-on): Add calloc-posix.
10978         * lib/calloc.c: Include errno.h.
10979         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
10980         and a POSIX-compatible calloc into a single function. Set ENOMEM
10981         when returning NULL.
10982         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
10983         * doc/functions/calloc.texi: Mention the calloc-posix module.
10984         * lib/stdlib_.h (calloc): New declaration.
10985         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
10986         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
10987         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
10988         and HAVE_CALLOC_POSIX.
10989
10990 2007-09-09  Bruno Haible  <bruno@clisp.org>
10991
10992         Allow for modules to show an arbitrary notice.
10993         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
10994         * gnulib-tool: New option --extract-notice.
10995         (func_usage): Document it.
10996         (sed_extract_prog): Update.
10997         (func_get_notice): New function.
10998         (func_modules_notice): New function.
10999         (func_import, func_create_testdir): Invoke it.
11000         Suggested by Jim Meyering.
11001
11002 2007-09-09  Bruno Haible  <bruno@clisp.org>
11003
11004         * gnulib-tool: New options --verbose, --quiet.
11005         (func_usage): Document them.
11006         (verbose): New variable.
11007         (func_execute_command): New function.
11008         (func_import): Don't show the module list and the file list if
11009         $verbose < 0.
11010         (func_create_testdir): Likewise. Use func_execute_command.
11011         (func_create_megatestdir): Use func_execute_command.
11012
11013 2007-09-08  Bruno Haible  <bruno@clisp.org>
11014
11015         * gnulib-tool (func_import): Prefer rsync over wget when available,
11016         for fetching the PO files.
11017
11018 2007-09-08  Bruno Haible  <bruno@clisp.org>
11019
11020         * posix-modules: New file. Portions copied from gnulib-tool.
11021         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
11022
11023 2007-09-08  Jim Meyering  <jim@meyering.net>
11024
11025         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
11026         * lib/fpending.h: Rename from __fpending.h.
11027         * lib/fpending.c: Rename from __fpending.c.
11028         Include "fpending.h", not "__fpending.h".
11029         * lib/__fpending.h, lib/__fpending.c: Remove files.
11030         * modules/fpending (Files): Reflect new file names.
11031         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
11032
11033 2007-09-08  Bruno Haible  <bruno@clisp.org>
11034
11035         * m4/inttypes-h.m4: Remove stub file.
11036
11037 2007-09-07  Simon Josefsson  <simon@josefsson.org>
11038
11039         * doc/headers/stdint.texi: Discuss #include_next issue.
11040
11041 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11042
11043         * build-aux/bootstrap: Remove obsolete comment about wget --help.
11044
11045 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11046
11047         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
11048         in variable name.
11049
11050 2007-09-03  Jim Meyering  <jim@meyering.net>
11051
11052         New module: git-version-gen.
11053         * modules/git-version-gen: New file.
11054
11055         Import changes from coreutils for bootstrap script.
11056
11057         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
11058
11059         bootstrap: uses rsync to download the .po files
11060         * build-aux/bootstrap (po_download_command_format): New global.
11061         (download_po_files): Use rsync.
11062         (update_po_files): Don't remove .po files after download,
11063         so future rsync runs can take advantage of the copies.
11064
11065         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
11066
11067         Solve the unnecessary-.po-file-regeneration problem once and for all.
11068         * build-aux/bootstrap (download_po_files): New function, renamed from
11069         get_translations.  Now, downloads, but doesn't update LINGUAS.
11070         (update_po_files): New function.
11071
11072         bootstrap: Ignore more.
11073         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
11074         uniwidth to e.g., lib/.gitignore.
11075         (slurp): Handle the sys_stat_.h -> sys mapping, too.
11076
11077         * build-aux/bootstrap: New setting: vc_ignore.
11078         (insert_sorted_if_absent): Create $file if absent.
11079         Adapt to new, possibly empty, list: $vc_ignore.
11080
11081         bootstrap: generate more ignorable names
11082         * build-aux/bootstrap (slurp): When generating ignorable names,
11083         also map .sin to .sed, .gperf to .c, and .y to .c.
11084
11085 2007-09-03  Jim Meyering  <jim@meyering.net>
11086
11087         * build-aux/git-version-gen: New file, from coreutils.  For details, see
11088         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
11089
11090 2007-09-02  Bruno Haible  <bruno@clisp.org>
11091
11092         Fix mis-recognition of 'mcs' on QNX 6.
11093         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
11094         output contains the string "Mono".
11095         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
11096         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
11097
11098 2007-09-01  Bruno Haible  <bruno@clisp.org>
11099
11100         Fix collision between uniwidth/* and linebreak modules.
11101         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
11102         u32_width): Remove declarations.
11103         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
11104         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
11105         streq3, streq2, streq1, streq0): Remove functions.
11106         (STREQ): Remove macro.
11107         (is_cjk_encoding): Remove function.
11108         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
11109         (uc_width, u8_width, u16_width, u32_width): Remove functions.
11110         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
11111         * NEWS: Document the change.
11112
11113 2007-09-01  Bruno Haible  <bruno@clisp.org>
11114
11115         * lib/streq.h: Add double-inclusion guard.
11116
11117 2007-09-01  Karl Berry  <karl@gnu.org>
11118
11119         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
11120
11121 2007-08-28  Jim Meyering  <jim@meyering.net>
11122
11123         Rename mreadlink_with_size to areadlink_with_size.
11124         * NEWS: Document the change.
11125         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
11126         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
11127         * lib/mreadlink.h: Rename this to...
11128         * lib/areadlink.h: ...this.
11129         * modules/mreadlink-with-size: Rename this to...
11130         * modules/areadlink-with-size: ...this.
11131         * lib/canonicalize.c: Reflect the renaming.
11132         * modules/canonicalize: Likewise.
11133
11134 2007-08-26  Bruno Haible  <bruno@clisp.org>
11135
11136         * gnulib-tool (func_import): When deciding which files to remove,
11137         consider also dangling symbolic links.
11138         Reported by Eric Blake.
11139
11140 2007-08-26  Bruno Haible  <bruno@clisp.org>
11141
11142         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
11143
11144 2007-08-23  Simon Josefsson  <simon@josefsson.org>
11145
11146         * lib/readline.c: Don't include getline.h, the prototype is now
11147         found in stdio.h.
11148
11149 2007-08-23  Jim Meyering  <jim@meyering.net>
11150
11151         Getdelim touchup.
11152         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
11153         around the funlockfile call, since funlockfile never sets errno.
11154         Don't set errno upon failed realloc.
11155
11156 2007-08-22  Eric Blake  <ebb9@byu.net>
11157
11158         Getline touchups.
11159         * lib/getdelim.c (getdelim): Revert regression that required *n to
11160         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
11161         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
11162         getdelim, rather than whether implementation is missing.
11163         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
11164         * lib/stdio_.h (getline): Also declare if replacement is
11165         required.
11166         * doc/functions/getdelim.texi: New file.
11167         * doc/functions/getline.texi: Likewise.
11168         * doc/gnulib.texi (Function Substitutes): Add new files.
11169         Reported by Bruno Haible.
11170
11171 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
11172
11173         * users.txt: Add Guile.
11174
11175 2007-08-22  Eric Blake  <ebb9@byu.net>
11176
11177         * tests/test-getdelim.c (main): Use remove, not unlink.
11178         * tests/test-getline.c (main): Likewise.
11179
11180         Move getline and getdelim into stdio.h, per POSIX 200x.
11181         * modules/getline (Files): Remove getline.h.
11182         (Depends-on): Add stdio.
11183         (configure.ac): Add module indicator.
11184         * modules/getdelim (Files): Remove getdelim.h.
11185         (Depends-on): Add stdio.
11186         (configure.ac): Add module indicator.
11187         * modules/stdio (Makefile.am): Work with new indicators.
11188         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
11189         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
11190         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
11191         * lib/getdelim.h: Delete.
11192         * lib/getline.h: Delete.
11193         * lib/stdio_.h (getdelim, getline): Declare.
11194         * modules/getdelim-tests: New module.
11195         * modules/getline-tests: Likewise.
11196         * tests/test-getdelim.c: New file.
11197         * tests/test-getline.c: Likewise.
11198         * NEWS: Document the change.
11199         * lib/getline.c: Update choice of header.
11200         * lib/csharpcomp.c: Likewise.
11201         * lib/getpass.c: Likewise.
11202         * lib/javacomp.c: Likewise.
11203         * lib/javaversion.c: Likewise.
11204         * lib/yesno.c: Likewise.
11205         * lib/getdelim.c: Likewise.
11206         (getdelim): Set errno on failure, and avoid memory leak.
11207
11208 2007-08-19  Bruno Haible  <bruno@clisp.org>
11209
11210         * modules/closein (Depends-on): Add freadahead.
11211         * lib/closein.c: Include freadahead.h.
11212         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
11213         is zero.
11214
11215 2007-08-19  Bruno Haible  <bruno@clisp.org>
11216
11217         * modules/freadahead-tests: New file.
11218         * tests/test-freadahead.sh: New file.
11219         * tests/test-freadahead.c: New file.
11220
11221         * modules/freadahead: New file.
11222         * lib/freadahead.h: New file.
11223         * lib/freadahead.c: New file.
11224         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
11225         fbufmode, fpurge, freadable, fwritable.
11226
11227 2007-08-19  Eric Blake  <ebb9@byu.net>
11228
11229         Test yesno in combination with closein.
11230         * lib/yesno.c (yesno): Document use of stdin.
11231         * modules/yesno-tests (Files): New module.
11232         * tests/test-yesno.c (main): New file.
11233         * tests/test-yesno.sh: Likewise.
11234
11235 2007-08-19  Bruno Haible  <bruno@clisp.org>
11236
11237         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
11238         * lib/fseeko.c (rpl_fseeko): Likewise.
11239         * lib/fseterr.c (fseterr): Likewise.
11240
11241 2007-08-19  Bruno Haible  <bruno@clisp.org>
11242
11243         * tests/test-lseek.c (main): Disable a test for BeOS.
11244         * doc/functions/lseek.texi: Document the BeOS bug.
11245
11246 2007-08-19  Bruno Haible  <bruno@clisp.org>
11247             Eric Blake  <ebb9@byu.net>
11248
11249         * lib/lseek.c: Include <sys/stat.h>.
11250         (rpl_lseek): Add workaround code also for Unix platforms.
11251         Needed for BeOS.
11252         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
11253         * doc/functions/lseek.texi: Document BeOS definiency.
11254
11255 2007-08-18  Bruno Haible  <bruno@clisp.org>
11256
11257         * modules/fstrcmp-tests: New file.
11258         * tests/test-fstrcmp.c: New file.
11259
11260 2007-08-18  Bruno Haible  <bruno@clisp.org>
11261
11262         * modules/fstrcmp: New file, from GNU gettext with modifications.
11263         * lib/fstrcmp.h: New file, from GNU gettext.
11264         * lib/fstrcmp.c: New file, from GNU gettext.
11265         * MODULES.html.sh (String handling): Add fstrcmp.
11266
11267 2007-08-18  Bruno Haible  <bruno@clisp.org>
11268
11269         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
11270         'bool'.
11271         (diag, compareseq): Remove const from the ctxt argument.
11272         (USE_HEURISTIC): Undefine at the end.
11273
11274 2007-08-18  Jim Meyering  <jim@meyering.net>
11275
11276         New file: lib/idcache.h
11277         * NEWS: Mention the addition.
11278         * modules/idcache (Files): Add lib/idcache.h
11279         * lib/idcache.c: Include "idcache.h".
11280         Don't include <sys/types.h>.
11281         Add a FIXME comment.
11282         Move file-scoped "static" declarations to the top.
11283         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
11284
11285 2007-08-17  Bruno Haible  <bruno@clisp.org>
11286         and Paul Eggert  <eggert@cs.ucla.edu>
11287
11288         * MODULES.html.sh: Add diffseq.
11289         * modules/diffseq: New file.
11290         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
11291         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
11292
11293 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11294
11295         Import changes from coreutils for bootstrap script.
11296
11297         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
11298
11299         * build-aux/bootstrap (slurp): Work even in environments where
11300         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
11301         current code does not slurp files whose names start with ".", and
11302         this looks like it might be a troublesome area.
11303
11304         2007-07-11  Jim Meyering  <jim@meyering.net>
11305
11306         If there's a GPL vN copyright comment, require that N == 3.
11307
11308         2007-07-08  Jim Meyering  <jim@meyering.net>
11309
11310         Run the coreutils-specific code only if tests/Makefile.am.in exists.
11311         * build-aux/bootstrap (mam_template): Move definition out of loop.
11312
11313         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
11314
11315         * build-aux/bootstrap (symlink_to_dir): Rename function from
11316         symlink_to_gnulib.  Add a directory parameter.  Update all
11317         callers.
11318         (cp_mark_as_generated): Also check for -- and link to -- files in
11319         gl/.
11320
11321         2007-07-08  Jim Meyering  <jim@meyering.net>
11322
11323         Adapt to deeper hierarchy in gnulib.
11324         * build-aux/bootstrap (symlink_to_dir): If the destination
11325         directory doesn't exist, create it. This is required at least for
11326         "lib/uniwidth/cjk.h".
11327
11328         2007-05-15  Jim Meyering  <jim@meyering.net>
11329
11330         * build-aux/bootstrap: Now that generated Makefile.am files
11331         are no longer under version control, they must be created at
11332         bootstrap time.
11333
11334 2007-08-14  Ben Pfaff  <blp@gnu.org>
11335
11336         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
11337
11338 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
11339
11340         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
11341         given the changes below.
11342         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
11343         even on hosts that have padding bits beyond the supported 64.
11344
11345 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
11346
11347         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
11348         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
11349         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
11350         depends on it.
11351         (xstrtol_error): Remove.
11352         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
11353         but with a different signature.
11354         (ATTRIBUTE_NORETURN, __attribute__): New macros.
11355         * lib/xstrtol-error.c: Include exitfail.h.
11356         (xstrtol_fatal): New function, with a different signature from the
11357         old xstrtol_error, so that the caller need not worry about passing
11358         in an exit status, or about storage management of the option argument.
11359         (xstrtol_error): Now a static function.  Redo signature to
11360         implement xstrtol_fatal.  Output the correct number of hyphens in
11361         front of the option so that the caller need not worry about
11362         storage management.
11363         (N_): New macro.
11364         (_): Remove; not used now.
11365         * modules/xstrtol: Depend on getopt.
11366         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
11367         of old STRTOL_FATAL_ERROR macro.
11368         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
11369         of test program.
11370         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
11371         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
11372
11373 2007-08-08  Eric Blake  <ebb9@byu.net>
11374
11375         * lib/xstrtol-error.c: Add missing include.
11376
11377         Move xstrtol messages into gnulib domain, when --pobase is used.
11378         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
11379         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
11380         * modules/xstrtol (Files): Distribute new file.
11381         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
11382         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
11383         * tests/test-xstrtol.c: ...into new file.
11384         * tests/test-xstrtoul.c: Also test xstrtoul.
11385         * tests/test-xstrtoimax.c: Also test xstrtoimax.
11386         * tests/test-xstrtoumax.c: Also test xstrtoumax.
11387         * tests/test-xstrtol.sh: Drive the tests.
11388         * tests/test-xstrtoimax.sh: Likewise.
11389         * tests/test-xstrtoumax.sh: Likewise.
11390         * modules/xstrtol-tests: New module.
11391         * modules/xstrtoimax-tests: Likewise.
11392         * modules/xstrtoumax-tests: Likewise.
11393
11394 2007-08-08  Jim Meyering  <jim@meyering.net>
11395
11396         New function: mfile_name_concat.
11397         * lib/filenamecat.c (mfile_name_concat): New function, just like
11398         file_name_concat, but return NULL upon failure rather than exiting
11399         with a diagnostic.
11400         * lib/filenamecat.h: Declare it.
11401
11402 2007-08-07  Bruno Haible  <bruno@clisp.org>
11403
11404         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
11405         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
11406         warning from gcc.
11407         Reported by Eric Blake.
11408
11409 2007-08-07  Simon Josefsson  <simon@josefsson.org>
11410
11411         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
11412         * modules/crypto/arcfour (License): Likewise.
11413         * modules/crypto/des-tests (License): Likewise.
11414         * modules/crypto/gc-arctwo-tests (License): Likewise.
11415         * modules/crypto/gc-des-tests (License): Likewise.
11416         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
11417         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
11418         * modules/crypto/gc-md2-tests (License): Likewise.
11419         * modules/crypto/gc-md4-tests (License): Likewise.
11420         * modules/crypto/gc-md5-tests (License): Likewise.
11421         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
11422         * modules/crypto/gc-rijndael-tests (License): Likewise.
11423         * modules/crypto/gc-sha1-tests (License): Likewise.
11424         * modules/crypto/gc-tests (License): Likewise.
11425         * modules/crypto/hmac-md5 (License): Likewise.
11426         * modules/crypto/hmac-sha1 (License): Likewise.
11427         * modules/crypto/md2-tests (License): Likewise.
11428         * modules/crypto/md4-tests (License): Likewise.
11429         * modules/crypto/md5 (License): Likewise.
11430         * modules/crypto/rijndael (License): Likewise.
11431         * modules/crypto/sha1 (License): Likewise.
11432         * modules/memxor (License): Likewise.
11433
11434 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
11435         and Bruno Haible  <bruno@clisp.org>
11436
11437         * NEWS: Describe interface changes to human, xstrtol.
11438         * lib/human.h: Include <xstrtol.h>.
11439         (human_options): Return enum strtol_error, not int.  Remove
11440         bool arg; take int * instead.
11441         * lib/human.c: Don't include "gettext.h".
11442         (_): Remove; no longer used.
11443         Don't include <xstrtol.h>, since human.h does it.
11444         (human_options): Adjust to abovementioned interface changes.
11445         Do not report error to stderr; that's now the caller's
11446         responsibility.
11447         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
11448         interface change.
11449         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
11450         Str, Argument_type_string.  All uses changed.  Put " argument"
11451         in diagnostics to make them clearer.  Change wording of suffix
11452         message for clarity.
11453         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
11454         Argument_type_string.
11455         (STRTOL_FATAL_WARN): Remove; no longer used.
11456         * modules/human (Depends-on): Remove gettext-h.
11457
11458 2007-08-06  Simon Josefsson  <simon@josefsson.org>
11459
11460         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
11461
11462 2007-07-31  Bruno Haible  <bruno@clisp.org>
11463
11464         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
11465         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
11466         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
11467
11468 2007-07-31  Bruno Haible  <bruno@clisp.org>
11469
11470         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
11471         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
11472
11473 2007-07-30  Bruno Haible  <bruno@clisp.org>
11474
11475         * modules/base64 (License): Use the synonymous term "LGPLv2+".
11476         * modules/c-ctype (License): Likewise.
11477         * modules/c-strcase (License): Likewise.
11478         * modules/check-version (License): Likewise.
11479         * modules/iconv (License): Likewise.
11480         * modules/iconv_open (License): Likewise.
11481         * modules/read-file (License): Likewise.
11482         * modules/striconv (License): Likewise.
11483         * modules/strverscmp (License): Likewise.
11484         * modules/vasprintf (License): Likewise.
11485         * modules/crypto/des (License): Likewise.
11486         * modules/crypto/gc (License): Likewise.
11487         * modules/crypto/gc-arcfour (License): Likewise.
11488         * modules/crypto/gc-arctwo (License): Likewise.
11489         * modules/crypto/gc-des (License): Likewise.
11490         * modules/crypto/gc-hmac-md5 (License): Likewise.
11491         * modules/crypto/gc-hmac-sha1 (License): Likewise.
11492         * modules/crypto/gc-md2 (License): Likewise.
11493         * modules/crypto/gc-md4 (License): Likewise.
11494         * modules/crypto/gc-md5 (License): Likewise.
11495         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
11496         * modules/crypto/gc-random (License): Likewise.
11497         * modules/crypto/gc-rijndael (License): Likewise.
11498         * modules/crypto/gc-sha1 (License): Likewise.
11499         * modules/crypto/md2 (License): Likewise.
11500         * modules/crypto/md4 (License): Likewise.
11501
11502 2007-07-30  Jim Meyering  <jim@meyering.net>
11503
11504         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
11505         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
11506         it has valid stat data.  This bug would cause du not to count the
11507         sizes of inaccessible directories.
11508         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
11509         in <http://bugzilla.redhat.com/250077>.
11510
11511 2007-07-25  Peter O'Gorman  <peter@pogma.com>
11512             Bruno Haible  <bruno@clisp.org>
11513
11514         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
11515         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
11516         #include_next, gives a diagnostic about it, but reports no error in
11517         the exit code.
11518         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
11519
11520 2007-07-24  Ben Pfaff  <blp@gnu.org>
11521
11522         Improve name: "count-one-bits" is better than "popcount".
11523         * MODULES.html.sh: Update name.
11524         * lib/popcount.h: Renamed lib/count-one-bits.h.
11525         (popcount): Renamed count_one_bits.
11526         (popcountl): Renamed count_one_bits_l.
11527         (popcountll): Renamed count_one_bits_ll.
11528         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
11529         * modules/popcount: Renamed module/count-one-bits.
11530         * modules/popcount-tests: Renamed module/count-one-bits-tests.
11531         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
11532
11533 2007-07-23  Ben Pfaff  <blp@gnu.org>
11534
11535         * lib/popcount.h (popcount32): Reduce size of constants, to allow
11536         better code generation, and add U to large constants to avoid
11537         warnings, in non-GCC case.
11538         Suggested by Bruno Haible.
11539
11540 2007-07-23  Ben Pfaff  <blp@gnu.org>
11541
11542         * lib/popcount.h: Use verify_true instead of if...abort.
11543         * modules/popcount: Depend on verify module.
11544         Suggested by Jim Meyering.
11545
11546 2007-07-23  Bruno Haible  <bruno@clisp.org>
11547
11548         * gnulib-tool (func_import): Create a .cvsignore file also when the
11549         directory is not yet in CVS but the toplevel directory is. When
11550         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
11551         Reported by Karl Berry.
11552
11553 2007-07-22  Ben Pfaff  <blp@gnu.org>
11554
11555         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
11556         case.
11557         Suggested by Eric Blake.
11558
11559 2007-07-22  Ben Pfaff  <blp@gnu.org>
11560
11561         New module: popcount.
11562         * MODULES.html.sh: Add popcount.
11563         * modules/popcount: New file.
11564         * modules/popcount-tests: New file.
11565         * tests/test-popcount.c: New file.
11566         * lib/popcount.h: New file.
11567         * m4/popcount.m4: New file.
11568
11569 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
11570
11571         * build-aux/announce-gen: Update to GPLv3.
11572
11573         * build-aux/config.guess: Update from config.
11574
11575 2007-07-21  Bruno Haible  <bruno@clisp.org>
11576
11577         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
11578         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
11579
11580 2007-07-20  Jim Meyering  <jim@meyering.net>
11581
11582         * check-module: Diagnose a self-dependency.
11583
11584 2007-07-19  Bruno Haible  <bruno@clisp.org>
11585
11586         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
11587         empty.
11588         Reported by Eric Blake.
11589
11590 2007-07-18  Bruno Haible  <bruno@clisp.org>
11591
11592         * gnulib-tool: New options --po-base, --po-domain.
11593         (func_usage): Document them.
11594         (pobase, po_domain): New variables.
11595         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
11596         DEFAULT_TEXT_DOMAIN.
11597         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
11598         (func_import): Consider pobase and po_domain. Create a po/ directory.
11599         (func_create_testdir): Set pobase and po_domain to empty.
11600         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
11601         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
11602
11603 2007-07-18  Bruno Haible  <bruno@clisp.org>
11604
11605         * gnulib-tool (func_get_automake_snippet): Synthesize also an
11606         EXTRA_DIST augmentation for files in build-aux/.
11607
11608 2007-07-16  Bruno Haible  <bruno@clisp.org>
11609
11610         * modules/lseek (License): Use the synonymous term "LGPLv2+".
11611         * modules/getdelim (License): Likewise.
11612
11613 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11614
11615         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
11616         * modules/d-type (License): Likewise.
11617         * modules/extensions (License): Likewise.
11618         * modules/fnmatch (License): Likewise.
11619         * modules/fseeko (License): Likewise.
11620         * modules/getaddrinfo (License): Likewise.
11621         * modules/getline (License): Likewise.
11622         * modules/getlogin_r (License): Likewise.
11623         * modules/getpass (License): Likewise.
11624         * modules/gettimeofday (License): Likewise.
11625         * modules/glob (License): Likewise.
11626         * modules/inet_ntop (License): Likewise.
11627         * modules/malloc (License): Likewise.
11628         * modules/malloca (License): Likewise.
11629         * modules/memmem (License): Likewise.
11630         * modules/mempcpy (License): Likewise.
11631         * modules/memset (License): Likewise.
11632         * modules/minmax (License): Likewise.
11633         * modules/mktime (License): Likewise.
11634         * modules/netinet_in (License): Likewise.
11635         * modules/pathmax (License): Likewise.
11636         * modules/poll (License): Likewise.
11637         * modules/regex (License): Likewise.
11638         * modules/snprintf (License): Likewise.
11639         * modules/stdbool (License): Likewise.
11640         * modules/stdint (License): Likewise.
11641         * modules/stdio (License): Likewise.
11642         * modules/strcase (License): Likewise.
11643         * modules/strcasestr (License): Likewise.
11644         * modules/strdup (License): Likewise.
11645         * modules/string (License): Likewise.
11646         * modules/strndup (License): Likewise.
11647         * modules/strnlen (License): Likewise.
11648         * modules/strpbrk (License): Likewise.
11649         * modules/strptime (License): Likewise.
11650         * modules/strsep (License): Likewise.
11651         * modules/sys_select (License): Likewise.
11652         * modules/sys_socket (License): Likewise.
11653         * modules/sys_stat (License): Likewise.
11654         * modules/sys_time (License): Likewise.
11655         * modules/time (License): Likewise.
11656         * modules/time_r (License): Likewise.
11657         * modules/timegm (License): Likewise.
11658         * modules/unistd (License): Likewise.
11659         * modules/vsnprintf (License): Likewise.
11660         * modules/wctype (License): Likewise.
11661
11662 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11663
11664         * modules/argz (License): LGPLv2+.
11665
11666 2007-07-15  Karl Berry  <karl@gnu.org>
11667
11668         * doc/gnulib.texi: revise node structure per new fdl.texi.
11669
11670 2007-07-14  Bruno Haible  <bruno@clisp.org>
11671
11672         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
11673         the output file.
11674         * lib/uniname/uninames.h: Regenerated.
11675
11676 2007-07-14  Karl Berry  <karl@gnu.org>
11677
11678         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
11679         omitting sectioning and index commands.
11680
11681 2007-07-13  Bruno Haible  <bruno@clisp.org>
11682
11683         New gnulib-tool option --more-symlinks.
11684         * gnulib-tool (func_usage): Document --more-symlinks.
11685         (do_copyrights): New variable.
11686         Recognize option --more-symlinks.
11687         (func_import): Don't add a copyright notice transform to
11688         sed_transform_lib_file if do_copyrights is empty.
11689
11690 2007-07-13  Bruno Haible  <bruno@clisp.org>
11691
11692         * lib/vasnprintf.c (decimal_point_char): Define also if
11693         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
11694         && !NEED_PRINTF_DIRECTIVE_A.
11695         Reported by Clemens Koller <clemens.koller@anagramm.de> via
11696         Gary V. Vaughan <gary@gnu.org>.
11697
11698 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
11699
11700         * lib/inttypes_.h: Undo previous change, since it was fixed
11701         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
11702
11703 2007-07-13  Bruno Haible  <bruno@clisp.org>
11704
11705         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
11706         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
11707
11708 2007-07-13  Jim Meyering  <jim@meyering.net>
11709
11710         df: Don't fail for Tru64's "file-on-file mount".
11711         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
11712         so we fall through and use statfs instead.  Details here:
11713         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
11714         Reported by Albert Chin.
11715
11716 2007-07-13  Bruno Haible  <bruno@clisp.org>
11717
11718         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
11719         * modules/configmake (License): Likewise.
11720         * modules/gettext (License): Likewise.
11721         * modules/gettext-h (License): Likewise.
11722         * modules/include_next (License): Likewise.
11723         * modules/link-warning (License): Likewise.
11724         * modules/localcharset (License): Likewise.
11725         * modules/localename (License): Likewise.
11726         * modules/lock (License): Likewise.
11727         * modules/relocatable-lib-lgpl (License): Likewise.
11728         * modules/size_max (License): Likewise.
11729         * modules/vasnprintf (License): Likewise.
11730         * modules/wchar (License): Likewise.
11731         * modules/xsize (License): Likewise.
11732
11733 2007-07-13  Bruno Haible  <bruno@clisp.org>
11734
11735         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
11736         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
11737
11738 2007-07-12  Bruno Haible  <bruno@clisp.org>
11739
11740         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
11741         in the modules files.
11742
11743 2007-07-11  Karl Berry  <karl@gnu.org>
11744
11745         * MODULES.html.sh (func_module): use
11746          sed -e '\|^'"${includefile}"'$|d'
11747          instead of /.../d, to avoid errors on $includefile's containing /.
11748
11749 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
11750
11751         * gnulib-tool (func_import): Avoid duplication of --avoid
11752         statements
11753         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
11754         names to `_' in variable names.
11755
11756 2007-07-10  Eric Blake  <ebb9@byu.net>
11757
11758         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
11759         * NEWS: Document this change.
11760
11761 2007-07-08  Bruno Haible  <bruno@clisp.org>
11762
11763         Update to Unicode 5.0.
11764         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
11765         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
11766         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
11767         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
11768         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
11769         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
11770         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
11771         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
11772         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
11773         U+10A3F, U+1D242..U+1D244.
11774         (nonspacing_table_ind): Update.
11775         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
11776         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
11777
11778 2007-07-08  Bruno Haible  <bruno@clisp.org>
11779
11780         Update to Unicode 5.0.
11781         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
11782         code transform. Extend the name index field of unicode_name_to_code and
11783         unicode_code_to_name from 16 to 24 bits.
11784         * lib/uniname/uniname.c (unicode_character_name,
11785         unicode_name_character): Add the range 0x12xxx to the code transform.
11786         * lib/uniname/uninames.h: Regenerated.
11787         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
11788
11789 2007-07-07  Bruno Haible  <bruno@clisp.org>
11790
11791         * modules/wcwidth-tests: New file.
11792         * tests/test-wcwidth.c: New file.
11793
11794         Work around MacOS X wcwidth() bug.
11795         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
11796         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
11797         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
11798         original wcwidth in non-UTF-8 locales.
11799         * modules/wcwidth (Depends-on): Add localcharset, streq,
11800         uniwidth/width.
11801         * doc/functions/wcwidth.texi: Update.
11802
11803 2007-07-07  Bruno Haible  <bruno@clisp.org>
11804
11805         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
11806         (wcwidth): New declaration.
11807         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
11808         macros.
11809         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
11810         here. Prepare for creating <wchar.h> unconditionally.
11811         * modules/wchar (Depends-on): Add link-warning.
11812         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
11813         REPLACE_WCWIDTH, and GL_LINK_WARNING.
11814         * lib/wcwidth.h: Remove file.
11815         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
11816         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
11817         * modules/wcwidth (Files): Remove lib/wcwidth.h.
11818         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
11819         (Include): Replace wcwidth.h with <wchar.h>.
11820         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
11821         * lib/mbchar.h: Don't include wcwidth.h.
11822         * lib/mbswidth.c: Likewise.
11823         * NEWS: Mention the change.
11824
11825 2007-07-07  Bruno Haible  <bruno@clisp.org>
11826
11827         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
11828         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
11829         definition with an external declaration.
11830         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
11831         defined as a function. Remove AC_C_INLINE requirement.
11832         * modules/wcwidth (Files): Add lib/wcwidth.c.
11833         (Makefile.am): Remove redundant statement.
11834
11835 2007-07-07  Bruno Haible  <bruno@clisp.org>
11836
11837         * MODULES.html.sh (Unicode string functions): Add the new modules.
11838
11839         * tests/uniwidth/test-u32-strwidth.c: New file.
11840         * modules/uniwidth/u32-strwidth-tests: New file.
11841
11842         * lib/uniwidth/u32-strwidth.c: New file.
11843         * modules/uniwidth/u32-strwidth: New file.
11844
11845         * tests/uniwidth/test-u16-strwidth.c: New file.
11846         * modules/uniwidth/u16-strwidth-tests: New file.
11847
11848         * lib/uniwidth/u16-strwidth.c: New file.
11849         * modules/uniwidth/u16-strwidth: New file.
11850
11851         * tests/uniwidth/test-u8-strwidth.c: New file.
11852         * modules/uniwidth/u8-strwidth-tests: New file.
11853
11854         * lib/uniwidth/u8-strwidth.c: New file.
11855         * modules/uniwidth/u8-strwidth: New file.
11856
11857         * tests/uniwidth/test-u32-width.c: New file.
11858         * modules/uniwidth/u32-width-tests: New file.
11859
11860         * lib/uniwidth/u32-width.c: New file.
11861         * modules/uniwidth/u32-width: New file.
11862
11863         * tests/uniwidth/test-u16-width.c: New file.
11864         * modules/uniwidth/u16-width-tests: New file.
11865
11866         * lib/uniwidth/u16-width.c: New file.
11867         * modules/uniwidth/u16-width: New file.
11868
11869         * tests/uniwidth/test-u8-width.c: New file.
11870         * modules/uniwidth/u8-width-tests: New file.
11871
11872         * lib/uniwidth/u8-width.c: New file.
11873         * modules/uniwidth/u8-width: New file.
11874
11875         * tests/uniwidth/test-uc_width.c: New file.
11876         * modules/uniwidth/width-tests: New file.
11877
11878         * lib/uniwidth/width.c: New file, from GNU libiconv.
11879         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
11880         * modules/uniwidth/width: New file.
11881
11882         * lib/uniwidth.h: New file, from GNU libiconv.
11883         * modules/uniwidth/base: New file.
11884
11885 2007-07-07  Bruno Haible  <bruno@clisp.org>
11886
11887         * lib/uniname.h: New file, from GNU gettext.
11888         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
11889         * lib/uniname/uninames.h: New file, from GNU gettext.
11890         * lib/uniname/uniname.c: New file, from GNU gettext.
11891         * tests/uniname/test-uninames.sh: New file.
11892         * tests/uniname/test-uninames.c: New file, from GNU gettext.
11893         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
11894         * modules/uniname/base: New file.
11895         * modules/uniname/uniname: New file.
11896         * modules/uniname/uniname-tests: New file.
11897         * MODULES.html.sh (Unicode string functions): Add the new modules.
11898
11899 2007-07-06  Bruno Haible  <bruno@clisp.org>
11900
11901         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
11902
11903 2007-07-06  Bruno Haible  <bruno@clisp.org>
11904
11905         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
11906         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
11907         includes <cygwin/sys_time.h> which includes <sys/select.h> which
11908         include <sys/time.h>.
11909         Reported by Eric Blake.
11910
11911 2007-07-06  Eric Blake  <ebb9@byu.net>
11912
11913         Fix testing canonicalize on cygwin.
11914         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
11915         Revert patch from 2007-06-19.
11916         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
11917         canonicalize module is also in use.
11918         * tests/test-canonicalize.c: New file.
11919         * tests/test-canonicalize.sh: Likewise.
11920         * modules/canonicalize-tests: Likewise.
11921
11922 2007-07-06  Jim Meyering  <jim@meyering.net>
11923
11924         * lib/getugroups.c (getugroups): Detect getgrent failure.
11925         Adjust comment to reflect reality: this function may return -1.
11926
11927 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
11928
11929         * build-aux/bootstrap (TP_URL,get_translations): Update to use
11930         the new TP address.
11931         (usage): Fix typo
11932         (gnulib_mk): New variable.
11933
11934 2007-07-05  Jim Meyering  <jim@meyering.net>
11935
11936         Don't let endgrent clobber errno, no matter how improbable.
11937         * lib/getugroups.c (getugroups): Save and restore errno around
11938         endgrent call.
11939
11940         Close the group DB even when failing with 2^31 or more members.
11941         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
11942
11943 2007-07-04  Jim Meyering  <jim@meyering.net>
11944
11945         * lib/getugroups.h: New file.
11946         * lib/getugroups.c: Include "getugroups.h".
11947         Remove uses of "register" keyword.
11948         Move local variable, "cp", down into scope where used.
11949         Give "username" parameter the "const" attribute.
11950         * modules/getugroups (Files): Add lib/getugroups.h
11951
11952 2007-07-04  Karl Berry  <karl@gnu.org>
11953
11954         * MODULES.html.sh (func_all_modules): Complete rename of
11955         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
11956
11957 2007-07-02  Bruno Haible  <bruno@clisp.org>
11958
11959         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
11960         mode, when inttypes.h comes from gnulib.
11961         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
11962
11963 2007-07-02  Simon Josefsson  <simon@josefsson.org>
11964
11965         * NEWS: Mention lgpl module name change.
11966
11967         * modules/lgpl-2.1: Renamed from lgpl.
11968
11969         * NEWS: Mention gpl module name change.
11970
11971         * modules/gpl-3.0: New file, based on gpl-2.0.
11972
11973         * modules/gpl-2.0: Renamed from gpl.
11974
11975         * modules/gpl: Fix filename, doc/gpl.texi is now found at
11976         doc/gpl-2.0.texi.
11977
11978 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11979
11980         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
11981         #define __STDC_LIMIT_MACROS temporarily while including
11982         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
11983         Problem reported by Joel E. Denny in
11984         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
11985
11986 2007-07-01  Bruno Haible  <bruno@clisp.org>
11987
11988         * lib/unistdio.h: New file.
11989         * lib/unistdio/u-asnprintf.h: New file.
11990         * lib/unistdio/u-asprintf.h: New file.
11991         * lib/unistdio/u-printf-args.c: New file.
11992         * lib/unistdio/u-printf-args.h: New file.
11993         * lib/unistdio/u-printf-parse.h: New file.
11994         * lib/unistdio/u-snprintf.h: New file.
11995         * lib/unistdio/u-sprintf.h: New file.
11996         * lib/unistdio/u-vasprintf.h: New file.
11997         * lib/unistdio/u-vsnprintf.h: New file.
11998         * lib/unistdio/u-vsprintf.h: New file.
11999         * lib/unistdio/ulc-asnprintf.c: New file.
12000         * lib/unistdio/ulc-asprintf.c: New file.
12001         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
12002         * lib/unistdio/ulc-printf-parse.c: New file.
12003         * lib/unistdio/ulc-snprintf.c: New file.
12004         * lib/unistdio/ulc-sprintf.c: New file.
12005         * lib/unistdio/ulc-vasnprintf.c: New file.
12006         * lib/unistdio/ulc-vasprintf.c: New file.
12007         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
12008         * lib/unistdio/ulc-vsnprintf.c: New file.
12009         * lib/unistdio/ulc-vsprintf.c: New file.
12010         * lib/unistdio/u8-asnprintf.c: New file.
12011         * lib/unistdio/u8-asprintf.c: New file.
12012         * lib/unistdio/u8-printf-parse.c: New file.
12013         * lib/unistdio/u8-snprintf.c: New file.
12014         * lib/unistdio/u8-sprintf.c: New file.
12015         * lib/unistdio/u8-vasnprintf.c: New file.
12016         * lib/unistdio/u8-vasprintf.c: New file.
12017         * lib/unistdio/u8-vsnprintf.c: New file.
12018         * lib/unistdio/u8-vsprintf.c: New file.
12019         * lib/unistdio/u8-u8-asnprintf.c: New file.
12020         * lib/unistdio/u8-u8-asprintf.c: New file.
12021         * lib/unistdio/u8-u8-snprintf.c: New file.
12022         * lib/unistdio/u8-u8-sprintf.c: New file.
12023         * lib/unistdio/u8-u8-vasnprintf.c: New file.
12024         * lib/unistdio/u8-u8-vasprintf.c: New file.
12025         * lib/unistdio/u8-u8-vsnprintf.c: New file.
12026         * lib/unistdio/u8-u8-vsprintf.c: New file.
12027         * lib/unistdio/u16-asnprintf.c: New file.
12028         * lib/unistdio/u16-asprintf.c: New file.
12029         * lib/unistdio/u16-printf-parse.c: New file.
12030         * lib/unistdio/u16-snprintf.c: New file.
12031         * lib/unistdio/u16-sprintf.c: New file.
12032         * lib/unistdio/u16-vasnprintf.c: New file.
12033         * lib/unistdio/u16-vasprintf.c: New file.
12034         * lib/unistdio/u16-vsnprintf.c: New file.
12035         * lib/unistdio/u16-vsprintf.c: New file.
12036         * lib/unistdio/u16-u16-asnprintf.c: New file.
12037         * lib/unistdio/u16-u16-asprintf.c: New file.
12038         * lib/unistdio/u16-u16-snprintf.c: New file.
12039         * lib/unistdio/u16-u16-sprintf.c: New file.
12040         * lib/unistdio/u16-u16-vasnprintf.c: New file.
12041         * lib/unistdio/u16-u16-vasprintf.c: New file.
12042         * lib/unistdio/u16-u16-vsnprintf.c: New file.
12043         * lib/unistdio/u16-u16-vsprintf.c: New file.
12044         * lib/unistdio/u32-asnprintf.c: New file.
12045         * lib/unistdio/u32-asprintf.c: New file.
12046         * lib/unistdio/u32-printf-parse.c: New file.
12047         * lib/unistdio/u32-snprintf.c: New file.
12048         * lib/unistdio/u32-sprintf.c: New file.
12049         * lib/unistdio/u32-vasnprintf.c: New file.
12050         * lib/unistdio/u32-vasprintf.c: New file.
12051         * lib/unistdio/u32-vsnprintf.c: New file.
12052         * lib/unistdio/u32-vsprintf.c: New file.
12053         * lib/unistdio/u32-u32-asnprintf.c: New file.
12054         * lib/unistdio/u32-u32-asprintf.c: New file.
12055         * lib/unistdio/u32-u32-snprintf.c: New file.
12056         * lib/unistdio/u32-u32-sprintf.c: New file.
12057         * lib/unistdio/u32-u32-vasnprintf.c: New file.
12058         * lib/unistdio/u32-u32-vasprintf.c: New file.
12059         * lib/unistdio/u32-u32-vsnprintf.c: New file.
12060         * lib/unistdio/u32-u32-vsprintf.c: New file.
12061         * tests/unistdio/test-ulc-asnprintf1.c: New file.
12062         * tests/unistdio/test-ulc-asnprintf1.h: New file.
12063         * tests/unistdio/test-ulc-printf1.h: New file.
12064         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
12065         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
12066         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
12067         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
12068         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
12069         * tests/unistdio/test-ulc-vasprintf1.c: New file.
12070         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
12071         * tests/unistdio/test-ulc-vsprintf1.c: New file.
12072         * tests/unistdio/test-u8-asnprintf1.c: New file.
12073         * tests/unistdio/test-u8-asnprintf1.h: New file.
12074         * tests/unistdio/test-u8-printf1.h: New file.
12075         * tests/unistdio/test-u8-vasnprintf1.c: New file.
12076         * tests/unistdio/test-u8-vasnprintf2.c: New file.
12077         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
12078         * tests/unistdio/test-u8-vasnprintf3.c: New file.
12079         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
12080         * tests/unistdio/test-u8-vasprintf1.c: New file.
12081         * tests/unistdio/test-u8-vsnprintf1.c: New file.
12082         * tests/unistdio/test-u8-vsprintf1.c: New file.
12083         * tests/unistdio/test-u16-asnprintf1.c: New file.
12084         * tests/unistdio/test-u16-asnprintf1.h: New file.
12085         * tests/unistdio/test-u16-printf1.h: New file.
12086         * tests/unistdio/test-u16-vasnprintf1.c: New file.
12087         * tests/unistdio/test-u16-vasnprintf2.c: New file.
12088         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
12089         * tests/unistdio/test-u16-vasnprintf3.c: New file.
12090         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
12091         * tests/unistdio/test-u16-vasprintf1.c: New file.
12092         * tests/unistdio/test-u16-vsnprintf1.c: New file.
12093         * tests/unistdio/test-u16-vsprintf1.c: New file.
12094         * tests/unistdio/test-u32-asnprintf1.c: New file.
12095         * tests/unistdio/test-u32-asnprintf1.h: New file.
12096         * tests/unistdio/test-u32-printf1.h: New file.
12097         * tests/unistdio/test-u32-vasnprintf1.c: New file.
12098         * tests/unistdio/test-u32-vasnprintf2.c: New file.
12099         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
12100         * tests/unistdio/test-u32-vasnprintf3.c: New file.
12101         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
12102         * tests/unistdio/test-u32-vasprintf1.c: New file.
12103         * tests/unistdio/test-u32-vsnprintf1.c: New file.
12104         * tests/unistdio/test-u32-vsprintf1.c: New file.
12105         * modules/unistdio/base: New file.
12106         * modules/unistdio/u-printf-args: New file.
12107         * modules/unistdio/ulc-asnprintf: New file.
12108         * modules/unistdio/ulc-asprintf: New file.
12109         * modules/unistdio/ulc-fprintf: New file.
12110         * modules/unistdio/ulc-printf-parse: New file.
12111         * modules/unistdio/ulc-snprintf: New file.
12112         * modules/unistdio/ulc-sprintf: New file.
12113         * modules/unistdio/ulc-vasnprintf: New file.
12114         * modules/unistdio/ulc-vasprintf: New file.
12115         * modules/unistdio/ulc-vfprintf: New file.
12116         * modules/unistdio/ulc-vsnprintf: New file.
12117         * modules/unistdio/ulc-vsprintf: New file.
12118         * modules/unistdio/u8-asnprintf: New file.
12119         * modules/unistdio/u8-asprintf: New file.
12120         * modules/unistdio/u8-printf-parse: New file.
12121         * modules/unistdio/u8-snprintf: New file.
12122         * modules/unistdio/u8-sprintf: New file.
12123         * modules/unistdio/u8-vasnprintf: New file.
12124         * modules/unistdio/u8-vasprintf: New file.
12125         * modules/unistdio/u8-vsnprintf: New file.
12126         * modules/unistdio/u8-vsprintf: New file.
12127         * modules/unistdio/u8-u8-asnprintf: New file.
12128         * modules/unistdio/u8-u8-asprintf: New file.
12129         * modules/unistdio/u8-u8-snprintf: New file.
12130         * modules/unistdio/u8-u8-sprintf: New file.
12131         * modules/unistdio/u8-u8-vasnprintf: New file.
12132         * modules/unistdio/u8-u8-vasprintf: New file.
12133         * modules/unistdio/u8-u8-vsnprintf: New file.
12134         * modules/unistdio/u8-u8-vsprintf: New file.
12135         * modules/unistdio/u16-asnprintf: New file.
12136         * modules/unistdio/u16-asprintf: New file.
12137         * modules/unistdio/u16-printf-parse: New file.
12138         * modules/unistdio/u16-snprintf: New file.
12139         * modules/unistdio/u16-sprintf: New file.
12140         * modules/unistdio/u16-vasnprintf: New file.
12141         * modules/unistdio/u16-vasprintf: New file.
12142         * modules/unistdio/u16-vsnprintf: New file.
12143         * modules/unistdio/u16-vsprintf: New file.
12144         * modules/unistdio/u16-u16-asnprintf: New file.
12145         * modules/unistdio/u16-u16-asprintf: New file.
12146         * modules/unistdio/u16-u16-snprintf: New file.
12147         * modules/unistdio/u16-u16-sprintf: New file.
12148         * modules/unistdio/u16-u16-vasnprintf: New file.
12149         * modules/unistdio/u16-u16-vasprintf: New file.
12150         * modules/unistdio/u16-u16-vsnprintf: New file.
12151         * modules/unistdio/u16-u16-vsprintf: New file.
12152         * modules/unistdio/u32-asnprintf: New file.
12153         * modules/unistdio/u32-asprintf: New file.
12154         * modules/unistdio/u32-printf-parse: New file.
12155         * modules/unistdio/u32-snprintf: New file.
12156         * modules/unistdio/u32-sprintf: New file.
12157         * modules/unistdio/u32-vasnprintf: New file.
12158         * modules/unistdio/u32-vasprintf: New file.
12159         * modules/unistdio/u32-vsnprintf: New file.
12160         * modules/unistdio/u32-vsprintf: New file.
12161         * modules/unistdio/u32-u32-asnprintf: New file.
12162         * modules/unistdio/u32-u32-asprintf: New file.
12163         * modules/unistdio/u32-u32-snprintf: New file.
12164         * modules/unistdio/u32-u32-sprintf: New file.
12165         * modules/unistdio/u32-u32-vasnprintf: New file.
12166         * modules/unistdio/u32-u32-vasprintf: New file.
12167         * modules/unistdio/u32-u32-vsnprintf: New file.
12168         * modules/unistdio/u32-u32-vsprintf: New file.
12169         * modules/unistdio/ulc-asnprintf-tests: New file.
12170         * modules/unistdio/ulc-vasnprintf-tests: New file.
12171         * modules/unistdio/ulc-vasprintf-tests: New file.
12172         * modules/unistdio/ulc-vsnprintf-tests: New file.
12173         * modules/unistdio/ulc-vsprintf-tests: New file.
12174         * modules/unistdio/u8-asnprintf-tests: New file.
12175         * modules/unistdio/u8-vasnprintf-tests: New file.
12176         * modules/unistdio/u8-vasprintf-tests: New file.
12177         * modules/unistdio/u8-vsnprintf-tests: New file.
12178         * modules/unistdio/u8-vsprintf-tests: New file.
12179         * modules/unistdio/u16-asnprintf-tests: New file.
12180         * modules/unistdio/u16-vasnprintf-tests: New file.
12181         * modules/unistdio/u16-vasprintf-tests: New file.
12182         * modules/unistdio/u16-vsnprintf-tests: New file.
12183         * modules/unistdio/u16-vsprintf-tests: New file.
12184         * modules/unistdio/u32-asnprintf-tests: New file.
12185         * modules/unistdio/u32-vasnprintf-tests: New file.
12186         * modules/unistdio/u32-vasprintf-tests: New file.
12187         * modules/unistdio/u32-vsnprintf-tests: New file.
12188         * modules/unistdio/u32-vsprintf-tests: New file.
12189         * MODULES.html.sh (Unicode string functions): Add the new modules.
12190
12191 2007-07-01  Bruno Haible  <bruno@clisp.org>
12192
12193         * lib/sprintf.c (sprintf): Limit the available length estimation,
12194         to avoid address wraparound.
12195         * lib/vsprintf.c (vsprintf): Likewise.
12196         * modules/sprintf-posix (Dependencies): Add stdint.
12197         * modules/vsprintf-posix (Dependencies): Likewise.
12198
12199 2007-07-01  Bruno Haible  <bruno@clisp.org>
12200
12201         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
12202         Windows PATH as well. Conservative double-quoting. Comments.
12203
12204 2007-07-01  Bruno Haible  <bruno@clisp.org>
12205             Eric Blake  <ebb9@byu.net>
12206             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12207
12208         * gnulib-tool (self_abspathname): Fix algorithm to cope with
12209         empty components in $PATH, denoting '.'.
12210
12211 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12212
12213         * gnulib-tool: Fix indentation.
12214         (func_create_megatestdir): Likewise.
12215         Report by Bruno Haible.
12216
12217 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12218
12219         Sync from Automake.
12220         * build-aux/gnupload: Fix shell portability issues with for loops.
12221         Report by Karl Berry.
12222
12223 2007-06-29  Simon Josefsson  <simon@josefsson.org>
12224
12225         * build-aux/maint.mk (POURL): Use translationproject.org.
12226
12227 2007-06-27  Simon Josefsson  <simon@josefsson.org>
12228             Bruno Haible  <bruno@clisp.org>
12229
12230         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
12231         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
12232         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
12233         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
12234         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
12235
12236 2007-06-27  Bruno Haible  <bruno@clisp.org>
12237
12238         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
12239         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
12240
12241 2007-06-26  Karl Berry  <karl@gnu.org>
12242
12243         * MODULES.html.sh: remove xreadlink-with-size.
12244
12245 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12246
12247         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
12248         method that I hope also handles the double-include problem noted
12249         by Bruno Haible in
12250         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
12251
12252 2007-06-23  Bruno Haible  <bruno@clisp.org>
12253
12254         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12255         Don't let the 'mostlyclean' target fail if the last subdirectory could
12256         not be removed.
12257         Reported by Karl Berry.
12258
12259 2007-06-23  Bruno Haible  <bruno@clisp.org>
12260
12261         * gnulib-tool (echo): Add a speedier workaround for ksh.
12262         * tests/test-echo.sh: Likewise.
12263
12264 2007-06-23  Bruno Haible  <bruno@clisp.org>
12265
12266         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
12267         * tests/test-echo.sh: Likewise.
12268
12269 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12270
12271         * gnulib-tool (IFS): Initialize early, so we don't set it to
12272         empty later.
12273         (self_abspathname): Rewrite algorithm to set it, reindent.
12274         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
12275         (func_create_megatestdir): Merge some sed scripts.
12276
12277 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12278
12279         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
12280         exposed by Sun Studio 11 cc on Solaris 8.
12281
12282 2007-06-22  Bruno Haible  <bruno@clisp.org>
12283
12284         * gnulib-tool (echo): Ensure the echo primitive does not interpret
12285         backslashes.
12286         * tests/test-echo.sh: New file.
12287
12288 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12289
12290         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
12291         simplify `sed_replace_build_aux' scripts, they are portable but
12292         echoing them with `echo' is not.
12293         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
12294
12295 2007-06-21  Karl Berry  <karl@gnu.org>
12296
12297         * config/srclist.txt: guess we can't handle the licenses via
12298         srclist at the moment.
12299
12300 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12301
12302         * MODULES.html.sh: Add include_next.
12303         * modules/include_next: New file.
12304
12305 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12306
12307         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
12308         INCLUDE_NEXT.
12309         (gl_CHECK_NEXT_HEADERS): New macro.
12310         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
12311         the obsolescent gl_ABSOLUTE_HEADER.
12312         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
12313         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
12314         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
12315         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
12316         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
12317         * m4/math_h.m4 (gl_MATH_H): Likewise.
12318         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
12319         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
12320         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
12321         * m4/stdint.m4 (gl_STDINT_H): Likewise.
12322         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
12323         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
12324         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
12325         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12326         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
12327         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
12328         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
12329         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
12330         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
12331         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
12332         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
12333         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
12334         * m4/inttypes.m4 (gl_INTTYPES_H): Define
12335         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
12336         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
12337         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
12338         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
12339         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
12340         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
12341         * lib/float_.h: Likewise.
12342         * lib/inttypes_.h: Likewise.
12343         * lib/math_.h: Likewise.
12344         * lib/search_.h: Likewise.
12345         * lib/signal_.h: Likewise.
12346         * lib/stdint_.h: Likewise.
12347         * lib/stdio_.h: Likewise.
12348         * lib/stdlib_.h: Likewise.
12349         * lib/string_.h: Likewise.
12350         * lib/sys_stat_.h: Likewise.
12351         * lib/sys_time_.h: Likewise.
12352         * lib/time_.h: Likewise.
12353         * lib/unistd_.h: Likewise.
12354         * lib/wchar_.h: Likewise.
12355         * lib/wctype_.h: Likewise.
12356         * lib/dirent_.h: Likewise.
12357         * lib/iconv_.h: Likewise.
12358         * lib/locale_.h: Likewise.
12359         * lib/netinet_in_.h: Likewise.
12360         * lib/sys_select_.h: Likewise.
12361         * lib/sys_socket_.h: Likewise.
12362         * lib/sysexits_.h: Likewise.
12363         * modules/fcntl (Depends-on): Depend on include_next, not
12364         absolute_header.
12365         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
12366         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
12367         * modules/fchdir: Likewise.
12368         * modules/float: Likewise.
12369         * modules/iconv_open: Likewise.
12370         * modules/inttypes: Likewise.
12371         * modules/locale: Likewise.
12372         * modules/math: Likewise.
12373         * modules/netinet_in: Likewise.
12374         * modules/search: Likewise.
12375         * modules/signal: Likewise.
12376         * modules/stdint: Likewise.
12377         * modules/stdio: Likewise.
12378         * modules/stdlib: Likewise.
12379         * modules/string: Likewise.
12380         * modules/sys_select: Likewise.
12381         * modules/sys_socket: Likewise.
12382         * modules/sys_stat: Likewise.
12383         * modules/sys_time: Likewise.
12384         * modules/sysexits: Likewise.
12385         * modules/time: Likewise.
12386         * modules/unistd: Likewise.
12387         * modules/wchar: Likewise.
12388         * modules/wctype: Likewise.
12389         * modules/sys_stat: Change maintainer to "all".
12390         * modules/unistd: Likewise.
12391
12392 2007-06-20  Karl Berry  <karl@gnu.org>
12393
12394         * config/srclist.txt: track www changes in license files.
12395
12396 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
12397
12398         * build-aux/bootstrap: Remove stray dot.
12399         Make sure build_aux settings are honored when linking
12400         gnulib_extra_files.
12401
12402 2007-06-19  Eric Blake  <ebb9@byu.net>
12403
12404         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
12405         Allow compilation on cygwin.
12406
12407 2007-06-19  Jim Meyering  <jim@meyering.net>
12408
12409         xreadlink-with-size: Remove module.  No longer used.
12410         Ex-callers now use xreadlink or mreadlink-with-size.
12411         * modules/xreadlink-with-size: Remove module.
12412         * lib/xreadlink-with-size.c: Remove file.
12413         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
12414         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
12415         just before the function definition *is* accurate.
12416
12417         Eliminate one way canonicalize_filename_mode could exit.
12418         * lib/canonicalize.c (canonicalize_filename_mode):
12419         Use mreadlink_with_size, not xreadlink_with_size.
12420
12421 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
12422
12423         Detect porting problems to FreeBSD/arm, which has time_t wider than
12424         long int.  Original problem reported for GNU diff by Xin Li in
12425         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
12426         * modules/getdate (Depends-on): Add intprops, verify.
12427         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
12428         is an integer type no wider than long int.
12429
12430 2007-06-18  Jim Meyering  <jim@meyering.net>
12431
12432         New module: mreadlink-with-size.
12433         * MODULES.html.sh: Add mreadlink-with-size.
12434         * modules/mreadlink-with-size: New module
12435         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
12436         not xreadlink-with-size.
12437         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
12438
12439 2007-06-16  Bruno Haible  <bruno@clisp.org>
12440
12441         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
12442         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
12443         Reported by Gary V. Vaughan <gary@gnu.org>.
12444
12445 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
12446
12447         Revamp lchown so that it lives in unistd.h where it belongs.
12448         * lib/lchown.h: Remove.
12449         * lib/dirchownmod.c: Don't include lib/lchown.h.
12450         * lib/fchownat.c: Likewise.
12451         * lib/openat.c: Likewise.
12452         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
12453         does not follow symlinks.
12454         (EOPNOTSUPP): Define if not defined.
12455         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
12456         is defined to 0.
12457         (lchown): New decl.
12458         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
12459         Do not check for lchown decl.
12460         Set REPLACE_LCHOWN.
12461         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
12462         REPLACE_LCHOWN.
12463         * modules/chown: Make it clear it follows symlinks.
12464         * modules/lchown: Make it clear it doesn't follow symlinks.
12465         (Files): Remove lib/lchown.h
12466         (Depends-on): Add unistd.
12467         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
12468         (Include): Include <unistd.h>, not "lchown.h".
12469         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
12470         REPLACE_LCHOWN.
12471
12472 2007-06-15  Jim Meyering  <jim@meyering.net>
12473
12474         Change license (GPL to LGPL) of fsusage and dependents.
12475         * modules/fsusage (License): Change to LGPL.
12476         * modules/full-read (License): Likewise.
12477         * modules/full-write (License): Likewise.
12478         * modules/safe-read (License): Likewise.
12479         * modules/safe-write (License): Likewise.
12480
12481 2007-06-14  Ben Pfaff  <blp@gnu.org>
12482
12483         Missing part of allocsa -> malloca transition.
12484         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
12485         gl_MALLOCA.
12486
12487 2007-06-12  Bruno Haible  <bruno@clisp.org>
12488
12489         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
12490         to ia64, x86_64, i386.
12491         Reported by Eric Blake.
12492
12493 2007-06-12  Bruno Haible  <bruno@clisp.org>
12494
12495         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
12496         cross-compiling to x86_64.
12497
12498 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
12499
12500         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
12501         glitch reported by Ralf Wildenhues in
12502         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
12503
12504         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
12505         Vin Shelton.
12506
12507 2007-06-11  Bruno Haible  <bruno@clisp.org>
12508
12509         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
12510         replacement string.
12511         Reported by Eric Blake.
12512
12513 2007-06-10  Bruno Haible  <bruno@clisp.org>
12514
12515         Prepare vasnprintf code for use with Unicode strings.
12516         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
12517         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
12518         TYPE_U32_STRING.
12519         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
12520         a_u32_string variants.
12521         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12522         * lib/printf-args.c: Don't include config.h and the specification
12523         header if PRINTF_FETCHARGS is already defined.
12524         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
12525         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
12526         TYPE_U16_STRING, TYPE_U32_STRING.
12527         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
12528         u16_directive, u16_directives, u32_directive, u32_directives): New
12529         types.
12530         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
12531         New declarations.
12532         * lib/printf-parse.c: Don't include config.h and the specification
12533         header if PRINTF_PARSE is already defined. Eliminate the set of
12534         parameters for WIDE_CHAR_VERSION; the user of this file must provide
12535         them now. Include c-ctype.h.
12536         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
12537         directive and CHAR_T_ONLY_ASCII.
12538         * lib/vasnprintf.c: Don't include config.h and the specification header
12539         if VASNPRINTF is already defined.
12540         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
12541         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
12542         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
12543         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
12544         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
12545         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
12546         code accordingly.
12547         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
12548         pad_ourselves also in this case, with the 'c' and 's' directives, and
12549         with a different notion of "width".
12550         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
12551
12552 2007-06-10  Bruno Haible  <bruno@clisp.org>
12553
12554         * modules/unistr/u32-mbsnlen: New file.
12555         * lib/unistr/u32-mbsnlen.c: New file.
12556
12557         * modules/unistr/u16-mbsnlen: New file.
12558         * lib/unistr/u16-mbsnlen.c: New file.
12559
12560         * modules/unistr/u8-mbsnlen: New file.
12561         * lib/unistr/u8-mbsnlen.c: New file.
12562
12563         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
12564         declarations.
12565
12566 2007-06-10  Bruno Haible  <bruno@clisp.org>
12567
12568         * lib/string_.h (mbsnlen): New declaration.
12569         * lib/mbsnlen.c: New file.
12570         * m4/mbsnlen.m4: New file.
12571         * modules/mbsnlen: New file.
12572         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
12573         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
12574         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
12575
12576 2007-06-10  Bruno Haible  <bruno@clisp.org>
12577
12578         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
12579
12580 2007-06-10  Bruno Haible  <bruno@clisp.org>
12581
12582         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
12583         * lib/mbuiter.h: Likewise.
12584
12585 2007-06-10  Bruno Haible  <bruno@clisp.org>
12586
12587         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
12588         declaration.
12589
12590 2007-06-10  Karl Berry  <karl@gnu.org>
12591
12592         * config/srclist.txt: remove gettext entries, Bruno prefers
12593         to update individually.
12594
12595 2007-06-10  Bruno Haible  <bruno@clisp.org>
12596
12597         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
12598         'maxlen'. Ensure only length + width bytes are allocated, not
12599         length + 1 + width.
12600
12601 2007-06-09  Bruno Haible  <bruno@clisp.org>
12602
12603         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
12604         (CHAR_T): Remove macro.
12605         (VASNPRINTF): Update.
12606
12607 2007-06-09  Bruno Haible  <bruno@clisp.org>
12608
12609         * MODULES.html.sh (Unicode string functions): Add the new modules.
12610
12611         * modules/uniconv/u32-conv-to-enc: New file.
12612         * lib/uniconv/u32-conv-to-enc.c: New file.
12613         * modules/uniconv/u32-conv-to-enc-tests: New file.
12614         * tests/uniconv/test-u32-conv-to-enc.c: New file.
12615
12616         * modules/uniconv/u16-conv-to-enc: New file.
12617         * lib/uniconv/u16-conv-to-enc.c: New file.
12618         * lib/uniconv/u-conv-to-enc.h: New file.
12619         * modules/uniconv/u16-conv-to-enc-tests: New file.
12620         * tests/uniconv/test-u16-conv-to-enc.c: New file.
12621
12622         * modules/uniconv/u8-conv-to-enc: New file.
12623         * lib/uniconv/u8-conv-to-enc.c: New file.
12624         * modules/uniconv/u8-conv-to-enc-tests: New file.
12625         * tests/uniconv/test-u8-conv-to-enc.c: New file.
12626
12627         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
12628         u32_conv_to_encoding): New declarations.
12629
12630 2007-06-09  Bruno Haible  <bruno@clisp.org>
12631
12632         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
12633
12634 2007-06-09  Bruno Haible  <bruno@clisp.org>
12635
12636         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
12637         * modules/malloca: Renamed from modules/allocsa, updated.
12638         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
12639         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
12640         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
12641         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
12642         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
12643         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
12644         * modules/xmalloca: Renamed from modules/xallocsa, updated.
12645         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
12646         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
12647         * modules/c-strcasestr (Depends-on): Update.
12648         * lib/c-strcasestr.c: Update.
12649         * modules/c-strstr (Depends-on): Update.
12650         * lib/c-strstr.c: Update.
12651         * modules/canonicalize-lgpl (Depends-on): Update.
12652         * lib/canonicalize-lgpl.c: Update.
12653         * modules/clean-temp (Depends-on): Update.
12654         * lib/clean-temp.c: Update.
12655         * modules/csharpcomp (Depends-on): Update.
12656         * lib/csharpcomp.c: Update.
12657         * modules/csharpexec (Depends-on): Update.
12658         * lib/csharpexec.c: Update.
12659         * modules/javacomp (Depends-on): Update.
12660         * lib/javacomp.c: Update.
12661         * modules/javaexec (Depends-on): Update.
12662         * lib/javaexec.c: Update.
12663         * modules/mbscasestr (Depends-on): Update.
12664         * lib/mbscasestr.c: Update.
12665         * modules/mbsstr (Depends-on): Update.
12666         * lib/mbsstr.c: Update.
12667         * modules/setenv (Depends-on): Update.
12668         * lib/setenv.c: Update.
12669         * modules/strcasestr (Depends-on): Update.
12670         * lib/strcasestr.c: Update.
12671         * modules/striconveha (Depends-on): Update.
12672         * lib/striconveha.c: Update.
12673         * modules/relocatable-prog-wrapper (Files): Update.
12674         * lib/relocwrapper.c: Update.
12675         * build-aux/install-reloc: Update.
12676         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
12677
12678 2007-06-08  Bruno Haible  <bruno@clisp.org>
12679
12680         Port to uClibc.
12681         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
12682         * lib/fpurge.c (fpurge): Likewise.
12683         * lib/freading.c (freading): Likewise.
12684         * lib/fseeko.c (rpl_fseeko): Likewise.
12685         * lib/fseterr.c (fseterr): Likewise.
12686         * lib/fwriting.c (fwriting): Likewise.
12687         * tests/test-fflush.c (main): Avoid a failure on uClibc.
12688
12689 2007-06-08  Bruno Haible  <bruno@clisp.org>
12690
12691         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
12692         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
12693         * modules/gettext (Files): Add m4/intlmacosx.m4.
12694
12695 2007-06-07  Bruno Haible  <bruno@clisp.org>
12696
12697         * modules/localename-tests: New file.
12698         * tests/test-localename.c: New file.
12699
12700         New module 'localename'.
12701         * lib/localename.h: New file.
12702         * lib/localename.c: New file, from GNU gettext.
12703         * m4/localename.m4: New file.
12704         * modules/localename: New file.
12705
12706 2007-06-07  Bruno Haible  <bruno@clisp.org>
12707
12708         Work around the lack of <wchar.h> on some builds of uClibc.
12709         * doc/headers/wchar.texi: Update.
12710         * lib/wchar_.h: Include <wchar.h> only if it exists.
12711         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
12712         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
12713         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
12714         doesn't exist.
12715         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
12716         * modules/mbfile (Depends-on): Add wchar.
12717         * modules/mbiter (Depends-on): Likewise.
12718         * modules/mbuiter (Depends-on): Likewise.
12719         Reported by Simon Josefsson.
12720
12721 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
12722
12723         Work around problem reported by Steven M. Schweda in
12724         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
12725         Tru64 5.1B with the Compaq compiler environment installed declares
12726         an 'isblank' function but does not define it in the C library.
12727         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
12728         * lib/regex_internal.h (isblank): Likewise.
12729         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
12730         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
12731
12732 2007-06-05  Bruno Haible  <bruno@clisp.org>
12733
12734         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
12735         ia64.
12736         * modules/printf-safe: New file.
12737         * modules/fprintf-posix (Depends-on): Add printf-safe.
12738         * modules/printf-posix (Depends-on): Likewise.
12739         * modules/snprintf-posix (Depends-on): Likewise.
12740         * modules/sprintf-posix (Depends-on): Likewise.
12741         * modules/vasnprintf-posix (Depends-on): Likewise.
12742         * modules/vasprintf-posix (Depends-on): Likewise.
12743         * modules/vfprintf-posix (Depends-on): Likewise.
12744         * modules/vprintf-posix (Depends-on): Likewise.
12745         * modules/vsnprintf-posix (Depends-on): Likewise.
12746         * modules/vsprintf-posix (Depends-on): Likewise.
12747         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
12748         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
12749         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
12750         "no" on i386, x86_64, ia64.
12751         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
12752         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12753         on i386, x86_64, ia64.
12754         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
12755         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12756         on i386, x86_64, ia64.
12757         * tests/test-vasnprintf-posix.c: Include float.h.
12758         (LDBL80_WORDS): New macro.
12759         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12760         on i386, x86_64, ia64.
12761         * tests/test-vasprintf-posix.c: Include float.h.
12762         (LDBL80_WORDS): New macro.
12763         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
12764         on i386, x86_64, ia64.
12765         * tests/test-snprintf-posix.c: Include float.h.
12766         * tests/test-sprintf-posix.c: Likewise.
12767         * tests/test-vsnprintf-posix.c: Likewise.
12768         * tests/test-vsprintf-posix.c: Likewise.
12769
12770 2007-06-05  Bruno Haible  <bruno@clisp.org>
12771
12772         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
12773         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
12774         non-IEEE numbers on i386, x86_64, ia64.
12775         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
12776         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
12777         * tests/test-isnanl.h: Include float.h.
12778         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
12779
12780 2007-06-05  Bruno Haible  <bruno@clisp.org>
12781
12782         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
12783         also the %a / %A. Handle the %a / %A code before this extra handling.
12784
12785 2007-06-05  Bruno Haible  <bruno@clisp.org>
12786
12787         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
12788         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
12789
12790 2007-06-05  Bruno Haible  <bruno@clisp.org>
12791
12792         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
12793         typo in variable name.
12794
12795 2007-06-05  Eric Blake  <ebb9@byu.net>
12796
12797         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
12798         Reported by Simon Josefsson.
12799
12800 2007-06-04  Bruno Haible  <bruno@clisp.org>
12801
12802         Avoid test failures on some PowerPC platforms.
12803         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
12804         Define differently for PowerPC.
12805         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
12806         Reported by Gary V. Vaughan <gary@gnu.org>.
12807
12808 2007-06-02  Bruno Haible  <bruno@clisp.org>
12809
12810         Fix test-stdint failure on FreeBSD/ia64.
12811         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
12812         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
12813         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
12814         * doc/headers/stdint.texi: Update.
12815
12816 2007-06-01  Bruno Haible  <bruno@clisp.org>
12817
12818         * tests/test-binary-io.c (main): Pass a third argument to open().
12819         Reported by Gary V. Vaughan <gary@gnu.org>.
12820
12821 2007-06-01  Bruno Haible  <bruno@clisp.org>
12822
12823         * doc/functions/frexpl.texi: Update for mingw.
12824
12825 2007-06-01  Bruno Haible  <bruno@clisp.org>
12826
12827         * tests/test-lseek.c (main): Disable test of errno for invalid third
12828         argument.
12829         * doc/functions/lseek.texi: Update.
12830         Reported by Gary V. Vaughan <gary@gnu.org>.
12831
12832 2007-05-28  Bruno Haible  <bruno@clisp.org>
12833
12834         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
12835
12836 2007-05-31  Eric Blake  <ebb9@byu.net>
12837
12838         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
12839         cross compiling.
12840
12841 2007-05-30  Eric Blake  <ebb9@byu.net>
12842         and Bruno Haible  <bruno@clisp.org>
12843
12844         Work around mingw test failures exposed by m4-1.4.9b.
12845         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
12846         * tests/test-unistd.c: Disable uid_t and git_t tests for the
12847         moment.
12848
12849 2007-05-30  Bruno Haible  <bruno@clisp.org>
12850
12851         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
12852         assuming that they are closed. Needed on HP-UX 11.
12853
12854 2007-05-29  Bruno Haible  <bruno@clisp.org>
12855
12856         Fix a problem with #include_next.
12857         * lib/dirent_.h: Split the double-inclusion guard.
12858         * lib/fcntl_.h: Likewise.
12859         * lib/float_.h: Likewise.
12860         * lib/iconv_.h: Likewise.
12861         * lib/inttypes_.h: Likewise.
12862         * lib/locale_.h: Likewise.
12863         * lib/math_.h: Likewise.
12864         * lib/netinet_in_.h: Likewise.
12865         * lib/search_.h: Likewise.
12866         * lib/signal_.h: Likewise.
12867         * lib/stdint_.h: Likewise.
12868         * lib/stdio_.h: Likewise.
12869         * lib/stdlib_.h: Likewise.
12870         * lib/string_.h: Likewise.
12871         * lib/sys_select_.h: Likewise.
12872         * lib/sys_socket_.h: Likewise.
12873         * lib/sys_stat_.h: Likewise.
12874         * lib/sys_time_.h: Likewise.
12875         * lib/sysexits_.h: Likewise.
12876         * lib/time_.h: Likewise.
12877         * lib/unistd_.h: Likewise.
12878         * lib/wchar_.h: Likewise.
12879         * lib/wctype_.h: Likewise.
12880
12881 2007-05-29  Bruno Haible  <bruno@clisp.org>
12882
12883         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
12884         for the moment.
12885
12886 2007-05-29  Bruno Haible  <bruno@clisp.org>
12887
12888         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
12889         invocation.
12890         Reported by Eric Blake.
12891
12892 2007-05-29  Bruno Haible  <bruno@clisp.org>
12893
12894         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
12895         compiling case.
12896
12897 2007-05-29  Eric Blake  <ebb9@byu.net>
12898             Bruno Haible  <bruno@clisp.org>
12899
12900         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
12901         cross compiles.
12902
12903 2007-05-28  Eric Blake  <ebb9@byu.net>
12904
12905         * modules/closein-tests (test_closein_LDADD): Support test on
12906         cygwin with libtool.
12907
12908 2007-05-28  Bruno Haible  <bruno@clisp.org>
12909
12910         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
12911         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
12912         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
12913         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
12914         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
12915         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
12916         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
12917         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
12918         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
12919
12920 2007-05-28  Eric Blake  <ebb9@byu.net>
12921
12922         Unconditionally include <config.h> in unit tests.
12923         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
12924         * tests/test-allocsa.c, tests/test-arcfour.c,
12925         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
12926         tests/test-array_list.c, tests/test-array_oset.c,
12927         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
12928         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
12929         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
12930         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
12931         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
12932         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
12933         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
12934         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
12935         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
12936         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
12937         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
12938         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
12939         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
12940         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
12941         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
12942         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
12943         test-md5.c, test-memmem.c, test-printf-posix.c,
12944         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
12945         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
12946         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
12947         test-strcasestr.c, test-striconv.c, test-striconveh.c,
12948         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
12949         test-vasnprintf-posix2.c, test-vasnprintf.c,
12950         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
12951         test-vfprintf-posix.c, test-vprintf-posix.c,
12952         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
12953         test-xvasprintf.c: Likewise.
12954
12955 2007-05-28  Bruno Haible  <bruno@clisp.org>
12956
12957         * gnulib-tool (func_import): Remember the --with-tests command-line
12958         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
12959         Reported by Eric Blake.
12960
12961 2007-05-28  Bruno Haible  <bruno@clisp.org>
12962
12963         * modules/ftell-tests: New file.
12964         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
12965         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
12966
12967         * lib/ftell.c: New file.
12968         * modules/ftell: New file.
12969         * m4/ftell.m4: New file.
12970         * doc/functions/ftell.texi: Update.
12971         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
12972         REPLACE_FTELL.
12973         * lib/stdio_.h (rpl_ftell): New declaration.
12974         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
12975         REPLACE_FTELL.
12976
12977 2007-05-28  Eric Blake  <ebb9@byu.net>
12978
12979         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
12980
12981 2007-05-28  Bruno Haible  <bruno@clisp.org>
12982
12983         * modules/fseek-tests: New file.
12984         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
12985         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
12986
12987         * lib/fseek.c: New file.
12988         * modules/fseek: New file.
12989         * m4/fseek.m4: New file.
12990         * doc/functions/fseek.texi: Update.
12991         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
12992         REPLACE_FSEEK.
12993         * lib/stdio_.h (rpl_fseek): New declaration.
12994         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
12995         REPLACE_FSEEK.
12996
12997 2007-05-28  Bruno Haible  <bruno@clisp.org>
12998
12999         * lib/stdio_.h (fflush): More comments.
13000
13001 2007-05-28  Bruno Haible  <bruno@clisp.org>
13002
13003         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
13004         runtime test.
13005
13006 2007-05-28  Eric Blake  <ebb9@byu.net>
13007
13008         Improve lseek module.
13009         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
13010         * lib/unistd_.h (lseek): Scale back link warning message.
13011         * tests/test-lseek.c: Beef up test.
13012         * tests/test-lseek.sh: Exercise more facets of lseek.
13013         Reported by Bruno Haible.
13014
13015 2007-05-28  Bruno Haible  <bruno@clisp.org>
13016
13017         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
13018         to define.
13019
13020 2007-05-27  Bruno Haible  <bruno@clisp.org>
13021
13022         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
13023
13024 2007-05-27  Bruno Haible  <bruno@clisp.org>
13025
13026         * modules/openmp: New file.
13027         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
13028         Noah Misch.
13029
13030 2007-05-26  Bruno Haible  <bruno@clisp.org>
13031
13032         * modules/chdir-long (Depends-on): Add fchdir.
13033         * modules/chdir-safer (Depends-on): Likewise.
13034         * modules/fts (Depends-on): Likewise.
13035         * modules/fts-lgpl (Depends-on): Likewise.
13036         * modules/openat (Depends-on): Likewise.
13037         * modules/savewd (Depends-on): Likewise.
13038
13039 2007-05-24  Eric Blake  <ebb9@byu.net>
13040
13041         Fix lseek on mingw.
13042         * modules/lseek: New module.
13043         * m4/lseek.m4: New file.
13044         * lib/lseek.c: New file.
13045         * modules/lseek-tests: New file.
13046         * tests/test-lseek.c: New file.
13047         * tests/test-lseek.sh: New file.
13048         * MODULES.html.sh: Document lseek module.
13049         * modules/fflush (Depends-on): Add lseek, fseeko.
13050         * modules/fseeko (Depends-on): Likewise.
13051         * modules/ftello (Depends-on): Likewise.
13052         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
13053         broken.
13054         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
13055         broken.
13056         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
13057         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
13058         * lib/ftello.c (rpl_ftello): Likewise.
13059         * tests/test-fseeko.c (main): Test this.
13060         * tests/test-fseeko.sh: Likewise.
13061         * tests/test-ftello.c (main): Likewise.
13062         * tests/test-ftello.sh: Likewise.
13063         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
13064         implies replacing fseek.
13065         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
13066         HAVE_FTELLO.
13067         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
13068         * modules/unistd (Makefile.am): Likewise.
13069         * lib/unistd_.h (lseek): Declare a replacement.
13070         * doc/functions/lseek.texi (lseek): Document this fix.
13071         * doc/functions/fseek.texi (fseek): Likewise.
13072         * doc/functions/ftell.texi (ftell): Likewise.
13073
13074 2007-05-24  Bruno Haible  <bruno@clisp.org>
13075
13076         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
13077         in the printed representation of a NaN.
13078         * tests/test-vasprintf-posix.c (test_function): Likewise.
13079         * tests/test-snprintf-posix.h (test_function): Likewise.
13080         * tests/test-sprintf-posix.h (test_function): Likewise.
13081         Reported by Eric Blake.
13082
13083 2007-05-23  Eric Blake  <ebb9@byu.net>
13084
13085         Fix fseeko/ftello on cygwin 1.5.24.
13086         * doc/functions/fseeko.texi (fseeko): Document the fix.
13087         * doc/functions/ftello.texi (ftello): Document the fix.
13088         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
13089         * doc/functions/stdout.text (stdout): New file.
13090         * doc/functions/stderr.text (stderr): New file.
13091         * doc/gnulib.texi (Function Substitutes): Use new files.
13092         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
13093         prior to 1.7.0.
13094         * tests/test-ftello.c (main): Likewise for ftello.
13095         * tests/test-fseeko.sh: New file.
13096         * tests/test-ftello.sh: New file.
13097         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
13098         with seekable stdin.
13099         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
13100         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
13101         (gl_REPLACE_FSEEKO): New macro.
13102         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
13103         * modules/fseeko (Files): Distribute fseeko.c.
13104         * modules/ftello (Files): Distribute ftello.c.
13105         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
13106         mode.
13107         * lib/ftello.c (rpl_ftello): New file.
13108         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
13109         fseeko, ftello.
13110         (gl_STDIN_LARGE_OFFSET): New macro.
13111         * modules/stdio (Makefile.am): Perform the replacement.
13112         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
13113
13114 2007-05-23  Bruno Haible  <bruno@clisp.org>
13115
13116         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
13117         GNULIB_POSIXCHECK is defined.
13118
13119 2007-05-21  Bruno Haible  <bruno@clisp.org>
13120
13121         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
13122         Check also the output for NaN arguments. When cross-compiling, guess
13123         no on IRIX.
13124         * lib/vasnprintf.c: Update comments.
13125         * tests/test-vasnprintf-posix.c (strisnan): New function.
13126         (test_function): Use it.
13127         * tests/test-vasprintf-posix.c (strisnan): New function.
13128         (test_function): Use it.
13129         * tests/test-snprintf-posix.h (strisnan): New function.
13130         (test_function): Use it.
13131         * tests/test-sprintf-posix.h (strisnan): New function.
13132         (test_function): Use it.
13133         Reported by Eric Blake.
13134
13135 2007-05-20  Bruno Haible  <bruno@clisp.org>
13136
13137         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
13138         numbers that fails on BeOS.
13139         * doc/functions/frexpl.texi: Update.
13140
13141 2007-05-20  Jim Meyering  <jim@meyering.net>
13142
13143         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
13144         forced upon us by glibc-2.6.
13145
13146 2007-05-20  Bruno Haible  <bruno@clisp.org>
13147
13148         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
13149         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
13150         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
13151         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
13152         NEED_PRINTF_INFINITE.
13153         (is_infinitel): New function.
13154         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
13155         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
13156         gl_PREREQ_VASNPRINTF_INFINITE.
13157         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
13158         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13159         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
13160         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
13161         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
13162         gl_PREREQ_VASNPRINTF_INFINITE.
13163         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13164         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13165         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13166         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13167         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13168         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13169         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13170         * doc/functions/fprintf.texi: Update.
13171         * doc/functions/printf.texi: Update.
13172         * doc/functions/snprintf.texi: Update.
13173         * doc/functions/sprintf.texi: Update.
13174         * doc/functions/vfprintf.texi: Update.
13175         * doc/functions/vprintf.texi: Update.
13176         * doc/functions/vsnprintf.texi: Update.
13177         * doc/functions/vsprintf.texi: Update.
13178
13179 2007-05-20  Bruno Haible  <bruno@clisp.org>
13180
13181         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
13182         was not found in libc.
13183         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
13184
13185 2007-05-20  Bruno Haible  <bruno@clisp.org>
13186
13187         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
13188         printed as "-nan" instead of "nan".
13189         * tests/test-vasprintf-posix.c (test_function): Likewise.
13190         * tests/test-snprintf-posix.h (test_function): Likewise.
13191         * tests/test-sprintf-posix.h (test_function): Likewise.
13192         Needed for HP-UX 11.
13193
13194 2007-05-20  Jim Meyering  <jim@meyering.net>
13195
13196         Fix buggy test for the fchownat-deref bug.
13197         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
13198         symlink required for the run-test.  Without it, this test would
13199         always declare that fchownat doesn't work, and client code would
13200         unnecessarily use the replacement function with fixed libc.
13201         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
13202         Reported by Greg Schafer.
13203
13204 2007-05-19  Bruno Haible  <bruno@clisp.org>
13205
13206         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
13207         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
13208         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
13209         Needed for IRIX 6.5 and Solaris 2.5.1.
13210
13211 2007-05-19  Bruno Haible  <bruno@clisp.org>
13212
13213         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
13214         (test_function): Skip tests involving -0.0 on platforms where
13215         -0.0 = 0.0.
13216         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
13217         (test_function): Skip tests involving -0.0 on platforms where
13218         -0.0 = 0.0.
13219         * tests/test-snprintf-posix.h (have_minus_zero): New function.
13220         (test_function): Skip tests involving -0.0 on platforms where
13221         -0.0 = 0.0.
13222         * tests/test-sprintf-posix.h (have_minus_zero): New function.
13223         (test_function): Skip tests involving -0.0 on platforms where
13224         -0.0 = 0.0.
13225         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
13226         tests.
13227         * tests/test-printf-posix.h (test_function): Likewise.
13228         * tests/test-printf-posix.output: Remove all -0.0 related results.
13229         Needed for IRIX 6.5.
13230
13231 2007-05-19  Bruno Haible  <bruno@clisp.org>
13232
13233         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
13234         printed as "nan0x7fffffff" instead of "nan".
13235         * tests/test-vasprintf-posix.c (test_function): Likewise.
13236         * tests/test-snprintf-posix.h (test_function): Likewise.
13237         * tests/test-sprintf-posix.h (test_function): Likewise.
13238         * tests/test-fprintf-posix.h (NaN): Remove macro.
13239         (test_function): Remove all NaN related tests.
13240         * tests/test-printf-posix.h (NaN): Remove macro.
13241         (test_function): Remove all NaN related tests.
13242         * tests/test-printf-posix.output: Remove all NaN related results.
13243         Needed for IRIX 6.5.
13244
13245 2007-05-19  Bruno Haible  <bruno@clisp.org>
13246
13247         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
13248         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
13249
13250 2007-05-19  Bruno Haible  <bruno@clisp.org>
13251
13252         * lib/float_.h: New file.
13253         * m4/float_h.m4: New file.
13254         * modules/float: New file.
13255         * modules/isnanl (Dependencies): Add float.
13256         * modules/isnanl-nolibm (Dependencies): Likewise.
13257         * modules/mathl (Dependencies): Likewise.
13258         * modules/printf-frexpl (Dependencies): Likewise.
13259         * modules/signbit (Dependencies): Likewise.
13260         * modules/vasnprintf (Dependencies): Likewise.
13261         * doc/headers/float.texi: Update.
13262
13263 2007-05-19  Jim Meyering  <jim@meyering.net>
13264
13265         * lib/utimens.c (gl_futimens): Rename from futimens,
13266         now that glibc-2.6 declares futimens.
13267         * lib/utimens.h: Likewise.
13268
13269 2007-05-19  Bruno Haible  <bruno@clisp.org>
13270
13271         Avoid test failures on mingw.
13272         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
13273         * tests/test-printf-posix.sh: Likewise.
13274         * tests/test-vfprintf-posix.sh: Likewise.
13275         * tests/test-vprintf-posix.sh: Likewise.
13276
13277 2007-05-19  Bruno Haible  <bruno@clisp.org>
13278
13279         Fix *printf result for NaN, Inf, -0.0 on mingw.
13280         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
13281         * lib/vasnprintf.c: Include math.h and isnan.h.
13282         (is_infinite_or_zero): New function.
13283         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
13284         values in the %f, %F, %e, %E, %g, %G directives.
13285         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
13286         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13287         gl_PRINTF_INFINITE and test its result. Invoke
13288         gl_PREREQ_VASNPRINTF_INFINITE.
13289         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13290         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13291         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13292         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13293         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13294         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13295         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13296         * doc/functions/fprintf.texi: Update.
13297         * doc/functions/printf.texi: Update.
13298         * doc/functions/snprintf.texi: Update.
13299         * doc/functions/sprintf.texi: Update.
13300         * doc/functions/vfprintf.texi: Update.
13301         * doc/functions/vprintf.texi: Update.
13302         * doc/functions/vsnprintf.texi: Update.
13303         * doc/functions/vsprintf.texi: Update.
13304
13305 2007-05-19  Bruno Haible  <bruno@clisp.org>
13306
13307         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
13308         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
13309         Instead of multiplying with 10^k, set extra_zeroes to k.
13310         (scale10_round_long_double): Remove function.
13311
13312 2007-05-18  Bruno Haible  <bruno@clisp.org>
13313
13314         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
13315         introduced on 2007-05-06.
13316
13317 2007-05-18  Bruno Haible  <bruno@clisp.org>
13318
13319         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
13320         %g directives.
13321         * tests/test-vasprintf-posix.c (test_function): Likewise.
13322         * tests/test-snprintf-posix.h (test_function): Likewise.
13323         * tests/test-sprintf-posix.h (test_function): Likewise.
13324
13325 2007-05-18  Bruno Haible  <bruno@clisp.org>
13326
13327         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
13328         (strmatch): New function.
13329         (test_function): Test the %f directive on numbers of various exponents.
13330         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
13331         (strmatch): New function.
13332         (test_function): Test the %f directive on numbers of various exponents.
13333         * tests/test-snprintf-posix.h (strmatch): New function.
13334         (test_function): Test the %f directive on numbers of various exponents.
13335         * tests/test-sprintf-posix.h (strmatch): New function.
13336         (test_function): Test the %f directive on numbers of various exponents.
13337         * tests/test-snprintf-posix.c (SIZEOF): New macro.
13338         * tests/test-sprintf-posix.c (SIZEOF): New macro.
13339         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
13340         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
13341
13342 2007-05-18  Bruno Haible  <bruno@clisp.org>
13343
13344         Add support for 'long double' number output.
13345         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
13346         * lib/vasnprintf.c: Include math.h and float+.h.
13347         (mp_limb_t): New type.
13348         (GMP_LIMB_BITS): New macro.
13349         (mp_twolimb_t): New type.
13350         (GMP_TWOLIMB_BITS): New macro.
13351         (mpn_t): New type.
13352         (multiply, divide, convert_to_decimal, decode_long_double,
13353         scale10_round_long_double, scale10_round_decimal_long_double,
13354         floorlog10l): New functions.
13355         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
13356         for the %f, %F, %e, %E, %g, %G directives.
13357         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
13358         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13359         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
13360         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
13361         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13362         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13363         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13364         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13365         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13366         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13367         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13368         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
13369         * modules/snprintf-posix (Depends-on): Likewise.
13370         * modules/sprintf-posix (Depends-on): Likewise.
13371         * modules/vasnprintf-posix (Depends-on): Likewise.
13372         * modules/vasprintf-posix (Depends-on): Likewise.
13373         * modules/vfprintf-posix (Depends-on): Likewise.
13374         * modules/vsnprintf-posix (Depends-on): Likewise.
13375         * modules/vsprintf-posix (Depends-on): Likewise.
13376         * modules/vasnprintf (Files): Add lib/float+.h.
13377         * doc/functions/fprintf.texi: Update.
13378         * doc/functions/printf.texi: Update.
13379         * doc/functions/snprintf.texi: Update.
13380         * doc/functions/sprintf.texi: Update.
13381         * doc/functions/vfprintf.texi: Update.
13382         * doc/functions/vprintf.texi: Update.
13383         * doc/functions/vsnprintf.texi: Update.
13384         * doc/functions/vsprintf.texi: Update.
13385
13386 2007-05-18  Bruno Haible  <bruno@clisp.org>
13387
13388         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
13389
13390 2007-05-18  Bruno Haible  <bruno@clisp.org>
13391
13392         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
13393         for printing 64-bit integers. Needed for mingw.
13394
13395 2007-05-18  Bruno Haible  <bruno@clisp.org>
13396
13397         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
13398         gl_FUNC_FREXPL_WORKS.
13399         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
13400
13401 2007-05-18  Bruno Haible  <bruno@clisp.org>
13402
13403         * modules/frexpl-nolibm-tests: New file.
13404
13405         * modules/frexpl-nolibm: New file.
13406         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
13407
13408 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
13409
13410         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
13411         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13412         GCC 4.2, which otherwise issues a lot of warnings.
13413         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
13414         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
13415         Likewise.
13416         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
13417         * modules/iconv_open (iconv.h): Likewise.
13418         * modules/locale (locale.h): Likewise.
13419         * modules/netinet_in (netinet/in.h): Likewise.
13420         * modules/sys_select (sys_select.h): Likewise.
13421         * modules/sys_socket (sys/socket.h): Likewise.
13422         * modules/sys_stat (sys/stat.h): Likewise.
13423         * modules/sysexits (sysexits.h): Likewise.
13424         * modules/unistd (unistd.h): Likewise.
13425
13426 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13427
13428         * modules/closein-tests (Makefile.am): Distribute
13429         `test-closein.sh'.
13430
13431 2007-05-17  Bruno Haible  <bruno@clisp.org>
13432
13433         * tests/test-printf-posix.output: Renamed from
13434         tests/test-fprintf-posix.out.
13435         * modules/fprintf-posix-tests: Update.
13436         * modules/printf-posix-tests: Update.
13437         * modules/vfprintf-posix-tests: Update.
13438         * modules/vprintf-posix-tests: Update.
13439         * tests/test-fprintf-posix.sh: Update.
13440         * tests/test-printf-posix.sh: Update.
13441         * tests/test-vfprintf-posix.sh: Update.
13442         * tests/test-vprintf-posix.sh: Update.
13443         Reported by Ralf Wildenhues.
13444
13445 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
13446
13447         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
13448         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
13449         GCC 4.2, which otherwise issues a lot of warnings.
13450         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
13451         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
13452         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
13453         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
13454         it should no longer be needed.
13455         * lib/string_.h: Likewise.
13456         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
13457         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
13458         * modules/inttypes (inttypes.h): Likewise.
13459         * modules/math (math.h): Likewise.
13460         * modules/search (search.h): Likewise.
13461         * modules/signal (signal.h): Likewise.
13462         * modules/stdint (stdint.h): Likewise.
13463         * modules/stdio (stdio.h): Likewise.
13464         * modules/stdlib (stdlib.h): Likewise.
13465         * modules/string (string.h): Likewise.
13466         * modules/sys_time (sys/time.h): Likewise.
13467         * modules/time (time.h): Likewise.
13468         * modules/wchar (wchar.h): Likewise.
13469         * modules/wctype (wtype.h): Likewise.
13470
13471 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
13472
13473         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
13474
13475 2007-05-13  Bruno Haible  <bruno@clisp.org>
13476
13477         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
13478         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
13479         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
13480         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
13481         (gl_PREREQ_STRTOK_R): Don't require it here.
13482
13483 2007-05-13  Bruno Haible  <bruno@clisp.org>
13484
13485         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
13486         when used in C++ mode.
13487
13488 2007-05-12  Bruno Haible  <bruno@clisp.org>
13489
13490         * lib/linebuffer.h: Tweak doc.
13491         * lib/linebuffer.c: Likewise.
13492
13493 2007-05-12  James Youngman  <jay@gnu.org>
13494
13495         * lib/linebuffer.c (readlinebuffer_delim): New function,
13496         like readlinebuffer, but use a caller-specified delimiter.
13497         (readlinebuffer): Just call readlinebuffer_delim with '\n'
13498         as the delimiter.
13499         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
13500
13501 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13502
13503         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
13504         * modules/openat (Files): Remove openat-die.c.
13505         (Depends-on): Add openat-die.
13506         * modules/openat-die: New module.
13507
13508 2007-05-06  Bruno Haible  <bruno@clisp.org>
13509
13510         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
13511         Update with info about Cygwin.
13512         * doc/functions/fprintf.texi: Update.
13513         * doc/functions/printf.texi: Update.
13514         * doc/functions/snprintf.texi: Update.
13515         * doc/functions/sprintf.texi: Update.
13516         * doc/functions/vfprintf.texi: Update.
13517         * doc/functions/vprintf.texi: Update.
13518         * doc/functions/vsnprintf.texi: Update.
13519         * doc/functions/vsprintf.texi: Update.
13520         Reported by Eric Blake.
13521
13522 2007-05-06  Bruno Haible  <bruno@clisp.org>
13523
13524         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
13525         padding ourselves for the floating-point directives.
13526         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
13527         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
13528         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13529         gl_PRINTF_FLAG_ZERO and test its result. Invoke
13530         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
13531         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13532         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13533         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13534         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13535         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13536         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13537         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13538         * tests/test-snprintf-posix.h (test_function): Also check the width
13539         and some flags in the %f directive.
13540         * tests/test-sprintf-posix.h (test_function): Likewise.
13541         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13542         * tests/test-vasprintf-posix.c (test_function): Likewise.
13543         * doc/functions/fprintf.texi: Update.
13544         * doc/functions/printf.texi: Update.
13545         * doc/functions/snprintf.texi: Update.
13546         * doc/functions/sprintf.texi: Update.
13547         * doc/functions/vfprintf.texi: Update.
13548         * doc/functions/vprintf.texi: Update.
13549         * doc/functions/vsnprintf.texi: Update.
13550         * doc/functions/vsprintf.texi: Update.
13551
13552 2007-05-06  Bruno Haible  <bruno@clisp.org>
13553
13554         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
13555         pass the ' flag character to sprintf or snprintf.
13556         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
13557         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
13558         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13559         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
13560         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
13561         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13562         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
13563         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13564         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13565         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13566         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13567         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13568         * tests/test-snprintf-posix.h (test_function): Also check the grouping
13569         flag.
13570         * tests/test-sprintf-posix.h (test_function): Likewise.
13571         * tests/test-vasnprintf-posix.c (test_function): Likewise.
13572         * tests/test-vasprintf-posix.c (test_function): Likewise.
13573         * doc/functions/fprintf.texi: Update.
13574         * doc/functions/printf.texi: Update.
13575         * doc/functions/snprintf.texi: Update.
13576         * doc/functions/sprintf.texi: Update.
13577         * doc/functions/vfprintf.texi: Update.
13578         * doc/functions/vprintf.texi: Update.
13579         * doc/functions/vsnprintf.texi: Update.
13580         * doc/functions/vsprintf.texi: Update.
13581
13582 2007-05-01  Bruno Haible  <bruno@clisp.org>
13583
13584         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
13585
13586 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
13587
13588         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
13589         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
13590
13591 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
13592
13593         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
13594         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
13595         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
13596
13597 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
13598
13599         * lib/argp-help.c (struct hol_entry): New member `ord'.
13600         (HOL_ENTRY_PTRCMP): Use ord for comparison
13601         (hol_sort): Initialize ord.
13602
13603 2007-05-01  Bruno Haible  <bruno@clisp.org>
13604
13605         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
13606         Reported by Eric Blake.
13607         * doc/gnulib.texi (Function Substitutes): Update.
13608
13609 2007-05-01  Bruno Haible  <bruno@clisp.org>
13610
13611         * doc/functions.texi: Remove file, now redundant through
13612         doc/functions/*.texi.
13613
13614 2007-05-01  Bruno Haible  <bruno@clisp.org>
13615
13616         * modules/argp (Depends-on): Add sleep.
13617
13618 2007-05-01  Bruno Haible  <bruno@clisp.org>
13619
13620         * modules/sleep-tests: New file.
13621         * tests/test-sleep.c: New file.
13622
13623         * modules/sleep: New file.
13624         * lib/sleep.c: New file.
13625         * m4/sleep.m4: New file.
13626         * lib/unistd_.h (sleep): New declaration.
13627         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
13628         HAVE_SLEEP.
13629         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
13630         * doc/functions/sleep.texi: Document the sleep module.
13631
13632 2007-05-01  Bruno Haible  <bruno@clisp.org>
13633
13634         * lib/sigprocmask.h: Remove file.
13635         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
13636         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
13637         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
13638         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
13639         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
13640         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
13641         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
13642         HAVE_SIGSET_T as a shell variable.
13643         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
13644         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
13645         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
13646         (Depends-on): Add signal. Remove verify.
13647         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
13648         (Include): Mention <signal.h> instead of sigprocmask.h.
13649         * NEWS: Mention the change.
13650         * lib/fatal-signal.c: Don't include sigprocmask.h.
13651
13652 2007-05-01  Bruno Haible  <bruno@clisp.org>
13653
13654         * modules/signal: New file.
13655         * lib/signal_.h: New file.
13656         * m4/signal_h.m4: New file.
13657
13658 2007-05-01  Bruno Haible  <bruno@clisp.org>
13659
13660         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
13661         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
13662         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
13663         HAVE_WCTYPE_CTMP_BUG into wctype.h.
13664
13665 2007-05-01  Bruno Haible  <bruno@clisp.org>
13666
13667         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
13668         configure time.
13669         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
13670         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
13671         * modules/sys_stat (Makefile.am): Substitute their values into
13672         sys/stat.h.
13673
13674 2007-05-01  Bruno Haible  <bruno@clisp.org>
13675
13676         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
13677         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
13678         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
13679
13680 2007-05-01  Bruno Haible  <bruno@clisp.org>
13681
13682         * doc/header/assert.texi: Undo last change: don't mention the gnulib
13683         'assert' module here.
13684
13685 2007-05-01  Bruno Haible  <bruno@clisp.org>
13686
13687         * doc/functions/*.texi: New files.
13688         * doc/functions/google-ranking.txt: New file.
13689         * doc/gnulib.texi (Function Substitutes): New chapter.
13690         (ctime, inet_ntoa): Remove sections.
13691         * doc/ctime.texi: Remove file.
13692         * doc/inet_ntoa.texi: Remove file.
13693         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
13694         dependencies.
13695         (%.info): New rule, specifying a --reference-limit.
13696
13697 2007-05-01  Bruno Haible  <bruno@clisp.org>
13698
13699         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
13700
13701 2007-05-01  Bruno Haible  <bruno@clisp.org>
13702
13703         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
13704         the portability of 'mkdir' to mingw systems.
13705
13706 2007-05-01  Bruno Haible  <bruno@clisp.org>
13707
13708         * doc/headers/google-ranking.txt: New file.
13709
13710 2007-04-30  Eric Blake  <ebb9@byu.net>
13711
13712         Prefer fseeko to fseek.
13713         * modules/getpass (Depends-on): Add fseeko.
13714         * lib/getpass.c (getpass): Use fseeko, not fseek.
13715
13716 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
13717
13718         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
13719         assumes the sorting is stable, while most qsort implementations
13720         are not.  Use argument addresses to ensure they never compare as
13721         equal.
13722
13723         * tests/test-argp-2.sh (usage-indent test): Fix output
13724         (func_compare): Restore diff options
13725         * tests/test-argp.c: Restore #include "progname.h"
13726
13727 2007-04-29  Bruno Haible  <bruno@clisp.org>
13728
13729         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
13730         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
13731         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
13732         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13733         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
13734         (configure.ac): Define CHECK_SNPRINTF_POSIX.
13735         (TESTS, check_PROGRAMS): Add test-snprintf.
13736         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
13737         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
13738         (TESTS, check_PROGRAMS): Add test-vsnprintf.
13739         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
13740         assertions that fail on HP-UX, OSF/1, or IRIX.
13741         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
13742
13743 2007-04-29  Bruno Haible  <bruno@clisp.org>
13744
13745         * MODULES.html.sh (posix_functions): Remove 'contents'.
13746
13747 2007-04-29  Karl Berry  <karl@gnu.org>
13748
13749         * config/srclist.txt (gendocs_template_min): new entry.
13750
13751 2007-04-29  Bruno Haible  <bruno@clisp.org>
13752
13753         Work around fpurge bug on BSD systems.
13754         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
13755         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
13756         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
13757         fpurge to rpl_fpurge if the system already has this function.
13758         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
13759         the case where the system already has this function. Correct invariants
13760         on BSD systems.
13761         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
13762         BSD systems.
13763
13764 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
13765
13766         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
13767         proposed by Sven Verdoolaege.
13768
13769         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
13770         options.
13771         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
13772         (usage and help tests): Update
13773
13774 2007-04-29  Bruno Haible  <bruno@clisp.org>
13775
13776         * tests/test-fflush.c (main): Use a file of size 17, not 10.
13777         Print more information in case of failure. Disable a test on BeOS.
13778
13779 2007-04-29  Bruno Haible  <bruno@clisp.org>
13780
13781         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
13782         This helps debugging on systems on which no gdb is available.
13783
13784 2007-04-29  Bruno Haible  <bruno@clisp.org>
13785
13786         * lib/freading.h: Improve comments.
13787         * lib/fwriting.h: Likewise.
13788         * tests/test-freading.c (main): Don't check freading immediately after
13789         repositioning. Needed for glibc.
13790
13791 2007-04-29  Bruno Haible  <bruno@clisp.org>
13792
13793         * lib/freading.c (freading): Trivial simplification.
13794
13795 2007-04-28  Bruno Haible  <bruno@clisp.org>
13796
13797         * tests/test-fwriting.c (main): Also test the interaction between
13798         fflush and fwriting.
13799         * modules/fwriting-tests (Depends-on): Add fflush.
13800
13801         * tests/test-freading.c (main): Also test the interaction between
13802         fflush and freading.
13803         * modules/freading-tests (Depends-on): Add fflush.
13804
13805 2007-04-28  Bruno Haible  <bruno@clisp.org>
13806
13807         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
13808         fseeko and ftello.
13809         Suggested by Eric Blake.
13810
13811 2007-04-28  Jim Meyering  <jim@meyering.net>
13812
13813         Avoid false-negative in gl_STDINT_H's C99 conformance test.
13814         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
13815         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
13816
13817 2007-04-27  Eric Blake  <ebb9@byu.net>
13818
13819         * doc/headers/assert.texi (assert.h): Document assert module use.
13820
13821 2007-04-27  Bruno Haible  <bruno@clisp.org>
13822
13823         * doc/headers/*.texi: New files.
13824         * doc/gnulib.texi (Header File Substitutes): New chapter.
13825         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
13826         dependencies.
13827         (standards.info ,standards.html, standards.dvi): Update dependencies.
13828         (mostlyclean, clean): New targets.
13829
13830 2007-04-27  Bruno Haible  <bruno@clisp.org>
13831
13832         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
13833         * modules/sysexits (Files, Makefile.am): Update.
13834
13835         * lib/sys_socket_.h: Renamed from lib/socket_.h.
13836         * modules/sys_socket (Files, Makefile.am): Update.
13837
13838         * lib/sys_stat_.h: Renamed from lib/stat_.h.
13839         * modules/sys_stat (Files, Makefile.am): Update.
13840
13841 2007-04-27  Eric Blake  <ebb9@byu.net>
13842
13843         * lib/freading.h: Improve comments.
13844         * lib/fwriting.h: Likewise.
13845         * lib/fflush.c: Likewise.
13846
13847         Fix closein for mingw.
13848         * modules/closein-tests: Add tests for closein.
13849         * tests/test-closein.c: New file.
13850         * tests/test-closein.sh: Likewise.
13851         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
13852         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
13853
13854 2007-04-27  Bruno Haible  <bruno@clisp.org>
13855
13856         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
13857         version is < 6.
13858         * lib/math_.h [__DECC]: Likewise.
13859         * lib/stdio_.h [__DECC]: Likewise.
13860         * lib/stdlib_.h [__DECC]: Likewise.
13861         * lib/string_.h [__DECC]: Likewise.
13862         * lib/time_.h [__DECC]: Likewise.
13863         * lib/wchar_.h [__DECC]: Likewise.
13864         * lib/wctype_.h [__DECC]: Likewise.
13865
13866 2007-04-27  Bruno Haible  <bruno@clisp.org>
13867
13868         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
13869
13870 2007-04-27  Bruno Haible  <bruno@clisp.org>
13871
13872         * lib/fflush.c: Add comments.
13873         * modules/fpurge-tests (Depends-on): Add fflush.
13874         * modules/freadable-tests (Depends-on): Likewise.
13875         * modules/fwritable-tests (Depends-on): Likewise.
13876
13877 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
13878
13879         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
13880         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
13881         Report by Bruno Haible <bruno@clisp.org>.
13882
13883 2007-04-26  Eric Blake  <ebb9@byu.net>
13884
13885         Fix fflush on mingw.
13886         * modules/fflush (Depends-on): Add freading.
13887         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
13888         but unread data.
13889
13890 2007-04-26  Eric Blake  <ebb9@byu.net>
13891         and Bruno Haible  <bruno@clisp.org>
13892
13893         Implement freading and fwriting.
13894         * lib/freading.c: New file.
13895         * lib/freading.h: Likewise.
13896         * m4/freading.m4: Likewise.
13897         * modules/freading: Likewise.
13898         * modules/freading-tests: Likewise.
13899         * tests/test-freading.c: Likewise.
13900         * lib/fwriting.c: New file.
13901         * lib/fwriting.h: Likewise.
13902         * m4/fwriting.m4: Likewise.
13903         * modules/fwriting: Likewise.
13904         * modules/fwriting-tests: Likewise.
13905         * tests/test-fwriting.c: Likewise.
13906         * MODULES.html.sh (File stream based Input/Output): Mention them.
13907
13908 2007-04-26  Bruno Haible  <bruno@clisp.org>
13909
13910         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
13911         'long' when we assume it.
13912         Suggested by Eric Blake.
13913
13914 2007-04-26  Bruno Haible  <bruno@clisp.org>
13915
13916         Ensure fseeko, ftello are declared on glibc systems.
13917         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
13918         * modules/fseeko (configure.ac-early): Likewise.
13919         * modules/ftello (configure.ac-early): Likewise.
13920         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
13921         AC_FUNC_FSEEKO for this.
13922         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
13923         (gl_CHECK_FSEEKO): Remove macro.
13924
13925 2007-04-26  Bruno Haible  <bruno@clisp.org>
13926
13927         * tests/test-fflush.c (main): Also check the ftell result after
13928         fflush and fseek/fseeko.
13929         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
13930         file descriptor position cache in the stream.
13931         * lib/fseeko.c (rpl_fseeko): Likewise.
13932
13933 2007-04-26  Bruno Haible  <bruno@clisp.org>
13934
13935         * modules/fflush-tests (Depends-on): Add fseeko.
13936
13937 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
13938             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13939
13940         * lib/argz_.h: ensure error_t definition is obtained in same
13941         mechanism system argz.h would have.
13942         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
13943         argz facilities are known bad.  Err on the side of caution if
13944         cross-compiling.
13945
13946 2007-04-25  Eric Blake  <ebb9@byu.net>
13947
13948         * lib/fpurge.c (includes): Use stdlib.h for free.
13949         * tests/test-fflush.c (main): Also test fflush-fseeko.
13950
13951 2007-04-25  Bruno Haible  <bruno@clisp.org>
13952
13953         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
13954         * lib/fseeko.c: New file.
13955         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
13956         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
13957         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
13958         gl_FUNC_FSEEKO.
13959         (gl_FUNC_FSEEKO): Invoke it.
13960         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
13961         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
13962         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
13963
13964 2007-04-25  Bruno Haible  <bruno@clisp.org>
13965
13966         * modules/fflush (Depends-on): Add ftello.
13967
13968 2007-04-25  Bruno Haible  <bruno@clisp.org>
13969
13970         * modules/ftello-tests: New file.
13971         * tests/test-ftello.c: New file.
13972
13973         * modules/ftello: New file.
13974         * m4/ftello.m4: New file.
13975         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
13976         HAVE_FTELLO.
13977         * lib/stdio_.h (ftello): New declaration.
13978         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
13979         HAVE_FTELLO.
13980
13981 2007-04-25  Bruno Haible  <bruno@clisp.org>
13982
13983         * modules/fseeko-tests: New file.
13984         * tests/test-fseeko.c: New file.
13985
13986         * modules/fseeko: New file.
13987         * m4/fseeko.m4: New file.
13988         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
13989         HAVE_FSEEKO.
13990         * lib/stdio_.h (fseeko): New declaration.
13991         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
13992         HAVE_FSEEKO.
13993
13994 2007-04-25  Bruno Haible  <bruno@clisp.org>
13995
13996         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
13997
13998 2007-04-25  Bruno Haible  <bruno@clisp.org>
13999
14000         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
14001         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
14002         * tests/test-unistd.c: Likewise.
14003         * tests/test-fcntl.c: Likewise.
14004
14005 2007-04-23  Eric Blake  <ebb9@byu.net>
14006
14007         * lib/fflush.c: Fix missing include.
14008         Reported by Bruno Haible.
14009
14010 2007-04-23  Bruno Haible  <bruno@clisp.org>
14011
14012         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
14013         Reported by Eric Blake.
14014
14015 2007-04-23  Bruno Haible  <bruno@clisp.org>
14016
14017         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
14018
14019 2007-04-23  Bruno Haible  <bruno@clisp.org>
14020
14021         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
14022
14023 2007-04-23  Bruno Haible  <bruno@clisp.org>
14024
14025         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
14026         Needed on HP-UX 11.
14027
14028 2007-04-16  Eric Blake  <ebb9@byu.net>
14029
14030         Make fflush rely on fpurge.
14031         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
14032         open coding all variants.
14033         * modules/fflush (Depends-on): Add fpurge and unistd.
14034         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
14035         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
14036
14037         Fix --with-tests compilation on cygwin.
14038         * modules/argmatch-tests (Makefile.am): List gnulib library first
14039         in LDADD.
14040         * modules/argp-tests (Makefile.am): Likewise.
14041         * modules/array-list-tests (Makefile.am): Likewise.
14042         * modules/array-oset-tests (Makefile.am): Likewise.
14043         * modules/avltree-list-tests (Makefile.am): Likewise.
14044         * modules/avltree-oset-tests (Makefile.am): Likewise.
14045         * modules/avltreehash-list-tests (Makefile.am): Likewise.
14046         * modules/carray-list-tests (Makefile.am): Likewise.
14047         * modules/dirname-tests (Makefile.am): Likewise.
14048         * modules/frexp-tests (Makefile.am): Likewise.
14049         * modules/isnanl-tests (Makefile.am): Likewise.
14050         * modules/linked-list-tests (Makefile.am): Likewise.
14051         * modules/linkedhash-list-tests (Makefile.am): Likewise.
14052         * modules/lock-tests (Makefile.am): Likewise.
14053         * modules/rbtree-list-tests (Makefile.am): Likewise.
14054         * modules/rbtree-oset-tests (Makefile.am): Likewise.
14055         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
14056         * modules/tls-tests (Makefile.am): Likewise.
14057         * modules/tsearch-tests (Makefile.am): Likewise.
14058         * modules/xvasprintf-tests (Makefile.am): Likewise.
14059
14060         Fix fpurge for cygwin.
14061         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
14062         value.
14063         * modules/fpurge-tests (Depends-on): Clean up trash.
14064
14065 2007-04-16  Simon Josefsson  <simon@josefsson.org>
14066
14067         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
14068
14069         * m4/autobuild.m4: Re-indent.
14070
14071 2007-04-13  Bruno Haible  <bruno@clisp.org>
14072
14073         * modules/fpurge-tests: New file.
14074         * tests/test-fpurge.c: New file.
14075
14076         * modules/fpurge: New file.
14077         * lib/fpurge.h: New file.
14078         * lib/fpurge.c: New file.
14079         * m4/fpurge.m4: New file.
14080
14081 2007-04-13  Bruno Haible  <bruno@clisp.org>
14082
14083         * modules/fbufmode-tests: New file.
14084         * tests/test-fbufmode.c: New file.
14085
14086         * modules/fbufmode: New file.
14087         * lib/fbufmode.h: New file.
14088         * lib/fbufmode.c: New file.
14089         * m4/fbufmode.m4: New file.
14090
14091 2007-04-13  Bruno Haible  <bruno@clisp.org>
14092
14093         * modules/fwritable-tests: New file.
14094         * tests/test-fwritable.c: New file.
14095
14096         * modules/fwritable: New file.
14097         * lib/fwritable.h: New file.
14098         * lib/fwritable.c: New file.
14099         * m4/fwritable.m4: New file.
14100
14101 2007-04-13  Bruno Haible  <bruno@clisp.org>
14102
14103         * modules/freadable-tests: New file.
14104         * tests/test-freadable.c: New file.
14105
14106         * modules/freadable: New file.
14107         * lib/freadable.h: New file.
14108         * lib/freadable.c: New file.
14109         * m4/freadable.m4: New file.
14110
14111 2007-04-13  Bruno Haible  <bruno@clisp.org>
14112
14113         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
14114         MOSTLYCLEANFILES.
14115
14116 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14117
14118         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
14119         gzip bootstrap.conf to avoid dragging in i18n machinery.
14120         (gnulib_tool_option): Use it.
14121
14122 2007-04-13  Bruno Haible  <bruno@clisp.org>
14123
14124         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
14125         %F directives.
14126         * tests/test-vasprintf-posix.c (test_function): Likewise.
14127         * tests/test-snprintf-posix.h (test_function): Likewise.
14128         * tests/test-sprintf-posix.h (test_function): Likewise.
14129         * tests/test-fprintf-posix.h (test_function): Likewise.
14130         * tests/test-printf-posix.h (test_function): Likewise.
14131         * tests/test-fprintf-posix.out: Likewise.
14132
14133 2007-04-13  Bruno Haible  <bruno@clisp.org>
14134
14135         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
14136         * modules/tls-tests (configure.ac): Likewise.
14137         Reported by Arto C. Nirkko <anirkko@insel.ch>.
14138
14139 2007-04-13  Bruno Haible  <bruno@clisp.org>
14140
14141         * lib/tls.c (glthread_tls_get): Fix return type.
14142         Patch by Arto C. Nirkko <anirkko@insel.ch>.
14143
14144 2007-04-12  Eric Blake  <ebb9@byu.net>
14145
14146         * modules/gettime (Depends-on): Remove gettime.
14147         Reported by Dmitry V. Levin.
14148
14149 2007-04-12  Bruno Haible  <bruno@clisp.org>
14150
14151         * modules/fflush (Include): Mention <stdio.h>.
14152         * modules/strtoimax (Include): Mention <inttypes.h>.
14153         * modules/strtoumax (Include): Likewise.
14154
14155 2007-04-12  Eric Blake  <ebb9@byu.net>
14156
14157         * .cvsignore: New file.
14158         * .gitignore: Likewise.
14159
14160 2007-04-12  Bruno Haible  <bruno@clisp.org>
14161
14162         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
14163         not before, since $(LDADD) often contains libgnu.a.
14164         * modules/striconv-tests (test_striconv_LDADD): Likewise.
14165         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
14166         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
14167         Needed on Cygwin.
14168
14169 2007-04-12  Eric Blake  <ebb9@byu.net>
14170
14171         Work around glibc's failure to flush stdin on fclose.
14172         * lib/closein.c (close_stdin): Flush stdin before closing.
14173
14174         Work around glibc's failure to reset seekable stdin on exit.
14175         * modules/closein: New module.
14176         * lib/closein.c: New file.
14177         * lib/closein.h: Likewise.
14178         * m4/closein.m4: Likewise.
14179         * MODULES.html.sh (File stream based Input/Output): Document it.
14180
14181 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14182
14183         * gnulib-tool: Rename generated 'autobuild' script to
14184         'do-autobuild' in --create-megatestdir output.
14185
14186         * doc/gnulib.texi (Build robot for gnulib): Fix.
14187
14188 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14189
14190         * modules/sysexits (Depends-on): Add absolute-header.
14191
14192 2007-04-12  Eric Blake  <ebb9@byu.net>
14193
14194         No need to preserve errno on success.
14195         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
14196         Reported by Bruno Haible.
14197
14198 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14199
14200         * MODULES.html.sh (Support for maintaining and releasing
14201         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
14202
14203 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14204
14205         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
14206
14207 2007-04-12  Simon Josefsson  <simon@josefsson.org>
14208
14209         * modules/autobuild: New module.
14210
14211         * m4/autobuild.m4: New file.
14212
14213 2007-04-11  Bruno Haible  <bruno@clisp.org>
14214
14215         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
14216         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
14217         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
14218         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
14219         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
14220         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14221         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14222         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
14223         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14224         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14225         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
14226         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14227         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14228         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
14229         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14230         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14231         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
14232         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14233         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14234         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
14235         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14236         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14237         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
14238         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14239         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14240         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
14241         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
14242         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
14243         Reported by Eric Blake.
14244
14245 2007-04-11  Bruno Haible  <bruno@clisp.org>
14246
14247         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
14248
14249 2007-04-10  Bruno Haible  <bruno@clisp.org>
14250
14251         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
14252         for NaN and Infinity. Needed on FreeBSD 6.1.
14253         * tests/test-vasnprintf-posix.c (test_function): Undo last change
14254         regarding results for "%010a" of Infinity and NaN.
14255         * tests/test-vasprintf-posix.c (test_function): Likewise.
14256         * tests/test-snprintf-posix.h (test_function): Likewise.
14257         * tests/test-sprintf-posix.h (test_function): Likewise.
14258         * tests/test-fprintf-posix.h (test_function): Likewise.
14259         * tests/test-printf-posix.h (test_function): Likewise.
14260         * tests/test-fprintf-posix.out: Likewise.
14261
14262 2007-04-10  Bruno Haible  <bruno@clisp.org>
14263
14264         * modules/locale-tests: New file.
14265         * tests/test-locale.c: New file.
14266
14267         * modules/locale: New file.
14268         * lib/locale_.h: New file.
14269         * m4/locale_h.m4: New file.
14270
14271 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
14272             Bruno Haible  <bruno@clisp.org>
14273
14274         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
14275         be determined, test for availability of the copysignf, copysign,
14276         copysignl functions.
14277         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
14278         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
14279         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
14280
14281 2007-04-09  Eric Blake  <ebb9@byu.net>
14282
14283         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
14284         * modules/stdio (Makefile.am): Support fflush.
14285         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14286         * modules/fflush: New file.
14287         * lib/fflush.c: Likewise.
14288         * m4/fflush.m4: Likewise.
14289         * modules/fflush-tests: New test.
14290         * tests/test-fflush.c: Likewise.
14291         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
14292
14293 2007-04-06  Bruno Haible  <bruno@clisp.org>
14294
14295         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
14296         (VASNPRINTF): Use signbit for faster determination whether to print a
14297         minus sign.
14298         * modules/vasnprintf (Files): Remove lib/float+.h.
14299         * modules/fprintf-posix (Depends-on): Add signbit.
14300         * modules/snprintf-posix (Depends-on): Likewise.
14301         * modules/sprintf-posix (Depends-on): Likewise.
14302         * modules/vasnprintf-posix (Depends-on): Likewise.
14303         * modules/vasprintf-posix (Depends-on): Likewise.
14304         * modules/vfprintf-posix (Depends-on): Likewise.
14305         * modules/vsnprintf-posix (Depends-on): Likewise.
14306         * modules/vsprintf-posix (Depends-on): Likewise.
14307
14308 2007-04-06  Bruno Haible  <bruno@clisp.org>
14309
14310         * tests/test-frexp.c (main): Test also the sign bit of zero results.
14311         * tests/test-frexpl.c (main): Likewise.
14312         * tests/test-ldexpl.c (main): Likewise.
14313         * modules/frexp-tests (Depends-on): Add signbit.
14314         * modules/frexpl-tests (Depdends-on): Likewise.
14315         * modules/ldexpl-tests (Depdends-on): Likewise.
14316
14317 2007-04-06  Bruno Haible  <bruno@clisp.org>
14318
14319         * modules/signbit-tests: New file.
14320         * tests/test-signbit.c: New file.
14321
14322         * modules/signbit: New file.
14323         * lib/signbitf.c: New file.
14324         * lib/signbitd.c: New file.
14325         * lib/signbitl.c: New file.
14326         * m4/signbit.m4: New file.
14327         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
14328         (signbit): New macro.
14329         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
14330         REPLACE_SIGNBIT.
14331         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
14332         REPLACE_FREXPL into math.h.
14333
14334 2007-04-06  Bruno Haible  <bruno@clisp.org>
14335
14336         * modules/isnanf-nolibm-tests: New file.
14337         * tests/test-isnanf.c: New file.
14338
14339         * modules/isnanf-nolibm: New file.
14340         * lib/isnanf.h: New file.
14341         * lib/isnanf.c: New file.
14342         * lib/isnan.c: Consider the USE_FLOAT macro.
14343         * m4/isnanf.m4: New file.
14344
14345 2007-04-06  Bruno Haible  <bruno@clisp.org>
14346
14347         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
14348         (Link): New section.
14349
14350         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
14351
14352 2007-04-06  Bruno Haible  <bruno@clisp.org>
14353
14354         Assume the 'long double' type.
14355         * m4/longdouble.m4: Remove file.
14356         * config/srclist.txt: Don't mention longdouble.m4.
14357         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
14358         * lib/float+.h: Likewise.
14359         * lib/frexp.c: Likewise.
14360         * lib/printf-args.h: Likewise.
14361         * lib/printf-args.c: Likewise.
14362         * lib/printf-frexp.c: Likewise.
14363         * lib/printf-parse.c: Likewise.
14364         * lib/vasnprintf.c: Likewise.
14365         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
14366         * m4/intl.m4: Likewise.
14367         * m4/isnanl.m4: Likewise.
14368         * m4/printf.m4: Likewise.
14369         * m4/printf-frexpl.m4: Likewise.
14370         * m4/vasnprintf.m4: Likewise.
14371         * modules/allocsa (Files): Remove m4/longdouble.m4.
14372         * modules/gettext (Files): Likewise.
14373         * modules/relocatable-prog-wrapper (Files): Likewise.
14374         * modules/vasnprintf (Files): Likewise.
14375         * modules/isnanl (Files): Likewise.
14376         (Include): Simplify.
14377         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
14378         (Include): Simplify.
14379         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
14380         (Include): Simplify.
14381         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
14382         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14383         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
14384         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14385         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14386         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14387         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
14388         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14389         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
14390         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14391         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
14392         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
14393         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
14394         * tests/test-isnanl.c: Likewise.
14395         * tests/test-snprintf-posix.h: Likewise.
14396         * tests/test-sprintf-posix.h: Likewise.
14397         * tests/test-vasnprintf-posix.c: Likewise.
14398         * tests/test-vasnprintf-posix2.c: Likewise.
14399         * tests/test-vasprintf-posix.c: Likewise.
14400
14401 2007-04-06  Bruno Haible  <bruno@clisp.org>
14402
14403         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
14404         * lib/math_.h [__DECC]: Include the overridden include file through
14405         #include_next, outside the double-inclusion guard.
14406         * lib/stdio_.h [__DECC]: Likewise.
14407         * lib/stdlib_.h [__DECC]: Likewise.
14408         * lib/string_.h [__DECC]: Likewise.
14409         * lib/time_.h [__DECC]: Likewise.
14410         * lib/wchar_.h [__DECC]: Likewise.
14411         * lib/wctype_.h [__DECC]: Likewise.
14412         * lib/inttypes_.h [__DECC]: Likewise.
14413         Reported by Albert Chin <china@thewrittenword.com> in
14414         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
14415
14416 2007-04-04  Eric Blake  <ebb9@byu.net>
14417
14418         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
14419         1.5.x.
14420
14421 2007-04-04  Bruno Haible  <bruno@clisp.org>
14422
14423         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
14424         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
14425
14426 2007-04-04  Bruno Haible  <bruno@clisp.org>
14427
14428         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
14429         results for "%010a" of Infinity and NaN.
14430         * tests/test-vasprintf-posix.c (test_function): Likewise.
14431         * tests/test-snprintf-posix.h (test_function): Likewise.
14432         * tests/test-sprintf-posix.h (test_function): Likewise.
14433         * tests/test-fprintf-posix.h (test_function): Remove these tests.
14434         * tests/test-printf-posix.h (test_function): Likewise.
14435         * tests/test-fprintf-posix.out: Update.
14436         Needed for FreeBSD 6.1.
14437
14438 2007-04-04  Bruno Haible  <bruno@clisp.org>
14439
14440         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
14441         directly used by the gnulib modules nor by gnulib-tool.
14442
14443 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14444
14445         * DEPENDENCIES: Give overall description of version dependency
14446         desirability.  Use more-typical names for apps.
14447         Add shell, coreutils, diffutils, grep, tar, gzip.
14448
14449 2007-04-04  Simon Josefsson  <simon@josefsson.org>
14450
14451         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
14452
14453 2007-04-04  Karl Berry  <karl@gnu.org>
14454
14455         * MODULES.html.sh (func_module): missing '.
14456
14457 2007-04-03  Bruno Haible  <bruno@clisp.org>
14458
14459         * modules/argmatch-tests (Makefile.am): New variable
14460         test_argmatch_LDADD.
14461         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
14462         * modules/array-list-tests (Makefile.am): New variable
14463         test_array_list_LDADD.
14464         * modules/array-oset-tests (Makefile.am): New variable
14465         test_array_oset_LDADD.
14466         * modules/avltree-list-tests (Makefile.am): New variable
14467         test_avltree_list_LDADD.
14468         * modules/avltree-oset-tests (Makefile.am): New variable
14469         test_avltree_oset_LDADD.
14470         * modules/avltreehash-list-tests (Makefile.am): New variable
14471         test_avltreehash_list_LDADD.
14472         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
14473         test_canonicalize_lgpl_LDADD.
14474         * modules/carray-list-tests (Makefile.am): New variable
14475         test_carray_list_LDADD.
14476         * modules/dirname-tests (Makefile.am): New variable
14477         test_dirname_LDADD.
14478         * modules/linked-list-tests (Makefile.am): New variable
14479         test_linked_list_LDADD.
14480         * modules/linkedhash-list-tests (Makefile.am): New variable
14481         test_linkedhash_list_LDADD.
14482         * modules/rbtree-list-tests (Makefile.am): New variable
14483         test_rbtree_list_LDADD.
14484         * modules/rbtree-oset-tests (Makefile.am): New variable
14485         test_rbtree_oset_LDADD.
14486         * modules/rbtreehash-list-tests (Makefile.am): New variable
14487         test_rbtreehash_list_LDADD.
14488         * modules/xvasprintf-tests (Makefile.am): New variable
14489         test_xvasprintf_LDADD.
14490         Reported by Eric Blake.
14491
14492 2007-04-03  Eric Blake  <ebb9@byu.net>
14493
14494         * DEPENDENCIES: Weaken m4 requirements.
14495
14496 2007-04-03  Bruno Haible  <bruno@clisp.org>
14497
14498         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
14499         * modules/isnanl-tests (configure.ac): Likewise.
14500
14501 2007-04-03  Ben Pfaff  <blp@gnu.org>
14502
14503         * modules/iconv_open: Add $(srcdir)/ to source directory
14504         references in Makefile fragments that call gperf, to fix VPATH
14505         builds.
14506
14507 2007-04-03  Bruno Haible  <bruno@clisp.org>
14508
14509         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
14510         * lib/ldexpl.c: Undo last change.
14511
14512 2007-04-03  Bruno Haible  <bruno@clisp.org>
14513
14514         * modules/printf-frexpl (Depends-on): Undo last change.
14515         (Files): Add m4/ldexpl.m4.
14516
14517 2007-04-03  Bruno Haible  <bruno@clisp.org>
14518
14519         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
14520         * modules/isnanl (Link): New section.
14521
14522         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
14523         * modules/frexp (Link): New section.
14524
14525         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
14526         * modules/frexpl (Link): New section.
14527
14528         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
14529         * modules/ldexpl (Link): New section.
14530
14531 2007-04-03  Bruno Haible  <bruno@clisp.org>
14532
14533         * modules/TEMPLATE-EXTENDED: New file.
14534         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
14535
14536 2007-04-03  Bruno Haible  <bruno@clisp.org>
14537
14538         * DEPENDENCIES: New file.
14539         Suggested by Simon Josefsson.
14540
14541 2007-04-03  Bruno Haible  <bruno@clisp.org>
14542
14543         * doc/gnulib.texi: Escape @.
14544
14545 2007-04-03  James Youngman  <jay@gnu.org>
14546         and Paul Eggert  <eggert@cs.ucla.edu>
14547
14548         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
14549         birthtime on all systems that have birthtime, not just those which
14550         use st_birthtimensec rather than st_birthtim.  Putting zero in
14551         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
14552         that the birth time is not available for files on an NFS mount.
14553
14554 2007-04-03  Simon Josefsson  <simon@josefsson.org>
14555
14556         * modules/memxor: Move back from crypto/, suggested by Bruno.
14557         * modules/crypto/hmac-sha1: Fix memxor dependency.
14558
14559         * modules/crypto/gc: Moved from ../.
14560
14561 2007-04-02  Eric Blake  <ebb9@byu.net>
14562
14563         * lib/ldexpl.c (includes): Avoid libm.
14564
14565         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
14566
14567 2007-04-02  Bruno Haible  <bruno@clisp.org>
14568
14569         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
14570         on IRIX.
14571
14572 2007-04-02  Bruno Haible  <bruno@clisp.org>
14573
14574         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
14575         x86 or x86_64 platforms running MacOS X.
14576         Reported by Ryan Schmidt <@ryandesign.com>.
14577
14578 2007-04-02  Bruno Haible  <bruno@clisp.org>
14579
14580         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
14581         i386.
14582
14583 2007-04-01  Simon Josefsson  <simon@josefsson.org>
14584
14585         * modules/crypto/arcfour: Moved from ../.
14586         * modules/crypto/arcfour-tests: Moved from ../.
14587         * modules/crypto/arctwo: Moved from ../.
14588         * modules/crypto/arctwo-tests: Moved from ../.
14589         * modules/crypto/des: Moved from ../.
14590         * modules/crypto/des-tests: Moved from ../.
14591         * modules/crypto/gc-arcfour: Moved from ../.
14592         * modules/crypto/gc-arcfour-tests: Moved from ../.
14593         * modules/crypto/gc-arctwo: Moved from ../.
14594         * modules/crypto/gc-arctwo-tests: Moved from ../.
14595         * modules/crypto/gc-des: Moved from ../.
14596         * modules/crypto/gc-des-tests: Moved from ../.
14597         * modules/crypto/gc-hmac-md5: Moved from ../.
14598         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
14599         * modules/crypto/gc-hmac-sha1: Moved from ../.
14600         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
14601         * modules/crypto/gc-md2: Moved from ../.
14602         * modules/crypto/gc-md2-tests: Moved from ../.
14603         * modules/crypto/gc-md4: Moved from ../.
14604         * modules/crypto/gc-md4-tests: Moved from ../.
14605         * modules/crypto/gc-md5: Moved from ../.
14606         * modules/crypto/gc-md5-tests: Moved from ../.
14607         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
14608         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
14609         * modules/crypto/gc-random: Moved from ../.
14610         * modules/crypto/gc-rijndael: Moved from ../.
14611         * modules/crypto/gc-rijndael-tests: Moved from ../.
14612         * modules/crypto/gc-sha1: Moved from ../.
14613         * modules/crypto/gc-sha1-tests: Moved from ../.
14614         * modules/crypto/gc-tests: Moved from ../.
14615         * modules/crypto/hmac-md5: Moved from ../.
14616         * modules/crypto/hmac-md5-tests: Moved from ../.
14617         * modules/crypto/hmac-sha1: Moved from ../.
14618         * modules/crypto/hmac-sha1-tests: Moved from ../.
14619         * modules/crypto/md2: Moved from ../.
14620         * modules/crypto/md2-tests: Moved from ../.
14621         * modules/crypto/md4: Moved from ../.
14622         * modules/crypto/md4-tests: Moved from ../.
14623         * modules/crypto/md5: Moved from ../.
14624         * modules/crypto/md5-tests: Moved from ../.
14625         * modules/crypto/memxor: Moved from ../.
14626         * modules/crypto/rijndael: Moved from ../.
14627         * modules/crypto/rijndael-tests: Moved from ../.
14628         * modules/crypto/sha1: Moved from ../.
14629
14630 2007-03-30  James Youngman  <jay@gnu.org>
14631
14632         * tests/test-stat-time.c (prepare_test): use chmod() rather than
14633         rename() to change the ctime of a file (because ctime is unaffected
14634         by rename on jfs2 on AIX 5.1).
14635         (main): Start by doing cleanup, in case a previous run failed leaving
14636         test files behind.
14637
14638 2007-03-31  Bruno Haible  <bruno@clisp.org>
14639
14640         Support old proprietary implementations of iconv.
14641         * modules/iconv_open: New file.
14642         * lib/iconv_.h: New file.
14643         * m4/iconv_h.m4: New file.
14644         * lib/iconv_open.c: New file.
14645         * lib/iconv_open-aix.gperf: New file.
14646         * lib/iconv_open-hpux.gperf: New file.
14647         * lib/iconv_open-irix.gperf: New file.
14648         * lib/iconv_open-osf.gperf: New file.
14649         * m4/iconv_open.m4: New file.
14650         * modules/linebreak (Depends-on): Add iconv_open.
14651         * modules/striconv (Depends-on): Likewise.
14652         * modules/striconveh (Depends-on): Likewise.
14653         * modules/unicodeio (Depends-on): Likewise.
14654         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
14655         (iconv_t)(-1).
14656         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
14657         conversion if cd is (iconv_t)(-1).
14658         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
14659         is not possible.
14660
14661 2007-03-31  Bruno Haible  <bruno@clisp.org>
14662
14663         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14664         work on Solaris either. Protect also second use of "autodetect_jp".
14665
14666 2007-03-31  Bruno Haible  <bruno@clisp.org>
14667
14668         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
14669         the function is not present.
14670
14671 2007-03-31  Bruno Haible  <bruno@clisp.org>
14672
14673         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
14674         the function is not present.
14675
14676 2007-03-31  Bruno Haible  <bruno@clisp.org>
14677
14678         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
14679         a bug in HP-UX iconv_open().
14680
14681 2007-03-31  Bruno Haible  <bruno@clisp.org>
14682
14683         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
14684         (Mathematics <math.h>): New section, add fpieee.
14685         (Input/output <stdio.h>): Add fseterr.
14686         (Mathematics <math.h>): New section, add printf-frexp.
14687         (Container data structures): Add sublist.
14688         (Core language properties): Add fpucw, inline.
14689         (Functions for greatest-width integer types <inttypes.h>): Add
14690         imaxabs, imaxdiv, inttypes.
14691         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
14692         isnanl-nolibm, ldexp.
14693         (Mathematics <math.h>): New section, add printf-frexpl.
14694         (Support for systems lacking POSIX:2001): Add fprintf-posix,
14695         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
14696         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
14697         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
14698         (Unicode string functions): Add unistr/u*-mbtoucr.
14699         (Java): Add javacomp-script, javaexec-script.
14700         (C#): Add csharpcomp-script, csharpexec-script.
14701         (Support for building libraries and executables): Add havelib,
14702         relocatable-*.
14703         (Support for maintaining and releasing projects): Renamed from
14704         'Support for maintaining and release projects'. Add announce-gen.
14705
14706 2007-03-31  Bruno Haible  <bruno@clisp.org>
14707
14708         * README: Talk primarily about git.
14709         (git and CVS): Renamed from CVS.
14710         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
14711         gnulib is available through git.
14712         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
14713
14714 2007-03-30  Bruno Haible  <bruno@clisp.org>
14715
14716         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
14717         * lib/poll_.h: Likewise.
14718         * lib/stat_.h: Likewise.
14719         * lib/sys_time_.h: Likewise.
14720         * lib/sysexit_.h: Likewise.
14721         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
14722         * lib/stdbool_.h: Likewise.
14723         * lib/byteswap_.h: Add double-inclusion guard.
14724
14725 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
14726
14727         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
14728
14729 2007-03-30  Karl Berry  <karl@gnu.org>
14730
14731         * config/srclist-update: double space after USA in the license
14732         substitution, since that's how it's usually (?) written.
14733
14734 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
14735
14736         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
14737         reported by Bruno Haible.
14738
14739 2007-03-29  Bruno Haible  <bruno@clisp.org>
14740
14741         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
14742         a bug in AIX iconv().
14743
14744 2007-03-29  Bruno Haible  <bruno@clisp.org>
14745
14746         * modules/ldexpl-tests: New file.
14747         * tests/test-ldexpl.c: New file.
14748
14749 2007-03-29  Bruno Haible  <bruno@clisp.org>
14750
14751         * lib/ldexpl.c: Include fpucw.h.
14752         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
14753         multiplication.
14754         * modules/ldexpl (Depends-on): Add fpucw.
14755
14756 2007-03-29  Bruno Haible  <bruno@clisp.org>
14757
14758         * modules/ldexpl: New file.
14759         * m4/ldexpl.m4: New file.
14760         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
14761         set.
14762         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
14763         REPLACE_LDEXPL.
14764         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
14765         REPLACE_LDEXPL.
14766         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
14767         gl_FUNC_LDEXPL_WORKS.
14768         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
14769         * modules/mathl (Files): Remove lib/ldexpl.c.
14770         (Depends-on): Add ldexpl.
14771
14772 2007-03-29  Bruno Haible  <bruno@clisp.org>
14773
14774         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
14775
14776 2007-03-29  Bruno Haible  <bruno@clisp.org>
14777
14778         * tests/test-striconveh.c (main): Don't assume that a direct conversion
14779         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
14780         and possibly also HP-UX.
14781         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
14782         work on AIX, IRIX, HP-UX, OSF/1.
14783         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
14784         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
14785         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
14786         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
14787         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
14788         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
14789
14790 2007-03-29  Bruno Haible  <bruno@clisp.org>
14791
14792         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
14793
14794 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14795
14796         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
14797         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
14798
14799 2007-03-29  Eric Blake  <ebb9@byu.net>
14800
14801         * lib/acl-internal.h: Remove redundant include.
14802         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
14803         Cygwin when a file is locked.
14804
14805 2007-03-29  Bruno Haible  <bruno@clisp.org>
14806
14807         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
14808         file.
14809         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
14810
14811 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
14812
14813         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
14814         try to remove a parent directory if the child couldn't be removed
14815         (except for the first rmdir, which could fail because the child
14816         doesn't exist).  Problem reported by Jeff Blaine in
14817         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
14818
14819 2007-03-28  Bruno Haible  <bruno@clisp.org>
14820
14821         * lib/striconveh.c (utf8conv_carefully): New function.
14822         (mem_cd_iconveh_internal): Invoke it.
14823
14824 2007-03-28  Bruno Haible  <bruno@clisp.org>
14825
14826         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
14827         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
14828         input.
14829         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
14830         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
14831         unistr/u8-uctomb.
14832
14833 2007-03-28  Bruno Haible  <bruno@clisp.org>
14834
14835         * modules/unistr/u8-mbtoucr: New file.
14836         * lib/unistr/u8-mbtoucr.c: New file.
14837         * modules/unistr/u16-mbtoucr: New file.
14838         * lib/unistr/u16-mbtoucr.c: New file.
14839         * modules/unistr/u16-mbtoucr: New file.
14840         * lib/unistr/u16-mbtoucr.c: New file.
14841         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
14842
14843 2007-03-27  Simon Josefsson  <simon@josefsson.org>
14844             Bruno Haible  <bruno@clisp.org>
14845
14846         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
14847         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
14848         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
14849
14850         * m4/stdio_h.m4: Add stubs for vasprintf too.
14851
14852         * modules/stdio: Support vasprintf in sed command.
14853
14854         * modules/vasprintf: Depend on stdio for prototypes.  Remove
14855         vasprintf.h.  Add stdio module indicator.
14856
14857         * lib/stdio_.h: Declare asprintf and vasprintf, based on
14858         vasprintf.h.
14859
14860         * lib/vasprintf.h: File removed.
14861
14862         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
14863         * lib/vasprintf.c: Ditto.
14864         * lib/xvasprintf.c: Ditto.
14865         * tests/test-vasprintf-posix.c: Ditto.
14866         * tests/test-vasprintf.c: Ditto.
14867
14868 2007-03-27  Bruno Haible  <bruno@clisp.org>
14869
14870         Make vasnprintf multithread-safe.
14871         * lib/vasnprintf.c (decimal_point_char): New function.
14872         (VASNPRINTF): Use it.
14873         Suggested by Simon Josefsson.
14874
14875 2007-03-27  Eric Blake  <ebb9@byu.net>
14876
14877         Support sub-second birthtime on cygwin.
14878         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
14879         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
14880         (get_stat_birthtime): Also work with st_birthtim.
14881
14882 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
14883
14884         * lib/stat-time.h (USE_BIRTHTIME): Remove.
14885         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
14886         (get_stat_birthtime_ns): Do not try to use "spare" fields.
14887         (get_stat_birthtime_ns): Simplify compile-time tests.
14888         (get_stat_birthtime): Change the API to look like
14889         get_stat_mtime etc., except return a negative tv_nsec on error.
14890         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
14891         Don't check for "spare" fields.
14892         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
14893         or for struct stat.st_birthtime, as these tests aren't used.
14894         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
14895
14896 2007-03-27  Bruno Haible  <bruno@clisp.org>
14897
14898         * lib/stat-time.h: Include <sys/stat.h>.
14899
14900 2007-03-27  James Youngman  <jay@gnu.org>
14901
14902         * lib/stat-time.h (get_stat_birthtime): New function for
14903           retrieving st_birthtime as provided by UFS2 (hence *BSD).
14904         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
14905           and its variants.
14906         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
14907         * modules/stat-time-test: New file.
14908         * tests/test-stat-time.c: New test, devised by Bruno Haible.
14909
14910 2007-03-26  Bruno Haible  <bruno@clisp.org>
14911
14912         Better support of signalling NaNs.
14913         * lib/atanl.c: Include isnanl.h.
14914         (atanl): Perform test for NaN at the beginning of the function and
14915         through a call to isnanl.
14916         * lib/cosl.c: Include isnanl.h.
14917         (cosl): Perform test for NaN at the beginning of the function and
14918         through a call to isnanl.
14919         * lib/ldexpl.c: Include isnanl.h.
14920         (ldexpl): Perform test for NaN through a call to isnanl.
14921         * lib/logl.c: Include isnanl.h.
14922         (logl): Perform test for NaN at the beginning of the function and
14923         through a call to isnanl.
14924         * lib/sinl.c: Include isnanl.h.
14925         (sinl): Perform test for NaN at the beginning of the function and
14926         through a call to isnanl.
14927         * lib/sqrtl.c: Include isnanl.h.
14928         (sqrtl): Perform test for NaN at the beginning of the function and
14929         through a call to isnanl.
14930         * lib/tanl.c: Include isnanl.h.
14931         (tanl): Perform test for NaN at the beginning of the function and
14932         through a call to isnanl.
14933         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
14934         * modules/mathl (Depends-on): Add isnanl.
14935
14936 2007-03-26  Eric Blake  <ebb9@byu.net>
14937
14938         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
14939         regression in logic sense of previous patch.
14940
14941 2007-03-26  Bruno Haible  <bruno@clisp.org>
14942
14943         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
14944         unportable shell command "if ! ...".
14945         Reported by Ralf Wildenhues.
14946
14947 2007-03-25  Bruno Haible  <bruno@clisp.org>
14948
14949         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
14950         <sysexits.h> file, and only add EX_CONFIG.
14951         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
14952         absolute file name and whether it is sufficient. Substitute also
14953         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
14954         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
14955         ABSOLUTE_SYSEXITS_H into sysexits.h.
14956
14957 2007-03-25  Bruno Haible  <bruno@clisp.org>
14958
14959         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
14960         hints is NULL.
14961
14962 2007-03-25  Bruno Haible  <bruno@clisp.org>
14963
14964         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
14965         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
14966
14967 2007-03-25  Bruno Haible  <bruno@clisp.org>
14968
14969         * lib/vasnprintf.c: Include langinfo.h.
14970         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
14971         multithread-safe.
14972         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
14973         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
14974         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
14975         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
14976         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
14977         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
14978         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
14979         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
14980         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
14981         Reported by Simon Josefsson.
14982
14983 2007-03-25  Bruno Haible  <bruno@clisp.org>
14984
14985         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
14986         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
14987         * modules/vasnprintf (Depends-on): Add stdint.
14988
14989 2007-03-25  Bruno Haible  <bruno@clisp.org>
14990
14991         * modules/fpieee: New file.
14992         * m4/fpieee.m4: New file.
14993         * modules/isnan-nolibm (Depends-on): Add fpieee.
14994         * modules/isnanl-nolibm (Depends-on): Add fpieee.
14995         * modules/isnanl (Depends-on): Add fpieee.
14996
14997 2007-03-25  Bruno Haible  <bruno@clisp.org>
14998
14999         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
15000
15001 2007-03-25  Bruno Haible  <bruno@clisp.org>
15002
15003         Avoid test failures on IRIX 6.5.
15004         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
15005         (main): Use it.
15006         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
15007         macros.
15008         (main): Use them.
15009
15010 2007-03-25  Bruno Haible  <bruno@clisp.org>
15011
15012         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
15013         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
15014         exists but doesn't work.
15015         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
15016         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
15017         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
15018         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
15019
15020 2007-03-25  Bruno Haible  <bruno@clisp.org>
15021
15022         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
15023         returns inf. Needed on IRIX 6.5.
15024
15025 2007-03-25  Bruno Haible  <bruno@clisp.org>
15026
15027         * tests/test-frexpl.c: Include isnanl-nolibm.h.
15028         (main): Use isnanl instead of x != x idiom.
15029         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
15030
15031         * tests/test-frexp.c: Include isnan.h.
15032         (main): Use isnan instead of x != x idiom.
15033         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
15034
15035 2007-03-25  Bruno Haible  <bruno@clisp.org>
15036
15037         * tests/test-frexp.c (NaN): New function/macro.
15038         (main): Use it instead of 0.0 / 0.0.
15039         * tests/test-isnan.c (NaN): New function/macro.
15040         (main): Use it instead of 0.0 / 0.0.
15041         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
15042         (test_function): Use it instead of 0.0 / 0.0.
15043         * tests/test-vasprintf-posix.c (NaN): New function/macro.
15044         (test_function): Use it instead of 0.0 / 0.0.
15045         * tests/test-snprintf-posix.h (NaN): New function/macro.
15046         (test_function): Use it instead of 0.0 / 0.0.
15047         * tests/test-sprintf-posix.h (NaN): New function/macro.
15048         (test_function): Use it instead of 0.0 / 0.0.
15049         * tests/test-fprintf-posix.h (NaN): New function/macro.
15050         (test_function): Use it instead of 0.0 / 0.0.
15051         * tests/test-printf-posix.h (NaN): New function/macro.
15052         (test_function): Use it instead of 0.0 / 0.0.
15053
15054         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
15055
15056 2007-03-25  Bruno Haible  <bruno@clisp.org>
15057
15058         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
15059
15060 2007-03-25  Bruno Haible  <bruno@clisp.org>
15061
15062         * lib/regexec.c (merge_state_with_log): Make static.
15063
15064 2007-03-25  Bruno Haible  <bruno@clisp.org>
15065
15066         * lib/trigl.c (kernel_rem_pio2): Make static.
15067
15068 2007-03-25  Bruno Haible  <bruno@clisp.org>
15069
15070         * lib/sincosl.c (sincosl_table): Make static.
15071
15072 2007-03-25  Bruno Haible  <bruno@clisp.org>
15073
15074         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
15075         if the compiler does not support C99.
15076
15077 2007-03-25  Bruno Haible  <bruno@clisp.org>
15078
15079         * modules/time (Makefile.am): Ensure all rule action lines start with a
15080         tab.
15081
15082 2007-03-24  Bruno Haible  <bruno@clisp.org>
15083
15084         * modules/tsearch-tests: New file.
15085         * tests/test-tsearch.sh: New file.
15086         * tests/test-tsearch.c: New file, mostly copied from glibc.
15087
15088         * modules/search-tests: New file.
15089         * tests/test-search.c: New file.
15090
15091         * modules/search: New file.
15092         * lib/search_.h: New file, incorporating lib/tsearch.h.
15093         * m4/search_h.m4: New file.
15094         * lib/tsearch.h: Remove file.
15095         * lib/tsearch.c: Include search.h instead of tsearch.h.
15096         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
15097         HAVE_TSEARCH.
15098         * modules/tsearch (Files): Remove lib/tsearch.h.
15099         (Depends-on): Add search.
15100         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
15101         (Include): Change tsearch.h into search.h.
15102
15103 2007-03-24  Bruno Haible  <bruno@clisp.org>
15104
15105         * modules/fpucw: New file.
15106         * lib/fpucw.h: New file.
15107         * lib/frexp.c: Include fpucw.h.
15108         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
15109         (FUNC): Use them.
15110         * lib/printf-frexp.c: Include fpucw.h.
15111         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
15112         (FUNC): Use them.
15113         * lib/vasnprintf.c: Include fpucw.h.
15114         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
15115         'long double' calculations.
15116         * tests/test-frexpl.c: Include fpucw.h.
15117         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
15118         * tests/test-printf-frexpl.c: Include fpucw.h.
15119         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
15120         * modules/frexpl (Depends-on): Add fpucw.
15121         * modules/printf-frexpl (Depends-on): Likewise.
15122         * modules/fprintf-posix (Depends-on): Likewise.
15123         * modules/snprintf-posix (Depends-on): Likewise.
15124         * modules/sprintf-posix (Depends-on): Likewise.
15125         * modules/vasnprintf-posix (Depends-on): Likewise.
15126         * modules/vasprintf-posix (Depends-on): Likewise.
15127         * modules/vfprintf-posix (Depends-on): Likewise.
15128         * modules/vsnprintf-posix (Depends-on): Likewise.
15129         * modules/vsprintf-posix (Depends-on): Likewise.
15130         * modules/frexpl-tests (Depends-on): Likewise.
15131         * modules/printf-frexpl-tests (Depends-on): Likewise.
15132
15133 2007-03-24  Bruno Haible  <bruno@clisp.org>
15134
15135         * lib/float+.h: New file.
15136         * lib/isnan.c: Include float+.h.
15137         (SIZE): New macro.
15138         (FUNC): Compare only SIZE bytes of the value.
15139         * lib/vasnprintf.c: Include float+.h.
15140         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
15141         SIZEOF_LDBL or SIZEOF_DBL bytes.
15142         * modules/isnan-nolibm (Files): Add lib/float+.h.
15143         * modules/isnanl-nolibm (Files): Add lib/float+.h.
15144         * modules/isnanl (Files): Add lib/float+.h.
15145         * modules/vasnprintf (Files): Add lib/float+.h.
15146
15147 2007-03-24  Bruno Haible  <bruno@clisp.org>
15148
15149         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
15150         include isnanl-nolibm.h.
15151
15152 2007-03-24  Bruno Haible  <bruno@clisp.org>
15153
15154         * tests/test-read-file.c (main): Don't produce spurious output for
15155         expected situations. Make the test fail if it encountered unexpected
15156         results.
15157
15158 2007-03-24  Bruno Haible  <bruno@clisp.org>
15159
15160         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
15161         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
15162
15163 2007-03-24  Bruno Haible  <bruno@clisp.org>
15164
15165         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
15166
15167 2007-03-24  Bruno Haible  <bruno@clisp.org>
15168
15169         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
15170         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
15171
15172         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
15173         * modules/utf8-ucs4: Turn into a symbolic link to module
15174         unistr/u8-mbtouc.
15175
15176         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
15177         utf8-ucs4-unsafe.
15178         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
15179         unistr/u8-mbtouc-unsafe.
15180
15181         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
15182         * modules/utf16-ucs4: Turn into a symbolic link to module
15183         unistr/u16-mbtouc.
15184
15185         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
15186         utf16-ucs4-unsafe.
15187         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
15188         unistr/u16-mbtouc-unsafe.
15189
15190         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
15191         * modules/ucs4-utf8: Turn into a symbolic link to module
15192         unistr/u8-ubtomb.
15193
15194         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
15195         * modules/ucs4-utf16: Turn into a symbolic link to module
15196         unistr/u16-ubtomb.
15197
15198 2007-03-24  Bruno Haible  <bruno@clisp.org>
15199
15200         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
15201         Enable the function only if HAVE_INLINE.
15202         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
15203         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15204         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
15205         Enable the function only if HAVE_INLINE.
15206         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
15207         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
15208         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
15209         Enable the function only if HAVE_INLINE.
15210         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
15211         Enable the function only if HAVE_INLINE.
15212         * modules/utf8-ucs4: Update.
15213         * modules/utf8-ucs4-unsafe: Update.
15214         * modules/utf16-ucs4: Update.
15215         * modules/utf16-ucs4-unsafe: Update.
15216         * modules/ucs4-utf8: Update.
15217         * modules/ucs4-utf16: Update.
15218
15219 2007-03-24  Bruno Haible  <bruno@clisp.org>
15220
15221         * lib/utf8-ucs4.h: Remove file.
15222         * lib/utf8-ucs4-unsafe.h: Remove file.
15223         * lib/utf16-ucs4.h: Remove file.
15224         * lib/utf16-ucs4-unsafe.h: Remove file.
15225         * lib/ucs4-utf8.h: Remove file.
15226         * lib/ucs4-utf16.h: Remove file.
15227         * lib/unistr.h: Include their previous contents.
15228         * m4/utf-ucs4.m4: Remove file.
15229         * m4/ucs4-utf.m4: Remove file.
15230         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
15231         (Depends-on): Add unistr/base.
15232         (configure.ac): Remove gl_UTF_UCS4.
15233         (Makefile.am): Update.
15234         (Include): Change to unistr.h.
15235         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
15236         (Depends-on): Add unistr/base.
15237         (configure.ac): Remove gl_UTF_UCS4.
15238         (Makefile.am): Update.
15239         (Include): Change to unistr.h.
15240         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
15241         (Depends-on): Add unistr/base.
15242         (configure.ac): Remove gl_UTF_UCS4.
15243         (Makefile.am): Update.
15244         (Include): Change to unistr.h.
15245         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
15246         (Depends-on): Add unistr/base.
15247         (configure.ac): Remove gl_UTF_UCS4.
15248         (Makefile.am): Update.
15249         (Include): Change to unistr.h.
15250         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
15251         (Depends-on): Add unistr/base.
15252         (configure.ac): Remove gl_UCS4_UTF.
15253         (Makefile.am): Update.
15254         (Include): Change to unistr.h.
15255         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
15256         (Depends-on): Add unistr/base.
15257         (configure.ac): Remove gl_UCS4_UTF.
15258         (Makefile.am): Update.
15259         (Include): Change to unistr.h.
15260         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
15261         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
15262         utf8-ucs4-unsafe.h.
15263         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
15264         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
15265         utf16-ucs4-unsafe.h.
15266         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
15267         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
15268         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
15269         * lib/unistr/u8-strchr.c: Likewise.
15270         * lib/unistr/u8-strrchr.c: Likewise.
15271         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
15272         * lib/unistr/u16-strchr.c: Likewise.
15273         * lib/unistr/u16-strrchr.c: Likewise.
15274         * lib/striconveh.c: Update.
15275         * lib/linebreak.c: Update.
15276
15277 2007-03-24  Bruno Haible  <bruno@clisp.org>
15278
15279         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
15280         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
15281
15282 2007-03-22  Bruno Haible  <bruno@clisp.org>
15283
15284         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
15285
15286 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
15287
15288         * MODULES.html.sh (File system functions): New module write-any-file.
15289         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
15290         * m4/write-any-file.m4: New files.
15291
15292 2007-03-23  Eric Blake  <ebb9@byu.net>
15293
15294         * gnulib-tool: Rearrange space-tab sequences, since some editors
15295         like to eat them.
15296
15297 2007-03-23  Eric Blake  <ebb9@byu.net>
15298
15299         * lib/version-etc.c (version_etc_va): Update license wording to
15300         be more concise.  Recommended by Richard Stallman.
15301
15302 2007-03-22  Bruno Haible  <bruno@clisp.org>
15303
15304         * lib/poll.c (MSG_PEEK): New fallback definition.
15305
15306 2007-03-22  Bruno Haible  <bruno@clisp.org>
15307
15308         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
15309         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
15310         (main): Update.
15311         Fixes a compilation error on BeOS.
15312
15313 2007-03-22  Bruno Haible  <bruno@clisp.org>
15314
15315         * modules/frexpl-tests: New file.
15316         * tests/test-frexpl.c: New file.
15317
15318         * modules/frexpl: New file.
15319         * m4/frexpl.m4: New file.
15320         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
15321         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
15322         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
15323         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
15324         (Depends-on): Add frexpl. Remove isnanl-nolibm.
15325         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
15326
15327 2007-03-22  Bruno Haible  <bruno@clisp.org>
15328
15329         * lib/frexpl.c: Share code with lib/frexp.c.
15330         * modules/mathl (Files): Add lib/frexp.c.
15331         (Depends-on): Add isnanl-nolibm.
15332
15333 2007-03-22  Bruno Haible  <bruno@clisp.org>
15334
15335         * modules/printf-frexp (Files): Add m4/frexp.m4.
15336         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
15337         only if the found frexp function actually works.
15338
15339 2007-03-22  Bruno Haible  <bruno@clisp.org>
15340
15341         * lib/frexp.c: Remove older implementation that uses divisions.
15342
15343 2007-03-21  Bruno Haible  <bruno@clisp.org>
15344
15345         * modules/frexp-tests: New file.
15346         * tests/test-frexp.c: New file.
15347
15348         * modules/frexp: New file.
15349         * lib/frexp.c: New file.
15350         * m4/frexp.m4: New file.
15351         * lib/math_.h (frexp): New declaration.
15352         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
15353         REPLACE_FREXP.
15354         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
15355
15356 2007-03-21  Bruno Haible  <bruno@clisp.org>
15357
15358         * modules/isnanl-tests: New file.
15359         * tests/test-isnanl.c: New file.
15360
15361         * modules/isnanl: New file.
15362         * lib/isnanl.h: New file.
15363         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
15364         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
15365         gl_FUNC_ISNANL_WORKS.
15366         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
15367         New macros.
15368
15369 2007-03-21  Bruno Haible  <bruno@clisp.org>
15370
15371         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
15372         lib/isnanl.h.
15373         (Include): Update.
15374         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
15375         * lib/vasnprintf.c: Update.
15376         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
15377         tests/test-isnanl.h, remove tests/test-isnanl.c.
15378         (Makefile.am): Update.
15379         * tests/test-isnanl-nolibm.c: New file.
15380         * tests/test-isnanl.h: New file.
15381         * tests/test-isnanl.c: Remove file.
15382
15383 2007-03-21  Jim Meyering  <jim@meyering.net>
15384
15385         When trying to open ".", treat ESTALE like EACCES.
15386         * lib/savewd.c (savewd_save): Resort to forking not just upon
15387         failure with EACCES, but also when errno is ESTALE.
15388
15389 2007-03-20  Bruno Haible  <bruno@clisp.org>
15390
15391         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
15392         Needed on AIX 5.1. Reported by Matthew Woehlke.
15393
15394 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15395
15396         Suggestions by Bruno Haible:
15397         * lib/acl-internal.h: Include "gettext.h" rather than rolling
15398         our own.
15399         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
15400         * modules/acl (Depends-on): Add gettext.
15401
15402 2007-03-19  Bruno Haible  <bruno@clisp.org>
15403
15404         * modules/iconvme: Remove file.
15405         * lib/iconvme.h: Remove file.
15406         * lib/iconvme.c: Remove file.
15407         * m4/iconvme.m4: Remove file.
15408
15409 2007-03-19  Bruno Haible  <bruno@clisp.org>
15410
15411         * doc/relocatable-maint.texi: Break long shell script line.
15412         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15413
15414 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15415
15416         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
15417         handle file_has_acl.
15418         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
15419         * lib/acl.c: Move header inclusions and related macro defns into
15420         lib/acl-internal.h.
15421         (S_ISLNK): Remove defn, since that's now done for us.
15422         (file_has_acl): Move to lib/file-has-acl.c.
15423         Call acl_trivial if available.  This is the crucial part of the fix.
15424         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
15425         shared within the library.  Rewrite a bit, partly to make it compatible
15426         with the GNU coding style.
15427         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
15428         Remove unnecessary double-quotes.
15429         Don't test for acl_to_text; the build will catch that.
15430         Replace acl_entries if it doesn't exist and it is needed.
15431         Check for -lsec and acl_trivial (as used on Solaris 10).
15432         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
15433         lib/file-has-acl.c.
15434         (Depends-on): Add sys_stat, for S_ISLNK.
15435
15436 2007-03-19  Ben Pfaff  <blp@gnu.org>
15437
15438         * doc/gnulib.texi: Fix typos.
15439         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
15440
15441 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
15442
15443         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
15444         If size is zero here, buf must be zero.
15445
15446 2007-03-19  Simon Josefsson  <simon@josefsson.org>
15447
15448         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
15449         <bruno@clisp.org>.
15450
15451 2007-03-18  Bruno Haible  <bruno@clisp.org>
15452
15453         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
15454         Suggested by Eric Blake.
15455
15456 2007-03-18  Ben Pfaff  <blp@gnu.org>
15457
15458         * doc/relocatable.texi: Recommend using as prefix a directory
15459         that does not exist and will never be created.  Based on
15460         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
15461         and others.
15462
15463 2007-03-17  Bruno Haible  <bruno@clisp.org>
15464
15465         * lib/fchownat.c: Include lchown.h.
15466
15467 2007-03-17  Bruno Haible  <bruno@clisp.org>
15468
15469         Fix endless loop when the given allocated size was > INT_MAX.
15470         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
15471         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
15472         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
15473         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
15474         * lib/sprintf.c (sprintf): Likewise.
15475
15476 2007-03-17  Bruno Haible  <bruno@clisp.org>
15477
15478         * tests/test-argp-2.sh (func_compare): Output a context diff.
15479
15480 2007-03-17  Bruno Haible  <bruno@clisp.org>
15481
15482         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
15483         locale's decimal-point character.
15484
15485 2007-03-17  Bruno Haible  <bruno@clisp.org>
15486
15487         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
15488         before comparing it. Needed because on some platforms (e.g. x86) a
15489         'long double' occupies less bytes than sizeof (long double).
15490
15491 2007-03-17  Bruno Haible  <bruno@clisp.org>
15492
15493         * tests/test-crc.c (main): Make printf statements 64-bit clean.
15494         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
15495         * tests/test-getaddrinfo.c (simple): Likewise.
15496         * tests/test-read-file.c (main): Likewise.
15497
15498 2007-03-17  Bruno Haible  <bruno@clisp.org>
15499
15500         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
15501
15502 2007-03-17  Bruno Haible  <bruno@clisp.org>
15503
15504         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
15505         unused variable.
15506
15507 2007-03-17  Bruno Haible  <bruno@clisp.org>
15508
15509         * tests/test-c-strcasecmp.c: Include c-strcase.h.
15510         * tests/test-c-strncasecmp.c: Likewise.
15511
15512 2007-03-17  Bruno Haible  <bruno@clisp.org>
15513
15514         * modules/stdlib (Depends-on): Add unistd.
15515         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
15516         Needed for MacOS X 10.3.
15517
15518 2007-03-17  Bruno Haible  <bruno@clisp.org>
15519
15520         * lib/unistr/u-strdup.h: Include <stdlib.h>.
15521
15522 2007-03-17  Bruno Haible  <bruno@clisp.org>
15523
15524         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
15525
15526 2007-03-17  Bruno Haible  <bruno@clisp.org>
15527
15528         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
15529         to reflect files copied from gnulib (with or without modifications).
15530         Suggested by Jim Meyering.
15531
15532 2007-03-17  Eric Blake  <ebb9@byu.net>
15533
15534         * NEWS: Document stdlib change from 2007-02-18.
15535
15536 2007-03-17  Jim Meyering  <jim@meyering.net>
15537
15538         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
15539         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
15540         someone uses a name containing shell meta-characters.
15541         Reported by Alfred M. Szmidt.
15542
15543         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
15544
15545 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15546
15547         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
15548         and copy gettext configuration files only if configure.ac contains
15549         a use of AM_GNU_GETTEXT_VERSION.
15550
15551 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
15552
15553         * build-aux/bootstrap (gnulib_name): New variable.
15554         (gnulib_tool_options): Use it.
15555
15556 2007-03-13  Simon Josefsson  <simon@josefsson.org>
15557
15558         * tests/test-des.c: Use new namespace.
15559
15560 2007-03-15  Bruno Haible  <bruno@clisp.org>
15561
15562         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
15563         Reported by James Youngman <jay@gnu.org>.
15564
15565 2007-03-15  Bruno Haible  <bruno@clisp.org>
15566
15567         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
15568         declared prototype. Needed with cc on OSF/1 5.1.
15569
15570 2007-03-15  Bruno Haible  <bruno@clisp.org>
15571
15572         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
15573         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
15574         (struct gl_list_implementation): Add dispose_fn argument to the
15575         'create_empty', 'create' methods.
15576         (struct gl_list_impl_base): Add field 'dispose_fn'.
15577         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
15578         argument.
15579         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
15580         dispose_fn argument.
15581         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
15582         dispose_fn on the dropped values.
15583         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
15584         dispose_fn argument.
15585         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
15586         dropped values.
15587         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
15588         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15589         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
15590         (gl_tree_remove_node): Call dispose_fn on the dropped value.
15591         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
15592         argument.
15593         (gl_tree_list_free): Call dispose_fn on the dropped values.
15594         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
15595         the dropped values.
15596         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
15597         Add dispose_fn argument.
15598         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
15599         Call dispose_fn on the dropped values.
15600         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
15601         Add dispose_fn argument.
15602         (gl_sublist_create): Initialize the 'dispose_fn' field.
15603         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
15604         * tests/test-array_list.c (main): Update.
15605         * tests/test-carray_list.c (main): Update.
15606         * tests/test-avltree_list.c (main): Update.
15607         * tests/test-rbtree_list.c (main): Update.
15608         * tests/test-avltreehash_list.c (main): Update.
15609         * tests/test-rbtreehash_list.c (main): Update.
15610         * tests/test-linked_list.c (main): Update.
15611         * tests/test-linkedhash_list.c (main): Update.
15612         * tests/test-array_oset.c (main): Update.
15613
15614 2007-03-15  Bruno Haible  <bruno@clisp.org>
15615
15616         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
15617         (gl_oset_create_empty): Add dispose_fn argument.
15618         (struct gl_oset_implementation): Add dispose_fn argument to
15619         'create_empty' method.
15620         (struct gl_oset_impl_base): Add dispose_fn field.
15621         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
15622         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
15623         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
15624         values.
15625         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
15626         (gl_tree_oset_free): Call dispose_fn on the dropped values.
15627         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15628         dropped value.
15629         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
15630         dropped value.
15631         * tests/test-array_oset.c (main): Update.
15632         * tests/test-avltree_oset.c (main): Update.
15633         * tests/test-rbtree_oset.c (main): Update.
15634         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
15635
15636 2007-03-13  Bruno Haible  <bruno@clisp.org>
15637
15638         * tests/test-stdbool.c (i): Update after last patch.
15639
15640 2007-03-12  Bruno Haible  <bruno@clisp.org>
15641
15642         * lib/quotearg.c: Include <wctype.h> early, before the definition of
15643         the iswprint macro. Needed on Solaris 2.5.1.
15644
15645 2007-03-12  Bruno Haible  <bruno@clisp.org>
15646
15647         * tests/test-printf-frexp.c (main): Declare x as volatile.
15648
15649 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15650
15651         * doc/gnulib.texi (Build robot for gnulib): New section.
15652
15653 2007-03-12  Jim Meyering  <jim@meyering.net>
15654
15655         * build-aux/bootstrap: New file.
15656         * build-aux/bootstrap.conf: New file, from coreutils.
15657
15658 2007-03-11  Bruno Haible  <bruno@clisp.org>
15659
15660         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
15661
15662 2007-03-12  Simon Josefsson  <simon@josefsson.org>
15663
15664         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
15665         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
15666         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
15667
15668 2007-03-11  Bruno Haible  <bruno@clisp.org>
15669
15670         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
15671         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
15672
15673 2007-03-11  Bruno Haible  <bruno@clisp.org>
15674
15675         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
15676         formula. Needed for SunPRO C 5.0.
15677
15678 2007-03-11  Bruno Haible  <bruno@clisp.org>
15679
15680         * modules/long-options (Depends-on): Add getopt.
15681
15682 2007-03-11  Bruno Haible  <bruno@clisp.org>
15683
15684         * modules/modechange (Depends-on): Add stdbool.
15685
15686 2007-03-11  Bruno Haible  <bruno@clisp.org>
15687
15688         * modules/i-ring (Depends-on): Add stdbool.
15689
15690 2007-03-11  Bruno Haible  <bruno@clisp.org>
15691
15692         * modules/gc-des (Depends-on): Add stdbool.
15693
15694 2007-03-11  Bruno Haible  <bruno@clisp.org>
15695
15696         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
15697
15698 2007-03-11  Bruno Haible  <bruno@clisp.org>
15699
15700         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
15701
15702 2007-03-11  Bruno Haible  <bruno@clisp.org>
15703
15704         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
15705
15706 2007-03-11  Bruno Haible  <bruno@clisp.org>
15707
15708         * lib/vasnprintf.c (sprintf): Undefine.
15709
15710 2007-03-11  Bruno Haible  <bruno@clisp.org>
15711
15712         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
15713         initializers in SunPRO C and Compaq C compilers.
15714
15715 2007-03-11  Bruno Haible  <bruno@clisp.org>
15716
15717         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
15718         decrementing code ANSI C compliant.
15719
15720 2007-03-11  Bruno Haible  <bruno@clisp.org>
15721
15722         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
15723         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
15724
15725 2007-03-11  Bruno Haible  <bruno@clisp.org>
15726
15727         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
15728         <stdbool.h> substitute doesn't pass.
15729
15730 2007-03-11  Bruno Haible  <bruno@clisp.org>
15731
15732         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
15733
15734 2007-03-11  Bruno Haible  <bruno@clisp.org>
15735
15736         * gnulib-tool (func_create_megatestdir): Create also an autobuild
15737         script, for submission to autobuild.josefsson.org.
15738
15739 2007-03-10  Bruno Haible  <bruno@clisp.org>
15740
15741         * modules/canonicalize-lgpl-tests: New file.
15742         * tests/test-canonicalize-lgpl.sh: New file.
15743         * tests/test-canonicalize-lgpl.c: New file.
15744
15745         * modules/c-strcase-tests: New file.
15746         * tests/test-c-strcase.sh: New file.
15747         * tests/test-c-strcasecmp.c: New file.
15748         * tests/test-c-strncasecmp.c: New file.
15749
15750         * modules/atexit-tests: New file.
15751         * tests/test-atexit.sh: New file.
15752         * tests/test-atexit.c: New file.
15753
15754 2007-03-10  Bruno Haible  <bruno@clisp.org>
15755
15756         * tests/test-binary-io.sh: Use temporary filenames that are not so
15757         likely to clash with those of other tests (in a parallel make).
15758         * tests/test-binary-io.c: Likewise.
15759
15760 2007-03-10  Bruno Haible  <bruno@clisp.org>
15761
15762         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
15763         fallback; use #error instead.
15764         Suggested by Simon Josefsson.
15765
15766 2007-03-10  Bruno Haible  <bruno@clisp.org>
15767
15768         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
15769         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
15770         first and the last.
15771
15772 2007-03-10  Bruno Haible  <bruno@clisp.org>
15773
15774         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
15775
15776 2007-03-10  Bruno Haible  <bruno@clisp.org>
15777
15778         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
15779         "make distcheck".
15780         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
15781         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
15782         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
15783
15784 2007-03-10  Bruno Haible  <bruno@clisp.org>
15785
15786         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
15787         variable.
15788         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
15789         variable.
15790
15791 2007-03-09  Eric Blake  <ebb9@byu.net>
15792         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
15793
15794         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
15795         types are not being provided by gnulib.
15796         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
15797         types are supported.
15798
15799 2007-03-10  Bruno Haible  <bruno@clisp.org>
15800
15801         * lib/stdio_.h (__attribute__): New macro.
15802         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
15803         vsprintf): Specify __attribute__ __format__ for GCC.
15804         Suggested by Eric Blake.
15805
15806 2007-03-09  Bruno Haible  <bruno@clisp.org>
15807
15808         * modules/printf-posix-tests: New file.
15809         * tests/test-printf-posix.sh: New file.
15810         * tests/test-printf-posix.c: New file.
15811
15812         * modules/printf-posix: New file.
15813         * lib/printf.c: New file.
15814         * m4/printf-posix-rpl.m4: New file.
15815         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
15816         REPLACE_PRINTF.
15817         * lib/stdio_.h (printf): New declaration.
15818         (format, __format__, ____printf____, ____scanf____, ____strftime____,
15819         ____strfmon____): New macros.
15820         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
15821         REPLACE_PRINTF.
15822
15823 2007-03-09  Bruno Haible  <bruno@clisp.org>
15824
15825         * tests/test-vasnprintf-posix2.sh: New file.
15826         * tests/test-vasnprintf-posix2.c: New file.
15827         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
15828         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
15829         (Makefile.am): Activate test-vasnprintf-posix2.sh.
15830
15831         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
15832         a locale dependent decimal point, rather than always '.'.
15833
15834 2007-03-09  Eric Blake  <ebb9@byu.net>
15835
15836         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
15837         spite of platforms like Tandem/NSK that define it to -1.
15838
15839 2007-03-08  Bruno Haible  <bruno@clisp.org>
15840
15841         * modules/vprintf-posix-tests: New file.
15842         * tests/test-vprintf-posix.sh: New file.
15843         * tests/test-vprintf-posix.c: New file.
15844         * tests/test-printf-posix.h: New file.
15845
15846         * modules/vprintf-posix: New file.
15847         * lib/vprintf.c: New file.
15848         * m4/vprintf-posix.m4: New file.
15849         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
15850         REPLACE_VPRINTF.
15851         * lib/stdio_.h (vprintf): New declaration.
15852         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
15853         REPLACE_VPRINTF.
15854
15855 2007-03-08  Bruno Haible  <bruno@clisp.org>
15856
15857         * modules/fprintf-posix-tests: New file.
15858         * tests/test-fprintf-posix.sh: New file.
15859         * tests/test-fprintf-posix.c: New file.
15860
15861         * modules/fprintf-posix: New file.
15862         * lib/fprintf.c: New file.
15863         * m4/fprintf-posix.m4: New file.
15864         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
15865         REPLACE_FPRINTF.
15866         * lib/stdio_.h (fprintf): New declaration.
15867         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
15868         REPLACE_FPRINTF.
15869
15870 2007-03-08  Bruno Haible  <bruno@clisp.org>
15871
15872         * modules/vfprintf-posix-tests: New file.
15873         * tests/test-vfprintf-posix.sh: New file.
15874         * tests/test-vfprintf-posix.c: New file.
15875         * tests/test-fprintf-posix.h: New file.
15876         * tests/test-fprintf-posix.out: New file.
15877
15878         * modules/vfprintf-posix: New file.
15879         * lib/vfprintf.c: New file.
15880         * m4/vfprintf-posix.m4: New file.
15881         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
15882         REPLACE_VFPRINTF.
15883         * lib/stdio_.h (vfprintf): New declaration.
15884         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
15885         REPLACE_VFPRINTF.
15886
15887 2007-03-08  Bruno Haible  <bruno@clisp.org>
15888
15889         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
15890
15891 2007-03-08  Bruno Haible  <bruno@clisp.org>
15892
15893         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
15894         instead of 'expr' invocations.
15895         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15896         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15897         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15898         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15899         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15900         Suggested by Paul Eggert.
15901
15902 2007-03-08  Bruno Haible  <bruno@clisp.org>
15903
15904         * modules/fseterr-tests: New file.
15905         * tests/test-fseterr.c: New file.
15906
15907         * modules/fseterr: New file.
15908         * lib/fseterr.h: New file.
15909         * lib/fseterr.c: New file.
15910
15911 2007-03-08  Bruno Haible  <bruno@clisp.org>
15912
15913         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
15914         * lib/getopt_.h: Likewise.
15915         * lib/mbswidth.h: Likewise.
15916         * lib/setenv.h: Likewise.
15917         * lib/vasnprintf.h: Likewise.
15918         * lib/vasprintf.h: Likewise.
15919         * lib/verror.h: Likewise.
15920         * lib/xsetenv.h: Likewise.
15921         * lib/xvasprintf.h: Likewise.
15922
15923 2007-03-08  Jim Meyering  <jim@meyering.net>
15924
15925         * users.txt: Add parted.
15926
15927         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
15928
15929 2007-03-07  Bruno Haible  <bruno@clisp.org>
15930
15931         * m4/printf.m4: Make the shell script snippets copy&pastable.
15932
15933 2007-03-02  Bruno Haible  <bruno@clisp.org>
15934
15935         * lib/netinet_in_.h: New file.
15936         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
15937         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
15938         * modules/netinet_in (Files): Add lib/netinet_in_.h.
15939         (Depends-on): Add absolute-header.
15940         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
15941         into netinet/in.h.
15942
15943 2007-03-03  Bruno Haible  <bruno@clisp.org>
15944
15945         * lib/sys_select_.h: New file.
15946         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
15947         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
15948         * modules/sys_select (Files): Add lib/sys_select_.h.
15949         (Depends-on): Add absolute-header.
15950         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
15951         into sys/select.h.
15952
15953 2007-03-02  Bruno Haible  <bruno@clisp.org>
15954
15955         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
15956         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
15957         values.
15958         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
15959         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
15960         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
15961         * modules/sys_socket (Depends-on): Add absolute-header.
15962         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
15963         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
15964         (Include): Remove requirement of inclusion of <sys/types.h>.
15965
15966 2007-03-02  Bruno Haible  <bruno@clisp.org>
15967
15968         * lib/byteswap_.h (bswap_32): Fix formula.
15969
15970 2007-03-06  Bruno Haible  <bruno@clisp.org>
15971
15972         * modules/sprintf-posix-tests: New file.
15973         * tests/test-sprintf-posix.c: New file.
15974
15975         * modules/sprintf-posix: New file.
15976         * lib/sprintf.c: New file.
15977         * m4/sprintf-posix.m4: New file.
15978         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
15979         REPLACE_SPRINTF.
15980         * lib/stdio_.h (sprintf): New declaration.
15981         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
15982         REPLACE_SPRINTF.
15983
15984 2007-03-06  Bruno Haible  <bruno@clisp.org>
15985
15986         * modules/vsprintf-posix-tests: New file.
15987         * tests/test-vsprintf-posix.c: New file.
15988         * tests/test-sprintf-posix.h: New file.
15989
15990         * modules/vsprintf-posix: New file.
15991         * lib/vsprintf.c: New file.
15992         * m4/vsprintf-posix.m4: New file.
15993         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
15994         REPLACE_VSPRINTF.
15995         * lib/stdio_.h (vsprintf): New declaration.
15996         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
15997         REPLACE_VSPRINTF.
15998
15999 2007-03-06  Bruno Haible  <bruno@clisp.org>
16000
16001         * modules/vsnprintf (Depend-on): Remove minmax.
16002
16003 2007-03-06  Bruno Haible  <bruno@clisp.org>
16004
16005         * modules/snprintf-posix-tests: New file.
16006         * tests/test-snprintf-posix.c: New file.
16007
16008         * modules/snprintf-posix: New file.
16009         * m4/snprintf-posix.m4: New file.
16010         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
16011         gl_FUNC_SNPRINTF.
16012         (gl_FUNC_SNPRINTF): Invoke it.
16013         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
16014         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
16015         is set.
16016         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
16017
16018 2007-03-06  Bruno Haible  <bruno@clisp.org>
16019
16020         * modules/vsnprintf-posix-tests: New file.
16021         * tests/test-vsnprintf-posix.c: New file.
16022         * tests/test-snprintf-posix.h: New file.
16023
16024         * modules/vsnprintf-posix: New file.
16025         * m4/vsnprintf-posix.m4: New file.
16026         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
16027         gl_FUNC_VSNPRINTF.
16028         (gl_FUNC_VSNPRINTF): Invoke it.
16029         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
16030         * lib/stdio_.h (vsnprintf): Define as a replacement if
16031         REPLACE_VSNPRINTF is set.
16032         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
16033
16034 2007-03-06  Bruno Haible  <bruno@clisp.org>
16035
16036         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
16037         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
16038
16039 2007-03-06  Bruno Haible  <bruno@clisp.org>
16040
16041         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
16042         (asinl): Declare also if HAVE_DECL_ASINL is set.
16043         (atanl): Declare also if HAVE_DECL_ATANL is set.
16044         (ceill): Declare also if HAVE_DECL_CEILL is set.
16045         (cosl): Declare also if HAVE_DECL_COSL is set.
16046         (expl): Declare also if HAVE_DECL_EXPL is set.
16047         (floorl): Declare also if HAVE_DECL_FLOORL is set.
16048         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
16049         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
16050         (logl): Declare also if HAVE_DECL_LOGL is set.
16051         (sinl): Declare also if HAVE_DECL_SINL is set.
16052         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
16053         (tanl): Declare also if HAVE_DECL_TANL is set.
16054         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
16055         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
16056         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
16057         declaration of frexpl, ldexpl.
16058         * modules/printf-frexpl (Depends-on): Add math.
16059         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
16060
16061 2007-03-05  Bruno Haible  <bruno@clisp.org>
16062
16063         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
16064         frexpl and ldexpl are declared.
16065         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
16066
16067 2007-03-05  Bruno Haible  <bruno@clisp.org>
16068
16069         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
16070         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
16071
16072 2007-03-05  Bruno Haible  <bruno@clisp.org>
16073
16074         * lib/stdio_.h: Include <stddef.h>.
16075
16076 2007-03-05  Bruno Haible  <bruno@clisp.org>
16077
16078         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
16079
16080 2007-03-05  Bruno Haible  <bruno@clisp.org>
16081
16082         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
16083         NetBSD 4, from Ralf Wildenhues.
16084
16085 2007-03-04  Bruno Haible  <bruno@clisp.org>
16086
16087         * lib/vasprintf.h: Update #if logic for the case when the functions
16088         exist but are overridden.
16089
16090 2007-03-04  Bruno Haible  <bruno@clisp.org>
16091
16092         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
16093         implementations: glibc-2.4 and MacOS X 10.3.
16094         * tests/test-vasnprintf-posix.c (test_function): Test also the case
16095         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
16096         * tests/test-vasprintf-posix.c (test_function): Likewise.
16097
16098 2007-03-04  Bruno Haible  <bruno@clisp.org>
16099
16100         * modules/vasprintf-posix-tests: New file.
16101         * tests/test-vasprintf-posix.c: New file.
16102
16103         * modules/vasprintf-posix: New file.
16104         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
16105         defined.
16106         * m4/vasprintf-posix.m4: New file.
16107         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
16108         gl_FUNC_VASPRINTF.
16109         (gl_FUNC_VASPRINTF): Invoke it.
16110         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
16111         here.
16112         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
16113
16114 2007-03-04  Bruno Haible  <bruno@clisp.org>
16115
16116         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
16117         REPLACE_GETTIMEOFDAY.
16118         * modules/sys_time (Makefile.am): Likewise.
16119         * m4/sys_time_h.m4: Likewise.
16120         * m4/gettimeofday.m4: Likewise.
16121
16122 2007-03-04  Bruno Haible  <bruno@clisp.org>
16123
16124         * modules/vasnprintf-posix-tests: New file.
16125         * tests/test-vasnprintf-posix.c: New file.
16126
16127         * modules/vasnprintf-posix: New file.
16128         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
16129         printf-frexpl.h.
16130         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
16131         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
16132         REPLACE_VASNPRINTF is defined.
16133         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
16134         gl_FUNC_VASNPRINTF.
16135         (gl_FUNC_VASNPRINTF): Invoke it.
16136         * m4/vasnprintf-posix.m4: New file.
16137         * m4/printf.m4: New file.
16138
16139 2007-03-04  Bruno Haible  <bruno@clisp.org>
16140
16141         Compile progreloc.c only if --enable-relocatable is specified.
16142         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
16143         if --enable-relocatable was specified.
16144         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
16145         lib_SOURCES.
16146
16147 2007-03-04  Jim Meyering  <jim@meyering.net>
16148
16149         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
16150         Use it consistently, rather than enumerating errno constants.
16151
16152 2007-03-04  Bruno Haible  <bruno@clisp.org>
16153
16154         * modules/xvasprintf-tests: New file.
16155         * tests/test-xvasprintf.c: New file.
16156
16157         * modules/vasprintf-tests: New file.
16158         * tests/test-vasprintf.c: New file.
16159
16160         * modules/vasnprintf-tests: New file.
16161         * tests/test-vasnprintf.c: New file.
16162
16163         * modules/vsnprintf-tests: New file.
16164         * tests/test-vsnprintf.c: New file.
16165
16166         * modules/snprintf-tests: New file.
16167         * tests/test-snprintf.c: New file.
16168
16169 2007-03-04  Bruno Haible  <bruno@clisp.org>
16170
16171         Compile relocatable.c only if --enable-relocatable is specified.
16172         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
16173         gl_RELOCATABLE_LIBRARY.
16174         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
16175         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
16176         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
16177         gl_RELOCATABLE_LIBRARY.
16178         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
16179         (Makefile.am): Remove lib_SOURCES.
16180         * modules/relocatable-lib-lgpl (configure.ac): Invoke
16181         gl_RELOCATABLE_LIBRARY.
16182         (Makefile.am): Remove lib_SOURCES.
16183         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
16184         always.
16185         * modules/relocatable-prog-wrapper (configure.ac): Invoke
16186         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
16187
16188 2007-03-04  Bruno Haible  <bruno@clisp.org>
16189
16190         * modules/argmatch-tests: New file.
16191         * tests/test-argmatch.c: New file.
16192
16193         * tests/test-allocsa.c (main): Halve the number of loop runs.
16194
16195         * modules/alloca-opt-tests: New file.
16196         * tests/test-alloca-opt.c: New file.
16197
16198 2007-03-04  Jim Meyering  <jim@meyering.net>
16199
16200         Work around difference between Linux ACLs and Solaris 10 ZFS.
16201         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
16202         for EINVAL.
16203
16204 2007-03-03  Bruno Haible  <bruno@clisp.org>
16205
16206         * modules/relocatable-prog (Depends-on): Add back progreloc's
16207         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
16208
16209 2007-03-03  Bruno Haible  <bruno@clisp.org>
16210
16211         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
16212         * modules/relocatable-lib: New file.
16213
16214 2007-03-03  Bruno Haible  <bruno@clisp.org>
16215
16216         * modules/relocatable-prog: Renamed from modules/relocatable.
16217         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
16218
16219 2007-03-03  Bruno Haible  <bruno@clisp.org>
16220
16221         * modules/relocatable-script (Files): Add doc/relocatable.texi,
16222         m4/relocatable-lib.m4.
16223         (Depends-on): Remove 'relocatable'.
16224         (configure.ac): Add gl_RELOCATABLE_NOP.
16225
16226 2007-03-03  Bruno Haible  <bruno@clisp.org>
16227
16228         * modules/relocatable-prog-wrapper: New file.
16229         * modules/relocatable (Depends-on): Add it. Remove all other
16230         dependencies except progname.
16231         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
16232
16233         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
16234         (gl_FUNC_STRERROR): Nop.
16235         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
16236
16237         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
16238         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
16239
16240         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
16241         (gl_FUNC_READLINK): Update.
16242
16243         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
16244
16245 2007-03-03  Bruno Haible  <bruno@clisp.org>
16246
16247         * lib/xreadlink.c: Include <unistd.h> unconditionally.
16248         * modules/xreadlink (Depends-on): Add unistd.
16249         * modules/xreadlink-with-size (Depends-on): Likewise.
16250
16251 2007-03-03  Bruno Haible  <bruno@clisp.org>
16252
16253         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
16254         extracted from gt_FUNC_SETENV.
16255         (gt_FUNC_SETENV): Remove macro.
16256         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
16257         remove gt_FUNC_SETENV.
16258
16259 2007-03-03  Bruno Haible  <bruno@clisp.org>
16260
16261         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
16262         ENABLE_RELOCATABLE here.
16263         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
16264
16265 2007-03-03  Bruno Haible  <bruno@clisp.org>
16266
16267         * modules/rbtreehash-list-tests (Depends-on): Add progname.
16268         * tests/test-rbtreehash_list.c: Include progname.h.
16269         (main): Call set_program_name.
16270
16271         * modules/rbtree-oset-tests (Depends-on): Add progname.
16272         * tests/test-rbtree_oset.c: Include progname.h.
16273         (main): Call set_program_name.
16274
16275         * modules/rbtree-list-tests (Depends-on): Add progname.
16276         * tests/test-rbtree_list.c: Include progname.h.
16277         (main): Call set_program_name.
16278
16279         * modules/linked-list-tests (Depends-on): Add progname.
16280         * tests/test-linked_list.c: Include progname.h.
16281         (main): Call set_program_name.
16282
16283 2007-03-03  Bruno Haible  <bruno@clisp.org>
16284
16285         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
16286         All uses of __restrict changed to _Restrict_.
16287         * lib/glob_.h (__restrict): Remove macro.
16288
16289 2007-03-02  Bruno Haible  <bruno@clisp.org>
16290
16291         * modules/gettext (configure.ac): Require gettext infrastructure
16292         from version 0.16.1.
16293
16294 2007-03-02  Bruno Haible  <bruno@clisp.org>
16295
16296         * modules/linkedhash-list-tests (Depends-on): Add progname.
16297         * tests/test-linkedhash_list.c: Include progname.h.
16298         (main): Call set_program_name.
16299
16300         * modules/carray-list-tests (Depends-on): Add progname.
16301         * tests/test-carray_list.c: Include progname.h.
16302         (main): Call set_program_name.
16303
16304         * modules/avltreehash-list-tests (Depends-on): Add progname.
16305         * tests/test-avltreehash_list.c: Include progname.h.
16306         (main): Call set_program_name.
16307
16308         * modules/avltree-oset-tests (Depends-on): Add progname.
16309         * tests/test-avltree_oset.c: Include progname.h.
16310         (main): Call set_program_name.
16311
16312         * modules/avltree-list-tests (Depends-on): Add progname.
16313         * tests/test-avltree_list.c: Include progname.h.
16314         (main): Call set_program_name.
16315
16316         * modules/array-oset-tests (Depends-on): Add progname.
16317         * tests/test-array_oset.c: Include progname.h.
16318         (main): Call set_program_name.
16319
16320         * modules/array-list-tests (Depends-on): Add progname.
16321         * tests/test-array_list.c: Include progname.h.
16322         (main): Call set_program_name.
16323
16324         * modules/argp-tests (Depends-on): Add progname.
16325         * tests/test-argp.c: Include argp.h first. Include progname.h.
16326         (main): Call set_program_name.
16327
16328 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
16329
16330         * doc/gnulib-tool.texi (Initial import): Reword description of
16331         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
16332         limited effect even if defined after the first system include.
16333
16334 2007-03-01  Bruno Haible  <bruno@clisp.org>
16335
16336         * build-aux/config.libpath: Update to libtool-1.5.22.
16337         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16338
16339 2007-03-01  Bruno Haible  <bruno@clisp.org>
16340
16341         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
16342         foo_CFLAGS.
16343         Reported by Ralf Wildenhues.
16344
16345 2007-03-01  Bruno Haible  <bruno@clisp.org>
16346
16347         * build-aux/install-reloc: Remove object files left over by some
16348         compilers.
16349         Reported by Ralf Wildenhues.
16350
16351 2007-03-01  Bruno Haible  <bruno@clisp.org>
16352
16353         * build-aux/install-reloc: Break long lines.
16354
16355 2007-03-01  Bruno Haible  <bruno@clisp.org>
16356
16357         * doc/relocatable.texi: Document that it may not work on OpenBSD.
16358         Reported by Ralf Wildenhues.
16359
16360 2007-03-01  Bruno Haible  <bruno@clisp.org>
16361
16362         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
16363         include ordering constraints.
16364
16365 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
16366
16367         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
16368         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
16369         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
16370         as another example.
16371         * lib/time_.h: Fix misspelling.
16372         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
16373         Require gl_HEADER_TIME_H_DEFAULTS.
16374         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
16375         * m4/time_r.m4 (gl_TIME_R): Likewise.
16376         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
16377
16378 2007-03-01  Bruno Haible  <bruno@clisp.org>
16379
16380         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
16381         * m4/utimens.m4 (gl_UTIMENS): Likewise.
16382
16383 2007-03-01  Jim Meyering  <jim@meyering.net>
16384
16385         * modules/xreadlink (Maintainer): Add my name.
16386         * modules/xreadlink-with-size (Depends-on): Alphabetize.
16387
16388 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
16389             Bruno Haible  <bruno@clisp.org>
16390
16391         * build-aux/install-reloc: Compile also c-ctype.c.
16392         * build-aux/relocatable.sh.in: New file.
16393         * doc/relocatable.texi: New file.
16394         * doc/relocatable-maint.texi: New file.
16395         * doc/gnulib.texi: Include relocatable-maint.texi.
16396         * lib/progreloc.c: Include unistd.h unconditionally.
16397         * lib/relocwrapper.c: Include unistd.h unconditionally.
16398         Include c-ctype.h.
16399         (add_dotbin): Use c_tolower.
16400         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
16401         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
16402         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
16403         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
16404         to m4/relocatable-lib.m4.
16405         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
16406         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
16407         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
16408         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
16409         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
16410         * modules/relocatable: New file.
16411         * modules/relocatable-lib: New file.
16412         * modules/relocatable-script: New file.
16413
16414 2007-02-28  Bruno Haible  <bruno@clisp.org>
16415
16416         Import --enable-relocatable infrastructure.
16417         * build-aux/config.libpath: New file, from GNU gettext.
16418         * build-aux/install-reloc: New file, from GNU gettext.
16419         * build-aux/reloc-ldflags: New file, from GNU gettext.
16420         * lib/relocatable.h: New file, from GNU gettext.
16421         * lib/relocatable.c: New file, from GNU gettext.
16422         * lib/relocwrapper.c: New file, from GNU gettext.
16423         * m4/relocatable.m4: New file, from GNU gettext.
16424
16425 2007-02-28  Bruno Haible  <bruno@clisp.org>
16426
16427         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
16428
16429         * modules/xreadlink: New file, from GNU gettext with modifications.
16430         * lib/xreadlink.c: New file, from GNU gettext.
16431         * lib/xreadlink.h: Add comments.
16432         (xreadlink): New declaration.
16433
16434         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
16435         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
16436         lib/xreadlink-with-size.c.
16437         (configure.ac): Remove gl_XREADLINK invocation.
16438         (Makefile.am): Augment lib_SOURCES.
16439         * m4/xreadlink.m4: Remove file.
16440         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
16441         (xreadlink_with_size): Renamed from xreadink.
16442         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
16443         * modules/canonicalize (Depends-on): Replace xreadlink with
16444         xreadlink-with-size.
16445         * lib/canonicalize.c (canonicalize_filename_mode): Update.
16446
16447 2007-02-25  Jim Meyering  <jim@meyering.net>
16448
16449         * build-aux/announce-gen: When complaining about excess arguments,
16450         list them.
16451
16452 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
16453
16454         * README: Document signed integer overflow situation more
16455         accurately.
16456
16457 2007-02-25  Bruno Haible  <bruno@clisp.org>
16458
16459         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
16460         'a' or 'A' conversion.
16461
16462 2007-02-25  Bruno Haible  <bruno@clisp.org>
16463
16464         * modules/filename: Renamed from modules/pathname.
16465         (Files): Replace lib/pathname.h with lib/filename.h. Replace
16466         lib/concatpath.c with lib/concat-filename.c.
16467         (Makefile.am): Update.
16468         (Include): Replace pathname.h with filename.h.
16469         * lib/filename.h: Renamed from lib/pathname.h.
16470         (concatenated_filename): Renamed from concatenated_pathname.
16471         * lib/concat-filename.c: Renamed from lib/concatpath.c.
16472         (concatenated_filename): Renamed from concatenated_pathname.
16473         * lib/findprog.c: Include filename.h instead of pathname.h.
16474         (find_in_path): Update.
16475         * lib/javacomp.c: Include filename.h instead of pathname.h.
16476         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
16477         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
16478         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
16479         is_oldgcj_14_13_usable, is_javac_usable): Update.
16480         * lib/javaexec.c: Include filename.h instead of pathname.h.
16481         (execute_java_class): Update.
16482         * modules/findprog: Update.
16483         * modules/javacomp: Update.
16484         * modules/javaexec: Update.
16485         * MODULES.html.sh (File system functions): Add 'filename', remove
16486         'pathname'.
16487
16488 2007-02-25  Bruno Haible  <bruno@clisp.org>
16489
16490         * modules/printf-frexpl-tests: New file.
16491         * tests/test-printf-frexpl.c: New file.
16492
16493         * modules/printf-frexpl: New file.
16494         * lib/printf-frexpl.h: New file.
16495         * lib/printf-frexpl.c: New file.
16496         * m4/printf-frexpl.m4: New file.
16497
16498 2007-02-25  Bruno Haible  <bruno@clisp.org>
16499
16500         * modules/printf-frexp-tests: New file.
16501         * tests/test-printf-frexp.c: New file.
16502
16503         * modules/printf-frexp: New file.
16504         * lib/printf-frexp.h: New file.
16505         * lib/printf-frexp.c: New file.
16506         * m4/printf-frexp.m4: New file.
16507
16508 2007-02-25  Bruno Haible  <bruno@clisp.org>
16509
16510         Assume automake >= 1.10 for the tests.
16511         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
16512         * modules/arctwo-tests: Likewise.
16513         * modules/argp-tests: Likewise.
16514         * modules/avltree-list-tests: Likewise.
16515         * modules/avltree-oset-tests: Likewise.
16516         * modules/avltreehash-list-tests: Likewise.
16517         * modules/carray-list-tests: Likewise.
16518         * modules/crc-tests: Likewise.
16519         * modules/des-tests: Likewise.
16520         * modules/gc-arcfour-tests: Likewise.
16521         * modules/gc-arctwo-tests: Likewise.
16522         * modules/gc-des-tests: Likewise.
16523         * modules/gc-hmac-md5-tests: Likewise.
16524         * modules/gc-hmac-sha1-tests: Likewise.
16525         * modules/gc-md2-tests: Likewise.
16526         * modules/gc-md4-tests: Likewise.
16527         * modules/gc-md5-tests: Likewise.
16528         * modules/gc-pbkdf2-sha1-tests: Likewise.
16529         * modules/gc-rijndael-tests: Likewise.
16530         * modules/gc-sha1-tests: Likewise.
16531         * modules/gc-tests: Likewise.
16532         * modules/getaddrinfo-tests: Likewise.
16533         * modules/hmac-md5-tests: Likewise.
16534         * modules/hmac-sha1-tests: Likewise.
16535         * modules/linked-list-tests: Likewise.
16536         * modules/linkedhash-list-tests: Likewise.
16537         * modules/lock-tests: Likewise.
16538         * modules/md2-tests: Likewise.
16539         * modules/md4-tests: Likewise.
16540         * modules/md5-tests: Likewise.
16541         * modules/rbtree-list-tests: Likewise.
16542         * modules/rbtree-oset-tests: Likewise.
16543         * modules/rbtreehash-list-tests: Likewise.
16544         * modules/read-file-tests: Likewise.
16545         * modules/rijndael-tests: Likewise.
16546         * modules/stdint-tests: Likewise.
16547         * modules/tls-tests: Likewise.
16548
16549 2007-02-24  Bruno Haible  <bruno@clisp.org>
16550
16551         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
16552         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
16553         function; instead check whether isnan with a double argument links.
16554         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
16555         function; instead check whether isnan with a 'long double' argument
16556         links.
16557         Reported by Eric Blake <ebb9@byu.net>.
16558
16559 2007-02-24  Bruno Haible  <bruno@clisp.org>
16560
16561         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
16562         defined.
16563         * lib/isnanl.c: Remove all code. Just include isnan.c.
16564         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
16565
16566 2007-02-25  Jim Meyering  <jim@meyering.net>
16567
16568         Avoid conflicting types for 'unsetenv' on FreeBSD.
16569         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
16570         conflicting with FreeBSD's (5.0 and 6.1) function declaration
16571         in stdlib.h.
16572
16573 2007-02-24  Bruno Haible  <bruno@clisp.org>
16574
16575         * modules/isnanl-nolibm-tests: New file.
16576         * tests/test-isnanl.c: New file.
16577
16578         * modules/isnanl-nolibm: New file.
16579         * lib/isnanl.h: New file.
16580         * lib/isnanl.c: New file.
16581         * m4/isnanl.m4: New file.
16582
16583 2007-02-24  Bruno Haible  <bruno@clisp.org>
16584
16585         * modules/isnan-nolibm-tests: New file.
16586         * tests/test-isnan.c: New file.
16587
16588         * modules/isnan-nolibm: New file.
16589         * lib/isnan.h: New file.
16590         * lib/isnan.c: New file.
16591         * m4/isnan.m4: New file.
16592
16593 2007-02-24  Bruno Haible  <bruno@clisp.org>
16594
16595         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
16596         assume that an exponent fits in 20 bits.
16597
16598 2007-02-24  Jim Meyering  <jim@meyering.net>
16599
16600         * m4/regex.m4: Update the description of the configure-time option,
16601         --without-included-regex, to state accurately what the defaults are,
16602         and perhaps to give people an idea why using this option is risky.
16603
16604 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
16605
16606         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
16607         loops on small arguments.  This attempts to avoid the problem
16608         Bruno Haible reported for AIX 4.3.2 in
16609         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
16610
16611 2007-02-23  Bruno Haible  <bruno@clisp.org>
16612
16613         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
16614         Needed for help2man.
16615
16616 2007-02-23  Karl Berry  <karl@gnu.org>
16617
16618         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
16619         exists, foo.h should be cvs-ignored, not committed.
16620
16621 2007-02-23  Eric Blake  <ebb9@byu.net>
16622
16623         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
16624         * lib/stat-time.h (includes): Likewise.
16625         * lib/utimecmp.c (includes): Likewise.
16626         * lib/utimens.h (includes): Likewise.
16627         * lib/getdate.y (includes): Also include "timespec.h" for use
16628         internal to the module.
16629         * modules/utimens (Depends-on): Revert yesterday's patch.
16630         * modules/nanosleep (Depends-on): Add missing dependency.
16631
16632 2007-02-22  Bruno Haible  <bruno@clisp.org>
16633
16634         * lib/glob.c: Don't include getlogin_r.h.
16635
16636 2007-02-22  Jim Meyering  <jim@meyering.net>
16637
16638         * modules/utimens (Depends-on): Add timespec, required for
16639         utimens.h's inclusion of timespec.h.
16640
16641 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
16642
16643         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
16644         long unreadable paths in GNU/Linux.  Problem reported by Andreas
16645         Schwab in
16646         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
16647         I'll try to think of a better way to fix the Solaris problem.
16648
16649         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
16650         like glibc; on Solaris 10, it fails with errno == EINVAL.
16651         POSIX says the behavior is unspecified if the first argument is NULL,
16652         so play it safe and never pass NULL to the system getcwd.
16653
16654 2007-02-21  Jim Meyering  <jim@meyering.net>
16655
16656         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
16657         of gettimeofday.  It would conflict with the one now always
16658         provided via sys_time_.h.  Reported by Matthew Woehlke, as
16659         an IRIX 6.5 build failure.
16660
16661 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
16662
16663         Minor fixups to port to Solaris 10 with Sun C 5.8.
16664         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
16665         * modules/getcwd (Depends-on): Add dirfd.
16666         * lib/putenv.c (putenv): #undef it.
16667         (rpl_putenv): New decl.
16668         (malloc, free): Include <stdlib.h> rather than prototyping separately.
16669
16670 2007-02-20  Bruno Haible  <bruno@clisp.org>
16671
16672         * modules/stdio-tests: New file.
16673         * tests/test-stdio.c: New file.
16674
16675         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
16676         (Depends-on): Add stdio.
16677         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16678         (Include): Use <stdio.h> instead of vsnprintf.h.
16679         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16680         HAVE_DECL_VSNPRINTF.
16681         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
16682
16683         * modules/snprintf (Files): Remove lib/snprintf.h.
16684         (Depends-on): Add stdio.
16685         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
16686         (Include): Use <stdio.h> instead of snprintf.h.
16687         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
16688         HAVE_DECL_SNPRINTF.
16689         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
16690         * lib/getaddrinfo.c: Likewise.
16691
16692         * modules/stdio: New file.
16693         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
16694         * lib/snprintf.h: Remove file.
16695         * lib/vsnprintf.h: Remove file.
16696         * lib/.cppi-disable: Remove snprintf.h.
16697         * m4/stdio_h.m4: New file.
16698         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
16699
16700 2007-02-20  Jim Meyering  <jim@meyering.net>
16701
16702         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
16703         used by e.g., mingw.  From Bruno Haible.
16704
16705 2007-02-19  Bruno Haible  <bruno@clisp.org>
16706
16707         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
16708         warnings.
16709         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16710
16711 2007-02-19  Bruno Haible  <bruno@clisp.org>
16712
16713         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
16714         from mingw users.
16715
16716 2007-02-19  Bruno Haible  <bruno@clisp.org>
16717
16718         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
16719         warnings.
16720         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
16721
16722 2007-02-19  Jim Meyering  <jim@meyering.net>
16723
16724         Don't use FD after a successful "fdopendir (fd)".
16725         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
16726         Reset it by calling dirfd on the just-obtained DIR*.
16727
16728         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
16729         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
16730
16731 2007-02-18  Bruno Haible  <bruno@clisp.org>
16732
16733         * lib/readlink.c: Include <unistd.h>.
16734         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
16735         HAVE_READLINK.
16736         * modules/readlink (Depends-on): Add unistd.
16737         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16738         (Include): Add <unistd.h>.
16739
16740         * lib/getlogin_r.h: Remove file.
16741         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
16742         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
16743         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
16744         HAVE_DECL_GETLOGIN_R.
16745         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
16746         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16747         (Include): Use <unistd.h> instead of getlogin_r.h.
16748
16749         * lib/getcwd.h: Remove file.
16750         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
16751         * lib/xgetcwd.c: Likewise.
16752         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
16753         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
16754         * modules/getcwd (Files): Remove lib/getcwd.h.
16755         (Depends-on): Add unistd.
16756         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16757         (Include): Use <unistd.h> instad of getcwd.h.
16758
16759         * lib/ftruncate.c: Include <unistd.h> first.
16760         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
16761         Set HAVE_FTRUNCATE.
16762         * modules/ftruncate (Depends-on): Add unistd.
16763         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16764
16765         * lib/fchdir.c: Include <unistd.h> first.
16766         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
16767         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
16768         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
16769         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16770         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
16771
16772         * lib/dup2.c: Include <unistd.h> first.
16773         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
16774         HAVE_DUP2.
16775         * modules/dup2 (Depends-on): Add unistd.
16776         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16777
16778         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
16779         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
16780         REPLACE_CHOWN. Don't define chown as a macro here.
16781         * modules/chown (Depends-on): Add unistd.
16782         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
16783
16784         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
16785         Add definition for GL_LINK_WARNING.
16786         (chown, dup2): New declarations.
16787         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
16788         link warning.
16789         (ftruncate): New declaration.
16790         (getcwd): New declaration, taken from old getcwd.h.
16791         (getlogin_r): New declaration, taken from old getlogin_r.h.
16792         (readlink): New declaration.
16793         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
16794         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
16795         (gl_PREREQ_UNISTD): Remove macro.
16796         (gl_UNISTD_MODULE_INDICATOR): New macro.
16797         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
16798         many new variables. Don't set UNISTD_H.
16799         * modules/unistd (Description): Change.
16800         (Depends-on): Add link-warning.
16801         (configure.ac): Update.
16802         (Makefile.am): Create unistd.h always. Substitute many new variables
16803         into it.
16804
16805 2007-02-18  Bruno Haible  <bruno@clisp.org>
16806
16807         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
16808         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
16809         HAVE_GETSUBOPT.
16810         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
16811         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
16812         * lib/getsubopt.h: Remove file.
16813         * modules/getsubopt (Files): Remove lib/getsubopt.h.
16814         (Depends-on): Add stdlib.
16815         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16816         (Includes): Use <stdlib.h> instead of getsubopt.h.
16817         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
16818         Set HAVE_GETSUBOPT.
16819         * lib/getsubopt.c: Don't include getsubopt.h.
16820
16821 2007-02-18  Bruno Haible  <bruno@clisp.org>
16822
16823         * modules/fchdir (Depends-on): Add dup2.
16824
16825 2007-02-18  Bruno Haible  <bruno@clisp.org>
16826
16827         * lib/stdlib_.h: Handle glibc's special invocation convention
16828         specially.
16829
16830 2007-02-18  Bruno Haible  <bruno@clisp.org>
16831
16832         * modules/stdlib-tests: New file.
16833         * tests/test-stdlib.c: New file.
16834
16835         * modules/mkstemp (Files): Remove lib/mkstemp.h.
16836         (Depends-on): Add stdlib.
16837         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16838         (Includes): Use <stdlib.h> instead of mkstemp.h.
16839         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16840         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
16841         * lib/mkstemp.c: Don't include mkstemp.h.
16842         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
16843         * lib/stdlib--.h: Don't include mkstemp.h.
16844
16845         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
16846         (Depends-on): Add stdlib.
16847         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16848         (Includes): Use <stdlib.h> instead of mkdtemp.h.
16849         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
16850         HAVE_MKDTEMP.
16851         * lib/mkdtemp.c: Don't include mkdtemp.h.
16852         * lib/clean-temp.c: Don't include mkdtemp.h.
16853
16854         * modules/exit (Files): Remove lib/exit.h.
16855         (Depends-on): Add stdlib.
16856         (Makefile.am): Remove lib_SOURCES.
16857         (Include): Use <stdlib.h> instead of exit.h.
16858         * lib/argmatch.c: Don't include exit.h.
16859         * lib/execute.c: Likewise.
16860         * lib/pagealign_alloc.c: Likewise.
16861         * lib/pipe.c: Likewise.
16862         * lib/wait-process.c: Likewise.
16863         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
16864         * lib/exitfail.c: Likewise.
16865         * lib/savewd.c: Likewise.
16866         * lib/xsetenv.c: Likewise.
16867
16868         * modules/stdlib: New file.
16869         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
16870         and extra comments about mkstemp().
16871         * lib/exit.h: Remove file.
16872         * lib/mkdtemp.h: Remove file.
16873         * lib/mkstemp.h: Remove file.
16874         * m4/stdlib_h.m4: New file.
16875         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
16876
16877 2007-02-18  Bruno Haible  <bruno@clisp.org>
16878
16879         * modules/math-tests: New file.
16880         * tests/test-math.c: New file.
16881
16882         * modules/math: New file.
16883         * modules/mathl (Files): Remove lib/mathl.h.
16884         (Depends-on): Add math.
16885         (Makefile.am): Don't mention mathl.h.
16886         (Include): Use <math.h> instead of mathl.h.
16887         * lib/math_.h: New file.
16888         * lib/mathl.h: Remove file.
16889         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
16890         mathl.h.
16891         * lib/asinl.c: Likewise.
16892         * lib/atanl.c: Likewise.
16893         * lib/ceill.c: Likewise.
16894         * lib/cosl.c: Likewise.
16895         * lib/expl.c: Likewise.
16896         * lib/floorl.c: Likewise.
16897         * lib/frexpl.c: Likewise.
16898         * lib/ldexpl.c: Likewise.
16899         * lib/logl.c: Likewise.
16900         * lib/sincosl.c: Likewise.
16901         * lib/sinl.c: Likewise.
16902         * lib/sqrtl.c: Likewise.
16903         * lib/tanl.c: Likewise.
16904         * lib/trigl.c: Likewise.
16905         * m4/math_h.m4: New file.
16906         * MODULES.html.sh (Mathematics): Add math.
16907
16908 2007-02-17  Bruno Haible  <bruno@clisp.org>
16909
16910         * modules/wctype-tests: New file.
16911         * tests/test-wctype.c: New file.
16912
16913         * modules/wchar-tests: New file.
16914         * tests/test-wchar.c: New file.
16915
16916         * modules/unistd-tests: New file.
16917         * tests/test-unistd.c: New file.
16918
16919         * modules/time-tests: New file.
16920         * tests/test-time.c: New file.
16921
16922         * modules/sysexits-tests: New file.
16923         * tests/test-sysexits.c: New file.
16924
16925         * modules/sys_time-tests: New file.
16926         * tests/test-sys_time.c: New file.
16927
16928         * modules/sys_stat-tests: New file.
16929         * tests/test-sys_stat.c: New file.
16930
16931         * modules/sys_socket-tests: New file.
16932         * tests/test-sys_socket.c: New file.
16933
16934         * modules/sys_select-tests: New file.
16935         * tests/test-sys_select.c: New file.
16936
16937         * modules/string-tests: New file.
16938         * tests/test-string.c: New file.
16939
16940         * modules/stdbool-tests: New file.
16941         * tests/test-stdbool.c: New file.
16942
16943         * modules/netinet_in-tests: New file.
16944         * tests/test-netinet_in.c: New file.
16945
16946         * modules/inttypes-tests: New file.
16947         * tests/test-inttypes.c: New file.
16948
16949         * modules/fcntl-tests: New file.
16950         * tests/test-fcntl.c: New file.
16951
16952         * modules/byteswap-tests: New file.
16953         * tests/test-byteswap.c: New file.
16954
16955         * modules/arpa_inet-tests: New file.
16956         * tests/test-arpa_inet.c: New file.
16957
16958 2007-02-17  Bruno Haible  <bruno@clisp.org>
16959
16960         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
16961         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
16962         if the corresponding module is not enabled. Emit link warnings if
16963         the function is used nevertheless.
16964         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
16965         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
16966         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
16967         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
16968         * modules/inttypes (Depends-on): Add link-warning.
16969         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16970         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
16971         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
16972         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
16973         * modules/imaxdiv (configure.ac): Likewise.
16974         * modules/strtoimax (configure.ac): Likewise.
16975         * modules/strtoumax (configure.ac): Likewise.
16976
16977 2007-02-17  Bruno Haible  <bruno@clisp.org>
16978
16979         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
16980         gl_STRING_MODULE_INDICATOR_DEFAULTS.
16981         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
16982         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
16983
16984 2007-02-17  Bruno Haible  <bruno@clisp.org>
16985
16986         * modules/link-warning: New file.
16987         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
16988         * lib/string_.h (GL_LINK_WARNING): Remove definition.
16989         * modules/string (Depends-on): Add link-warning.
16990         (Makefile.am): Copy the contents of build-aux/link-warning.h into
16991         string.h.
16992         * MODULES.html.sh (Support for building libraries and executables): Add
16993         link-warning.
16994
16995 2007-02-17  Bruno Haible  <bruno@clisp.org>
16996
16997         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
16998         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
16999         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
17000         long lines.
17001
17002 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
17003             Bruno Haible  <bruno@clisp.org>
17004
17005         * modules/tmpfile: New file.
17006         * lib/tmpfile.c: New file.
17007         * m4/tmpfile.m4: New file.
17008         * MODULES.html.sh (func_all_modules): New section "Input/output".
17009
17010 2007-02-15  Bruno Haible  <bruno@clisp.org>
17011
17012         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
17013         (supports_delete_on_close): New function.
17014         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
17015
17016 2007-02-14  Bruno Haible  <bruno@clisp.org>
17017
17018         * modules/mbspcasecmp-tests: New file.
17019         * tests/test-mbspcasecmp.sh: New file.
17020         * tests/test-mbspcasecmp.c: New file.
17021
17022         New module mbspcasecmp.
17023         * modules/mbspcasecmp: New file.
17024         * lib/mbspcasecmp.c: New file.
17025         * lib/string_.h (strncasecmp): Change warning message.
17026         (mbspcasecmp): New declaration.
17027         * m4/mbspcasecmp.m4: New file.
17028         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17029         GNULIB_MBSPCASECMP.
17030         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
17031         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
17032
17033 2007-02-14  Bruno Haible  <bruno@clisp.org>
17034
17035         * modules/mbsncasecmp-tests: New file.
17036         * tests/test-mbsncasecmp.sh: New file.
17037         * tests/test-mbsncasecmp.c: New file.
17038
17039         New module mbsncasecmp.
17040         * modules/mbsncasecmp: New file.
17041         * lib/mbsncasecmp.c: New file.
17042         * lib/string_.h (mbsncasecmp): New declaration.
17043         * m4/mbsncasecmp.m4: New file.
17044         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17045         GNULIB_MBSNCASECMP.
17046         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
17047         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
17048
17049 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
17050
17051         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
17052         Verify that it doesn't overlap with our flags.
17053         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
17054         do not have the desired effect in multibyte locales; instead, use
17055         mbscasecmp.
17056         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
17057         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
17058         we don't require GNU fnmatch ourselves (if our users require it, they
17059         should do so explicitly).
17060
17061         Fix regex code so it doesn't rely on strcasecmp.
17062         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
17063         Otherwise, include gnulib's langinfo.h.
17064         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
17065         undesirable behavior in non-C locales.  Instead, rely on localecharset.
17066         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
17067         * modules/regex (FILES): Remove m4/codeset.m4.
17068         (Depends-on): Add localcharset.  Remove strcase.
17069
17070 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17071
17072         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
17073         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
17074
17075 2007-02-13  Bruno Haible  <bruno@clisp.org>
17076
17077         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
17078         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17079
17080 2007-02-12  Bruno Haible  <bruno@clisp.org>
17081
17082         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
17083         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
17084         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
17085         time warning rather than a link error.
17086
17087 2007-02-12  Bruno Haible  <bruno@clisp.org>
17088
17089         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
17090         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
17091         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17092
17093 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
17094
17095         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
17096         args, not 2.
17097
17098 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
17099
17100         New module 'time', so that apps can include <time.h> as per
17101         POSIX and GNU instead of separate include files like time_r.h
17102         and timegm.h.  This implementation tries out a simpler approach
17103         for replacing decls in standard include files (as compared to
17104         the string module), somewhat as an experiment.
17105
17106         * config/srclist.txt: Comment out mktime.c for now.
17107         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
17108         since it doesn't apply any more.  Use generic wording instead.
17109         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
17110         'time'.
17111         * lib/time_.h, m4/time_h.m4, modules/time: New files.
17112         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
17113         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
17114         Don't include <sys/types.h>; no longer needed since we assume C89.
17115         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
17116         * lib/strftime.c: Likewise.
17117         * lib/time_r.c: Likewise.
17118         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
17119         * lib/nanosleep.c: Include <time.h> first, to check interface.
17120         * lib/strptime.c: Likewise.
17121         * lib/time_r.c: Likewise.
17122         * lib/timegm.c: Likewise.
17123         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
17124         needed.
17125         * lib/timegm.c: Don't include timegm.h; no longer needed.
17126         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
17127         time.h now handles any problems in that area.
17128         (struct timespec, nanosleep): Remove; time.h now arranges for these.
17129         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
17130         that time.h defines struct timespec.
17131         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
17132         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
17133         handles that.
17134         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
17135         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
17136         needed.  Set REPLACE_LOCALTIME.
17137         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
17138         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
17139         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
17140         nanosleep; time_h.m4 now does that.  Don't require
17141         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
17142         module handles this now.
17143         * modules/getdate (Depends-on): Remove timespec.  Add time.
17144         * modules/nanosleep (Depends-on): Likewise.
17145         * modules/stat-time (Depends-on): Likewise.
17146         * modules/nanosleep (Include): Include time.h, not timespec.h.
17147         * modules/strptime (Files): Remove lib/strptime.h.
17148         (Depends-on): Add extensions, time.
17149         (Include): Include time.h, not strptime.h.
17150         * modules/time_r (Files): Remove lib/time_r.h.
17151         (Depends-on): Add time.
17152         (Include): Include time.h, not time_r.h.
17153         * modules/timegm: Likewise.
17154         * modules/timespec (Description): Now does timespec-related decls
17155         of our own, instead of struct timespec itself.
17156         (Depends-on): Add time; remove extensions.
17157         (Maintainer): Add self.
17158         * modules/utimecmp (Depends-on): Add time; remove timespec.
17159         * modules/utimens (Depends-on): Likewise.
17160         * modules/xnanosleep (Depends-on): Likewise.
17161
17162 2007-02-11  Bruno Haible  <bruno@clisp.org>
17163
17164         * lib/c-strstr.c: Include allocsa.h.
17165         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17166         * lib/c-strcasestr.c: Include allocsa.h.
17167         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17168         * lib/strcasestr.c: Include allocsa.h.
17169         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
17170         * lib/mbsstr.c: Include allocsa.h.
17171         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
17172         allocsa/freesa instead of malloc/free.
17173         * lib/mbscasestr.c: Include allocsa.h.
17174         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
17175         allocsa/freesa instead of malloc/free.
17176         * modules/c-strstr (Depends-on): Add allocsa.
17177         * modules/c-strcasestr (Depends-on): Likewise.
17178         * modules/strcasestr (Depends-on): Likewise.
17179         * modules/mbsstr (Depends-on): Likewise.
17180         * modules/mbscasestr (Depends-on): Likewise.
17181
17182 2007-02-11  Bruno Haible  <bruno@clisp.org>
17183
17184         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
17185
17186         * modules/mbsspn-tests: New file.
17187         * tests/test-mbsspn.sh: New file.
17188         * tests/test-mbsspn.c: New file.
17189
17190 2007-02-11  Bruno Haible  <bruno@clisp.org>
17191
17192         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
17193
17194         * modules/mbspbrk-tests: New file.
17195         * tests/test-mbspbrk.sh: New file.
17196         * tests/test-mbspbrk.c: New file.
17197
17198 2007-02-11  Bruno Haible  <bruno@clisp.org>
17199
17200         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
17201         unneeded cast.
17202
17203         * modules/mbscspn-tests: New file.
17204         * tests/test-mbscspn.sh: New file.
17205         * tests/test-mbscspn.c: New file.
17206
17207 2007-02-11  Bruno Haible  <bruno@clisp.org>
17208
17209         * modules/mbscasecmp-tests: New file.
17210         * tests/test-mbscasecmp.sh: New file.
17211         * tests/test-mbscasecmp.c: New file.
17212
17213 2007-02-11  Bruno Haible  <bruno@clisp.org>
17214
17215         Ensure O(n) worst-case complexity of mbscasestr.
17216         * lib/mbscasestr.c: Include stdbool.h.
17217         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17218         functions.
17219         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
17220         the bookkeeping indicates that it's worth it.
17221         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
17222
17223         * modules/mbscasestr-tests: New file.
17224         * tests/test-mbscasestr1.c: New file.
17225         * tests/test-mbscasestr2.sh: New file.
17226         * tests/test-mbscasestr2.c: New file.
17227         * tests/test-mbscasestr3.sh: New file.
17228         * tests/test-mbscasestr3.c: New file.
17229         * tests/test-mbscasestr4.sh: New file.
17230         * tests/test-mbscasestr4.c: New file.
17231         * m4/locale-tr.m4: New file.
17232
17233 2007-02-11  Bruno Haible  <bruno@clisp.org>
17234
17235         Ensure O(n) worst-case complexity of mbsstr.
17236         * lib/mbsstr.c: Include stdbool.h.
17237         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
17238         functions.
17239         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
17240         bookkeeping indicates that it's worth it.
17241         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
17242
17243         * modules/mbsstr-tests: New file.
17244         * tests/test-mbsstr1.c: New file.
17245         * tests/test-mbsstr2.sh: New file.
17246         * tests/test-mbsstr2.c: New file.
17247         * tests/test-mbsstr3.sh: New file.
17248         * tests/test-mbsstr3.c: New file.
17249         * m4/locale-fr.m4: New file.
17250
17251 2007-02-11  Bruno Haible  <bruno@clisp.org>
17252
17253         * lib/mbsrchr.c (mbsrchr): Fix bug.
17254
17255         * modules/mbsrchr-tests: New file.
17256         * tests/test-mbsrchr.sh: New file.
17257         * tests/test-mbsrchr.c: New file.
17258
17259 2007-02-11  Bruno Haible  <bruno@clisp.org>
17260
17261         * lib/mbschr.c (mbschr): Fix bug.
17262
17263         * modules/mbschr-tests: New file.
17264         * tests/test-mbschr.sh: New file.
17265         * tests/test-mbschr.c: New file.
17266         * m4/locale-zh.m4: New file.
17267
17268 2007-02-11  Bruno Haible  <bruno@clisp.org>
17269
17270         Support for copying multibyte string iterators.
17271         * lib/mbiter.h: Include <string.h>.
17272         (mbiter_multi_copy): New function.
17273         (mbi_copy): New macro.
17274         * lib/mbuiter.h: Include <string.h>.
17275         (mbuiter_multi_copy): New function.
17276         (mbui_copy): New macro.
17277
17278 2007-02-11  Bruno Haible  <bruno@clisp.org>
17279
17280         New module mbslen.
17281         * modules/mbslen: New file.
17282         * lib/mbslen.c: New file.
17283         * lib/string_.h (mbslen): New declaration.
17284         * m4/mbslen.m4: New file.
17285         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17286         GNULIB_MBSLEN.
17287         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
17288         * MODULES.html.sh (Internationalization functions): Add mbslen.
17289
17290 2007-02-11  Bruno Haible  <bruno@clisp.org>
17291
17292         Ensure O(n) worst-case complexity of strcasestr substitute.
17293         * lib/strcasestr.c: Include stdbool.h.
17294         (knuth_morris_pratt): New function.
17295         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17296         bookkeeping indicates that it's worth it.
17297         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
17298
17299         * modules/strcasestr-tests: New file.
17300         * tests/test-strcasestr.c: New file.
17301
17302 2007-02-11  Bruno Haible  <bruno@clisp.org>
17303
17304         Ensure O(n) worst-case complexity of c_strcasestr.
17305         * lib/c-strcasestr.c: Include stdbool.h, string.h.
17306         (knuth_morris_pratt): New function.
17307         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
17308         the bookkeeping indicates that it's worth it.
17309         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
17310
17311         * modules/c-strcasestr-tests: New file.
17312         * tests/test-c-strcasestr.c: New file.
17313
17314 2007-02-11  Bruno Haible  <bruno@clisp.org>
17315
17316         Ensure O(n) worst-case complexity of c_strstr.
17317         * lib/c-strstr.c: Include stdbool.h, string.h.
17318         (knuth_morris_pratt): New function.
17319         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
17320         bookkeeping indicates that it's worth it.
17321         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
17322
17323         * lib/c-strstr.c: Complete rewrite for maintainability.
17324
17325         * modules/c-strstr-tests: New file.
17326         * tests/test-c-strstr.c: New file.
17327
17328 2007-02-11  Bruno Haible  <bruno@clisp.org>
17329
17330         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
17331         5.2.1 and earlier, whereby \055 was treated just like the range
17332         delimiter '-'.
17333         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
17334
17335 2007-02-08  Bruno Haible  <bruno@clisp.org>
17336
17337         * modules/regex (Depends-on): Add stdbool.
17338         Reported by Dalibor Topic <robilad@kaffe.org>.
17339
17340 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
17341
17342         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
17343         Prefer returning from main to exiting from it.
17344         Remove unnecessary parens after sizeof.
17345
17346 2007-02-05  Bruno Haible  <bruno@clisp.org>
17347
17348         New module mbssep.
17349         * modules/mbssep: New file.
17350         * lib/mbssep.c: New file.
17351         * lib/string_.h (strsep): Add a conditional link warning.
17352         (mbssep): New declaration.
17353         * m4/mbssep.m4: New file.
17354         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17355         GNULIB_MBSSEP.
17356         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
17357         * MODULES.html.sh (Internationalization functions): Add mbssep.
17358
17359 2007-02-05  Bruno Haible  <bruno@clisp.org>
17360
17361         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
17362         Optimize search in case of 1 delimiter.
17363
17364 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17365
17366         * lib/acl.h: Include sys/types.h before sys/acl.h.
17367
17368 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
17369
17370         Merge upstream fix for glibc bugzilla #3957:
17371
17372         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
17373
17374         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
17375         bit for RE_HAT_LISTS_NOT_NEWLINE.
17376         (build_charclass_op): Remove bogus comment.
17377
17378 2007-02-05  Simon Josefsson  <simon@josefsson.org>
17379
17380         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
17381
17382 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17383
17384         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
17385         * lib/memmem.c [!defined _LIBC]: Include config.h.
17386
17387 2007-02-04  Bruno Haible  <bruno@clisp.org>
17388
17389         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
17390         warning message.
17391
17392 2007-02-04  Bruno Haible  <bruno@clisp.org>
17393
17394         New module mbstok_r.
17395         * modules/mbstok_r: New file.
17396         * lib/mbstok_r.c: New file.
17397         * lib/string_.h (strtok_r): Change argument names to match the
17398         comments. Add a conditional link warning.
17399         (mbstok_r): New declaration.
17400         * m4/mbstok_r.m4: New file.
17401         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17402         GNULIB_MBSTOK_R.
17403         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
17404         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
17405
17406 2007-02-04  Bruno Haible  <bruno@clisp.org>
17407
17408         New module mbsspn.
17409         * modules/mbsspn: New file.
17410         * lib/mbsspn.c: New file.
17411         * lib/string_.h (strspn): Add a conditional link warning.
17412         (mbsspn): New declaration.
17413         * m4/mbsspn.m4: New file.
17414         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17415         GNULIB_MBSSPN.
17416         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
17417         * MODULES.html.sh (Internationalization functions): Add mbsspn.
17418
17419 2007-02-04  Bruno Haible  <bruno@clisp.org>
17420
17421         New module mbspbrk.
17422         * modules/mbspbrk: New file.
17423         * lib/mbspbrk.c: New file.
17424         * lib/string_.h (strpbrk): Add a conditional link warning.
17425         (mbspbrk): New declaration.
17426         * m4/mbspbrk.m4: New file.
17427         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17428         GNULIB_MBSPBRK.
17429         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
17430         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
17431
17432 2007-02-04  Bruno Haible  <bruno@clisp.org>
17433
17434         New module mbscspn.
17435         * modules/mbscspn: New file.
17436         * lib/mbscspn.c: New file.
17437         * lib/string_.h (strcspn): Add a conditional link warning.
17438         (mbscspn): New declaration.
17439         * m4/mbscspn.m4: New file.
17440         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17441         GNULIB_MBSCSPN.
17442         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
17443         * MODULES.html.sh (Internationalization functions): Add mbscspn.
17444
17445 2007-02-04  Bruno Haible  <bruno@clisp.org>
17446
17447         New module mbscasestr, reduced goal of strcasestr.
17448         * modules/mbscasestr: New file.
17449         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
17450         (mbscasestr): Renamed from strcasestr.
17451         * lib/strcasestr.c: Don't include mbuiter.h.
17452         (strcasestr): Remove support for multibyte locales.
17453         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
17454         Change the conditional link warning.
17455         (mbscasestr): New declaration.
17456         * m4/mbscasestr.m4: New file.
17457         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
17458         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
17459         REPLACE_STRCASESTR.
17460         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
17461         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17462         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17463         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
17464         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
17465         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
17466         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
17467         (Depends-on): Remove mbuiter.
17468         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
17469
17470 2007-02-04  Bruno Haible  <bruno@clisp.org>
17471
17472         Simplify handling of strncasecmp.
17473         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
17474         the conditional link warning.
17475         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
17476         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
17477         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
17478         * modules/strcase (configure.ac): Don't invoke
17479         gl_STRING_MODULE_INDICATOR.
17480         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
17481
17482 2007-02-04  Bruno Haible  <bruno@clisp.org>
17483
17484         New module mbscasecmp, reduced goal of strcasecmp.
17485         * modules/mbscasecmp: New file.
17486         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
17487         (mbscasecmp): Renamed from strcasecmp.
17488         * lib/strcasecmp.c: Don't include mbuiter.h.
17489         (strcasecmp): Remove support for multibyte locales.
17490         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
17491         Change the conditional link warning.
17492         (mbscasecmp): New declaration.
17493         * m4/mbscasecmp.m4: New file.
17494         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
17495         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
17496         REPLACE_STRCASECMP.
17497         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
17498         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17499         GNULIB_MBSCASECMP.
17500         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
17501         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
17502         * modules/strcase (Files): Remove m4/mbrtowc.m4.
17503         (Depends-on): Remove mbuiter.
17504         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
17505
17506 2007-02-04  Bruno Haible  <bruno@clisp.org>
17507
17508         New module mbsstr. Remove module strstr.
17509         * modules/mbsstr: New file.
17510         * modules/strstr: Remove file.
17511         * lib/mbsstr.c: Renamed from lib/strstr.c.
17512         (mbsstr): Renamed from strstr.
17513         * lib/string_.h (strstr): Remove declaration. Change the conditional
17514         link warning.
17515         (mbsstr): New declaration.
17516         * m4/mbsstr.m4: New file.
17517         * m4/strstr.m4: Remove file.
17518         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
17519         REPLACE_STRSTR.
17520         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
17521         Don't initialize GNULIB_STRSTR.
17522         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
17523         substitute GNULIB_STRSTR and REPLACE_STRSTR.
17524         * MODULES.html.sh (Internationalization functions): Add mbsstr.
17525         (Support for systems lacking ANSI C 89): Remove strstr.
17526
17527 2007-02-04  Bruno Haible  <bruno@clisp.org>
17528
17529         New module mbsrchr.
17530         * modules/mbsrchr: New file.
17531         * lib/mbsrchr.c: New file.
17532         * lib/string_.h (strrchr): Add a conditional link warning.
17533         (mbsrchr): New declaration.
17534         * m4/mbsrchr.m4: New file.
17535         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17536         GNULIB_MBSRCHR.
17537         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
17538         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
17539
17540 2007-02-04  Bruno Haible  <bruno@clisp.org>
17541
17542         New module mbschr.
17543         * modules/mbschr: New file.
17544         * lib/mbschr.c: New file.
17545         * lib/string_.h (strchr): Add a conditional link warning.
17546         (mbschr): New declaration.
17547         * m4/mbschr.m4: New file.
17548         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
17549         GNULIB_MBSCHR.
17550         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
17551         * MODULES.html.sh (Internationalization functions): Add mbschr.
17552
17553 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
17554
17555         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
17556
17557         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
17558
17559 2007-02-04  Bruno Haible  <bruno@clisp.org>
17560
17561         New module description section 'configure.ac-early'.
17562         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
17563         (func_get_autoconf_early_snippet): New function.
17564         (func_import, func_create_testdir): Use it. Remove special cases for
17565         modules 'extensions' and 'lock'.
17566         * modules/extensions (configure.ac-early): Require
17567         gl_USE_SYSTEM_EXTENSIONS.
17568         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
17569
17570 2007-02-04  Bruno Haible  <bruno@clisp.org>
17571
17572         Make use of gcj-4.3's -fsource and -ftarget option.
17573         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
17574         and if so try the options -fsource and -ftarget.
17575         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
17576         source_version, ftarget_option, target_version arguments.
17577         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
17578         (is_envjavac_oldgcj_14_14_usable): Renamed from
17579         is_envjavac_gcj_14_14_usable.
17580         (is_envjavac_oldgcj_14_13_usable): Renamed from
17581         is_envjavac_gcj_14_13_usable.
17582         (is_gcj_present): Update.
17583         (is_gcj_43, is_gcj43_usable): New functions.
17584         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
17585         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
17586         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
17587         try the options -fsource and -ftarget.
17588
17589 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
17590
17591         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
17592         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
17593         larger value.
17594
17595 2007-02-03  Jim Meyering  <jim@meyering.net>
17596
17597         Give tools a better chance to allocate space for very large buffers.
17598         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
17599
17600         Make pwd and readlink work also when run with an unreadable parent dir
17601         on systems with openat support.
17602         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
17603         provided getcwd function, even when we have openat support.
17604         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
17605
17606 2007-02-02  Bruno Haible  <bruno@clisp.org>
17607
17608         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
17609         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
17610         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
17611         portability problems if one of these functions is only used on specific
17612         platforms.
17613         Reported by Paul Eggert.
17614
17615 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
17616
17617         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
17618         is causing more trouble than it's curing.
17619         * lib/regex_internal.h (__mempcpy): Remove.
17620         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
17621         (and make the code a tad smaller to boot).
17622         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
17623
17624 2007-02-02  Jim Meyering  <jim@meyering.net>
17625
17626         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
17627         section, not in the Makefile.am: one.
17628
17629 2007-02-02  Eric Blake  <ebb9@byu.net>
17630
17631         * lib/strchrnul.c: Always include config.h first.
17632
17633         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
17634         gnulib strstr is not necessary here.
17635
17636 2007-02-02  Simon Josefsson  <simon@josefsson.org>
17637
17638         * m4/socklen.m4: Fix typo.
17639
17640 2007-02-02  Eric Blake  <ebb9@byu.net>
17641
17642         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
17643         * modules/netinet_in (Makefile.am): Likewise.
17644
17645 2007-02-01  Bruno Haible  <bruno@clisp.org>
17646
17647         * lib/string_.h (GL_LINK_WARNING): New macro.
17648         (strcasecmp, strstr, strcasestr): If provided by the system,
17649         conditionally define as a macro that leads to a warning instead of to
17650         an error.
17651         (strncasecmp): Conditionally define as a macro that leads to a warning.
17652
17653 2007-02-01  Karl Berry  <karl@gnu.org>
17654
17655         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
17656
17657 2007-02-01  Bruno Haible  <bruno@clisp.org>
17658
17659         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
17660         renamings.
17661
17662 2007-02-01  Eric Blake  <ebb9@byu.net>
17663
17664         * modules/regex (Depends-on): Revert dependence on mempcpy.
17665         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
17666         module's definition of mempcpy.
17667         Reported by Paul Eggert.
17668
17669 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
17670
17671         * lib/string_.h: If the gnulib module XYZ is not present, undefine
17672         the symbol XYZ before redefining it.  This fixes a problem with
17673         programs that don't use XYZ, when compiled on systems that define
17674         XYZ to something else.
17675
17676 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
17677
17678         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
17679         occurs when "mkdir -m foo" creates a setgid directory that is (1)
17680         writeable to group or other and (2) is intended to have a special
17681         mode bit that is set or cleared.  In such a case, the directory
17682         should be neither group- nor other-writeable until the special
17683         mode bits are right.
17684
17685 2007-01-31  Eric Blake  <ebb9@byu.net>
17686
17687         * modules/mountlist (Depends-on): Add strstr.
17688
17689         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
17690         bug.
17691         * modules/string (Makefile.am): Remove redundant replacement.
17692         * modules/regex (Depends-on): Add mempcpy.
17693
17694 2007-01-31  Bruno Haible  <bruno@clisp.org>
17695
17696         New module description field 'Link'.
17697         * gnulib-tool (func_usage): Document --extract-link-directive.
17698         (sed_extract_prog): Recognize 'Link' directive.
17699         (func_get_link_directive): New function.
17700         (func_import): Show summary of link directives.
17701         Handle --extract-link-directive option.
17702         * modules/acl (Link): New section.
17703         * modules/clock-time (Link): New section.
17704         * modules/euidaccess (Link): New section.
17705         * modules/gettext (Link): New section.
17706         * modules/iconv (Link): New section.
17707         * modules/lock (Link): New section.
17708         * modules/nanosleep (Link): New section.
17709         * modules/readline (Link): New section.
17710
17711 2007-01-27  Bruno Haible  <bruno@clisp.org>
17712
17713         Enforce the use of gnulib modules for unportable <string.h> functions.
17714         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
17715         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
17716         (gl_HEADER_STRING_H_BODY): Require it.
17717         * lib/string_.h: If the gnulib module XYZ is not present, redefine
17718         the symbol XYZ to one that gives a link error.
17719         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
17720         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
17721         * modules/mempcpy (configure.ac): Likewise.
17722         * modules/memrchr (configure.ac): Likewise.
17723         * modules/stpcpy (configure.ac): Likewise.
17724         * modules/stpncpy (configure.ac): Likewise.
17725         * modules/strcase (configure.ac): Likewise.
17726         * modules/strcasestr (configure.ac): Likewise.
17727         * modules/strchrnul (configure.ac): Likewise.
17728         * modules/strdup (configure.ac): Likewise.
17729         * modules/strndup (configure.ac): Likewise.
17730         * modules/strnlen (configure.ac): Likewise.
17731         * modules/strpbrk (configure.ac): Likewise.
17732         * modules/strsep (configure.ac): Likewise.
17733         * modules/strstr (configure.ac): Likewise.
17734         * modules/strtok_r (configure.ac): Likewise.
17735
17736 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
17737
17738         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
17739
17740 2007-01-30  Jim Meyering  <jim@meyering.net>
17741
17742         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
17743
17744 2007-01-29  Bruno Haible  <bruno@clisp.org>
17745
17746         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
17747         * lib/execute.c: Likewise.
17748         * lib/pipe.c: Likewise.
17749         * lib/printf-args.h: Likewise.
17750         * lib/printf-args.c: Likewise.
17751         * lib/printf-parse.c: Likewise.
17752         * lib/vasnprintf.c: Likewise.
17753
17754 2007-01-29  Eric Blake  <ebb9@byu.net>
17755
17756         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
17757         declaration.
17758
17759 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
17760
17761         * lib/strptime.h (strptime): Use 'restrict' for args where
17762         POSIX requires this.
17763         * lib/strptime.c (strptime): Likewise.
17764         Change license notice from LGPL to GPL, since gnulib-tool will
17765         change this as needed.
17766         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
17767         defined.
17768         Include "strptime.h" first, to check interface.
17769         Do not #undef _LIBC and _NL_CURRENT.
17770         Do not include <stdlib.h>; no longer needed.
17771         Include "time_r.h" and declare ptime_locale_status
17772         only if _LIBC is not defined.
17773         (__P): Remove unused macro.
17774         (match_string): Bring back glibc version, but use it only if _LIBC
17775         is defined.
17776         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
17777         Remove unnecessary assertion and abort() call.
17778         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
17779         * m4/strptime.m4: Fix serial number comment.
17780         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
17781         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
17782         (Depends-on): Add time_r.
17783
17784 2007-01-29  Bruno Haible  <bruno@clisp.org>
17785
17786         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17787         strptime.
17788         * modules/strptime (Depends-on): Add stdbool.
17789         * lib/strptime.h: Include <time.h> always. Add comments.
17790
17791 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
17792
17793         * modules/strptime: New file.
17794         * lib/strptime.h: New file.
17795         * lib/strptime.c: New file.
17796         * m4/strptime.m4: New file.
17797
17798 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
17799
17800         * MODULES.html.sh: New module mpsort.
17801         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
17802
17803         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
17804         a circularity problem with HP-UX ia64 reported by Bob Proulx in
17805         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
17806         All uses changed.
17807         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
17808         All uses changed.
17809         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
17810         to _Restrict_.
17811         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
17812         the parameter matches the prototype.
17813
17814 2007-01-28  Jim Meyering  <jim@meyering.net>
17815
17816         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
17817         sys/time.h here, reverting that part of the previous patch:
17818         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
17819
17820 2007-01-28  Bruno Haible  <bruno@clisp.org>
17821
17822         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
17823         value of $(SYS_TIME_H).
17824         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
17825         remove it conditionally, too. [added by Jim Meyering]
17826         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
17827         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
17828         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
17829         GETTIMEOFDAY_REPLACEMENT to 1.
17830
17831 2007-01-28  Bruno Haible  <bruno@clisp.org>
17832
17833         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
17834         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
17835         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
17836         Set UNISTD_H instead of UNISTD_H2.
17837         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
17838
17839 2007-01-28  Bruno Haible  <bruno@clisp.org>
17840
17841         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
17842         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
17843
17844 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17845
17846         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
17847         (func_create_testdir): Ensure C locale for `grep' and `tr'
17848         character ranges.
17849         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
17850         ACLOCAL_AMFLAGS parsing state machine.
17851
17852 2007-01-27  Bruno Haible  <bruno@clisp.org>
17853
17854         * modules/unistr/base: Update.
17855
17856 2007-01-27  Bruno Haible  <bruno@clisp.org>
17857
17858         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
17859         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
17860         * modules/unistr/u32-mbtouc-unsafe: Renamed from
17861         modules/unistr/u32-mbtouc.
17862         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
17863         * lib/unistr.h: Update.
17864         * lib/linebreak.c: Update.
17865         * modules/unistr/u32-mbtouc: Renamed from
17866         modules/unistr/u32-mbtouc-safe.
17867         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
17868         * lib/unistr.h: Update.
17869         * lib/unistr/u32-to-u8.c: Update.
17870         * lib/unistr/u32-to-u16.c: Update.
17871
17872 2007-01-27  Bruno Haible  <bruno@clisp.org>
17873
17874         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
17875         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
17876         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
17877         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
17878         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
17879         * modules/unistr/u16-mbtouc-unsafe: Renamed from
17880         modules/unistr/u16-mbtouc.
17881         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
17882         * lib/unistr.h: Update.
17883         * lib/linebreak.c: Update.
17884         * modules/linebreak: Update.
17885         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
17886         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
17887         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
17888         * modules/unistr/u16-mbtouc: Renamed from
17889         modules/unistr/u16-mbtouc-safe.
17890         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
17891         * lib/unistr.h: Update.
17892         * lib/unistr/u16-to-u8.c: Update.
17893         * modules/unistr/u16-to-u8: Update.
17894         * lib/unistr/u16-to-u32.c: Update.
17895         * modules/unistr/u16-to-u32: Update.
17896
17897 2007-01-27  Bruno Haible  <bruno@clisp.org>
17898
17899         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
17900         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
17901         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
17902         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
17903         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
17904         * modules/unistr/u8-mbtouc-unsafe: Renamed from
17905         modules/unistr/u8-mbtouc.
17906         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
17907         * lib/unistr.h: Update.
17908         * lib/striconveh.c: Update.
17909         * modules/striconveh: Update.
17910         * lib/linebreak.c: Update.
17911         * modules/linebreak: Update.
17912         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
17913         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
17914         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
17915         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
17916         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
17917         * lib/unistr.h: Update.
17918         * lib/striconveh.c: Update.
17919         * modules/striconveh: Update.
17920         * lib/unistr/u8-to-u16.c: Update.
17921         * modules/unistr/u8-to-u16: Update.
17922         * lib/unistr/u8-to-u32.c: Update.
17923         * modules/unistr/u8-to-u32: Update.
17924
17925 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17926
17927         Sync from Libtool.
17928         * lib/argz.c: Do not include strings.h nor memory.h, include
17929         string.h unconditionally.  Patch by Simon Josefsson.
17930
17931 2007-01-27  Bruno Haible  <bruno@clisp.org>
17932
17933         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
17934         from gl_HEADER_STRING_H_BODY.
17935         (gl_HEADER_STRING_H_BODY): Require it.
17936         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
17937         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
17938         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
17939         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
17940         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
17941         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
17942         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17943         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
17944         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
17945         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
17946         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
17947         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
17948         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
17949         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17950         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
17951
17952 2007-01-27  Bruno Haible  <bruno@clisp.org>
17953
17954         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
17955         check_PROGRAMS into noinst_PROGRAMS.
17956         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
17957         check_PROGRAMS in this case.
17958         (func_import): Set for_test to false.
17959         (func_create_testdir): Set for_test to true.
17960
17961 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
17962             Bruno Haible  <bruno@clisp.org>
17963
17964         * modules/strcasestr (Files): Remove lib/strcasestr.h.
17965         (Depends-on): Add string.
17966         (Includes): Use <string.h> instead of strcasestr.h.
17967         * modules/string (Makefile.am): Also substitute the value of
17968         REPLACE_STRCASESTR.
17969         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
17970         assume strcasestr is declared in <string.h> not <strings.h>. Also
17971         set REPLACE_STRCASESTR.
17972         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
17973         REPLACE_STRCASESTR.
17974         * lib/strcasestr.h: Remove file.
17975         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
17976         * lib/string_.h (strcasestr): New declaration.
17977
17978 2007-01-27  Bruno Haible  <bruno@clisp.org>
17979
17980         * lib/string_.h: Use 'extern'.
17981
17982 2007-01-27  Jim Meyering  <jim@meyering.net>
17983
17984         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
17985         of set-but-not-used local, "q".
17986
17987         * lib/mempcpy.c: Include <config.h> before <string.h>.
17988         This fixes a compilation error on HP-UX, due to the system's
17989         "restrict"-using mempcpy prototype.
17990
17991 2007-01-26  Bruno Haible  <bruno@clisp.org>
17992
17993         Small optimization.
17994         * lib/javacomp.c: Include c-strstr.h.
17995          (is_envjavac_gcj): Use c_strstr instead of strstr.
17996         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
17997
17998 2007-01-26  Bruno Haible  <bruno@clisp.org>
17999
18000         * MODULES.html.sh (Unicode string functions): Add the new modules.
18001
18002         * modules/uniconv/u32-strconv-to-locale: New file.
18003         * lib/uniconv/u32-strconv-to-locale.c: New file.
18004
18005         * modules/uniconv/u16-strconv-to-locale: New file.
18006         * lib/uniconv/u16-strconv-to-locale.c: New file.
18007
18008         * modules/uniconv/u8-strconv-to-locale: New file.
18009         * lib/uniconv/u8-strconv-to-locale.c: New file.
18010
18011         * modules/uniconv/u32-strconv-from-locale: New file.
18012         * lib/uniconv/u32-strconv-from-locale.c: New file.
18013
18014         * modules/uniconv/u16-strconv-from-locale: New file.
18015         * lib/uniconv/u16-strconv-from-locale.c: New file.
18016
18017         * modules/uniconv/u8-strconv-from-locale: New file.
18018         * lib/uniconv/u8-strconv-from-locale.c: New file.
18019
18020         * modules/uniconv/u32-strconv-to-enc: New file.
18021         * lib/uniconv/u32-strconv-to-enc.c: New file.
18022         * modules/uniconv/u32-strconv-to-enc-tests: New file.
18023         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
18024
18025         * modules/uniconv/u16-strconv-to-enc: New file.
18026         * lib/uniconv/u16-strconv-to-enc.c: New file.
18027         * lib/uniconv/u-strconv-to-enc.h: New file.
18028         * modules/uniconv/u16-strconv-to-enc-tests: New file.
18029         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
18030
18031         * modules/uniconv/u8-strconv-to-enc: New file.
18032         * lib/uniconv/u8-strconv-to-enc.c: New file.
18033         * modules/uniconv/u8-strconv-to-enc-tests: New file.
18034         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
18035
18036         * modules/uniconv/u32-strconv-from-enc: New file.
18037         * lib/uniconv/u32-strconv-from-enc.c: New file.
18038         * modules/uniconv/u32-strconv-from-enc-tests: New file.
18039         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
18040
18041         * modules/uniconv/u16-strconv-from-enc: New file.
18042         * lib/uniconv/u16-strconv-from-enc.c: New file.
18043         * modules/uniconv/u16-strconv-from-enc-tests: New file.
18044         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
18045
18046         * modules/uniconv/u8-strconv-from-enc: New file.
18047         * lib/uniconv/u8-strconv-from-enc.c: New file.
18048         * lib/uniconv/u-strconv-from-enc.h: New file.
18049         * modules/uniconv/u8-strconv-from-enc-tests: New file.
18050         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
18051
18052         * modules/uniconv/u32-conv-from-enc: New file.
18053         * lib/uniconv/u32-conv-from-enc.c: New file.
18054         * modules/uniconv/u32-conv-from-enc-tests: New file.
18055         * tests/uniconv/test-u32-conv-from-enc.c: New file.
18056
18057         * modules/uniconv/u16-conv-from-enc: New file.
18058         * lib/uniconv/u16-conv-from-enc.c: New file.
18059         * lib/uniconv/u-conv-from-enc.h: New file.
18060         * modules/uniconv/u16-conv-from-enc-tests: New file.
18061         * tests/uniconv/test-u16-conv-from-enc.c: New file.
18062
18063         * modules/uniconv/u8-conv-from-enc: New file.
18064         * lib/uniconv/u8-conv-from-enc.c: New file.
18065         * modules/uniconv/u8-conv-from-enc-tests: New file.
18066         * tests/uniconv/test-u8-conv-from-enc.c: New file.
18067
18068         * modules/uniconv/base: New file.
18069         * lib/uniconv.h: New file.
18070
18071 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
18072
18073         * doc/gnulib-tool.texi (Initial import): Update to match current
18074         behavior with strdup module.
18075         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
18076         * lib/memmem.h: Remove; all uses removed.  This is now done
18077         by <string.h>.
18078         * lib/mempcpy.h: Likewise.
18079         * lib/memrchr.h: Likewise.
18080         * lib/stpcpy.h: Likewise.
18081         * lib/stpncpy.h: Likewise.
18082         * lib/strcase.h: Likewise.
18083         * lib/strchrnul.h: Likewise.
18084         * lib/strdup.h: Likewise.
18085         * lib/strndup.h: Likewise.
18086         * lib/strnlen.h: Likewise.
18087         * lib/strpbrk.h: Likewise.
18088         * lib/strsep.h: Likewise.
18089         * lib/strstr.h: Likewise.
18090         * lib/strtok_r.h: Likewise.
18091         * lib/string_.h: New file.
18092         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
18093         Rely on <string.h> instead.
18094         * lib/canon-host.c: Likewise.
18095         * lib/chdir-long.c: Likewise.
18096         * lib/concatpath.c: Likewise.
18097         * lib/exclude.c: Likewise.
18098         * lib/fchdir.c: Likewise.
18099         * lib/getaddrinfo.c: Likewise.
18100         * lib/getcwd.c: Likewise.
18101         * lib/getsubopt.c: Likewise.
18102         * lib/glob.c: Likewise.
18103         * lib/hard-locale.c: Likewise.
18104         * lib/iconvme.c: Likewise.
18105         * lib/javacomp.c: Likewise.
18106         * lib/mempcpy.c: Likewise.
18107         * lib/memrchr.c: Likewise.
18108         * lib/regex_internal.h: Likewise.
18109         * lib/stpncpy.c: Likewise.
18110         * lib/strcasecmp.c: Likewise.
18111         * lib/strchrnul.c: Likewise.
18112         * lib/strdup.c: Likewise.
18113         * lib/striconv.c: Likewise.
18114         * lib/striconveh.c: Likewise.
18115         * lib/striconveha.c: Likewise.
18116         * lib/strncasecmp.c: Likewise.
18117         * lib/strndup.c: Likewise.
18118         * lib/strnlen.c: Likewise.
18119         * lib/strsep.c: Likewise.
18120         * lib/strstr.c: Likewise.
18121         * lib/strtok_r.c: Likewise.
18122         * lib/userspec.c: Likewise.
18123         * lib/w32spawn.h: Likewise.
18124         * lib/xstrndup.c: Likewise.
18125         * lib/mountlist.c (strstr): Remove decl.
18126         * m4/string_h.m4: New file.
18127         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
18128         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
18129         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
18130         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
18131         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
18132         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
18133         Set REPLACE_STRCASECMP if necessary.
18134         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
18135         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
18136         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
18137         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
18138         HAVE_DECL_STRDUP if necessary.
18139         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
18140         since gl_FUNC_STRNDUP does that now.
18141         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
18142         Check for decl here...
18143         (gl_PREREQ_STRNLEN): ... not here.
18144         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
18145         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
18146         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
18147         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
18148         necessary.
18149         * modules/string: New file.
18150         * modules/memmem (Files): Remove special-purpose include file.
18151         (Depends-on): Add string.
18152         (Include): Include <string.h>, not the removed file.
18153         * modules/mempcpy: Likewise.
18154         * modules/memrchr: Likewise.
18155         * modules/stpcpy: Likewise.
18156         * modules/stpncpy: Likewise.
18157         * modules/strcase: Likewise.
18158         * modules/strchrnul: Likewise.
18159         * modules/strdup: Likewise.
18160         * modules/strndup: Likewise.
18161         * modules/strnlen: Likewise.
18162         * modules/strpbrk: Likewise.
18163         * modules/strsep: Likewise.
18164         * modules/strstr: Likewise.
18165         * modules/strtok_r: Likewise.
18166         * tests/test-dirname.c: Don't include "strdup.h", since
18167         <string.h> now suffices.
18168         * tests/test-memmem.c: Don't include "memmem.h", since
18169         <string.h> now suffices.
18170
18171 2007-01-25  Bruno Haible  <bruno@clisp.org>
18172
18173         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
18174         *resultp is 0.
18175
18176         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
18177         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
18178         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
18179         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
18180
18181         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
18182         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
18183         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
18184         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
18185         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
18186         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
18187
18188 2007-01-24  Bruno Haible  <bruno@clisp.org>
18189
18190         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
18191         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
18192         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
18193         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
18194         gl_FUNC_FTS_CORE.
18195         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
18196         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
18197         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
18198         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
18199         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
18200         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
18201         gl_FUNC_FCHOWNAT.
18202         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
18203         gl_FUNC_STRFTIME.
18204         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
18205         Reported by Ralf Wildenhues.
18206
18207 2007-01-24  Bruno Haible  <bruno@clisp.org>
18208
18209         Drop AC_REQUIRE calls that are redundant with the module dependencies.
18210         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
18211         gl_GETADDRINFO.
18212         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
18213         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
18214         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
18215
18216 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
18217
18218         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
18219         Don't use 'exit'; just return from 'main'.
18220         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
18221
18222         * lib/fnmatch_.h: Readjust white space and comments to match
18223         glibc, to avoid spurious diffs.
18224
18225 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18226
18227         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
18228         2004-12-01 change by Jakub Jelinek, since this code won't compile
18229         if !LIBC.  Problem reported by Bob Proulx.
18230
18231 2007-01-23  Bruno Haible  <bruno@clisp.org>
18232
18233         * lib/striconveh.c: Include c-strcaseeq.h.
18234         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
18235         * modules/striconveh (Depends-on): Add c-strcaseeq.
18236
18237 2007-01-23  Bruno Haible  <bruno@clisp.org>
18238
18239         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
18240
18241         * modules/c-strcaseeq: New file.
18242         * lib/c-strcaseeq.h: New file.
18243
18244         * modules/streq: New file.
18245         * lib/streq.h: New file.
18246
18247 2007-01-23  Bruno Haible  <bruno@clisp.org>
18248
18249         * modules/striconveha-tests: New file.
18250         * tests/test-striconveha.c: New file.
18251
18252         * lib/striconveha.h: Include <stdbool.h>.
18253         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
18254         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
18255         (mem_iconveha_notranslit): Renamed from mem_iconveha.
18256         (mem_iconveha): New function.
18257         (str_iconveha_notranslit): Renamed from str_iconveha.
18258         (str_iconveha): New function.
18259         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
18260         c-strcase.
18261
18262 2007-01-23  Bruno Haible  <bruno@clisp.org>
18263
18264         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
18265         encodings without forgiving before trying any encoding with handler.
18266         (str_iconveha): Try all encodings without forgiving before trying any
18267         encoding with handler.
18268
18269 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18270
18271         Import the following changes from libc.
18272
18273         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
18274
18275         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
18276
18277         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
18278
18279         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
18280         normal_bracket label.
18281
18282         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
18283
18284         [BZ #361]
18285         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
18286         to normal_bracket after fetching the next character.
18287
18288 2007-01-22  Bruno Haible  <bruno@clisp.org>
18289
18290         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
18291         argument.
18292         * lib/striconveh.c (iconv_carefully_1): New function.
18293         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
18294         argument.
18295         (str_cd_iconveh): Update.
18296         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
18297         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
18298         * tests/test-striconveh.c (MAGIC): New macro.
18299         (new_offsets): New function.
18300         (main): Test call with and without offsets.
18301
18302 2007-01-22  Bruno Haible  <bruno@clisp.org>
18303
18304         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
18305         * modules/sys_select (Makefile.am): Likewise.
18306         * modules/sys_socket (Makefile.am): Likewise.
18307         * modules/sys_time (Makefile.am): Likewise.
18308
18309 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
18310
18311         * modules/gettimeofday (License): Change from GPL to LGPL, since
18312         gettimeofday is a library function.
18313
18314 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18315
18316         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
18317
18318 2007-01-21  Bruno Haible  <bruno@clisp.org>
18319
18320         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
18321
18322 2007-01-21  Bruno Haible  <bruno@clisp.org>
18323
18324         * modules/striconveha: New file.
18325         * lib/striconveha.h: New file.
18326         * lib/striconveha.c: New file.
18327         * MODULES.html.sh (Internationalization functions): Add striconveha.
18328         * lib/striconv.c (str_iconv): Optimize the case of an empty input
18329         string.
18330         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
18331
18332 2007-01-21  Bruno Haible  <bruno@clisp.org>
18333
18334         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
18335         * lib/striconveh.c (str_iconveh): Likewise.
18336
18337 2007-01-21  Bruno Haible  <bruno@clisp.org>
18338
18339         * lib/striconveh.h (mem_iconveh): New declaration.
18340         * lib/striconveh.c (mem_iconveh): New function.
18341         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
18342
18343 2007-01-21  Bruno Haible  <bruno@clisp.org>
18344
18345         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
18346
18347         * lib/striconveh.h (mem_cd_iconveh): Change specification.
18348         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
18349         original result buffer.
18350         (str_cd_iconveh): Update.
18351         * tests/test-striconveh.c (main): Update.
18352
18353         * lib/striconv.h (mem_cd_iconv): Change specification.
18354         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
18355         result buffer.
18356         (str_cd_iconv): Update.
18357         * tests/test-striconv.c (main): Update.
18358
18359 2007-01-21  Bruno Haible  <bruno@clisp.org>
18360
18361         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
18362
18363 2007-01-20  Jim Meyering  <jim@meyering.net>
18364
18365         * lib/userspec.c (parse_with_separator): If a user or group string
18366         starts with "+", skip the corresponding name-to-ID look-up, since
18367         such a look-up must fail: user and group names may not include "+".
18368
18369 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
18370
18371         * lib/poll.c: Include sys/time.h and time.h unconditionally,
18372         since we now assume the sys_time module.
18373         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
18374         check for sys/time.h; no longer needed.
18375         * modules/poll (Depends-on): Depend on sys_time.
18376
18377 2007-01-18  Bruno Haible  <bruno@clisp.org>
18378
18379         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
18380         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18381
18382         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
18383         gettimeofday.
18384
18385         * tests/test-gettimeofday.c: Include <time.h>.
18386         (dummy): Remove variable.
18387
18388         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
18389         gl_HEADER_SYS_TIME_H.
18390         (gl_HEADER_SYS_TIME_H): New macro.
18391
18392         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
18393         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18394         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
18395         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
18396         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18397         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
18398         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
18399         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18400         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
18401         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
18402         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18403
18404         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
18405         last change; it caused a compilation error when cross-compiling to
18406         Cygwin.
18407
18408 2007-01-18  Jim Meyering  <jim@meyering.net>
18409
18410         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
18411         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
18412         than the race-prone "test -d sys || mkdir sys".
18413         (configure.ac): Use AC_PROG_MKDIR_P.
18414         * modules/sys_select: Likewise.
18415         * modules/sys_socket: Likewise.
18416         * modules/sys_time: Likewise.
18417
18418 2007-01-18  Eric Blake  <ebb9@byu.net>
18419
18420         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
18421         replace gettimeofday.
18422         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
18423         name, to avoid infinite recursion.
18424
18425 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
18426
18427         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
18428         module sys_time.
18429         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
18430         assume timespec.h defines struct timeval.
18431         * lib/settime.c: Likewise.
18432         * lib/utimens.c: Likewise.
18433         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
18434         since we now assume the gettimeofday module.
18435         * lib/tempname.c (__gen_tempname): Likewise.
18436         * lib/gettimeofday.h: Remove.
18437         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
18438         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
18439         Include <time.h>, for 'time()'.
18440         (localtime_buffer_addr): Also use this workaround if
18441         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
18442         to simplify the uses.  All uses changed.
18443         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
18444         that #undef is inside {}, and 'const' follows type name consistently.
18445         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
18446         (gettimeofday): Do not use the maximum possible value for
18447         tv->tv_usec, since that might break usages other than ls.c.
18448         Instead, we'll leave ls.c alone.  This undoes today's patch
18449         by Bruno.  Add a compile-time warning for 1s-clock resolution;
18450         we've never observed the problem but might as well keep the
18451         canary.
18452         * lib/nanosleep.c: Include timespec.h first, for interface check.
18453         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
18454         now assume the sys_time module.
18455         * lib/tempname.c: Likewise.
18456         * lib/timespec.h: Likewise.
18457         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
18458         needed.
18459         * lib/strftime.c: Likewise.
18460         * lib/timespec.h: Likewise.
18461         * lib/posixtm.c: Include posixtm.h first, for interface check.
18462         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
18463         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
18464         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
18465         * lib/sys_time_.h: New file.
18466         * lib/timespec.h (struct timespec): Use long int, not long.
18467         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
18468         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
18469         Remove obsolescent call to AC_HEADER_TIME.
18470         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
18471         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
18472         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
18473         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
18474         Likewise.
18475         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
18476         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
18477         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
18478         into the sys_time module.  Check for gettimeofday just once.
18479         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
18480         for gettimeofday signature to just check the signature.  Merely
18481         compile it, since linking doesn't test signature.  Improve test for
18482         whether gettimeofday.o is actually needed.
18483         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
18484         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
18485         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
18486         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18487         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
18488         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
18489         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
18490         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
18491         than worrying about sys/time.h.
18492         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
18493         Don't bother worrying about TIME_WITH_SYS_TIME.
18494         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
18495         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
18496         * m4/sys_time_h.m4: New file.
18497         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
18498         Don't include sys/time.h.  Return from main rather than exiting.
18499         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
18500         all uses changed.
18501         * modules/gethrxtime (Depends-on): Add sys_time.
18502         * modules/gettime (Depends-on): Likewise.
18503         * modules/gettimeofday (Depends-on): Likewise.
18504         * modules/nanosleep (Depends-on): Likewise.
18505         * modules/settime (Depends-on): Likewise.
18506         * modules/tempname (Depends-on): Likewise.
18507         * modules/utimens (Depends-on): Likewise.
18508         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
18509         (Include:) Change back to <sys/time.h>.
18510         (Maintainer:) Add self.
18511         * modules/sys_time: New file.
18512         * modules/tempname (Depends-on): Add gettimeofday.
18513         * tests/test-gettimeofday.c: Include <sys/time.h>
18514         rather than gettimeofday.h.
18515
18516 2007-01-17  Bruno Haible  <bruno@clisp.org>
18517
18518         * gnulib-tool (func_get_license): Revert last patch. Instead, let
18519         the license default to GPL.
18520         (func_create_testdir): Don't complain if a module is LGPL and its
18521         tests module depends on GPLed modules.
18522
18523 2007-01-17  Bruno Haible  <bruno@clisp.org>
18524
18525         * lib/gettimeofday.c (gettimeofday): Add code for the case
18526         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
18527         maximum possible value for tv->tv_usec, rather than the minimum one.
18528
18529 2005-10-08  Martin Lambers  <marlam@marlam.de>
18530 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
18531 2007-01-16  Bruno Haible  <bruno@clisp.org>
18532
18533         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
18534         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
18535         gl_FUNC_GETTIMEOFDAY.
18536         (Include): Add gettimeofday.h.
18537         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
18538         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
18539         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
18540         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
18541         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
18542         * lib/gettimeofday.h: New file.
18543         * lib/gettimeofday.c: Include <sys/timeb.h>.
18544         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
18545         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
18546         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
18547         fall back on time().
18548
18549         * tests/test-gettimeofday.c: New file.
18550         * modules/gettimeofday-tests: New file.
18551
18552 2007-01-16  Eric Blake  <ebb9@byu.net>
18553
18554         * modules/fnmatch (Depends-on): Depend on wchar.
18555         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
18556         * m4/fnmatch.m4: Likewise.
18557         * modules/mbchar (Makefile.am): Assume <wchar.h>.
18558         * m4/mbchar.m4: Likewise.
18559         * modules/mbswidth (Depends-on): Depend on wchar.
18560         * lib/mbswidth.c: Assume <wchar.h>.
18561         * m4/mbswidth.m4: Likewise.
18562         * modules/quotearg (Depends-on): Depend on wchar.
18563         * lib/quotearg.c: Assume <wchar.h>.
18564         * m4/quotearg.m4: Likewise.
18565         * modules/regex (Depends-on): Depend on wchar.
18566         * lib/regex_internal.h: Assume <wchar.h>.
18567         * m4/regex.m4: Likewise.
18568         * modules/stdint (Depends-on): Depend on wchar.
18569         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
18570         * m4/stdint.m4: Likewise.
18571         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
18572         * modules/strftime (Depends-on): Depend on wchar.
18573         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
18574         * modules/strtol (Depends-on): Depend on wchar.
18575         * lib/strtol.c: Assume <wchar.h>.
18576         * modules/wcwidth (Depends-on): Depend on wchar.
18577         * lib/wcwidth.h: Assume <wchar.h>.
18578         * m4/wcwidth.m4: Likewise.
18579
18580 2007-01-16  Bruno Haible  <bruno@clisp.org>
18581
18582         * modules/csharpexec-script: New, created from...
18583         * modules/csharpexec: ... this.
18584
18585 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
18586
18587         * modules/javaexec-script: New, created from...
18588         * modules/javaexec: ... this.
18589
18590 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18591
18592         * modules/poll (Dependencies): Add sys_select.
18593
18594 2007-01-15  Jim Meyering  <jim@meyering.net>
18595
18596         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
18597         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
18598         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
18599         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
18600
18601 2007-01-15  Bruno Haible  <bruno@clisp.org>
18602
18603         * modules/striconveh: New file.
18604         * lib/striconveh.h: New file.
18605         * lib/striconveh.c: New file.
18606         * MODULES.html.sh (Internationalization functions): Add striconveh.
18607
18608         * modules/striconveh-tests: New file.
18609         * tests/test-striconveh.c: New file.
18610
18611 2007-01-15  Bruno Haible  <bruno@clisp.org>
18612
18613         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
18614         not from GNU libiconv or GNU libc.
18615
18616 2007-01-15  Bruno Haible  <bruno@clisp.org>
18617
18618         * doc/gnulib-intro.texi (Copyright): Explain the different license
18619         terms for module descriptions, autoconf macros, tests, documentation.
18620
18621 2007-01-14  Bruno Haible  <bruno@clisp.org>
18622
18623         * modules/striconv-tests: New file.
18624         * tests/test-striconv.c: New file.
18625
18626 2007-01-14  Bruno Haible  <bruno@clisp.org>
18627
18628         * modules/iconv-tests: New file.
18629         * tests/test-iconv.c: New file.
18630
18631 2007-01-14  Bruno Haible  <bruno@clisp.org>
18632
18633         * gnulib-tool (func_get_license): For test modules, use the license of
18634         the main module.
18635
18636 2007-01-14  Bruno Haible  <bruno@clisp.org>
18637
18638         * modules/iconv (Include): Clarify that <iconv.h> can only be included
18639         if iconv is found to exist.
18640
18641 2007-01-14  Bruno Haible  <bruno@clisp.org>
18642
18643         * modules/c-ctype-tests: New file.
18644         * tests/test-c-ctype.c: New file.
18645
18646 2007-01-14  Bruno Haible  <bruno@clisp.org>
18647
18648         * modules/binary-io-tests: New file.
18649         * tests/test-binary-io.sh: New file.
18650         * tests/test-binary-io.c: New file.
18651
18652 2007-01-14  Bruno Haible  <bruno@clisp.org>
18653
18654         * modules/array-oset-tests: New file.
18655         * tests/test-array_oset.c: New file.
18656
18657 2007-01-14  Bruno Haible  <bruno@clisp.org>
18658
18659         * modules/array-list-tests: New file.
18660         * tests/test-array_list.c: New file.
18661
18662 2007-01-14  Bruno Haible  <bruno@clisp.org>
18663
18664         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
18665         and make.
18666         Reported by Simon Josefsson in
18667         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
18668
18669 2007-01-14  Bruno Haible  <bruno@clisp.org>
18670
18671         * modules/allocsa-tests: New file.
18672         * tests/test-allocsa.c: New file.
18673
18674 2007-01-14  Bruno Haible  <bruno@clisp.org>
18675
18676         * modules/fchdir (Depends-on): Add absolute-header.
18677         * modules/unistd (Depends-on): Likewise.
18678
18679 2006-12-30  Bruno Haible  <bruno@clisp.org>
18680
18681         * modules/fchdir: New file.
18682         * modules/unistd (Files): Add lib/unistd_.h.
18683         (Makefile.am): Generate unistd.h from unistd_.h.
18684         * lib/fchdir.c: New file.
18685         * lib/dirent_.h: New file.
18686         * lib/unistd_.h: New file.
18687         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
18688         * m4/fchdir.m4: New file.
18689         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
18690         (gl_HEADER_UNISTD): Invoke it.
18691         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
18692         function.
18693         * lib/backupfile.c (opendir, closedir): Undefine.
18694         * lib/chown.c (open, close): Undefine.
18695         * lib/clean-temp.c (open, close): Undefine.
18696         * lib/copy-file.c (open, close): Undefine.
18697         * lib/execute.c (open, close): Undefine.
18698         * lib/fsusage.c (open, close): Undefine.
18699         * lib/gc-gnulib.c (open, close): Undefine.
18700         * lib/getcwd.c (opendir, closedir): Undefine.
18701         * lib/glob.c (opendir, closedir): Undefine.
18702         * lib/javacomp.c (open, close): Undefine.
18703         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
18704         * lib/openat-proc.c (open, close): Undefine.
18705         * lib/pagealign_alloc.c (open, close): Undefine.
18706         * lib/pipe.c (open, close): Undefine.
18707         * lib/progreloc.c (open, close): Undefine.
18708         * lib/savedir.c (opendir, closedir): Undefine.
18709         * lib/utime.c (open, close): Undefine.
18710         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
18711
18712 2007-01-10  Bruno Haible  <bruno@clisp.org>
18713
18714         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
18715
18716 2007-01-12  Eric Blake  <ebb9@byu.net>
18717
18718         Provide a robust <wchar.h>.  Further simplifications are now
18719         possible in other modules, but not included here.
18720         * modules/wchar: New module.
18721         * m4/wchar.m4: New file.
18722         * lib/wchar_.h: Likewise.
18723         * modules/mbchar (Depends-on): Depend on wchar, as the first use
18724         of the new module.
18725         * MODULES.html.sh (Extended multibyte and wide character utilities):
18726         New section.
18727
18728 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
18729
18730         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
18731         to a reasonable default for memory allocation.
18732         (xreadlink): Don't allocate a huge buffer, to work around a buggy
18733         file system that reports garbage st_size values for symlinks.
18734         Problem reported by Liyang Hu.
18735
18736 2007-01-11  Simon Josefsson  <simon@josefsson.org>
18737
18738         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
18739         Emacs .#* auto-save files).
18740
18741 2007-01-11  Bruno Haible  <bruno@clisp.org>
18742
18743         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
18744         directory.
18745
18746 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
18747
18748         Use @...@ consistently in lib/wctype_.h.
18749         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
18750         on it being set to 1 or 0.
18751         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
18752         go back to AC_SUBSTing it.
18753         * modules/wctype (Makefile.am): Undo previous change.
18754
18755 2007-01-10  Eric Blake  <ebb9@byu.net>
18756
18757         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
18758         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
18759         * modules/wctype (Makefile.am): Likewise.
18760         Reported by Chris McGuire.
18761
18762 2007-01-10  Jim Meyering  <jim@meyering.net>
18763
18764         fts.c: a small readability/maintainability improvement
18765         * lib/fts.c (fts_read): Make this code slightly more readable and
18766         maintainable by hoisting the "sp->fts_cur = p" assignments to
18767         immediately follow the statements that set P.  Derived from
18768         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
18769
18770 2007-01-10  Eric Blake  <ebb9@byu.net>
18771
18772         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
18773         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
18774         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
18775         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18776         Reported by Chris McGuire.
18777
18778 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18779
18780         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
18781         in sed script.
18782
18783 2007-01-09  Bruno Haible  <bruno@clisp.org>
18784
18785         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
18786         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
18787         variables.
18788         (func_module): Use them.
18789
18790 2007-01-09  Bruno Haible  <bruno@clisp.org>
18791
18792         * modules/unistr/base: New file.
18793         * lib/unistr.h: New file.
18794
18795         * modules/unistr/u8-to-u16: New file.
18796         * lib/unistr/u8-to-u16.c: New file.
18797
18798         * modules/unistr/u8-to-u32: New file.
18799         * lib/unistr/u8-to-u32.c: New file.
18800
18801         * modules/unistr/u16-to-u8: New file.
18802         * lib/unistr/u16-to-u8.c: New file.
18803
18804         * modules/unistr/u16-to-u32: New file.
18805         * lib/unistr/u16-to-u32.c: New file.
18806
18807         * modules/unistr/u32-to-u8: New file.
18808         * lib/unistr/u32-to-u8.c: New file.
18809
18810         * modules/unistr/u32-to-u16: New file.
18811         * lib/unistr/u32-to-u16.c: New file.
18812
18813         * modules/unistr/u8-check: New file.
18814         * modules/unistr/u16-check: New file.
18815         * modules/unistr/u32-check: New file.
18816         * lib/unistr/u8-check.c: New file.
18817         * lib/unistr/u16-check.c: New file.
18818         * lib/unistr/u32-check.c: New file.
18819
18820         * modules/unistr/u8-chr: New file.
18821         * modules/unistr/u16-chr: New file.
18822         * modules/unistr/u32-chr: New file.
18823         * lib/unistr/u8-chr.c: New file.
18824         * lib/unistr/u16-chr.c: New file.
18825         * lib/unistr/u32-chr.c: New file.
18826
18827         * modules/unistr/u8-cmp: New file.
18828         * modules/unistr/u16-cmp: New file.
18829         * modules/unistr/u32-cmp: New file.
18830         * lib/unistr/u8-cmp.c: New file.
18831         * lib/unistr/u16-cmp.c: New file.
18832         * lib/unistr/u32-cmp.c: New file.
18833
18834         * modules/unistr/u8-cpy: New file.
18835         * modules/unistr/u16-cpy: New file.
18836         * modules/unistr/u32-cpy: New file.
18837         * lib/unistr/u8-cpy.c: New file.
18838         * lib/unistr/u16-cpy.c: New file.
18839         * lib/unistr/u32-cpy.c: New file.
18840         * lib/unistr/u-cpy.h: New file.
18841
18842         * modules/unistr/u8-cpy-alloc: New file.
18843         * modules/unistr/u16-cpy-alloc: New file.
18844         * modules/unistr/u32-cpy-alloc: New file.
18845         * lib/unistr/u8-cpy-alloc.c: New file.
18846         * lib/unistr/u16-cpy-alloc.c: New file.
18847         * lib/unistr/u32-cpy-alloc.c: New file.
18848         * lib/unistr/u-cpy-alloc.h: New file.
18849
18850         * modules/unistr/u8-endswith: New file.
18851         * modules/unistr/u16-endswith: New file.
18852         * modules/unistr/u32-endswith: New file.
18853         * lib/unistr/u8-endswith.c: New file.
18854         * lib/unistr/u16-endswith.c: New file.
18855         * lib/unistr/u32-endswith.c: New file.
18856         * lib/unistr/u-endswith.h: New file.
18857
18858         * modules/unistr/u8-mblen: New file.
18859         * modules/unistr/u16-mblen: New file.
18860         * modules/unistr/u32-mblen: New file.
18861         * lib/unistr/u8-mblen.c: New file.
18862         * lib/unistr/u16-mblen.c: New file.
18863         * lib/unistr/u32-mblen.c: New file.
18864
18865         * modules/unistr/u8-mbtouc: New file.
18866         * modules/unistr/u16-mbtouc: New file.
18867         * modules/unistr/u32-mbtouc: New file.
18868         * lib/unistr/u8-mbtouc.c: New file.
18869         * lib/unistr/u16-mbtouc.c: New file.
18870         * lib/unistr/u32-mbtouc.c: New file.
18871
18872         * modules/unistr/u8-mbtouc-safe: New file.
18873         * modules/unistr/u16-mbtouc-safe: New file.
18874         * modules/unistr/u32-mbtouc-safe: New file.
18875         * lib/unistr/u8-mbtouc-safe.c: New file.
18876         * lib/unistr/u16-mbtouc-safe.c: New file.
18877         * lib/unistr/u32-mbtouc-safe.c: New file.
18878
18879         * modules/unistr/u8-move: New file.
18880         * modules/unistr/u16-move: New file.
18881         * modules/unistr/u32-move: New file.
18882         * lib/unistr/u8-move.c: New file.
18883         * lib/unistr/u16-move.c: New file.
18884         * lib/unistr/u32-move.c: New file.
18885         * lib/unistr/u-move.h: New file.
18886
18887         * modules/unistr/u8-next: New file.
18888         * modules/unistr/u16-next: New file.
18889         * modules/unistr/u32-next: New file.
18890         * lib/unistr/u8-next.c: New file.
18891         * lib/unistr/u16-next.c: New file.
18892         * lib/unistr/u32-next.c: New file.
18893
18894         * modules/unistr/u8-prev: New file.
18895         * modules/unistr/u16-prev: New file.
18896         * modules/unistr/u32-prev: New file.
18897         * lib/unistr/u8-prev.c: New file.
18898         * lib/unistr/u16-prev.c: New file.
18899         * lib/unistr/u32-prev.c: New file.
18900
18901         * modules/unistr/u8-set: New file.
18902         * modules/unistr/u16-set: New file.
18903         * modules/unistr/u32-set: New file.
18904         * lib/unistr/u8-set.c: New file.
18905         * lib/unistr/u16-set.c: New file.
18906         * lib/unistr/u32-set.c: New file.
18907         * lib/unistr/u-set.h: New file.
18908
18909         * modules/unistr/u8-startswith: New file.
18910         * modules/unistr/u16-startswith: New file.
18911         * modules/unistr/u32-startswith: New file.
18912         * lib/unistr/u8-startswith.c: New file.
18913         * lib/unistr/u16-startswith.c: New file.
18914         * lib/unistr/u32-startswith.c: New file.
18915         * lib/unistr/u-startswith.h: New file.
18916
18917         * modules/unistr/u8-stpcpy: New file.
18918         * modules/unistr/u16-stpcpy: New file.
18919         * modules/unistr/u32-stpcpy: New file.
18920         * lib/unistr/u8-stpcpy.c: New file.
18921         * lib/unistr/u16-stpcpy.c: New file.
18922         * lib/unistr/u32-stpcpy.c: New file.
18923         * lib/unistr/u-stpcpy.h: New file.
18924
18925         * modules/unistr/u8-stpncpy: New file.
18926         * modules/unistr/u16-stpncpy: New file.
18927         * modules/unistr/u32-stpncpy: New file.
18928         * lib/unistr/u8-stpncpy.c: New file.
18929         * lib/unistr/u16-stpncpy.c: New file.
18930         * lib/unistr/u32-stpncpy.c: New file.
18931         * lib/unistr/u-stpncpy.h: New file.
18932
18933         * modules/unistr/u8-strcat: New file.
18934         * modules/unistr/u16-strcat: New file.
18935         * modules/unistr/u32-strcat: New file.
18936         * lib/unistr/u8-strcat.c: New file.
18937         * lib/unistr/u16-strcat.c: New file.
18938         * lib/unistr/u32-strcat.c: New file.
18939         * lib/unistr/u-strcat.h: New file.
18940
18941         * modules/unistr/u8-strchr: New file.
18942         * modules/unistr/u16-strchr: New file.
18943         * modules/unistr/u32-strchr: New file.
18944         * lib/unistr/u8-strchr.c: New file.
18945         * lib/unistr/u16-strchr.c: New file.
18946         * lib/unistr/u32-strchr.c: New file.
18947
18948         * modules/unistr/u8-strcmp: New file.
18949         * modules/unistr/u16-strcmp: New file.
18950         * modules/unistr/u32-strcmp: New file.
18951         * lib/unistr/u8-strcmp.c: New file.
18952         * lib/unistr/u16-strcmp.c: New file.
18953         * lib/unistr/u32-strcmp.c: New file.
18954
18955         * modules/unistr/u8-strcpy: New file.
18956         * modules/unistr/u16-strcpy: New file.
18957         * modules/unistr/u32-strcpy: New file.
18958         * lib/unistr/u8-strcpy.c: New file.
18959         * lib/unistr/u16-strcpy.c: New file.
18960         * lib/unistr/u32-strcpy.c: New file.
18961         * lib/unistr/u-strcpy.h: New file.
18962
18963         * modules/unistr/u8-strcspn: New file.
18964         * modules/unistr/u16-strcspn: New file.
18965         * modules/unistr/u32-strcspn: New file.
18966         * lib/unistr/u8-strcspn.c: New file.
18967         * lib/unistr/u16-strcspn.c: New file.
18968         * lib/unistr/u32-strcspn.c: New file.
18969         * lib/unistr/u-strcspn.h: New file.
18970
18971         * modules/unistr/u8-strdup: New file.
18972         * modules/unistr/u16-strdup: New file.
18973         * modules/unistr/u32-strdup: New file.
18974         * lib/unistr/u8-strdup.c: New file.
18975         * lib/unistr/u16-strdup.c: New file.
18976         * lib/unistr/u32-strdup.c: New file.
18977         * lib/unistr/u-strdup.h: New file.
18978
18979         * modules/unistr/u8-strlen: New file.
18980         * modules/unistr/u16-strlen: New file.
18981         * modules/unistr/u32-strlen: New file.
18982         * lib/unistr/u8-strlen.c: New file.
18983         * lib/unistr/u16-strlen.c: New file.
18984         * lib/unistr/u32-strlen.c: New file.
18985         * lib/unistr/u-strlen.h: New file.
18986
18987         * modules/unistr/u8-strmblen: New file.
18988         * modules/unistr/u16-strmblen: New file.
18989         * modules/unistr/u32-strmblen: New file.
18990         * lib/unistr/u8-strmblen.c: New file.
18991         * lib/unistr/u16-strmblen.c: New file.
18992         * lib/unistr/u32-strmblen.c: New file.
18993
18994         * modules/unistr/u8-strmbtouc: New file.
18995         * modules/unistr/u16-strmbtouc: New file.
18996         * modules/unistr/u32-strmbtouc: New file.
18997         * lib/unistr/u8-strmbtouc.c: New file.
18998         * lib/unistr/u16-strmbtouc.c: New file.
18999         * lib/unistr/u32-strmbtouc.c: New file.
19000
19001         * modules/unistr/u8-strncat: New file.
19002         * modules/unistr/u16-strncat: New file.
19003         * modules/unistr/u32-strncat: New file.
19004         * lib/unistr/u8-strncat.c: New file.
19005         * lib/unistr/u16-strncat.c: New file.
19006         * lib/unistr/u32-strncat.c: New file.
19007         * lib/unistr/u-strncat.h: New file.
19008
19009         * modules/unistr/u8-strncmp: New file.
19010         * modules/unistr/u16-strncmp: New file.
19011         * modules/unistr/u32-strncmp: New file.
19012         * lib/unistr/u8-strncmp.c: New file.
19013         * lib/unistr/u16-strncmp.c: New file.
19014         * lib/unistr/u32-strncmp.c: New file.
19015
19016         * modules/unistr/u8-strncpy: New file.
19017         * modules/unistr/u16-strncpy: New file.
19018         * modules/unistr/u32-strncpy: New file.
19019         * lib/unistr/u8-strncpy.c: New file.
19020         * lib/unistr/u16-strncpy.c: New file.
19021         * lib/unistr/u32-strncpy.c: New file.
19022         * lib/unistr/u-strncpy.h: New file.
19023
19024         * modules/unistr/u8-strnlen: New file.
19025         * modules/unistr/u16-strnlen: New file.
19026         * modules/unistr/u32-strnlen: New file.
19027         * lib/unistr/u8-strnlen.c: New file.
19028         * lib/unistr/u16-strnlen.c: New file.
19029         * lib/unistr/u32-strnlen.c: New file.
19030         * lib/unistr/u-strnlen.h: New file.
19031
19032         * modules/unistr/u8-strpbrk: New file.
19033         * modules/unistr/u16-strpbrk: New file.
19034         * modules/unistr/u32-strpbrk: New file.
19035         * lib/unistr/u8-strpbrk.c: New file.
19036         * lib/unistr/u16-strpbrk.c: New file.
19037         * lib/unistr/u32-strpbrk.c: New file.
19038         * lib/unistr/u-strpbrk.h: New file.
19039
19040         * modules/unistr/u8-strrchr: New file.
19041         * modules/unistr/u16-strrchr: New file.
19042         * modules/unistr/u32-strrchr: New file.
19043         * lib/unistr/u8-strrchr.c: New file.
19044         * lib/unistr/u16-strrchr.c: New file.
19045         * lib/unistr/u32-strrchr.c: New file.
19046
19047         * modules/unistr/u8-strspn: New file.
19048         * modules/unistr/u16-strspn: New file.
19049         * modules/unistr/u32-strspn: New file.
19050         * lib/unistr/u8-strspn.c: New file.
19051         * lib/unistr/u16-strspn.c: New file.
19052         * lib/unistr/u32-strspn.c: New file.
19053         * lib/unistr/u-strspn.h: New file.
19054
19055         * modules/unistr/u8-strstr: New file.
19056         * modules/unistr/u16-strstr: New file.
19057         * modules/unistr/u32-strstr: New file.
19058         * lib/unistr/u8-strstr.c: New file.
19059         * lib/unistr/u16-strstr.c: New file.
19060         * lib/unistr/u32-strstr.c: New file.
19061         * lib/unistr/u-strstr.h: New file.
19062
19063         * modules/unistr/u8-strtok: New file.
19064         * modules/unistr/u16-strtok: New file.
19065         * modules/unistr/u32-strtok: New file.
19066         * lib/unistr/u8-strtok.c: New file.
19067         * lib/unistr/u16-strtok.c: New file.
19068         * lib/unistr/u32-strtok.c: New file.
19069         * lib/unistr/u-strtok.h: New file.
19070
19071         * modules/unistr/u8-uctomb: New file.
19072         * modules/unistr/u16-uctomb: New file.
19073         * modules/unistr/u32-uctomb: New file.
19074         * lib/unistr/u8-uctomb.c: New file.
19075         * lib/unistr/u16-uctomb.c: New file.
19076         * lib/unistr/u32-uctomb.c: New file.
19077
19078         * MODULES.html.sh (Unicode string functions): Add the new modules.
19079
19080 2007-01-08  Bruno Haible  <bruno@clisp.org>
19081
19082         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
19083         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
19084         subdirectories.
19085
19086 2007-01-08  Karl Berry  <karl@gnu.org>
19087
19088         * doc/error.texi: mention that main() fns must set program_name
19089         when progname is used.
19090
19091 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
19092
19093         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
19094         WCTYPE_H is empty, for the benefit of builds from non-distclean
19095         directories.  Problem reported by Eric Blake in
19096         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
19097
19098 2007-01-08  Bruno Haible  <bruno@clisp.org>
19099
19100         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
19101         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
19102         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
19103         PROVIDE_CANONICALIZE_FILENAME_MODE.
19104         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
19105
19106 2007-01-08  Bruno Haible  <bruno@clisp.org>
19107
19108         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
19109         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
19110         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
19111         * lib/fts.c: Likewise.
19112         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
19113
19114 2006-12-25  Bruno Haible  <bruno@clisp.org>
19115
19116         * modules/utf8-ucs4-safe: New file.
19117         * lib/utf8-ucs4-safe.h: New file.
19118         * lib/unistr/utf8-ucs4-safe.c: New file.
19119
19120         * modules/utf16-ucs4-safe: New file.
19121         * lib/utf16-ucs4-safe.h: New file.
19122         * lib/unistr/utf16-ucs4-safe.c: New file.
19123
19124         * MODULES.html.sh (Unicode string functions): Add the new modules.
19125
19126 2007-01-08  Bruno Haible  <bruno@clisp.org>
19127
19128         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
19129         (Depends-on): Add unitypes.
19130         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
19131         (u8_mbtouc_aux): Move out to separate file.
19132         (u8_mbtouc): Use ucs4_t, uint8_t types.
19133         * lib/unistr/utf8-ucs4.c: New file.
19134
19135         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
19136         (Depends-on): Add unitypes.
19137         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
19138         (u16_mbtouc_aux): Move out to separate file.
19139         (u16_mbtouc): Use ucs4_t, uint16_t types.
19140         * lib/unistr/utf16-ucs4.c: New file.
19141
19142         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
19143         (Depends-on): Add unitypes.
19144         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
19145         (u8_uctomb_aux): Move out to separate file.
19146         (u8_uctomb): Use ucs4_t, uint8_t types.
19147         * lib/unistr/ucs4-utf8.c: New file.
19148
19149         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
19150         (Depends-on): Add unitypes.
19151         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
19152         (u16_uctomb_aux): Move out to separate file.
19153         (u16_uctomb): Use ucs4_t, uint16_t types.
19154         * lib/unistr/ucs4-utf16.c: New file.
19155
19156 2006-12-25  Bruno Haible  <bruno@clisp.org>
19157
19158         * modules/unitypes: New file.
19159         * lib/unitypes.h: New file.
19160         * MODULES.html.sh (func_all_modules): New section "Unicode string
19161         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
19162         this section. Add unitypes.
19163
19164 2007-01-08  Bruno Haible  <bruno@clisp.org>
19165
19166         Avoid variable names that conflict with those from libtool.
19167         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
19168         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
19169         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
19170         library_names_spec to acl_library_names_spec, hardcode_* to
19171         acl_hardcode_*.
19172         Reported by Ralf Wildenhues.
19173
19174 2007-01-08  Bruno Haible  <bruno@clisp.org>
19175
19176         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
19177         definition.
19178         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
19179         definition.
19180         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
19181         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
19182         definition.
19183         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
19184         definition.
19185         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
19186         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
19187         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
19188         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
19189         definition.
19190         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
19191         definition.
19192         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
19193         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
19194         GC_USE_<algorithm>.
19195         * lib/gc-libgcrypt.c: Likewise.
19196         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
19197         * modules/gc-arctwo (configure.ac): Likewise.
19198         * modules/gc-des (configure.ac): Likewise.
19199         * modules/gc-hmac-md5 (configure.ac): Likewise.
19200         * modules/gc-hmac-sha1 (configure.ac): Likewise.
19201         * modules/gc-md2 (configure.ac): Likewise.
19202         * modules/gc-md4 (configure.ac): Likewise.
19203         * modules/gc-md5 (configure.ac): Likewise.
19204         * modules/gc-random (configure.ac): Likewise.
19205         * modules/gc-rijndael (configure.ac): Likewise.
19206         * modules/gc-sha1 (configure.ac): Likewise.
19207
19208 2007-01-08  Bruno Haible  <bruno@clisp.org>
19209
19210         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
19211         macro definition.
19212         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
19213         definition.
19214         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
19215         definition.
19216         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
19217         * modules/fcntl-safer (configure.ac): Likewise.
19218         * modules/fopen-safer (configure.ac): Likewise.
19219         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
19220         GNULIB_FWRITEERROR macro definition.
19221
19222 2007-01-08  Bruno Haible  <bruno@clisp.org>
19223
19224         * m4/gnulib-common.m4: New file.
19225         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
19226         (func_get_filelist): Add m4/gnulib-common.m4.
19227
19228 2007-01-08  Bruno Haible  <bruno@clisp.org>
19229
19230         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
19231         command.
19232
19233 2007-01-08  Jim Meyering  <jim@meyering.net>
19234
19235         Use a more robust test for a "can't happen" condition.
19236         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
19237         narrowed the st_size value.  Presuming the "can't happen" condition
19238         is true, that narrowing could conceivably convert an invalid st_size
19239         value into a valid one.  Instead, use a change based on Matthew
19240         Woehlke's original patch.
19241
19242         Slight readability improvement: use an assert-like macro
19243         in place of literal "abort ()" uses.
19244         * lib/fts.c (fts_assert): Define.
19245         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
19246         Use this macro instead of a bare 'abort'.
19247
19248 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
19249
19250         Don't worry about using IRIX 5.3's wctype.h broken definitions;
19251         simply work around them.
19252         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
19253         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
19254         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
19255         declaring.
19256         Don't bother to define as macros, since the standard doesn't require it.
19257         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
19258         longer worry about IRIX 5.3.
19259         (HAVE_WCTYPE_CTMP_BUG): Remove.
19260
19261 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19262
19263         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
19264         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
19265         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
19266         Problems reported by Georg Schwarz for IRIX 5.3.
19267
19268         * gnulib-tool (autoconf_minversion): Take the maximum version number
19269         found, not the minimum.  Problem reported by James Youngman.
19270
19271 2007-01-03  Karl Berry  <karl@gnu.org>
19272
19273         * doc/error.texi: new file, explaining interaction with progname.
19274         * doc/gnulib.texi: include it.  Update copyright.
19275
19276 2007-01-03  Simon Josefsson  <simon@josefsson.org>
19277
19278         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
19279         AC_CANONICAL_HOST, to improve autobuild outputs.
19280
19281 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
19282             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
19283
19284         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
19285         sockets, server sockets, and other file descriptors.  Count errors
19286         to compute the return value.  Reorder the code a bit to be easier
19287         to follow.  Don't set event bits that were not requested (except
19288         POLLERR and POLLHUP).
19289
19290 2007-01-01  Bruno Haible  <bruno@clisp.org>
19291
19292         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
19293
19294 2007-01-03  Jim Meyering  <jim@meyering.net>
19295
19296         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
19297
19298 2007-01-02  Bruno Haible  <bruno@clisp.org>
19299
19300         * modules/settime (Include): Require timespec.h.
19301         * modules/nanosleep (Include): Likewise.
19302
19303 2007-01-01  Bruno Haible  <bruno@clisp.org>
19304
19305         * gnulib-tool (func_emit_copyright_notice): Bump year.
19306         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
19307
19308 2007-01-01  Bruno Haible  <bruno@clisp.org>
19309
19310         Improve support for OpenBSD.
19311         * build-aux/config.rpath (libname_spec): Export.
19312         (library_names_spec): New variable. Export.
19313         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
19314         library_names_spec from the config.rpath output. Locate shared library
19315         through the name pattern in library_names_spec.
19316
19317 2007-01-01  Eric Blake  <ebb9@byu.net>
19318
19319         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
19320
19321 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
19322
19323         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
19324         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
19325         assume the C locale, and avoid an "eval" that could cause trouble.
19326         Problem with SORT reported by Bob Proulx.
19327
19328         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
19329         Define.  Trivial patch from Henning Nielsen Lund, originally
19330         sent to bug-grep@gnu.org today.
19331
19332 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
19333
19334         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
19335         struct stat.  Problem reported by Henning Nielsen Lund.
19336         * lib/acl.c: Include acl.h first, to check interface.  Don't
19337         bother to include sys/types.h and sys/stat.h again.
19338
19339 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19340
19341         Import the following change from libc; problem reported by
19342         Sven Verdoolaege.
19343
19344         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
19345
19346         [BZ #1373]
19347         * lib/argp.h: Remove __NTH for __argp_usage inline function.
19348
19349 2006-12-28  Jim Meyering  <jim@meyering.net>
19350
19351         * build-aux/announce-gen: Do not assume that the package
19352         builds any of tar.gz, tar.bz2, and .xdelta files.
19353         Suggestion from Simon Josefsson.
19354
19355 2006-12-28  Simon Josefsson  <simon@josefsson.org>
19356
19357         * modules/announce-gen: New file.
19358
19359 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
19360
19361         * lib/mbchar.h: Just include <wctype.h>; the wctype module
19362         handles its gotchas now.
19363         * lib/mbswidth.c: Likewise.
19364         * lib/wcwidth.h: Likewise.
19365         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
19366         and iswcntrl; the wctype module does this stuff now.
19367         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19368         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
19369         * modules/mbchar (Depends-on): Add wctype.
19370         * modules/mbswidth (Depends-on): Likewise.
19371         * modules/wcwidth (Depends-on): Likewise.
19372
19373 2006-12-27  Eric Blake  <ebb9@byu.net>
19374
19375         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
19376         module uses more than what <wctype.h> is required to provide.
19377
19378 2006-12-26  Eric Blake  <ebb9@byu.net>
19379
19380         * gnulib-tool (sed_extract_prog): Avoid space-tab.
19381
19382 2006-12-26  Eric Blake  <ebb9@byu.net>
19383
19384         * modules/absolute-header: New module.
19385         * modules/fcntl (Depends-on): Depend on it.
19386         * modules/inttypes (Depends-on): Likewise.
19387         * modules/stdint (Depends-on): Likewise.
19388         * modules/sys_stat (Depends-on): Likewise.
19389         * modules/wctype (Depends-on): Likewise.
19390         * MODULES.html.sh (Support for building libraries and
19391         executables): Document it.
19392
19393 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
19394
19395         * gnulib-tool (SED): Remove, undoing previous change.
19396         The problem was that it broke coreutils on Solaris, because
19397         "sed --posix" leaked into a makefile.
19398         (sed): New alias, if 'alias' and GNU sed.
19399
19400 2006-12-24  Jim Meyering  <jim@meyering.net>
19401
19402         Work around an fchownat bug in glibc-2.4:
19403         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
19404         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
19405         in spite of the -P option.
19406         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
19407         New macros.
19408         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
19409         * modules/openat (Files): Add lib/fchownat.c.
19410         * lib/openat.c (fchownat): Don't define here.  Move to...
19411         * lib/fchownat.c: ...this new file.
19412
19413 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19414
19415         Fix bug reported by Bruno Haible in
19416         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
19417         where quotearg.c didn't compile on Mac OS X 10.2 because it
19418         lacks <wchar.h> and wint_t.
19419         * lib/wctype_.h (__wctype_wint_t): New type.
19420         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
19421         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
19422         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
19423         Arg is now of type __wctype_wint_t, not wint_t.
19424         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
19425         substitute HAVE_WINT_T.
19426         * modules/wctype (Files): Add m4/wint_t.m4.
19427         (wctype.h): Substitute HAVE_WINT_T.
19428
19429 2006-12-23  Bruno Haible  <bruno@clisp.org>
19430
19431         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
19432
19433 2006-12-23  Bruno Haible  <bruno@clisp.org>
19434
19435         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
19436         S_ISLNK.
19437         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
19438         mingw.
19439
19440 2006-12-22  Bruno Haible  <bruno@clisp.org>
19441
19442         * lib/copy-file.c: Include acl.h.
19443         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
19444         Close the file descriptors only after being done with copy_acl.
19445         * modules/copy-file (Depends-on): Add acl.
19446
19447 2006-12-22  Bruno Haible  <bruno@clisp.org>
19448
19449         * gnulib-tool (SED): New variable.
19450         Use $SED instead of sed everywhere.
19451
19452 2006-12-22  Bruno Haible  <bruno@clisp.org>
19453
19454         * modules/no-c++: New file.
19455         * m4/no-c++.m4: New file.
19456         * MODULES.html.sh (Support for building libraries and executables):
19457         Add no-c++.
19458
19459 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
19460
19461         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
19462         Include <limits.h>, and use its INT_MAX to rewrite the
19463         j loop so that it does not overflow 'int'.  Problem reported by
19464         Ralf Wildenhues in
19465         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
19466         Play it safe by shifting left by 1 rather than multiplying by 2,
19467         as GCC is less likely to optimize this away when the value
19468         is signed (when it assumes overflow leads to undefined behavior).
19469         Also, don't assume time_t uses two's complement.
19470
19471 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
19472
19473         * MODULES.html.sh: New module wctype.
19474         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
19475         * lib/fnmatch.c: Don't bother to include <wchar.h> before
19476         <wctype.h>, since the new wctype module should fix this.
19477         * lib/quotearg.c: Include <wctype.h> unconditionally, since
19478         the wctype module should arrange for it.
19479         * lib/regex_internal.h: Likewise.
19480         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
19481         since the wctype module should handle this now.
19482         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
19483         * modules/fnmatch (Depends-on): Add wctype.
19484         * modules/quotearg (Depends-on): Likewise.
19485         * modules/regex (Depends-on): Likewise.
19486
19487 2006-12-19  Bruno Haible  <bruno@clisp.org>
19488
19489         * lib/strdup.h [C++]: Wrap definitions in extern "C".
19490         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
19491
19492 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19493
19494         * modules/savewd (Depends-on): Fix dependency on fcntl.
19495
19496 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19497
19498         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
19499         conforms to C99, rather than relying on the user's environment
19500         setting of STDINT_H.
19501
19502 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19503         and Eric Blake  <ebb9@byu.net>
19504
19505         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
19506         This is more consistent with the other defines here.
19507         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
19508         Port to z/OS.  Problem reported by Paul Gilmartin.
19509         Change local vars to use gl_ prefix rather than ac_.
19510         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
19511         with other defines.
19512         * modules/double-slash-root: New module.
19513         * modules/dirname (Files): Remove m4/double-slash-root.m4.
19514         (Depends-on): Add double-slash-root.
19515         * MODULES.html.sh (File system functions): Mention new module.
19516
19517 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
19518
19519         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
19520         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
19521         This is for the benefit of gzip, which doesn't do i18n.
19522
19523 2006-12-12  Jim Meyering  <jim@meyering.net>
19524
19525         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
19526         Reported by Andreas Schwab <schwab@suse.de>.
19527
19528 2006-12-12  Bruno Haible  <bruno@clisp.org>
19529
19530         Merge these changes.
19531         2006-09-05  Bruno Haible  <bruno@clisp.org>
19532         * lib/iconvme.c (iconv_string): No need to save and restore errno when
19533         iconv_alloc succeeded.
19534         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
19535         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
19536         test for " && dest " at the end - dest is always != NULL there. Call
19537         iconv with 4xNULL arguments initially, to reset the state. Call iconv
19538         with 2xNULL arguments, also to flush the state storage. Handle the
19539         IRIX iconv behaviour. Realloc the final result, to throw away unused
19540         memory.
19541
19542 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
19543
19544         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
19545         and fchmodat unconditionally, since glibc 2.4 has them.
19546         Problem reported by Arkadiusz Miskiewicz.
19547
19548 2006-12-10  Bruno Haible  <bruno@clisp.org>
19549
19550         * gnulib-tool (func_import): Show the include files only for those
19551         modules that are copied and specified.
19552         Reported by Karl Berry.
19553
19554 2006-12-08  Jim Meyering  <jim@meyering.net>
19555
19556         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
19557         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
19558
19559         * build-aux/announce-gen: Add two new options, both optional:
19560         --bootstrap-tools=TOOL_LIST
19561               a comma-separated list of tools, e.g.,
19562               autoconf,automake,bison,gnulib
19563         --gnulib-snapshot-date=DATE
19564               if gnulib is in the bootstrap tool list,
19565               then report this as the snapshot date.
19566               If not specified, use the current date/time.
19567               If you specify a date here, be sure it's UTC.
19568
19569 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19570
19571         * tests/test-argp-2.sh: Fix test to match actual output.
19572         (func_compare): Fix sed script to be portable.
19573
19574 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
19575
19576         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
19577         workaround for this case.  It is not autoconfigured now; offhand
19578         it's hard to see how to autoconfigure it.
19579
19580 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
19581
19582         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
19583         a directory that is about to be chowned.  Such a directory's
19584         initial file permissions should permit the owner only and this
19585         should not be changed until after the chown, since the group and
19586         other bits would be incorrect if they granted permission before
19587         the chown.
19588
19589         Fix porting problem for iswctype reported by Georg Schwarz in:
19590         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
19591         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
19592         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
19593         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
19594         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19595
19596 2006-12-03  Jim Meyering  <jim@meyering.net>
19597
19598         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
19599         p->fts_statp may not yet be defined.
19600         (fts_read): Instead, set it in the caller, once p->fts_statp is
19601         sure to be defined, and corresponds to a top-level directory.
19602         This bug made du -x fail.  Here's the coreutils test case:
19603         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
19604         Reported by Mike Frysinger.
19605
19606 2006-12-01  Jim Meyering  <jim@meyering.net>
19607
19608         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
19609         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
19610         Reported by Simon Josefsson.
19611
19612 2006-11-30  Jim Meyering  <jim@meyering.net>
19613
19614         * m4/warning.m4: Use the all-permissive copyright notice
19615         recommended by RMS (rather than LGPL).
19616         * m4/vararrays.m4: Likewise.
19617         * m4/flexmember.m4: Likewise.
19618
19619 2006-11-29  Bruno Haible  <bruno@clisp.org>
19620
19621         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19622         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
19623         using +=.
19624         Reported by Simon Josefsson <simon@josefsson.org>.
19625
19626 2006-11-28  James Youngman <jay@gnu.org>
19627
19628         * README: Advise users that they might find the bug-gnulib@gnu.org
19629         and autotools-announce@gnu.org mailing lists useful.
19630
19631 2006-11-28  Bruno Haible  <bruno@clisp.org>
19632
19633         * m4/ptrdiff_max.m4: Remove file.
19634
19635 2006-11-21  Bruno Haible  <bruno@clisp.org>
19636
19637         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
19638         _AC_COMPUTE_INT.
19639         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19640         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
19641         _AC_COMPUTE_INT.
19642         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19643         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
19644         _AC_COMPUTE_INT.
19645         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19646
19647 2006-11-28  Jim Meyering  <jim@meyering.net>
19648
19649         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
19650         warning from "gcc -Wshadow" about shadowing the builtin.
19651
19652 2006-11-27  Bruno Haible  <bruno@clisp.org>
19653
19654         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
19655         _AC_COMPUTE_INT.
19656         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
19657
19658 2006-11-27  Bruno Haible  <bruno@clisp.org>
19659             Paul Eggert  <eggert@cs.ucla.edu>
19660
19661         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
19662
19663 2006-11-26  Bruno Haible  <bruno@clisp.org>
19664
19665         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19666         noinst_LTLIBRARIES.
19667
19668 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19669             Bruno Haible  <bruno@clisp.org>
19670
19671         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
19672         if compiling with "gcc -ansi".
19673
19674 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19675
19676         Fix some incompatibilities with gcc -ansi -pedantic.
19677         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
19678         if compiling pedantically with GCC, unless it's C99 or later.
19679         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
19680         it mishandles gcc -ansi -pedantic as well.
19681         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
19682         if gcc -pedantic.
19683         * lib/regexec.c (check_node_accept_bytes): Don't use auto
19684         initializers for struct if -pedantic, unless it's C99 or later.
19685
19686 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
19687
19688         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
19689         Don't close an fd more than once. Identical atimes indicate
19690         success, not failure.
19691
19692 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
19693
19694         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
19695
19696 2006-11-23  Jim Meyering  <jim@meyering.net>
19697
19698         * build-aux/announce-gen: New file.  From coreutils.
19699
19700 2006-11-22  Jim Meyering  <jim@meyering.net>
19701
19702         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
19703         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
19704         (fts_read): Use a temporary to narrow the overused st_size member
19705         before using it in a switch statement.  Reported by Matthew Woehlke.
19706
19707         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
19708         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
19709
19710 2006-11-20  Bruno Haible  <bruno@clisp.org>
19711
19712         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
19713         changequote instead of pairs of brackets.
19714         Reported by Andreas Schwab <schwab@suse.de>.
19715
19716 2006-11-21  Jim Meyering  <jim@meyering.net>
19717
19718         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
19719         so as to remain compatible with older compilers.
19720         Patch from Michael Deutschmann.
19721
19722 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19723
19724         * MODULES.html.sh (File system functions): Add openat.
19725
19726         * lib/openat.h (rpl_fstatat): New macro, if
19727         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
19728         (fstatat): Define to rpl_fstatat under the same conditions,
19729         unless COMPILING_FSTATAT.
19730         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
19731         seems to have the bug.
19732         * lib/fstatat.c: New file.
19733         * modules/openat (Files): Add it.
19734
19735 2006-11-20  Bruno Haible  <bruno@clisp.org>
19736
19737         * Makefile: New file.
19738
19739 2006-11-20  Jim Meyering  <jim@meyering.net>
19740
19741         The beginnings of syntax-related checks for gnulib.
19742         * lib/Makefile: New file.
19743         * lib/t-idcache: New script.  Ensure that the two halves of
19744         idcache.c stay in sync.
19745
19746         * lib/idcache.c: Adjust comments in user- and group- portions to
19747         be more accurate, and to be consistent with one another.
19748
19749 2006-11-20  Jim Meyering  <jim@meyering.net>
19750
19751         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
19752         continue using the flexible array member (thus, this module performs
19753         half as many malloc calls), with the addition that...
19754         (getgroup, getuser): Consistently record a non-match via an empty
19755         "name" string, and map an empty string match to a NULL return value.
19756         * modules/idcache (Depends-on): Re-add flexmember.
19757
19758         * lib/idcache.c (getuser): Remove all uses of the register keyword.
19759         (getuidbyname, getgroup, getgidbyname): Likewise.
19760
19761         Use cleaner syntax: NULL rather than 0.
19762         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
19763
19764 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19765
19766         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
19767         It mishandled the case where the group was missing.
19768         Problem reported by Greg Schafer.
19769         * modules/idcache: Likewise.
19770
19771 2006-11-18  Jim Meyering  <jim@meyering.net>
19772
19773         * check-module (%exempt_header): Add exception for some
19774         conditionally-included headers.
19775
19776         * modules/i-ring (Depends-on): Add verify.
19777         (License): Change to LGPL.
19778
19779 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19780
19781         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
19782         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
19783         and inttostr.h.  Use snprintf rather than uinttostr, so that
19784         LGPLed code doesn't depend on GPLed.
19785
19786 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19787
19788         * modules/inline (License): Change from GPL to LGPL.
19789
19790 2006-11-17  Jim Meyering  <jim@meyering.net>
19791
19792         * modules/d-type (License): Switch to LGPL.
19793
19794 2006-11-15  Bruno Haible  <bruno@clisp.org>
19795
19796         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
19797
19798 2006-11-15  Eric Blake  <ebb9@byu.net>
19799
19800         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
19801         the module dependency.
19802
19803 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19804             Bruno Haible  <bruno@clisp.org>
19805
19806         * gnulib-tool (func_create_testdir): Add license consistency check.
19807
19808 2006-11-15  Eric Blake  <ebb9@byu.net>
19809
19810         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
19811         random "(cached)" in configure output.
19812
19813 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19814
19815         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
19816         test for conforming inttypes.h is both announced and cached.
19817
19818         * MODULES.html.sh (seen_modules, seen_files): New variables.
19819         (func_module): Rewrite to use a few less gnulib-tool and sed
19820         invocations.  Avoid a couple of quadratic algorithms for ...
19821         (missed_modules, missed_files): ... these, with ...
19822         (func_append, func_tmpdir): ... these new functions, from
19823         gnulib-tool.  Analogously, install traps for cleanup.
19824
19825         * tests/test-gc.c (main): Remove unused variables.
19826         * tests/test-read-file.c: Include stdlib.h, for 'free'.
19827
19828 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
19829
19830         * modules/inttostr (License): Change to LGPL.
19831
19832 2006-11-14  Eric Blake  <ebb9@byu.net>
19833
19834         * modules/tempname (License): Change to LGPL.
19835
19836 2006-11-14  Eric Blake  <ebb9@byu.net>
19837
19838         * doc/functions.texi (Function Portability): *printf functions on
19839         Cygwin now understand all POSIX size specifiers.
19840
19841 2006-11-14  Bruno Haible  <bruno@clisp.org>
19842
19843         * modules/c-ctype (License): Change to LGPL.
19844
19845 2006-11-12  Bruno Haible  <bruno@clisp.org>
19846
19847         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19848         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
19849         for GNOME libraries, for which the include files are installed in
19850         subdirectories of $prefix/include.
19851
19852 2006-11-12  Bruno Haible  <bruno@clisp.org>
19853
19854         * m4/lib-link.m4: Require at least autoconf-2.54.
19855         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
19856         name to underscores for the --with option.
19857
19858 2006-11-13  Bruno Haible  <bruno@clisp.org>
19859
19860         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
19861         the tests directory.
19862         Reported by Ralf Wildenhues.
19863
19864 2006-11-13  Bruno Haible  <bruno@clisp.org>
19865
19866         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
19867         (func_emit_initmacro_end): Undo the override here.
19868         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
19869         Works around the famous automake error in coreutils.
19870
19871 2006-11-13  Eric Blake  <ebb9@byu.net>
19872
19873         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
19874         element, not its node.
19875
19876 2006-11-12  Bruno Haible  <bruno@clisp.org>
19877
19878         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
19879         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
19880
19881 2006-11-12  Bruno Haible  <bruno@clisp.org>
19882
19883         * gnulib-tool: New option --local-symlink.
19884         (func_usage): Document it.
19885         (lsymbolic): New variable.
19886         (func_import, func_create_testdir): If --symlink was not specified,
19887         test whether --local-symlink was specified and the file comes from
19888         the local_gnulib_dir.
19889
19890 2006-11-12  Bruno Haible  <bruno@clisp.org>
19891
19892         * gnulib-tool (func_ln): New function.
19893         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
19894
19895 2006-11-12  Bruno Haible  <bruno@clisp.org>
19896
19897         Finish support for source files in subdirectories.
19898         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
19899         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
19900         AUTOMAKE_OPTIONS.
19901         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
19902
19903 2006-11-12  Bruno Haible  <bruno@clisp.org>
19904
19905         * gnulib-tool (func_get_automake_snippet): Synthesize also an
19906         EXTRA_lib_SOURCES augmentation.
19907         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
19908
19909 2006-11-12  Jim Meyering  <jim@meyering.net>
19910
19911         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
19912         file descriptors.  This also averts a failure on systems with
19913         native openat support when a traversed directory lacks "x" access.
19914         * lib/fts_.h: Include "i-ring.h"
19915         (struct FTS) [fts_fd_ring]: New member.
19916         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
19917         (FCHDIR): Add parentheses.
19918         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
19919         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
19920         When descending, rather than simply closing the previous
19921         fts_cwd_fd value, push that file descriptor onto the ring.
19922         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
19923         (fts_open): Initialize the new fd_ring member.
19924         (fts_close): Clear the ring.
19925         (fts_safe_changedir): When possible, use our new fd_ring to skip
19926         the diropen and fstat and dev/ino comparison that would normally
19927         accompany a virtual `chdir ("..")'.
19928
19929         * modules/fts (Depends-on): Add i-ring.
19930         * modules/i-ring: New module.
19931         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
19932         * m4/i-ring.m4: New file.
19933
19934 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19935
19936         * gnulib-tool (func_create_testdir): Fix replacement of
19937         `build-aux' in configure.ac.  Run autotools in gltests
19938         subdirectory.
19939         (func_create_testdir, func_create_megatestdir, test): There is
19940         no need for '--force' in most autotool invocations in a new
19941         tree.  Actually fail the whole test if any of the tools, or the
19942         configure or make stages fail.
19943
19944         Sync from Automake.
19945         * build-aux/gnupload: Revert last change.  Add pointer to upload
19946         instructions of the GNU Maintenance Instructions.
19947         Suggestion by Karl Berry.
19948
19949 2006-11-10  Jim Meyering  <jim@meyering.net>
19950
19951         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
19952
19953 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19954
19955         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
19956         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
19957         (bind_textdomain_codeset) [! ENABLE_NLS]:
19958         Evaluate all the arguments.  That way, callers get compatible behavior
19959         if the arguments have side effects.  Also, it avoids some GCC
19960         diagnostics in some cases; Joel E. Denny reported problems when Bison
19961         was configured with --enable-gcc-warnigs.
19962
19963 2006-11-10  Jim Meyering  <jim@meyering.net>
19964
19965         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
19966         relevant options in CFLAGS (like -O, -fno-inline) are taken into
19967         account.
19968
19969 2006-11-10  Jim Meyering  <jim@meyering.net>
19970
19971         * modules/inline: New file/module.
19972         * modules/xalloc (Files): Remove m4/inline.m4.
19973         (Depends-on): Add inline, instead.
19974         * modules/oset: Likewise.
19975         * modules/list: Likewise.
19976
19977 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19978
19979         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
19980         Problem reported by Matthew Woehlke.
19981
19982 2006-11-09  Bruno Haible  <bruno@clisp.org>
19983
19984         * lib/tempname.c (gen_tempname): Remove variant that invokes
19985         __gen_tempname.
19986         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
19987         __gen_tempname.
19988
19989 2006-11-08  Bruno Haible  <bruno@clisp.org>
19990
19991         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
19992         to 'yes' instead of 'cross-compiling'.
19993
19994 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
19995
19996         * lib/quotearg.h (quotearg_free): New decl.
19997         * lib/quotearg.c (quotearg_free): New function.
19998         (slot0, nslots, slotvec0, slotvec):
19999         Now file-scope so that quotearg_free can get at them.
20000
20001 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20002
20003         Sync from Automake.
20004         * build-aux/gnupload: Add missing 'gnu' to example URL.
20005         Report by Karl Berry.
20006
20007 2006-11-08  Bruno Haible  <bruno@clisp.org>
20008
20009         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
20010         Suggested by Paul Eggert.
20011
20012 2006-11-08  Jim Meyering  <jim@meyering.net>
20013
20014         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
20015         It's already included if !_LIBC.
20016         (fts_safe_changedir): Add a comment.
20017
20018 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
20019
20020         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
20021         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
20022         Matthew Woehlke.
20023
20024         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
20025         definitions up, to avoid colliding with change below.
20026         (static_inline) [HAVE_INLINE]: New macro.
20027         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
20028         Provide extern decls when !HAVE_INLINE.  Do not define unless
20029         static_inline is defined, either by us or by xmalloc.c.  Use
20030         static_inline rather than static inline.
20031         (XCALLOC): Optimize sizeof(T) = 1 case.
20032         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
20033
20034 2006-11-07  Bruno Haible  <bruno@clisp.org>
20035
20036         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
20037         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
20038         AC_C_INLINE.
20039         * modules/xalloc (Files): Add m4/inline.m4.
20040
20041 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20042
20043         * README: Fix typo.
20044         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
20045         (Miscellanous Notes): ...from this.
20046
20047 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
20048
20049         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
20050         Mention that offsetof should be used instead of sizeof.
20051         From Bruno Haible.
20052
20053 2006-11-07  Bruno Haible  <bruno@clisp.org>
20054
20055         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
20056
20057 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
20058
20059         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
20060         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
20061         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
20062         (gl_tree_add_before, gl_tree_add_after):
20063         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
20064         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
20065         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
20066         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
20067         (gl_linked_add_after, gl_linked_add_at): Likewise.
20068         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
20069         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
20070         (gl_tree_add_before, gl_tree_add_after): Likewise.
20071         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
20072         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
20073         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
20074
20075 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20076
20077         * lib/gl_oset.h: Use C comment style, not C++ comment style.
20078
20079 2006-11-06  Bruno Haible  <bruno@clisp.org>
20080
20081         * m4/inline.m4: New file.
20082         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
20083         * modules/list (Files): Add m4/inline.m4.
20084         * modules/oset (Files): Likewise.
20085
20086 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
20087
20088         * lib/idcache.c: Include <stddef.h>, for offsetof.
20089         (struct userid.name): Change from char * to a flexible array member.
20090         All uses changed.
20091         * modules/idcache (Depends-on): Add flexmember.
20092
20093         * MODULES.html.sh (Core language properties): New module flexmember.
20094         * modules/flexmember, m4/flexmember.m4: New files.
20095
20096         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
20097         inline functions that are identical with the old xnmalloc_inline,
20098         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
20099         that we can avoid some unnecessary integer multiplications and
20100         divisions in the common case where the element size is known at
20101         compile time.
20102         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
20103         needed.
20104         (xnboundedmalloc): Remove.
20105         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
20106         arguments, for consistency with rest of this header.
20107         (xcharalloc): Rewrite using XNMALLOC.
20108         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
20109         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
20110         versions have been moved to lib/xalloc.h and renamed to be the
20111         non-*_inline versions.
20112         (xmalloc, xrealloc): Implement without reference to the xnmalloc
20113         and xnrealloc functions, since those functions are now inline and
20114         now call us.
20115         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
20116         renaming described above.
20117         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
20118         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
20119         captures the dependency in AC_C_INLINE.
20120
20121         New module canonicalize-lgpl, proposed by Charles Wilson in
20122         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
20123         with a few small changes afterwards.
20124         * MODULES.html.sh (File system functions): New module
20125         canonicalize-lgpl.
20126         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
20127         and canonicalize_file_name.
20128         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
20129         * modules/canonicalize-lgpl: New files.
20130
20131 2006-11-05  Bruno Haible  <bruno@clisp.org>
20132
20133         * gnulib-tool (func_import, func_create_testdir): Create directories
20134         also for files in subdirectories of lib/.
20135
20136 2006-11-05  Bruno Haible  <bruno@clisp.org>
20137
20138         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
20139         ANSI C compliant.
20140
20141 2006-11-03  Bruno Haible  <bruno@clisp.org>
20142
20143         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
20144         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
20145         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
20146         (xnboundedmalloc): New inline function.
20147         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
20148         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
20149         xmalloc.
20150         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
20151         xmalloc.
20152         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
20153         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
20154         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
20155         xmalloc.
20156         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
20157         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
20158         xmalloc.
20159         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
20160         gl_tree_add_after): Use XMALLOC instead of xmalloc.
20161         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
20162         xmalloc.
20163         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
20164         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
20165         gl_tree_add_after): Use XMALLOC instead of xmalloc.
20166         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
20167         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
20168         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
20169         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
20170
20171 2006-11-03  Bruno Haible  <bruno@clisp.org>
20172
20173         * lib/c-ctype.h [C++]: Define functions without name mangling.
20174         * lib/fwriteerror.h [C++]: Likewise.
20175         * lib/gcd.h [C++]: Likewise.
20176         * lib/linebreak.h [C++]: Likewise.
20177
20178 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
20179
20180         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
20181         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
20182         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
20183         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
20184         Check for functions and headers just once.
20185         Check for declaration of canonicalize_file_name.
20186         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
20187
20188 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20189
20190         * gnulib-tool (func_import): Fix typo in actioncmd.
20191
20192 2006-11-02  Bruno Haible  <bruno@clisp.org>
20193
20194         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
20195         newline sequence in the Makefile.am snippet as a space, like "make"
20196         does.
20197         Reported by Roger Persson <perrog@gmail.com>.
20198
20199 2006-11-01  Bruno Haible  <bruno@clisp.org>
20200
20201         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
20202         already declared in <string.h>.
20203         * lib/strcase.h (strncasecmp): Don't declare it if yes.
20204
20205 2006-11-01  Bruno Haible  <bruno@clisp.org>
20206
20207         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
20208         * lib/strcase.h: Include <string.h>.
20209         (strcasecmp): Define to rpl_strcasecmp here.
20210
20211 2006-11-01  Bruno Haible  <bruno@clisp.org>
20212
20213         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
20214
20215 2006-11-01  Eric Blake  <ebb9@byu.net>
20216
20217         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
20218
20219         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
20220
20221 2006-10-29  Bruno Haible  <bruno@clisp.org>
20222
20223         Make it compile in C++ mode.
20224         * lib/full-write.c (full_rw): Add a cast.
20225
20226 2006-11-01  Bruno Haible  <bruno@clisp.org>
20227
20228         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
20229         be POSIX compliant.
20230         Reported by Roger Persson <perrog@gmail.com>.
20231
20232 2006-11-01  Eric Blake  <ebb9@byu.net>
20233
20234         * lib/getopt_.h: Fix comments.
20235
20236 2006-10-31  Eric Blake  <ebb9@byu.net>
20237
20238         * modules/tmpdir (Depends-on): Add sys_stat.
20239         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
20240         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
20241         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
20242         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
20243         tempname.
20244
20245 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
20246
20247         Avoid some C++ diagnostics reported by Bruno Haible.
20248         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
20249         xmalloc.
20250         (quotearg_alloc): Use xcharalloc rather than xmalloc.
20251         (struct slotvec): Move to top level.
20252         (quotearg_n_options): Rewrite to avoid xmalloc.
20253         * lib/xalloc.h (xcharalloc): New function.
20254         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
20255         [defined __cplusplus]: Add function template that provides result
20256         type propagation.  This part of the change is from Bruno Haible.
20257
20258 2006-10-29  Bruno Haible  <bruno@clisp.org>
20259
20260         Make it compile in C++ mode.
20261         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
20262         * lib/strnlen1.c (strnlen1): Cast memchr result.
20263         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
20264         * lib/clean-temp.c (string_equals, string_hash): Add casts.
20265         (create_temp_dir): Rename local variable 'template'.
20266         (compile_csharp_using_sscli): Add cast.
20267         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
20268         * lib/findprog.c (find_in_path): Likewise.
20269         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
20270         * lib/wait-process.c (register_slave_subprocess): Likewise.
20271
20272 2006-10-22  Bruno Haible  <bruno@clisp.org>
20273
20274         * modules/tsearch: New file.
20275         * lib/tsearch.h: New file.
20276         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
20277         * m4/tsearch.m4: New file.
20278         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
20279
20280 2006-10-29  Eric Blake  <ebb9@byu.net>
20281
20282         * lib/arcfour.c: Assume config.h.
20283         * lib/arctwo.c: Likewise.
20284         * lib/base64.c: Likewise.
20285         * lib/check-version.c: Likewise.
20286         * lib/crc.c: Likewise.
20287         * lib/des.c: Likewise.
20288         * lib/gc-gnulib.c: Likewise.
20289         * lib/gc-libgcrypt.c: Likewise.
20290         * lib/gc-pbkdf2-sha1.c: Likewise.
20291         * lib/getaddrinfo.c: Likewise.
20292         * lib/getdelim.c: Likewise.
20293         * lib/getline.c: Likewise.
20294         * lib/hmac-md5.c: Likewise.
20295         * lib/hmac-sha1.c: Likewise.
20296         * lib/iconvme.c: Likewise.
20297         * lib/md2.c: Likewise.
20298         * lib/md4.c: Likewise.
20299         * lib/memxor.c: Likewise.
20300         * lib/read-file.c: Likewise.
20301         * lib/readline.c: Likewise.
20302         * lib/rijndael-alg-fst.c: Likewise.
20303         * lib/rijndael-api-fst.c: Likewise.
20304         * lib/xgetdomainname.c: Likewise.
20305
20306 2006-10-28  Eric Blake  <ebb9@byu.net>
20307
20308         * lib/xstrndup.c: Assume config.h.
20309
20310 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
20311
20312         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
20313         stat-macros.h is now for our own macros, whereas stat_h is for
20314         macros in the <sys/stat.h> name space.
20315         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
20316         (STAT_MACROS_H): Remove.
20317         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
20318         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
20319         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
20320         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
20321         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
20322         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
20323         Move these macros to ...
20324         * lib/stat_.h: here.  Don't include stat-macros.h.
20325         * lib/canonicalize.c: Don't include stat-macros.h.
20326         * lib/chown.c: Likewise.
20327         * lib/euidaccess.c: Likewise.
20328         * lib/file-type.c: Likewise.
20329         * lib/filemode.c: Likewise.
20330         * lib/glob.c: Likewise.
20331         * lib/isapipe.c: Likewise.
20332         * lib/lchown.c: Likewise.
20333         * lib/lstat.c: Likewise.
20334         * lib/mkdir-p.c: Likewise.
20335         * lib/rmdir.c: Likewise.
20336         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
20337         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
20338         unless mkdir isn't declared, to speed up 'configure'.
20339         Always create sys/stat.h, since it's unlikely any real sys/stat.h
20340         would define all the S_* symbols.
20341         * modules/canonicalize (Depends-on):
20342         Depend on sys_stat, not stat-macros.
20343         * modules/chown: Likewise.
20344         * modules/euidaccess: Likewise.
20345         * modules/filemode: Likewise.
20346         * modules/file-type: Likewise.
20347         * modules/glob: Likewise.
20348         * modules/isapipe: Likewise.
20349         * modules/lchown: Likewise.
20350         * modules/lstat: Likewise.
20351         * modules/mkancesdirs: Likewise.
20352         * modules/rmdir: Likewise.
20353         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
20354         * modules/modechange: Likewise.
20355         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
20356         (configure.ac): Remove gl_STAT_MACROS.
20357         * modules/sys_stat (Depends-on): Remove stat-macros.
20358
20359 2006-10-27  Bruno Haible  <bruno@clisp.org>
20360
20361         * m4/signed.m4: Remove file.
20362         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
20363         invocation.
20364         * modules/vasnprintf (Files): Remove m4/signed.m4.
20365
20366 2006-10-27  Bruno Haible  <bruno@clisp.org>
20367
20368         Update to GNU gettext 0.16.
20369         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
20370         m4/inttypes-h.m4, m4/signed.m4.
20371         * m4/gettext.m4: Update to GNU gettext 0.16.
20372         * m4/intl.m4: New file, from GNU gettext.
20373         * m4/intldir.m4: New file, from GNU gettext.
20374         * config/srclist.txt: Update
20375
20376 2006-10-27  Eric Blake  <ebb9@byu.net>
20377
20378         * MODULES.html.sh: Document tempname.
20379         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
20380         dependencies.
20381         (Files): Move lib/tempname.c...
20382         * modules/tempname: ...to this new module.
20383         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
20384         (gl_PREREQ_TEMPNAME): Move...
20385         * m4/tempname.m4: ...to this new file.
20386         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
20387         * modules/sys_stat (Depends-on): Add stat-macros.
20388         * lib/stat_.h (includes): Pick up stat macros.
20389         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
20390         if stat macros are broken.
20391         * lib/tempname.c (includes): No need to include "stat-macros.h".
20392         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
20393         (direxists, __path_search) [!_LIBC]: Don't compile these in
20394         gnulib; the tmpdir module covers that.
20395         * lib/tempname.h: New file.
20396
20397 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
20398
20399         * COPYING: Explain how gnulib-tool converts licence headers.
20400         Almost all wording by Eric Blake.
20401
20402 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
20403
20404         * lib/mbchar.h (is_basic_table): Make read-only.
20405         * lib/mbchar.c (is_basic_table): Likewise.
20406         Reported by John Darrington.
20407
20408 2006-10-25  Bruno Haible  <bruno@clisp.org>
20409
20410         * lib/progname.h (set_program_name): Undefine before defining.
20411
20412 2006-10-25  Bruno Haible  <bruno@clisp.org>
20413
20414         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
20415         false for non-gcc C++ compilers.
20416         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
20417
20418 2006-10-24  Bruno Haible  <bruno@clisp.org>
20419
20420         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
20421         iconv implementations like Irix iconv.
20422
20423 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20424
20425         * modules/vararrays: New file.
20426         * m4/vararrays.m4: New file, taken from diffutils.
20427         * MODULES.html.sh: New module vararrays.
20428
20429 2006-10-24  Karl Berry  <karl@gnu.org>
20430
20431         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
20432         Don't call GNU Unix.
20433
20434 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20435
20436         * users.txt: Add Libtool.
20437
20438         Sync from Libtool:
20439
20440         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20441
20442         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
20443         to gnulib's policy of including config.h unconditionally.
20444
20445 2006-10-24  Bruno Haible  <bruno@clisp.org>
20446
20447         * modules/wcwidth (Files): Add m4/wint_t.m4.
20448         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
20449         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
20450
20451 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20452
20453         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
20454         to pacify GCC with some -W flags enabled.  Problem reported by
20455         Bruno Haible.
20456
20457 2006-10-24  Jim Meyering  <jim@meyering.net>
20458
20459         * MODULES.html.sh: Remove uinttostr.  It's not a module.
20460         Reported by Karl Berry.
20461
20462 2006-10-23  Bruno Haible  <bruno@clisp.org>
20463
20464         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
20465
20466 2006-10-24  Bruno Haible  <bruno@clisp.org>
20467
20468         * lib/gl_list.h: Use C comment style, not C++ comment style.
20469
20470 2006-10-23  Eric Blake  <ebb9@byu.net>
20471
20472         * lib/getaddrinfo.c (includes): Add missing include.
20473
20474 2006-10-23  Bruno Haible  <bruno@clisp.org>
20475             Paul Eggert  <eggert@cs.ucla.edu>
20476
20477         Ability to rename obstack_free.
20478         * lib/obstack.h (__obstack_free): New macro. Declare instead of
20479         obstack_free.
20480         (obstack_free): Invoke the __obstack_free macro.
20481         * lib/obstack.c (obstack_free): Use __obstack_free macro.
20482
20483 2006-10-23  Bruno Haible  <bruno@clisp.org>
20484             Paul Eggert  <eggert@cs.ucla.edu>
20485
20486         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
20487         __argc, __argv from the declaration. (They are defined as macros on
20488         mingw.)
20489
20490 2006-10-22  Bruno Haible  <bruno@clisp.org>
20491
20492         * doc/gnulib-intro.texi: New file.
20493         * doc/gnulib.texi: Include it.
20494
20495 2006-10-21  Bruno Haible  <bruno@clisp.org>
20496
20497         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
20498         "Introduction", "Miscellanous Notes", "Particular Modules".
20499
20500 2006-10-21  Bruno Haible  <bruno@clisp.org>
20501
20502         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20503         Change mostlyclean-local rule to avoid sh syntax error from bash
20504         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
20505
20506 2006-10-23  Jim Meyering  <jim@meyering.net>
20507
20508         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
20509         in place of snprintf.
20510
20511         * modules/inttostr (Files): Add lib/uinttostr.c.
20512         * lib/uinttostr.c (inttostr): New file/function.
20513         * lib/inttostr.h (uinttostr): Declare.
20514         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
20515         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
20516         Add uinttostr.
20517         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
20518
20519 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20520
20521         * lib/canonicalize.c (ELOOP): Define if not already defined.
20522         Problem reported by Bruno Haible in
20523         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
20524
20525 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
20526
20527         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
20528         Problem reported by Perry Smith and Ville Laurikari.
20529
20530         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
20531         uses.
20532
20533 2006-10-19  Bruno Haible  <bruno@clisp.org>
20534
20535         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
20536         for mingw.
20537
20538 2006-10-19  Bruno Haible  <bruno@clisp.org>
20539
20540         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
20541         Needed for mingw.
20542
20543 2006-10-19  Bruno Haible  <bruno@clisp.org>
20544
20545         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
20546
20547 2006-10-19  Bruno Haible  <bruno@clisp.org>
20548
20549         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
20550         it.
20551
20552 2006-10-19  Bruno Haible  <bruno@clisp.org>
20553
20554         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
20555         invocation.
20556
20557 2006-10-19  Bruno Haible  <bruno@clisp.org>
20558
20559         * gnulib-tool (func_create_testdir): Don't include ftruncate and
20560         mountlist by default.
20561
20562 2006-10-16  Bruno Haible  <bruno@clisp.org>
20563
20564         * lib/c-strstr.c: Include c-strstr.h.
20565
20566 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20567
20568         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
20569         in a slash.
20570
20571 2006-10-18  Bruno Haible  <bruno@clisp.org>
20572
20573         * lib/lock.h [C++]: Wrap definitions in extern "C".
20574
20575 2006-10-18  Bruno Haible  <bruno@clisp.org>
20576
20577         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
20578         gl_LIBOBJS list.
20579
20580 2006-10-18  Bruno Haible  <bruno@clisp.org>
20581
20582         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
20583
20584 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
20585
20586         * lib/xstrtol.h: Include gettext.h.
20587         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
20588         Problem reported by Eric Blake.
20589         * modules/xstrtol (Depends-on): Add gettext-h.
20590
20591 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
20592
20593         * lib/strftime.c (advance): New macro.
20594         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
20595         incomplete type, so you can't add 0 to it.  Problem and patch
20596         reported by Eelco Dolstra for dietlibc.
20597
20598 2006-10-18  Jim Meyering  <jim@meyering.net>
20599
20600         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
20601         type for a local, and rename it: s/up/user_proc/.
20602
20603 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
20604
20605         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
20606         READ_UTMP_USER_PROCESS.
20607         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
20608
20609 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
20610
20611         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
20612         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
20613
20614 2006-10-17  Eric Blake  <ebb9@byu.net>
20615
20616         * lib/sigprocmask.c (sigprocmask): Fix typo.
20617
20618         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
20619
20620         * modules/clean-temp (Makefile.am): Don't add to make output...
20621         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
20622         config.h.
20623
20624 2006-10-17  Bruno Haible  <bruno@clisp.org>
20625
20626         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
20627         differently if DEFAULT_TEXT_DOMAIN is set.
20628
20629 2006-10-16  Bruno Haible  <bruno@clisp.org>
20630
20631         * lib/clean-temp.c: Include fwriteerror.h.
20632
20633 2006-10-16  Bruno Haible  <bruno@clisp.org>
20634
20635         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
20636
20637 2006-10-16  Bruno Haible  <bruno@clisp.org>
20638
20639         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
20640         * lib/sigprocmask.h: Include <sys/types.h>.
20641         (sigset_t): Use the system's definition if present.
20642
20643 2006-10-17  Eric Blake  <ebb9@byu.net>
20644
20645         * lib/xvasprintf.c (includes): Assume config.h.
20646         * lib/xasprintf.c (includes): Likewise.
20647
20648 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
20649
20650         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
20651         at least as wide as intmax_t.
20652
20653 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
20654
20655         (Imported from Automake.)
20656         * build-aux/gnupload: Update to version 1.1 of directive file.
20657
20658 2006-10-16  Eric Blake  <ebb9@byu.net>
20659
20660         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
20661         match Automake 1.10a.
20662
20663 2006-10-14  Bruno Haible  <bruno@clisp.org>
20664
20665         * modules/sigprocmask: New file.
20666         * lib/sigprocmask.h: New file.
20667         * lib/sigprocmask.c: New file.
20668         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
20669         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
20670         request sigprocmask.o.
20671         (gl_PREREQ_SIGPROCMASK): New macro.
20672         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
20673         (Depends-on): Add sigprocmask.
20674         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
20675         gt_SIGNALBLOCKING. Test for 'raise' only once.
20676         * lib/fatal-signal.c: Include sigprocmask.h.
20677         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
20678         unblock_fatal_signals): Define always.
20679         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20680         sigprocmask.
20681
20682 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
20683
20684         Sync from Automake.
20685         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
20686         which incorrectly sets the mode of an existing destination
20687         directory.  In some cases the unpatched install-sh could do the
20688         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
20689         system.  We hope this is rare in practice, but it's clearly worth
20690         fixing.  Problem reported by Alex Unleashed in
20691         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
20692         Also, don't bother to check for -m bugs unless we're using -m;
20693         suggested by Stepan Kasal.
20694
20695 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20696
20697         Sync from Automake.
20698         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
20699         `-c' flag, so they appear at the same position as in %FASTDEP%
20700         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
20701         which ignores unknown options only after the first non-option.
20702         Bug report against M4 by Nelson H. F. Beebe.
20703
20704 2006-10-13  Jim Meyering  <jim@meyering.net>
20705
20706         Fix a bug in yesterday's change.
20707         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
20708         p->fts_statp->st_dev would be used uninitialized.
20709         Ensures that we always call fts_stat on the very first entry.
20710         Miklos Szeredi reported that find -xdev stopped working.
20711
20712 2006-10-12  Bruno Haible  <bruno@clisp.org>
20713
20714         * gnulib-tool (func_get_automake_snippet): Append an automatically
20715         computed EXTRA_DIST augmentation.
20716         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
20717         * modules/alloca-opt (Makefile.am): Likewise.
20718         * modules/allocsa (Makefile.am): Likewise.
20719         * modules/arcfour (Makefile.am): Likewise.
20720         * modules/arctwo (Makefile.am): Likewise.
20721         * modules/argmatch (Makefile.am): Likewise.
20722         * modules/argz (Makefile.am): Likewise.
20723         * modules/atexit (Makefile.am): Likewise.
20724         * modules/backupfile (Makefile.am): Likewise.
20725         * modules/byteswap (Makefile.am): Likewise.
20726         * modules/c-strtod (Makefile.am): Likewise.
20727         * modules/c-strtold (Makefile.am): Likewise.
20728         * modules/calloc (Makefile.am): Likewise.
20729         * modules/canon-host (Makefile.am): Likewise.
20730         * modules/canonicalize (Makefile.am): Likewise.
20731         * modules/chdir-long (Makefile.am): Likewise.
20732         * modules/chdir-safer (Makefile.am): Likewise.
20733         * modules/check-version (Makefile.am): Likewise.
20734         * modules/chown (Makefile.am): Likewise.
20735         * modules/cloexec (Makefile.am): Likewise.
20736         * modules/close-stream (Makefile.am): Likewise.
20737         * modules/closeout (Makefile.am): Likewise.
20738         * modules/crc (Makefile.am): Likewise.
20739         * modules/csharpexec (Makefile.am): Likewise.
20740         * modules/cycle-check (Makefile.am): Likewise.
20741         * modules/des (Makefile.am): Likewise.
20742         * modules/dev-ino (Makefile.am): Likewise.
20743         * modules/dirfd (Makefile.am): Likewise.
20744         * modules/dirname (Makefile.am): Likewise.
20745         * modules/dup2 (Makefile.am): Likewise.
20746         * modules/eealloc (Makefile.am): Likewise.
20747         * modules/error (Makefile.am): Likewise.
20748         * modules/euidaccess (Makefile.am): Likewise.
20749         * modules/exclude (Makefile.am): Likewise.
20750         * modules/exitfail (Makefile.am): Likewise.
20751         * modules/fcntl-safer (Makefile.am): Likewise.
20752         * modules/fcntl (Makefile.am): Likewise.
20753         * modules/file-type (Makefile.am): Likewise.
20754         * modules/fileblocks (Makefile.am): Likewise.
20755         * modules/filemode (Makefile.am): Likewise.
20756         * modules/filenamecat (Makefile.am): Likewise.
20757         * modules/fnmatch (Makefile.am): Likewise.
20758         * modules/fopen-safer (Makefile.am): Likewise.
20759         * modules/fpending (Makefile.am): Likewise.
20760         * modules/fprintftime (Makefile.am): Likewise.
20761         * modules/free (Makefile.am): Likewise.
20762         * modules/fsusage (Makefile.am): Likewise.
20763         * modules/ftruncate (Makefile.am): Likewise.
20764         * modules/fts (Makefile.am): Likewise.
20765         * modules/gc-arcfour (Makefile.am): Likewise.
20766         * modules/gc-des (Makefile.am): Likewise.
20767         * modules/gc-hmac-md5 (Makefile.am): Likewise.
20768         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
20769         * modules/gc-md4 (Makefile.am): Likewise.
20770         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20771         * modules/gc-sha1 (Makefile.am): Likewise.
20772         * modules/gc (Makefile.am): Likewise.
20773         * modules/getaddrinfo (Makefile.am): Likewise.
20774         * modules/getcwd (Makefile.am): Likewise.
20775         * modules/getdelim (Makefile.am): Likewise.
20776         * modules/getdomainname (Makefile.am): Likewise.
20777         * modules/getgroups (Makefile.am): Likewise.
20778         * modules/gethostname (Makefile.am): Likewise.
20779         * modules/gethrxtime (Makefile.am): Likewise.
20780         * modules/getline (Makefile.am): Likewise.
20781         * modules/getloadavg (Makefile.am): Likewise.
20782         * modules/getlogin_r (Makefile.am): Likewise.
20783         * modules/getndelim2 (Makefile.am): Likewise.
20784         * modules/getopt (Makefile.am): Likewise.
20785         * modules/getpagesize (Makefile.am): Likewise.
20786         * modules/getpass-gnu (Makefile.am): Likewise.
20787         * modules/getpass (Makefile.am): Likewise.
20788         * modules/getsubopt (Makefile.am): Likewise.
20789         * modules/gettime (Makefile.am): Likewise.
20790         * modules/gettimeofday (Makefile.am): Likewise.
20791         * modules/getugroups (Makefile.am): Likewise.
20792         * modules/getusershell (Makefile.am): Likewise.
20793         * modules/glob (Makefile.am): Likewise.
20794         * modules/group-member (Makefile.am): Likewise.
20795         * modules/hard-locale (Makefile.am): Likewise.
20796         * modules/hash (Makefile.am): Likewise.
20797         * modules/hmac-md5 (Makefile.am): Likewise.
20798         * modules/hmac-sha1 (Makefile.am): Likewise.
20799         * modules/human (Makefile.am): Likewise.
20800         * modules/idcache (Makefile.am): Likewise.
20801         * modules/imaxabs (Makefile.am): Likewise.
20802         * modules/imaxdiv (Makefile.am): Likewise.
20803         * modules/inet_ntop (Makefile.am): Likewise.
20804         * modules/inet_pton (Makefile.am): Likewise.
20805         * modules/intprops (Makefile.am): Likewise.
20806         * modules/inttostr (Makefile.am): Likewise.
20807         * modules/inttypes (Makefile.am): Likewise.
20808         * modules/isapipe (Makefile.am): Likewise.
20809         * modules/javaversion (Makefile.am): Likewise.
20810         * modules/lchmod (Makefile.am): Likewise.
20811         * modules/lchown (Makefile.am): Likewise.
20812         * modules/localcharset (Makefile.am): Likewise.
20813         * modules/long-options (Makefile.am): Likewise.
20814         * modules/lstat (Makefile.am): Likewise.
20815         * modules/malloc (Makefile.am): Likewise.
20816         * modules/mathl (Makefile.am): Likewise.
20817         * modules/mbchar (Makefile.am): Likewise.
20818         * modules/md2 (Makefile.am): Likewise.
20819         * modules/md4 (Makefile.am): Likewise.
20820         * modules/md5 (Makefile.am): Likewise.
20821         * modules/memcasecmp (Makefile.am): Likewise.
20822         * modules/memchr (Makefile.am): Likewise.
20823         * modules/memcmp (Makefile.am): Likewise.
20824         * modules/memcoll (Makefile.am): Likewise.
20825         * modules/memcpy (Makefile.am): Likewise.
20826         * modules/memmem (Makefile.am): Likewise.
20827         * modules/memmove (Makefile.am): Likewise.
20828         * modules/mempcpy (Makefile.am): Likewise.
20829         * modules/memrchr (Makefile.am): Likewise.
20830         * modules/memset (Makefile.am): Likewise.
20831         * modules/memxor (Makefile.am): Likewise.
20832         * modules/mkancesdirs (Makefile.am): Likewise.
20833         * modules/mkdir-p (Makefile.am): Likewise.
20834         * modules/mkdir (Makefile.am): Likewise.
20835         * modules/mkdtemp (Makefile.am): Likewise.
20836         * modules/mkstemp (Makefile.am): Likewise.
20837         * modules/mktime (Makefile.am): Likewise.
20838         * modules/modechange (Makefile.am): Likewise.
20839         * modules/mountlist (Makefile.am): Likewise.
20840         * modules/nanosleep (Makefile.am): Likewise.
20841         * modules/obstack (Makefile.am): Likewise.
20842         * modules/openat (Makefile.am): Likewise.
20843         * modules/pagealign_alloc (Makefile.am): Likewise.
20844         * modules/pathmax (Makefile.am): Likewise.
20845         * modules/physmem (Makefile.am): Likewise.
20846         * modules/poll (Makefile.am): Likewise.
20847         * modules/posixtm (Makefile.am): Likewise.
20848         * modules/posixver (Makefile.am): Likewise.
20849         * modules/putenv (Makefile.am): Likewise.
20850         * modules/quote (Makefile.am): Likewise.
20851         * modules/quotearg (Makefile.am): Likewise.
20852         * modules/raise (Makefile.am): Likewise.
20853         * modules/read-file (Makefile.am): Likewise.
20854         * modules/readline (Makefile.am): Likewise.
20855         * modules/readlink (Makefile.am): Likewise.
20856         * modules/readtokens (Makefile.am): Likewise.
20857         * modules/readutmp (Makefile.am): Likewise.
20858         * modules/realloc (Makefile.am): Likewise.
20859         * modules/regex (Makefile.am): Likewise.
20860         * modules/rename-dest-slash (Makefile.am): Likewise.
20861         * modules/rename (Makefile.am): Likewise.
20862         * modules/rijndael (Makefile.am): Likewise.
20863         * modules/rmdir (Makefile.am): Likewise.
20864         * modules/rpmatch (Makefile.am): Likewise.
20865         * modules/safe-read (Makefile.am): Likewise.
20866         * modules/safe-write (Makefile.am): Likewise.
20867         * modules/same-inode (Makefile.am): Likewise.
20868         * modules/same (Makefile.am): Likewise.
20869         * modules/save-cwd (Makefile.am): Likewise.
20870         * modules/savedir (Makefile.am): Likewise.
20871         * modules/setenv (Makefile.am): Likewise.
20872         * modules/settime (Makefile.am): Likewise.
20873         * modules/sha1 (Makefile.am): Likewise.
20874         * modules/sig2str (Makefile.am): Likewise.
20875         * modules/snprintf (Makefile.am): Likewise.
20876         * modules/stat-macros (Makefile.am): Likewise.
20877         * modules/stat-time (Makefile.am): Likewise.
20878         * modules/stdbool (Makefile.am): Likewise.
20879         * modules/stdint (Makefile.am): Likewise.
20880         * modules/stdlib-safer (Makefile.am): Likewise.
20881         * modules/stpcpy (Makefile.am): Likewise.
20882         * modules/stpncpy (Makefile.am): Likewise.
20883         * modules/strcase (Makefile.am): Likewise.
20884         * modules/strcasestr (Makefile.am): Likewise.
20885         * modules/strchrnul (Makefile.am): Likewise.
20886         * modules/strcspn (Makefile.am): Likewise.
20887         * modules/strdup (Makefile.am): Likewise.
20888         * modules/strerror (Makefile.am): Likewise.
20889         * modules/strftime (Makefile.am): Likewise.
20890         * modules/strndup (Makefile.am): Likewise.
20891         * modules/strnlen (Makefile.am): Likewise.
20892         * modules/strpbrk (Makefile.am): Likewise.
20893         * modules/strsep (Makefile.am): Likewise.
20894         * modules/strstr (Makefile.am): Likewise.
20895         * modules/strtod (Makefile.am): Likewise.
20896         * modules/strtoimax (Makefile.am): Likewise.
20897         * modules/strtok_r (Makefile.am): Likewise.
20898         * modules/strtol (Makefile.am): Likewise.
20899         * modules/strtoll (Makefile.am): Likewise.
20900         * modules/strtoul (Makefile.am): Likewise.
20901         * modules/strtoull (Makefile.am): Likewise.
20902         * modules/strtoumax (Makefile.am): Likewise.
20903         * modules/strverscmp (Makefile.am): Likewise.
20904         * modules/sys_socket (Makefile.am): Likewise.
20905         * modules/sys_stat (Makefile.am): Likewise.
20906         * modules/sysexits (Makefile.am): Likewise.
20907         * modules/time_r (Makefile.am): Likewise.
20908         * modules/timegm (Makefile.am): Likewise.
20909         * modules/timespec (Makefile.am): Likewise.
20910         * modules/tmpfile-safer (Makefile.am): Likewise.
20911         * modules/trim (Makefile.am): Likewise.
20912         * modules/unistd-safer (Makefile.am): Likewise.
20913         * modules/unlinkdir (Makefile.am): Likewise.
20914         * modules/unlocked-io (Makefile.am): Likewise.
20915         * modules/userspec (Makefile.am): Likewise.
20916         * modules/utime (Makefile.am): Likewise.
20917         * modules/utimecmp (Makefile.am): Likewise.
20918         * modules/utimens (Makefile.am): Likewise.
20919         * modules/vasnprintf (Makefile.am): Likewise.
20920         * modules/vasprintf (Makefile.am): Likewise.
20921         * modules/vsnprintf (Makefile.am): Likewise.
20922         * modules/xalloc (Makefile.am): Likewise.
20923         * modules/xgetcwd (Makefile.am): Likewise.
20924         * modules/xnanosleep (Makefile.am): Likewise.
20925         * modules/xreadlink (Makefile.am): Likewise.
20926         * modules/xstrtod (Makefile.am): Likewise.
20927         * modules/xstrtol (Makefile.am): Likewise.
20928         * modules/xstrtold (Makefile.am): Likewise.
20929         * modules/yesno (Makefile.am): Likewise.
20930         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
20931
20932 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
20933
20934         * modules/error (Makefile.am): Distribute files through
20935         EXTRA_DIST, not lib_SOURCES.
20936
20937 2006-10-12  Eric Blake  <ebb9@byu.net>
20938
20939         * modules/error (Makefile.am): Distribute files in /lib.
20940         * modules/obstack (Makefile.am): Likewise.
20941
20942 2006-10-12  Bruno Haible  <bruno@clisp.org>
20943
20944         * modules/acl (Makefile.am): Distribute all files in lib/ through
20945         EXTRA_DIST.
20946         * modules/arcfour (Makefile.am): Likewise.
20947         * modules/arctwo (Makefile.am): Likewise.
20948         * modules/argmatch (Makefile.am): Likewise.
20949         * modules/argz (Makefile.am): Likewise.
20950         * modules/atexit (Makefile.am): Likewise.
20951         * modules/backupfile (Makefile.am): Likewise.
20952         * modules/c-strtod (Makefile.am): Likewise.
20953         * modules/c-strtold (Makefile.am): Likewise.
20954         * modules/calloc (Makefile.am): Likewise.
20955         * modules/canon-host (Makefile.am): Likewise.
20956         * modules/canonicalize (Makefile.am): Likewise.
20957         * modules/chdir-long (Makefile.am): Likewise.
20958         * modules/chdir-safer (Makefile.am): Likewise.
20959         * modules/check-version (Makefile.am): Likewise.
20960         * modules/chown (Makefile.am): Likewise.
20961         * modules/cloexec (Makefile.am): Likewise.
20962         * modules/close-stream (Makefile.am): Likewise.
20963         * modules/closeout (Makefile.am): Likewise.
20964         * modules/crc (Makefile.am): Likewise.
20965         * modules/cycle-check (Makefile.am): Likewise.
20966         * modules/des (Makefile.am): Likewise.
20967         * modules/dirfd (Makefile.am): Likewise.
20968         * modules/dirname (Makefile.am): Likewise.
20969         * modules/dup2 (Makefile.am): Likewise.
20970         * modules/euidaccess (Makefile.am): Likewise.
20971         * modules/exclude (Makefile.am): Likewise.
20972         * modules/exitfail (Makefile.am): Likewise.
20973         * modules/fcntl-safer (Makefile.am): Likewise.
20974         * modules/file-type (Makefile.am): Likewise.
20975         * modules/fileblocks (Makefile.am): Likewise.
20976         * modules/filemode (Makefile.am): Likewise.
20977         * modules/filenamecat (Makefile.am): Likewise.
20978         * modules/fnmatch (Makefile.am): Likewise.
20979         * modules/fopen-safer (Makefile.am): Likewise.
20980         * modules/fpending (Makefile.am): Likewise.
20981         * modules/fprintftime (Makefile.am): Likewise.
20982         * modules/free (Makefile.am): Likewise.
20983         * modules/fsusage (Makefile.am): Likewise.
20984         * modules/ftruncate (Makefile.am): Likewise.
20985         * modules/fts (Makefile.am): Likewise.
20986         * modules/gc (Makefile.am): Likewise.
20987         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
20988         * modules/getaddrinfo (Makefile.am): Likewise.
20989         * modules/getcwd (Makefile.am): Likewise.
20990         * modules/getdelim (Makefile.am): Likewise.
20991         * modules/getdomainname (Makefile.am): Likewise.
20992         * modules/getgroups (Makefile.am): Likewise.
20993         * modules/gethostname (Makefile.am): Likewise.
20994         * modules/gethrxtime (Makefile.am): Likewise.
20995         * modules/getline (Makefile.am): Likewise.
20996         * modules/getloadavg (Makefile.am): Likewise.
20997         * modules/getlogin_r (Makefile.am): Likewise.
20998         * modules/getopt (Makefile.am): Likewise.
20999         * modules/getpass (Makefile.am): Likewise.
21000         * modules/getpass-gnu (Makefile.am): Likewise.
21001         * modules/getsubopt (Makefile.am): Likewise.
21002         * modules/gettime (Makefile.am): Likewise.
21003         * modules/gettimeofday (Makefile.am): Likewise.
21004         * modules/getugroups (Makefile.am): Likewise.
21005         * modules/getusershell (Makefile.am): Likewise.
21006         * modules/glob (Makefile.am): Likewise.
21007         * modules/group-member (Makefile.am): Likewise.
21008         * modules/hard-locale (Makefile.am): Likewise.
21009         * modules/hash (Makefile.am): Likewise.
21010         * modules/hmac-md5 (Makefile.am): Likewise.
21011         * modules/hmac-sha1 (Makefile.am): Likewise.
21012         * modules/human (Makefile.am): Likewise.
21013         * modules/idcache (Makefile.am): Likewise.
21014         * modules/imaxabs (Makefile.am): Likewise.
21015         * modules/imaxdiv (Makefile.am): Likewise.
21016         * modules/inet_ntop (Makefile.am): Likewise.
21017         * modules/inet_pton (Makefile.am): Likewise.
21018         * modules/inttostr (Makefile.am): Likewise.
21019         * modules/isapipe (Makefile.am): Likewise.
21020         * modules/lchown (Makefile.am): Likewise.
21021         * modules/long-options (Makefile.am): Likewise.
21022         * modules/lstat (Makefile.am): Likewise.
21023         * modules/malloc (Makefile.am): Likewise.
21024         * modules/mathl (Makefile.am): Likewise.
21025         * modules/mbchar (Makefile.am): Likewise.
21026         * modules/md2 (Makefile.am): Likewise.
21027         * modules/md4 (Makefile.am): Likewise.
21028         * modules/md5 (Makefile.am): Likewise.
21029         * modules/memcasecmp (Makefile.am): Likewise.
21030         * modules/memchr (Makefile.am): Likewise.
21031         * modules/memcmp (Makefile.am): Likewise.
21032         * modules/memcoll (Makefile.am): Likewise.
21033         * modules/memcpy (Makefile.am): Likewise.
21034         * modules/memmem (Makefile.am): Likewise.
21035         * modules/memmove (Makefile.am): Likewise.
21036         * modules/mempcpy (Makefile.am): Likewise.
21037         * modules/memrchr (Makefile.am): Likewise.
21038         * modules/memset (Makefile.am): Likewise.
21039         * modules/memxor (Makefile.am): Likewise.
21040         * modules/mkancesdirs (Makefile.am): Likewise.
21041         * modules/mkdir (Makefile.am): Likewise.
21042         * modules/mkdir-p (Makefile.am): Likewise.
21043         * modules/mkdtemp (Makefile.am): Likewise.
21044         * modules/mkstemp (Makefile.am): Likewise.
21045         * modules/mktime (Makefile.am): Likewise.
21046         * modules/modechange (Makefile.am): Likewise.
21047         * modules/mountlist (Makefile.am): Likewise.
21048         * modules/nanosleep (Makefile.am): Likewise.
21049         * modules/openat (Makefile.am): Likewise.
21050         * modules/pagealign_alloc (Makefile.am): Likewise.
21051         * modules/physmem (Makefile.am): Likewise.
21052         * modules/poll (Makefile.am): Likewise.
21053         * modules/posixtm (Makefile.am): Likewise.
21054         * modules/posixver (Makefile.am): Likewise.
21055         * modules/putenv (Makefile.am): Likewise.
21056         * modules/quote (Makefile.am): Likewise.
21057         * modules/quotearg (Makefile.am): Likewise.
21058         * modules/raise (Makefile.am): Likewise.
21059         * modules/read-file (Makefile.am): Likewise.
21060         * modules/readline (Makefile.am): Likewise.
21061         * modules/readlink (Makefile.am): Likewise.
21062         * modules/readtokens (Makefile.am): Likewise.
21063         * modules/readutmp (Makefile.am): Likewise.
21064         * modules/realloc (Makefile.am): Likewise.
21065         * modules/regex (Makefile.am): Likewise.
21066         * modules/rename (Makefile.am): Likewise.
21067         * modules/rename-dest-slash (Makefile.am): Likewise.
21068         * modules/rijndael (Makefile.am): Likewise.
21069         * modules/rmdir (Makefile.am): Likewise.
21070         * modules/rpmatch (Makefile.am): Likewise.
21071         * modules/safe-read (Makefile.am): Likewise.
21072         * modules/safe-write (Makefile.am): Likewise.
21073         * modules/same (Makefile.am): Likewise.
21074         * modules/save-cwd (Makefile.am): Likewise.
21075         * modules/savedir (Makefile.am): Likewise.
21076         * modules/setenv (Makefile.am): Likewise.
21077         * modules/settime (Makefile.am): Likewise.
21078         * modules/sha1 (Makefile.am): Likewise.
21079         * modules/sig2str (Makefile.am): Likewise.
21080         * modules/snprintf (Makefile.am): Likewise.
21081         * modules/stdlib-safer (Makefile.am): Likewise.
21082         * modules/stpcpy (Makefile.am): Likewise.
21083         * modules/stpncpy (Makefile.am): Likewise.
21084         * modules/strcase (Makefile.am): Likewise.
21085         * modules/strcasestr (Makefile.am): Likewise.
21086         * modules/strchrnul (Makefile.am): Likewise.
21087         * modules/strcspn (Makefile.am): Likewise.
21088         * modules/strdup (Makefile.am): Likewise.
21089         * modules/strerror (Makefile.am): Likewise.
21090         * modules/strftime (Makefile.am): Likewise.
21091         * modules/strndup (Makefile.am): Likewise.
21092         * modules/strnlen (Makefile.am): Likewise.
21093         * modules/strpbrk (Makefile.am): Likewise.
21094         * modules/strsep (Makefile.am): Likewise.
21095         * modules/strstr (Makefile.am): Likewise.
21096         * modules/strtod (Makefile.am): Likewise.
21097         * modules/strtoimax (Makefile.am): Likewise.
21098         * modules/strtok_r (Makefile.am): Likewise.
21099         * modules/strtol (Makefile.am): Likewise.
21100         * modules/strtoll (Makefile.am): Likewise.
21101         * modules/strtoul (Makefile.am): Likewise.
21102         * modules/strtoull (Makefile.am): Likewise.
21103         * modules/strtoumax (Makefile.am): Likewise.
21104         * modules/strverscmp (Makefile.am): Likewise.
21105         * modules/time_r (Makefile.am): Likewise.
21106         * modules/timegm (Makefile.am): Likewise.
21107         * modules/tmpfile-safer (Makefile.am): Likewise.
21108         * modules/unistd-safer (Makefile.am): Likewise.
21109         * modules/unlinkdir (Makefile.am): Likewise.
21110         * modules/userspec (Makefile.am): Likewise.
21111         * modules/utime (Makefile.am): Likewise.
21112         * modules/utimecmp (Makefile.am): Likewise.
21113         * modules/utimens (Makefile.am): Likewise.
21114         * modules/vasnprintf (Makefile.am): Likewise.
21115         * modules/vasprintf (Makefile.am): Likewise.
21116         * modules/vsnprintf (Makefile.am): Likewise.
21117         * modules/xalloc (Makefile.am): Likewise.
21118         * modules/xgetcwd (Makefile.am): Likewise.
21119         * modules/xnanosleep (Makefile.am): Likewise.
21120         * modules/xreadlink (Makefile.am): Likewise.
21121         * modules/xstrtod (Makefile.am): Likewise.
21122         * modules/xstrtol (Makefile.am): Likewise.
21123         * modules/xstrtold (Makefile.am): Likewise.
21124         * modules/yesno (Makefile.am): Likewise.
21125
21126 2006-10-12  Jim Meyering  <jim@meyering.net>
21127
21128         * m4/getloadavg.m4: Revert the change below.
21129
21130         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
21131         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
21132         fail with a symlink, which is what coreutils' ./bootstrap now
21133         creates by default.
21134
21135 2006-10-12  Bruno Haible  <bruno@clisp.org>
21136
21137         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
21138         mingw.
21139         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
21140         MSVC and mingw explicitly.
21141
21142 2006-10-11  Simon Josefsson  <jas@extundo.com>
21143             Bruno Haible  <bruno@clisp.org>
21144
21145         Add support for multiple gnulib-tool invocations in the scope of a
21146         single configure.ac file.
21147         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
21148         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
21149         with the same contents as the _LIBADD variable.
21150         (func_emit_initmacro_start, func_emit_initmacro_end,
21151         func_emit_initmacro_done): New functions.
21152         (func_import, func_create_testdir): Invoke them. Allow the identifiers
21153         gl_LIBOBJS and gl_LTLIBOBJS.
21154
21155 2006-10-11  Bruno Haible  <bruno@clisp.org>
21156
21157         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
21158         (func_create_testdir): Don't create po/Makefile.am, don't invoke
21159         autoreconf. Instead, invoke autopoint explicitly but move back the
21160         *.m4 files from gnulib.
21161
21162 2006-10-11  Bruno Haible  <bruno@clisp.org>
21163
21164         * gnulib-tool (func_usage): Make module names after --create-testdir
21165         optional.
21166         (func_create_testdir): If no module was specified, use nearly all
21167         modules.
21168
21169 2006-10-12  Jim Meyering  <jim@meyering.net>
21170
21171         Big performance improvement for fts-based tools that use FTS_NOSTAT.
21172         Avoid spurious inode-mismatch problems on non-POSIX file systems.
21173         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
21174         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
21175         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
21176         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
21177         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
21178         (fts_set_stat_required): New function.
21179         (fts_open): Defer the calls to fts_stat, if possible or requested.
21180         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
21181         into fts_stat itself.
21182         (fts_read): Perform any required (deferred) fts_stat call.
21183         (fts_build): Likewise, for the directory we're about to open and read.
21184         In the readdir loop, carefully decide whether each entry will require
21185         an eventual call to fts_stat, using dirent.d_type info if available.
21186         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
21187         a command line argument into this function.  Update all callers.
21188         Map a return value of FTS_DOT to FTS_D for a command line argument.
21189         * modules/fts (Depends-on): Add d-type.  Alphabetize.
21190         Thanks to Miklos Szeredi for his tenacity and for the initial
21191         bug report about "find" failing on a FUSE-based file system.
21192
21193         * lib/fts.c (fts_open): Use consistent indentation.
21194
21195 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
21196
21197         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
21198         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
21199         reported by Jim Meyering.  All uses of cache variables renamed
21200         to match Autoconf's.
21201         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
21202         the other one.
21203
21204         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
21205         Fix misspelling in diagnostic.
21206
21207 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21208
21209         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
21210         defined.  Problem reported by Matthew Woehlke.
21211
21212         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
21213         Add support for Tandem NonStop R series.
21214         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
21215         Use new macro.
21216
21217         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
21218         (has_trailing_slash): Omit size arg; all callers changed.
21219         Omit 'inline', since it doesn't help performance and we'd
21220         need to configure it.
21221         Don't count //, ///, etc. as having a trailing slash.
21222         As a side effect, this removes a C99ism reported by Matthew Woehlke.
21223         (rpl_rename_dest_slash): On failure, use rename's errno rather
21224         than (in some cases) an incorrect or junk errno.
21225         Simplify code by removing need to compute length; this does
21226         cause it to make two passes instead of one over the file name,
21227         but it's worth it.
21228
21229         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
21230         change, since Autoconf's version may no longer be appropriate now
21231         that we are using CVS Autoconf's version.  Add support for Tandem.
21232
21233 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21234             Bruno Haible  <bruno@clisp.org>
21235
21236         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
21237         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
21238         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
21239         gl_AC_TYPE_LONG_LONG.
21240
21241         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
21242         instead of HAVE_LONG_LONG.
21243         * lib/printf-args.c (printf_fetchargs): Likewise.
21244         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
21245         * lib/vasnprintf.c (VASNPRINTF): Likewise.
21246         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
21247         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
21248         gl_AC_TYPE_LONG_LONG.
21249
21250 2006-10-11  Bruno Haible  <bruno@clisp.org>
21251
21252         * m4/longlong.m4: Add comments.
21253         * m4/ulonglong.m4: Likewise.
21254
21255 2006-10-10  Bruno Haible  <bruno@clisp.org>
21256
21257         Make it possible to #define stpcpy, strdup to aliases.
21258         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
21259         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
21260
21261 2006-10-10  Bruno Haible  <bruno@clisp.org>
21262
21263         Make it possible to #define gcd to an alias.
21264         * lib/gcd.c: Include config.h.
21265
21266 2006-10-10  Bruno Haible  <bruno@clisp.org>
21267
21268         Make it possible to #define c_isascii to an alias.
21269         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
21270         defined. Undefine the macros before defining them, to avoid gcc
21271         warnings.
21272         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
21273         define NO_C_CTYPE_MACROS early.
21274
21275 2006-10-10  Bruno Haible  <bruno@clisp.org>
21276
21277         Make it possible to #define set_program_name to an alias.
21278         * lib/progname.c: Don't undefine set_program_name; instead, undefine
21279         ENABLE_RELOCATABLE early.
21280
21281 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21282
21283         Port to Tandem NSK OSS, which has 64-bit signed int but at most
21284         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
21285         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
21286         More generally, don't assume that 64-bit signed int is available
21287         if unsigned int is, and vice versa.
21288         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
21289         unsigned symbols, not on their signed counterparts.
21290         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
21291         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
21292         (UINT64_C, UINTMAX_C):
21293         Likewise.
21294         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
21295         unsigned counterparts.
21296         (Have_long_long, Unsigned): New macros.
21297         (Int): Renamed from INT.
21298         (strtoimax): Use the new macros.
21299         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
21300         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
21301         * modules/inttypes (inttypes.h): Substitute
21302         HAVE_UNSIGNED_LONG_LONG_INT.
21303         * modules/stdint (stdint.h): Likewise.
21304         (Files): Add m4/ulonglong.m4.
21305
21306 2006-10-10  Bruno Haible  <bruno@clisp.org>
21307
21308         Fix a gcc -Wshadow warning.
21309         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
21310         to 'bucket'.
21311         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
21312         gl_linked_indexof_from_to): Likewise.
21313         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
21314         Likewise.
21315         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
21316         Likewise.
21317         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
21318         Reported by Eric Blake.
21319
21320 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
21321
21322         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
21323         for NetBSD.  Problem reported by Bruno Haible.
21324
21325 2006-10-09  Jim Meyering  <jim@meyering.net>
21326
21327         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
21328         Patch from Bruno Haible.
21329
21330 2006-10-09  Jim Meyering  <jim@meyering.net>
21331
21332         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
21333         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
21334         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
21335
21336 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
21337
21338         Don't include <config.h> twice; this doesn't work in some cases,
21339         e.g., when config.h has "#define intmax_t long long int" and
21340         we include <config.h>, <inttypes.h>, <config.h> in that order.
21341         Problem reported by Matthew Woehlke in:
21342         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
21343         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
21344         * lib/fts-cycle.c: Don't include config.h.
21345         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
21346         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
21347         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
21348         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
21349         inttypes.h.
21350         * lib/xstrtoumax.c: Likewise.
21351         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
21352         __strtol and the like, so that this module is more like its siblings.
21353         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
21354         Remove; no longer needed now that we assume gnulib inttypes.h.
21355
21356 2006-10-08  Bruno Haible  <bruno@clisp.org>
21357
21358         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
21359         option.
21360
21361 2006-10-07  Jim Meyering  <jim@meyering.net>
21362
21363         * modules/inttypes (inttypes.h): Revert what seems to have been
21364         an inadvertent part of today's change: use "|", not "/" in the
21365         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
21366
21367 2006-10-07  Bruno Haible  <bruno@clisp.org>
21368
21369         * modules/sublist: New file.
21370
21371 2006-10-07  Bruno Haible  <bruno@clisp.org>
21372
21373         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
21374         * modules/argz (argz.h): Likewise.
21375         * modules/arpa_inet (arpa/inet.h): Likewise.
21376         * modules/byteswap (byteswap.h): Likewise.
21377         * modules/configmake (configmake.h): Likewise.
21378         * modules/fcntl (fcntl.h): Likewise.
21379         * modules/fnmatch (fnmatch.h): Likewise.
21380         * modules/getopt (getopt.h): Likewise.
21381         * modules/glob (glob.h): Likewise.
21382         * modules/inttypes (inttypes.h): Likewise.
21383         * modules/netinet_in (netinet/in.h): Likewise.
21384         * modules/poll (poll.h): Likewise.
21385         * modules/stdbool (stdbool.h): Likewise.
21386         * modules/stdint (stdint.h): Likewise.
21387         * modules/sys_select (sys/select.h): Likewise.
21388         * modules/sys_socket (sys/socket.h): Likewise.
21389         * modules/sys_stat (sys/stat.h): Likewise.
21390         * modules/sysexits (sysexits.h): Likewise.
21391         * modules/unistd (unistd.h): Likewise.
21392         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21393         Add a "DO NOT EDIT" comment to the generated file.
21394         (func_import): Likewise for gnulib-comp.m4.
21395
21396 2006-10-07  Bruno Haible  <bruno@clisp.org>
21397
21398         * lib/gl_sublist.h: New file.
21399         * lib/gl_sublist.c: New file.
21400
21401 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21402
21403         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
21404         name (relative to the original working directory) and the file
21405         name component (relative to the temporary working directory).  All
21406         callers changed.
21407         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
21408         * lib/mkdir-p.c (make_dir_parents): Likewise.
21409         * lib/mkdir-p.h (make_dir_parents): Likewise.
21410
21411 2006-10-06  Eric Blake  <ebb9@byu.net>
21412
21413         Define several macros for use by the clean-temp module.
21414         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
21415         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
21416         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
21417
21418         * lib/clean-temp.h (close_stream_temp): New declaration.
21419         * lib/clean-temp.c (includes): Pull in headers according to what
21420         other modules are in use.
21421         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
21422
21423 2006-10-06  Bruno Haible  <bruno@clisp.org>
21424
21425         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
21426         instead of fopen, fwriteerror.
21427
21428 2006-10-06  Bruno Haible  <bruno@clisp.org>
21429
21430         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
21431         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
21432         int.
21433         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
21434         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
21435         Return an error indicator.
21436         Suggested by Eric Blake.
21437
21438 2006-10-06  Bruno Haible  <bruno@clisp.org>
21439
21440         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
21441         Reported by Eric Blake.
21442
21443 2006-10-06  Bruno Haible  <bruno@clisp.org>
21444
21445         * modules/closeout (Description): Mention stderr too.
21446
21447 2006-10-06  Bruno Haible  <bruno@clisp.org>
21448         and Paul Eggert  <eggert@cs.ucla.edu>
21449
21450         * lib/closeout.c (close_stdout): Also close stderr.
21451         * lib/closeout.h: Update comment.
21452
21453 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
21454
21455         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
21456         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
21457         * lib/dirchownmod.c: Include lchown.h.
21458         * lib/lchown.c: Don't include files that lchown.h now includes.
21459         Don't declare chown, since lchown.h now does that.
21460         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
21461         (lchown): Define to rpl_chown if lchown is declared but
21462         does not exist.  Declare using a prototype if lchown is not
21463         declared.  Add a copyright notice.
21464         * lib/mkstemp.h: Include <unistd.h>.
21465         * lib/openat.c: Include lchown.h.
21466
21467         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
21468         we now test for that separately.
21469         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
21470         rather than O_NOFOLLOW, when testing whether it's possible to
21471         avoid a race condition reliably.
21472         * lib/savewd.c (savewd_chdir): Likewise.
21473
21474         Remove macros that are no longer needed now that stdint.h is
21475         reliable.
21476         * lib/fsusage.c (UINTMAX_MAX): Remove.
21477         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
21478         * lib/utimecmp.c (SIZE_MAX): Remove.
21479
21480         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
21481
21482         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
21483         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
21484         O_NOATIME works.
21485
21486 2006-10-05  Bruno Haible  <bruno@clisp.org>
21487
21488         * lib/gl_list.h (gl_sortedlist_search_from_to,
21489         gl_sortedlist_indexof_from_to): New declarations.
21490         (gl_list_implementation): New fields sortedlist_search_from_to,
21491         sortedlist_indexof_from_to.
21492         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
21493         inline functions.
21494         * lib/gl_list.c (gl_sortedlist_search_from_to,
21495         gl_sortedlist_indexof_from_to): New functions.
21496         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
21497         function.
21498         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
21499         (gl_array_sortedlist_search_from_to): New function.
21500         (gl_array_list_implementation): Update.
21501         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
21502         function.
21503         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
21504         (gl_carray_sortedlist_search_from_to): New function.
21505         (gl_carray_list_implementation): Update.
21506         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
21507         gl_linked_sortedlist_indexof_from_to): New functions.
21508         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21509         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21510         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
21511         gl_tree_sortedlist_indexof_from_to): New functions.
21512         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21513         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21514         Update.
21515         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21516         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
21517         Update.
21518
21519 2006-10-05  Bruno Haible  <bruno@clisp.org>
21520
21521         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
21522         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
21523         (struct gl_list_implementation): Add fields search_from_to,
21524         indexof_from_to. Remove fields search, indexof.
21525         (gl_list_search): Use the search_from_to method.
21526         (gl_list_search_from, gl_list_search_from_to): New functions.
21527         (gl_list_indexof): Use the indexof_from_to method.
21528         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21529         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
21530         (gl_list_search_from, gl_list_search_from_to): New functions.
21531         (gl_list_indexof): Use the indexof_from_to method.
21532         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
21533         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
21534         gl_array_indexof. Add start_index, end_index arguments.
21535         (gl_array_search_from_to): Renamed from gl_array_search. Add
21536         start_index, end_index arguments.
21537         (gl_array_remove, gl_array_list_implementation): Update.
21538         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
21539         gl_carray_indexof. Add start_index, end_index arguments.
21540         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
21541         start_index, end_index arguments.
21542         (gl_carray_remove, gl_carray_list_implementation): Update.
21543         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
21544         gl_linked_search. Add start_index, end_index arguments.
21545         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
21546         start_index, end_index arguments.
21547         (gl_linked_remove): Update.
21548         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
21549         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
21550         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
21551         field to 'size_t'.
21552         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
21553         gl_tree_search. Add start_index, end_index arguments.
21554         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21555         start_index, end_index arguments.
21556         (gl_tree_remove): Update.
21557         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
21558         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
21559         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
21560         function.
21561         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
21562         gl_tree_search. Add start_index, end_index arguments.
21563         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
21564         start_index, end_index arguments.
21565         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
21566         Update.
21567         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
21568
21569 2006-10-05  Bruno Haible  <bruno@clisp.org>
21570
21571         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
21572
21573         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
21574         fwriteerror_temp): New declarations.
21575         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
21576         (descriptors): New variable.
21577         (cleanup): First, close the descriptors.
21578         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
21579         fclose_temp, fwriteerror_temp): New functions.
21580
21581 2006-10-04  Jim Meyering  <jim@meyering.net>
21582
21583         * lib/fts.c (fts_open): Tiny comment change.
21584
21585 2006-10-04  Bruno Haible  <bruno@clisp.org>
21586
21587         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
21588         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
21589         gl_LOCK_BODY.
21590         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
21591         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
21592         gl_LOCK_EARLY_BODY.
21593         (gl_LOCK): Require gl_LOCK_BODY.
21594
21595 2006-10-04  Bruno Haible  <bruno@clisp.org>
21596
21597         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
21598         (gl_oset_search_atleast): New declaration.
21599         (struct gl_oset_implementation): Add field 'search_atleast'.
21600         (gl_oset_search_atleast): New inline function.
21601         * lib/gl_oset.c (gl_oset_search_atleast): New function.
21602         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
21603         (gl_array_oset_implementation): Update.
21604         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
21605         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
21606         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
21607
21608 2006-10-04  Bruno Haible  <bruno@clisp.org>
21609
21610         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
21611
21612 2006-10-03  Bruno Haible  <bruno@clisp.org>
21613
21614         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
21615         from gl_avltreehash_list_implementation.
21616
21617 2006-10-03  Bruno Haible  <bruno@clisp.org>
21618
21619         * lib/gl_oset.c (gl_oset_add): Fix return type.
21620
21621 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
21622
21623         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
21624
21625 2006-10-02  Eric Blake  <ebb9@byu.net>
21626
21627         * modules/strnlen (Depends-on): Add extensions.
21628
21629 2006-10-02  Eric Blake  <ebb9@byu.net>
21630
21631         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
21632         definition in 2.60+.
21633
21634 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
21635
21636         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
21637         checks.
21638
21639 2006-10-02  Bruno Haible  <bruno@clisp.org>
21640
21641         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
21642         to the AUTOMAKE_OPTIONS.
21643         Reported by Jim Meyering.
21644
21645 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
21646
21647         Work around bug in Solaris 10 /proc file system:
21648         /proc/self/fd/NNN/.. isn't the parent directory of
21649         the directory whose file descriptor is NNN.  This needs to
21650         be worked around at run time, not compile time, since a
21651         program might be built on Solaris 8, where things work, and
21652         run on Solaris 10.
21653         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
21654         to use the following interface instead:
21655         (OPENAT_BUFFER_SIZE): New macro.
21656         (openat_proc_name): New function.
21657         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
21658         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
21659         Likewise.
21660         * lib/openat-proc.c: New file.
21661         * modules/openat (Files): Add lib/openat-proc.c.
21662         (Depends-on): Add same-inode, stdbool.
21663         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
21664
21665 2006-09-29  Bruno Haible  <bruno@clisp.org>
21666
21667         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
21668         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
21669         argument. Set stdout_closed before testing for ferror, not after.
21670         (fwriteerror, fwriteerror_no_ebadf): New functions.
21671
21672 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21673
21674         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
21675
21676 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
21677
21678         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
21679         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
21680
21681 2006-09-28  Jim Meyering  <jim@meyering.net>
21682
21683         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
21684         Include <unistd.h>.
21685
21686 2006-09-28  Bruno Haible  <bruno@clisp.org>
21687
21688         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
21689         * modules/linkedhash-list (Depends-on): Likewise.
21690         * modules/rbtreehash-list (Depends-on): Likewise.
21691
21692 2006-09-28  Bruno Haible  <bruno@clisp.org>
21693
21694         * lib/strndup.h: Simplify the redefinition of strndup.
21695         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
21696         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
21697
21698 2006-09-28  Bruno Haible  <bruno@clisp.org>
21699
21700         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
21701         * lib/gl_linkedhash_list.c: Likewise.
21702         * lib/gl_rbtreehash_list.c: Likewise.
21703
21704 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
21705
21706         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
21707         getaddrinfo.
21708
21709         * lib/__fpending.h: Don't include <stdio_ext.h> unless
21710         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
21711         it causes <stdio_ext.h> to cause a compile-time error.
21712         Problem reported by Nelson H. F. Beebe.
21713         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
21714         of HAVE_DECL___PENDING.
21715
21716         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
21717         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
21718         declaration.
21719
21720 2006-09-27  Jim Meyering  <jim@meyering.net>
21721
21722         This file could end up with a definition for a function
21723         named __strndup, rather than rpl_strndup on a system with
21724         incomplete weak_alias support.
21725         * lib/strndup.c (strndup): Rename from __strndup.
21726         Remove #defines that used to map __strndup to strndup.
21727         Don't use K&R prototypes.
21728         Remove LIBC-related code, since this file is not sync'd with glibc.
21729         * lib/strndup.h: Revamp, accordingly.
21730         * m4/strndup.m4: Modernize.
21731
21732 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
21733
21734         * modules/savewd (Depends-on): Add 'raise'.
21735         * lib/savewd.c: Include <signal.h>, for 'raise'.
21736
21737 2006-09-26  Jim Meyering  <jim@meyering.net>
21738
21739         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
21740         when we detect Darwin 8.7.0's acl_get_file bug.
21741         Rearrange to perform the new (below) run-test while $LIBS
21742         contains any acl-related library.  Set USE_ACL at the end.
21743         (gl_ACL_GET_FILE): New function.
21744
21745 2006-09-26  Eric Blake  <ebb9@byu.net>
21746
21747         * lib/verror.c: Include <config.h> unconditionally.
21748
21749 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
21750
21751         * modules/clock-time (Maintainer): Add self.
21752         * modules/getlogin_r (Depends-on): Add extensions.
21753
21754 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21755
21756         * modules/clock-time: New module.
21757         * modules/nanosleep (Depends-on): Add clock-time.
21758         * modules/gethrxtime (Depends-on): Likewise.
21759         * modules/gettime (Depends-on): Likewise.
21760         * modules/settime (Depends-on): Likewise.
21761
21762         * modules/fts-lgpl: Depend on openat.
21763         * modules/mkancesdirs: Depend on savewd.
21764         * modules/mkdir-p: Likewise.
21765
21766 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21767
21768         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
21769
21770         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
21771         `gl_have_arbitrary_file_name_length_limit' to
21772         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
21773         actually works between configure runs.
21774
21775 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21776             Bruno Haible  <bruno@clisp.org>
21777
21778         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
21779
21780 2006-09-25  Jim Meyering  <jim@meyering.net>
21781
21782         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
21783         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
21784
21785 2006-09-25  Eric Blake  <ebb9@byu.net>
21786
21787         * gnulib-tool (func_import, func_create_testdir): Fix typos in
21788         exec's in 2006-09-18 patch when shuffling fds.
21789
21790 2006-09-25  Bruno Haible  <bruno@clisp.org>
21791
21792         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
21793         Reported by Jim Meyering.
21794
21795 2006-09-24  Jim Meyering  <jim@meyering.net>
21796
21797         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
21798         compare a pointer against a literal "0".  That caused failures with
21799         at least HP-UX's hpcc.
21800
21801 2006-09-22  Simon Josefsson  <jas@extundo.com>
21802
21803         * modules/gc-sha1:
21804         * modules/gc-md4:
21805         * modules/gc-hmac-sha1:
21806         * modules/gc-hmac-md5:
21807         * modules/gc-des:
21808         * modules/gc-arcfour: Distribute more files.
21809
21810 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21811
21812         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
21813         (gl_linked_iterator_from_to): Initialize struct completely.
21814         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
21815         (gl_tree_iterator_from_to): Likewise
21816         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
21817         * lib/gl_array_list.c [lint] (gl_array_iterator)
21818         (gl_array_iterator_from_to): Likewise.
21819         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
21820         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
21821         (gl_carray_iterator_from_to): Likewise.
21822
21823         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
21824         * lib/md4.c (md4_process_block): Remove unused variable.
21825         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
21826         parentheses for clarity.
21827
21828 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21829
21830         * modules/bison-i18n (Depends-on): Add gettext.
21831
21832 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21833
21834         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
21835         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
21836         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
21837         also add missing comma that caused broken test.
21838         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
21839         stdlib.h, for `abort'.
21840         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
21841         variables.
21842         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
21843         include unistd.h if present, for `rmdir'.
21844         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
21845         variables.
21846         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
21847         in the process include standard headers for prototypes.
21848         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
21849         gets declared on GNU/Linux.
21850         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
21851         unistd.h, for `rmdir'.
21852         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
21853
21854         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
21855         always true.
21856         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
21857
21858         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
21859
21860 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21861
21862         * gnulib-tool (func_version): Create output all at once.  This
21863         may help avoid triggering unnecessary SIGPIPEs, and at any
21864         rate it doesn't hurt.
21865
21866 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21867             Bruno Haible  <bruno@clisp.org>
21868
21869         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
21870         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
21871         * m4/signed.m4 (bh_C_SIGNED): Likewise.
21872
21873         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
21874         (gl_FUNC_VASPRINTF): Invoke it.
21875
21876 2006-09-22  Bruno Haible  <bruno@clisp.org>
21877
21878         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
21879         getloadavg.c as first argument.
21880
21881 2006-09-22  Bruno Haible  <bruno@clisp.org>
21882
21883         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
21884         at the beginning of the gl_INIT macro.
21885         * modules/getloadavg (configure.ac): Pass $gl_source_base to
21886         gl_GETLOADAVG.
21887
21888 2006-09-22  Bruno Haible  <bruno@clisp.org>
21889
21890         * gnulib-tool (func_create_megatestdir): Don't include the config-h
21891         module.
21892         Suggested by Ralf Wildenhues.
21893
21894 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
21895
21896         Import this patch from libc:
21897
21898         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
21899
21900         * lib/regex_internal.c (re_string_reconstruct): Handle
21901         offset < pstr->valid_raw_len && pstr->offsets_needed case.
21902         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
21903         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
21904         re_string_context_at.
21905
21906         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
21907         now requires it.
21908         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
21909         gl_REGEX now does it for us.
21910         (gl_REGEX): Add test taken from
21911         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
21912
21913         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
21914         Check that large offsets work.  Modernize Autoconf usages.
21915         Prefer "yes" to mean a good thing rather than a bad.
21916         Don't put "#define mkstemp" in config.h, as this might interfere
21917         with standard system headers that "#define mkstemp mkstemp64".
21918
21919         * modules/mkstemp (Depends-on): Add extensions, so that
21920         mkstemp is visible on some platforms.
21921         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
21922         (Include): Change to "mkstemp.h" from <stdlib.h>.
21923         (Files): Add mkstemp.h.
21924
21925         * lib/mkstemp.h: New file, since some standard headers
21926         #define mkstemp.
21927         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
21928         Include "mkstemp.h".
21929         Make the _LIBC code resemble glibc original more,
21930         e.g., use K&R style.
21931         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
21932         (mkstemp): Remove, since mkstemp.h does this for us.
21933         * lib/stdlib--.h: Include mkstemp.h.
21934
21935         Import this patch from libc:
21936
21937         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21938
21939         * lib/tempname.c (__gen_tempname): Change attempts_min
21940         into a macro.  Use preprocessor to decide how to initialize
21941         attempts [Coverity CID 67].
21942
21943 2006-09-20  Bruno Haible  <bruno@clisp.org>
21944
21945         * lib/mkdtemp.c: Import from libc.
21946         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
21947                 * sysdeps/posix/tempname.c (__gen_tempname): Change
21948                 attempts_min into a macro.  Use preprocessor to decide how to
21949                 initialize attempts [Coverity CID 67].
21950         2001-11-27  Paul Eggert  <eggert@twinsun.com>
21951                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
21952                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
21953
21954 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21955
21956         * gnulib-tool (func_exit): New function, to allow to pass the
21957         exit status portably through the trap.  Use everywhere.
21958         (--help, --version): Signal a write error.
21959         (trap): catch SIGPIPE, for write errors.
21960         Exit at the end of the trap, with the correct exit status.
21961
21962 2006-09-19  Karl Berry  <karl@gnu.org>
21963
21964         * doc/gnulib.texi: note about the license texinfo files.
21965
21966 2006-09-19  Eric Blake  <ebb9@byu.net>
21967
21968         * gnulib-tool: Avoid space-tab.
21969
21970 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21971
21972         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
21973         that prevented coreutils 6.1 from building.  Problem reported
21974         by Petter Reinholdtsen.
21975
21976 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
21977
21978         * gnulib-tool (avoidlist): Fix typo that broke options like
21979         --avoid=lock that are used by coreutils bootstrap.
21980
21981 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
21982
21983         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
21984         more systematically.
21985
21986 2006-09-18  Jim Meyering  <jim@meyering.net>
21987
21988         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
21989
21990 2006-09-18  Bruno Haible  <bruno@clisp.org>
21991
21992         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
21993
21994 2006-09-18  Bruno Haible  <bruno@clisp.org>
21995
21996         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
21997         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
21998         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
21999         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
22000         * m4/gettext.m4: Require autoconf >= 2.52.
22001         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
22002         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
22003         of gl_cv_header_inttypes_h.
22004
22005 2006-09-18  Bruno Haible  <bruno@clisp.org>
22006
22007         * lib/javaversion.c: Include configmake.h.
22008
22009 2006-09-18  Bruno Haible  <bruno@clisp.org>
22010
22011         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
22012         avoid that the while loops be executed in a subshell.
22013
22014 2006-09-18  Bruno Haible  <bruno@clisp.org>
22015
22016         * MODULES.html.sh (func_module): Break long lines.
22017         Suggested by Bruce Korb <bkorb@gnu.org>.
22018
22019 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22020
22021         Speed up by a factor of 1.12.
22022         * gnulib-tool (nl): New variable.
22023         (func_import): Rewrite include directive extraction to only read each
22024         directive once.
22025
22026 2006-09-17  Bruno Haible  <bruno@clisp.org>
22027
22028         * modules/javaversion (Makefile.am): Remove DEFS setting.
22029         (Depends-on): Add configmake, for PKGDATADIR definition.
22030
22031 2006-09-17  Bruno Haible  <bruno@clisp.org>
22032
22033         * gnulib-tool (func_create_testdir): Rewrite all files at once.
22034
22035 2006-09-17  Bruno Haible  <bruno@clisp.org>
22036
22037         * gnulib-tool (func_append): New function, stolen from libtool.m4.
22038         (func_modules_transitive_closure, func_modules_add_dummy,
22039         func_modules_to_filelist, func_import, func_create_testdir,
22040         func_create_megatestdir, ...): Use it wherever possible.
22041         Suggested by Ralf Wildenhues.
22042
22043 2006-09-16  Karl Berry  <karl@gnu.org>
22044
22045         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
22046         to avoid sectioning errors.
22047         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
22048         [ifinfo]: blank line after @center-ed titles.
22049         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
22050         Spell FSF address consistently with others.
22051         (These changes approved by rms.)
22052
22053 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22054
22055         Speed up by a factor of 1.61.
22056         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
22057         already checked module names again.
22058
22059 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22060
22061         Speed up by a factor of 1.13.
22062         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
22063         for new_files, and the input to func_add_or_update.
22064
22065 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22066
22067         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
22068         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
22069
22070 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
22071
22072         * modules/mkancesdirs (Depends-on): Add fcntl.
22073         * modules/savewd: New file.
22074         * MODULES.html.sh (File system functions): Add savewd.
22075
22076         * modules/configmake (Makefile.am): Add support for the
22077         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
22078
22079 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
22080
22081         * m4/savewd.m4: New file.
22082
22083 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
22084
22085         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
22086         (dirchownmod): New arg FD.  All callers changed.
22087         Use FD rather than opening the directory ourself, as opening is
22088         now the caller's responsibility.
22089         * lib/dirchownmod.h: Likewise.
22090         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
22091         hosts that require <sys/types.h> before <sys/stat.h>.  Include
22092         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
22093         (test_dir): Remove.
22094         (mkancesdirs): Return length of prefix of FILE that has already
22095         been made, or -2 if there is a child doing the work.  Redo
22096         algorithm so that it is O(N) rather than O(N**2).  Optimize away
22097         ".", and treat ".." specially since it might stray back into
22098         already-created areas.  Use a subprocess if necessary.  New arg
22099         WD; all users changed.  MAKE_DIR function should now return 1
22100         if it creates a directory that is not readable.  Return -2 if
22101         a child process is spun off.
22102         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
22103         Adjust signature to match code.
22104         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
22105         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
22106         all users changed.
22107         * lib/savewd.c, lib/savewd.h: New files.
22108
22109 2006-09-15  Jim Meyering  <jim@meyering.net>
22110
22111         * modules/rename-dest-slash: New module.
22112         * MODULES.html.sh (posix_compat): Add it here.
22113
22114         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
22115
22116 2006-09-15  Jim Meyering  <jim@meyering.net>
22117
22118         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
22119         file.
22120
22121         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
22122
22123 2006-09-15  Jim Meyering  <jim@meyering.net>
22124
22125         * lib/rename-dest-slash.c (has_trailing_slash): Use
22126         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
22127         (rpl_rename_dest_slash): Perform the cheaper trailing slash
22128         test before testing whether SRC is a directory.
22129         Suggestions from Bruno Haible.
22130
22131         Avoid a warning about an unused variable.
22132         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
22133         into the #ifdef block where it's used.
22134
22135         * lib/rename-dest-slash.c: New file.
22136
22137 2006-09-14  Bruno Haible  <bruno@clisp.org>
22138
22139         * lib/allocsa.c: Include <config.h> unconditionally.
22140         * lib/asnprintf.c: Likewise.
22141         * lib/asprintf.c: Likewise.
22142         * lib/c-strcasecmp.c: Likewise.
22143         * lib/c-strcasestr.c: Likewise.
22144         * lib/c-strncasecmp.c: Likewise.
22145         * lib/c-strstr.c: Likewise.
22146         * lib/classpath.c: Likewise.
22147         * lib/clean-temp.c: Likewise.
22148         * lib/concatpath.c: Likewise.
22149         * lib/copy-file.c: Likewise.
22150         * lib/csharpcomp.c: Likewise.
22151         * lib/csharpexec.c: Likewise.
22152         * lib/execute.c: Likewise.
22153         * lib/fatal-signal.c: Likewise.
22154         * lib/findprog.c: Likewise.
22155         * lib/fwriteerror.c: Likewise.
22156         * lib/gl_array_list.c: Likewise.
22157         * lib/gl_array_oset.c: Likewise.
22158         * lib/gl_avltree_list.c: Likewise.
22159         * lib/gl_avltree_oset.c: Likewise.
22160         * lib/gl_avltreehash_list.c: Likewise.
22161         * lib/gl_carray_list.c: Likewise.
22162         * lib/gl_linked_list.c: Likewise.
22163         * lib/gl_linkedhash_list.c: Likewise.
22164         * lib/gl_list.c: Likewise.
22165         * lib/gl_oset.c: Likewise.
22166         * lib/gl_rbtree_list.c: Likewise.
22167         * lib/gl_rbtree_oset.c: Likewise.
22168         * lib/gl_rbtreehash_list.c: Likewise.
22169         * lib/imaxabs.c: Likewise.
22170         * lib/imaxdiv.c: Likewise.
22171         * lib/javacomp.c: Likewise.
22172         * lib/javaexec.c: Likewise.
22173         * lib/javaversion.c: Likewise.
22174         * lib/linebreak.c: Likewise.
22175         * lib/localcharset.c: Likewise.
22176         * lib/lock.c: Likewise.
22177         * lib/mbchar.c: Likewise.
22178         * lib/mbswidth.c: Likewise.
22179         * lib/mkdtemp.c: Likewise.
22180         * lib/pipe.c: Likewise.
22181         * lib/printf-args.c: Likewise.
22182         * lib/printf-parse.c: Likewise.
22183         * lib/progname.c: Likewise.
22184         * lib/progreloc.c: Likewise.
22185         * lib/readlink.c: Likewise.
22186         * lib/sh-quote.c: Likewise.
22187         * lib/stpcpy.c: Likewise.
22188         * lib/stpncpy.c: Likewise.
22189         * lib/strcasecmp.c: Likewise.
22190         * lib/strcasestr.c: Likewise.
22191         * lib/strcspn.c: Likewise.
22192         * lib/striconv.c: Likewise.
22193         * lib/strncasecmp.c: Likewise.
22194         * lib/strnlen1.c: Likewise.
22195         * lib/strstr.c: Likewise.
22196         * lib/strtok_r.c: Likewise.
22197         * lib/tls.c: Likewise.
22198         * lib/tmpdir.c: Likewise.
22199         * lib/unicodeio.c: Likewise.
22200         * lib/unsetenv.c: Likewise.
22201         * lib/vasnprintf.c: Likewise.
22202         * lib/vasprintf.c: Likewise.
22203         * lib/wait-process.c: Likewise.
22204         * lib/xallocsa.c: Likewise.
22205         * lib/xsetenv.c: Likewise.
22206         * lib/xstriconv.c: Likewise.
22207
22208 2006-09-13  Simon Josefsson  <jas@extundo.com>
22209
22210         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
22211         that internally, suggested by Ralf Wildenhues
22212         <Ralf.Wildenhues@gmx.de>.
22213
22214 2006-09-13  Simon Josefsson  <jas@extundo.com>
22215
22216         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
22217         @LIBOBJS@.
22218         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22219
22220 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
22221
22222         * lib/_fpending.c: Include <config.h> unconditionally, since we no
22223         longer worry about uses that don't define HAVE_CONFIG_H.
22224         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
22225         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
22226         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
22227         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
22228         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
22229         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
22230         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
22231         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
22232         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
22233         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
22234         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
22235         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
22236         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
22237         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
22238         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
22239         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
22240         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
22241         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
22242         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
22243         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
22244         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
22245         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
22246         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
22247         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
22248         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
22249         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
22250         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
22251         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
22252         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
22253         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
22254         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
22255         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
22256         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
22257         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
22258         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
22259         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
22260         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
22261         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
22262         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
22263         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
22264         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
22265         Likewise.
22266
22267 2006-09-13  Eric Blake  <ebb9@byu.net>
22268
22269         * lib/getopt.c: Fix typo in last commit.
22270
22271 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
22272
22273         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
22274         dgettext.
22275
22276 2006-09-12  Jim Meyering  <jim@meyering.net>
22277
22278         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
22279         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
22280         Reported by Nelson H. F. Beebe.
22281
22282 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
22283
22284         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
22285         program_invocation_name and program_invocation_short_name are
22286         initialized.
22287         * lib/argp-namefrob.h: Move declarations of program_invocation_name
22288         and program_invocation_short_name to argp.h, so they are visible
22289         to user programs.
22290         * lib/argp.h: Likewise
22291
22292 2006-09-10  Bruno Haible  <bruno@clisp.org>
22293
22294         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
22295         m4/inttypes_h.m4, m4/uintmax_t.m4.
22296
22297 2006-09-10  Bruno Haible  <bruno@clisp.org>
22298
22299         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
22300         gl_AC_TYPE_UINTMAX_T.
22301
22302 2006-09-10  Bruno Haible  <bruno@clisp.org>
22303
22304         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
22305
22306 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
22307
22308         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
22309         convention.  Text proposed by Bruno Haible.
22310         (struct argp_option): Document the use of N_() wrappers.
22311
22312         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
22313         '\v', and translate the two parts separately, instead of feeding
22314         the whole string to gettext.  This allows to exclude
22315         '\v' from the strings visible to the translator by writing doc
22316         strings as N_("..") "\v" N_("..").
22317
22318 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
22319
22320         * config/srclist.txt: Undo latest change; the bug was fixed.
22321
22322 2006-09-09  Bruno Haible  <bruno@clisp.org>
22323
22324         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
22325         assignments if building a library without libtool.
22326         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
22327         in func_emit_lib_Makefile_am.
22328         (func_import): When building a static library libfoo.a, arrange to
22329         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
22330         (func_create_testdir): Likewise.
22331         * modules/gc (configure.ac, Makefile.am): If building statically,
22332         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
22333         * modules/iconvme (configure.ac, Makefile.am): Likewise.
22334         * modules/striconv (configure.ac, Makefile.am): Likewise.
22335         Based on a suggestion by Ralf Wildenhues.
22336
22337 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22338
22339         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
22340         Check for unistd.h too, since Autoconf doesn't assume POSIX.
22341         Also:
22342
22343         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22344         Add year_2050_test to catch glibc bug 2821
22345         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22346
22347         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
22348         Prefer #ifdef to #if.
22349
22350         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
22351         Return from 'main' instead of calling 'exit'.
22352
22353 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22354
22355         * lib/mktime.c (guess_time_tm): Fix bug where mktime
22356         returned the maximum time_t value rather than (time_t) -1.
22357         Problem originally reported by William Bardwell
22358         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
22359
22360         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22361         Moved to here ...
22362         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
22363         ... from here.
22364
22365 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22366
22367         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
22368         2821 is fixed.
22369
22370 2006-09-08  Jim Meyering  <jim@meyering.net>
22371
22372         Don't make generated files read-only.  That would bother too many
22373         people.  However, do retain the ability to work when targets are
22374         read-only: remove the destination and temporary files before writing
22375         them (when generated via sed or echo), or by using the -f option for
22376         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
22377         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22378         * modules/byteswap, modules/configmake, modules/fcntl:
22379         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22380         * modules/localcharset, modules/netinet_in, modules/poll:
22381         * modules/stdbool, modules/stdint, modules/sys_select:
22382         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22383
22384 2006-09-08  Jim Meyering  <jim@meyering.net>
22385
22386         Avoid new build failure on FreeBSD 6.0.
22387         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
22388         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
22389         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
22390
22391 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22392
22393         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
22394
22395 2006-09-07  Jim Meyering  <jim@meyering.net>
22396
22397         Fix global typo in last change: use chmod u-w, not chmod u-x.
22398         Spotted by Paul Eggert and Bruce Korb.
22399         * modules/alloca-opt, modules/argz, modules/arpa_inet:
22400         * modules/byteswap, modules/configmake, modules/fcntl:
22401         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
22402         * modules/localcharset, modules/netinet_in, modules/poll:
22403         * modules/stdbool, modules/stdint, modules/sys_select:
22404         * modules/sys_socket, modules/sys_stat, modules/sysexits:
22405
22406 2006-09-06  Jim Meyering  <jim@meyering.net>
22407
22408         Make generated files be read-only.
22409         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
22410         Ensure that each generated file is now read-only.
22411         * modules/argz: Likewise.
22412         * modules/arpa_inet: Likewise.
22413         * modules/byteswap: Likewise.
22414         * modules/configmake: Likewise.
22415         * modules/fcntl: Likewise.
22416         * modules/fnmatch: Likewise.
22417         * modules/getopt: Likewise.
22418         * modules/glob: Likewise.
22419         * modules/inttypes: Likewise.
22420         * modules/netinet_in: Likewise.
22421         * modules/poll: Likewise.
22422         * modules/stdbool: Likewise.
22423         * modules/stdint: Likewise.
22424         * modules/sys_select: Likewise.
22425         * modules/sys_socket: Likewise.
22426         * modules/sys_stat: Likewise.
22427         * modules/sysexits: Likewise.
22428         * modules/localcharset: Same as above, but continue using temporary
22429         file named "t-$@" (why different?) rather than the "$@-t" used
22430         everywhere else.
22431
22432         * modules/sysexits (Makefile.am): Replace literal occurrences
22433         of "sysexit.h" more readable, and more consistent, "$@".
22434
22435 2006-09-06  Bruno Haible  <bruno@clisp.org>
22436
22437         * modules/striconv: New file.
22438         * modules/xstriconv: New file.
22439         * MODULES.html.sh (Internationalization functions): Add striconv,
22440         xstriconv.
22441
22442 2006-09-06  Bruno Haible  <bruno@clisp.org>
22443
22444         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
22445         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
22446         not using libtool correctly.
22447
22448 2006-09-06  Bruno Haible  <bruno@clisp.org>
22449
22450         * lib/striconv.h: New file.
22451         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
22452         iconvstring.c.
22453         * lib/xstriconv.h: New file.
22454         * lib/xstriconv.c: New file.
22455
22456 2006-09-06  Bruno Haible  <bruno@clisp.org>
22457
22458         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
22459         lib_..._LDFLAGS.
22460
22461 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22462
22463         * lib/argz_.h: Sync from Libtool.
22464
22465         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
22466                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
22467
22468         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
22469
22470 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22471
22472         * modules/trim: New file.
22473
22474 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
22475
22476         * lib/trim.h: New file.
22477         * lib/trim.c: New file.
22478
22479 2006-09-05  Bruno Haible  <bruno@clisp.org>
22480
22481         * MODULES.html.sh (String handling): Add trim.
22482
22483 2006-09-04  Karl Berry  <karl@gnu.org>
22484
22485         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
22486         until next release.
22487
22488 2006-09-03  Bruno Haible  <bruno@clisp.org>
22489
22490         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
22491         correctly.
22492
22493 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22494
22495         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
22496         not gl_GETLOADAVG.  Omit unneeded semicolons.
22497         Problems reported by Ralf Wildenhues in
22498         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22499         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
22500         at the end, which is the usual gnulib style.
22501
22502         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
22503         of doing all the work ourselves.
22504         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
22505         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
22506
22507 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22508
22509         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
22510         Problem reported by Ralf Wildenhues in
22511         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
22512
22513         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
22514         HAVE_STRUCT_STATFS_F_FSTYPENAME.
22515
22516 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
22517
22518         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
22519         yesterday's patch by changing test -n to test -z.
22520
22521 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22522
22523         * modules/getloadavg (Files): Add m4/getloadavg.m4.
22524         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
22525         the former is now obsolescent.
22526
22527         * modules/chdir-long (Depends-on): Add fcntl.
22528
22529 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22530
22531         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
22532         obsolescent, and programs should use gnulib instead.
22533         * m4/getloadavg.m4: New file, with contents taken from Autoconf
22534         but with prefixes changed.
22535
22536 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
22537
22538         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
22539         or stdbool.h, because they might not exist while configuring.
22540
22541         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
22542         Don't include unistd.h or limits.h; not needed, since chdir-long.h
22543         does that for us.
22544         (O_DIRECTORY): Remove.
22545
22546 2006-08-31  Eric Blake  <ebb9@byu.net>
22547
22548         * gnulib-tool: Don't let emacs change spaces to TAB.
22549
22550 2006-08-31  Bruno Haible  <bruno@clisp.org>
22551
22552         * gnulib-tool: When calling func_import more than once, do it in a
22553         subshell.
22554         Reported by Eric Blake <ebb9@byu.net>.
22555
22556 2006-08-31  Bruno Haible  <bruno@clisp.org>
22557
22558         * gnulib-tool (nl): Remove variable.
22559         (sed_transform_lib_file): Use more robust test for config-h module.
22560         (func_import): Fix typo in 2006-08-25 patch.
22561
22562 2006-08-31  Bruno Haible  <bruno@clisp.org>
22563
22564         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
22565         specified, augment Makefile.am variables instead of assigning them.
22566
22567 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22568
22569         Work around a bug in both the Linux and SunOS 64-bit kernels:
22570         nanosleep mishandles sleeps for longer than 2**31 seconds.
22571         Problem reported by Frank v Waveren in
22572         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22573         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
22574         Check for nanosleep bug.
22575         (LIB_NANOSLEEP): Append clock_gettime library if needed.
22576
22577 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22578
22579         Work around a bug in both the Linux and SunOS 64-bit kernels:
22580         nanosleep mishandles sleeps for longer than 2**31 seconds.
22581         Problem reported by Frank v Waveren in
22582         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
22583         * lib/nanosleep.c (BILLION): New constant.
22584         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
22585         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
22586         implementation.
22587
22588 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22589
22590         * modules/nanosleep (Depends-on): Add gettime.
22591
22592 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
22593         and Simon Josefsson  <jas@extundo.com>
22594         and Oskar Liljeblad  <oskar@osk.mine.nu>
22595
22596         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
22597         * gnulib-tool (func_import): New license type 'unmodifiable license
22598         text'.
22599         * modules/fdl: Use it.  Longer description.
22600         * module/gpl, module/lgpl: New files.
22601
22602 2006-08-30  Jim Meyering  <jim@meyering.net>
22603
22604         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
22605         shadowing the parameter.
22606
22607 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22608
22609         Sync from Libtool:
22610
22611         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22612
22613         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
22614         sharing with gnulib.  Report by Eric Blake.
22615
22616 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22617
22618         * modules/isapipe: New file.
22619         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
22620
22621 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22622
22623         * modules/configmake (Makefile.am): Add a comment, and omit
22624         the CONFIGMAKE_ prefix from generated macro names.  Suggested
22625         by Bruno Haible.
22626
22627 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22628
22629         * m4/isapipe.m4: New file.
22630
22631 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
22632
22633         * lib/isapipe.c, lib/isapipe.h: New files.
22634
22635 2006-08-29  Jim Meyering  <jim@meyering.net>
22636
22637         * modules/configmake (Makefile.am): Make configmake.h depend on
22638         Makefile.  Otherwise, a stale configmake.h could hang around.
22639
22640 2006-08-29  Eric Blake  <ebb9@byu.net>
22641
22642         * lib/error.c (error_at_line, print_errno_message): Match libc, after
22643         resolution of upstream bug 3044.
22644
22645 2006-08-29  Bruno Haible  <bruno@clisp.org>
22646
22647         * modules/localcharset (Depends-on): Add configmake.
22648         (Makefile.am): Remove setting of LIBDIR through DEFS.
22649
22650 2006-08-29  Bruno Haible  <bruno@clisp.org>
22651
22652         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
22653         defined.
22654
22655 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22656
22657         * modules/fcntl: New file.
22658         * modules/chdir-safer (Depends-on): Add fcntl.
22659         * modules/fts: Likewise.
22660         * modules/mkdir-p: Likewise.
22661
22662         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
22663         This undoes the most recent change, since we're now addressing the
22664         problem in a different way.
22665
22666         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
22667         into output, since the output might be called Makefile.am even
22668         if $makefile_name is something different.
22669         (func_import): Use $makefile_am rather than
22670         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
22671         empty.
22672
22673         * modules/inttypes (Files): Add m4/inttypes-h.m4.
22674
22675 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22676
22677         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
22678         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
22679         recent change to stdint.m4, since we're now addressing the problem in a
22680         different way.
22681
22682 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22683
22684         * m4/fcntl_h.m4: New file.
22685
22686 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
22687
22688         * lib/fcntl_.h: New file.
22689         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
22690         the fcntl module.
22691         * lib/dirchownmod.c: Likewise.
22692         * lib/fts.c: Likewise.
22693
22694         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
22695         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
22696         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
22697         just before including <inttypes.h>, to avoid circular inclusion.
22698
22699 2006-08-28  Jim Meyering  <jim@meyering.net>
22700
22701         * doc/visibility.texi: Actually read and correct the grammar of the
22702         sentence affected by yesterday's change.
22703
22704 2006-08-28  Eric Blake  <ebb9@byu.net>
22705
22706         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
22707         needs wrapper.
22708
22709 2006-08-28  Eric Blake  <ebb9@byu.net>
22710
22711         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
22712
22713 2006-08-28  Eric Blake  <ebb9@byu.net>
22714
22715         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
22716
22717 2006-08-28  Bruno Haible  <bruno@clisp.org>
22718
22719         * modules/c-strstr: New file, from GNU gettext.
22720         * MODULES.html.sh (String handling): Add c-strstr.
22721
22722 2006-08-28  Bruno Haible  <bruno@clisp.org>
22723
22724         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
22725         macros.
22726         Reported by Eric Blake.
22727
22728 2006-08-28  Bruno Haible  <bruno@clisp.org>
22729
22730         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
22731         (VASNPRINTF): Return a string of length > INT_MAX without failing.
22732         * lib/vasprintf.c: Include errno.h, limits.h.
22733         (EOVERFLOW): New fallback definition.
22734         (vasprintf): Test here whether the string length is > INT_MAX.
22735         * lib/vsnprintf.c: Include errno.h, limits.h.
22736         (EOVERFLOW): New fallback definition.
22737         (vsnprintf): Fix bug when generated string was too long for the buffer.
22738         Test here whether the string length is > INT_MAX.
22739
22740 2006-08-28  Bruno Haible  <bruno@clisp.org>
22741
22742         * lib/inttypes_.h (SCNX*): Remove definitions.
22743         Reported by Eric Blake.
22744
22745 2006-08-28  Bruno Haible  <bruno@clisp.org>
22746
22747         * lib/c-strstr.h: New file, from GNU gettext.
22748         * lib/c-strstr.c: New file, from GNU gettext.
22749
22750 2006-08-28  Bruno Haible  <bruno@clisp.org>
22751
22752         * gnulib-tool: Reorder some statements.
22753
22754 2006-08-28  Bruno Haible  <bruno@clisp.org>
22755
22756         * gnulib-tool: New option --makefile-name.
22757         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
22758         $makefile_name.
22759         (func_import): Write $makefile_name to the cache file, and read it from
22760         there unless explicitly specified. Use $makefile_name as file name
22761         instead of Makefile.am. Adjust the recommendations accordingly.
22762
22763 2006-08-28  Bruno Haible  <bruno@clisp.org>
22764
22765         * gnulib-tool (func_verify_module): Check against misapplying patch.
22766
22767 2006-08-28  Bruno Haible  <bruno@clisp.org>
22768
22769         * gnulib-tool (func_relativize, func_relconcat): New functions.
22770         Give an error if --local-dir is given with --update.
22771         Remove trailing slashes from $local_gnulib_dir.
22772         (func_import): Store the relativized $local_gnulib_dir in
22773         gnulib-cache.m4, and read it from there if not specified explicitly.
22774
22775 2006-08-28  Bruno Haible  <bruno@clisp.org>
22776
22777         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
22778         is the current directory. Respect also $local_gnulib_dir.
22779
22780 2006-08-28  Bruno Haible  <bruno@clisp.org>
22781             Simon Josefsson  <jas@extundo.com>
22782
22783         BeOS portability.
22784         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
22785
22786 2006-08-27  Jim Meyering  <jim@meyering.net>
22787
22788         * doc/visibility.texi: Remove duplicate word: "pointer".
22789
22790 2006-08-26  Bruno Haible  <bruno@clisp.org>
22791
22792         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
22793         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
22794         (Makefile.am): Create inttypes.h from inttypes_.h.
22795         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
22796
22797         * modules/imaxabs: New file.
22798
22799         * modules/imaxdiv: New file.
22800
22801 2006-08-26  Bruno Haible  <bruno@clisp.org>
22802
22803         * m4/inttypes.m4: New file.
22804         * m4/_inttypes_h.m4: Remove file.
22805         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
22806         PRI_MACROS_BROKEN.
22807         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
22808
22809         * m4/imaxabs.m4: New file.
22810
22811         * m4/imaxdiv.m4: New file.
22812
22813 2006-08-26  Bruno Haible  <bruno@clisp.org>
22814
22815         * lib/inttypes_.h: New file.
22816         * lib/inttypes.h: Remove file.
22817         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
22818
22819         * lib/imaxabs.c: New file.
22820
22821         * lib/imaxdiv.c: New file.
22822
22823 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22824
22825         New config-h module, so that "make" output needn't be cluttered
22826         by -DHAVE_CONFIG_H.
22827         * MODULES.html.sh (Support for building libraries and executables):
22828         Add config-h.
22829         * modules/config-h: New file.
22830         * gnulib-tool (nl, sed_transform_lib_file): New vars.
22831         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
22832         the config-h module is used.
22833
22834         New configmake module, so that "make" output needn't be cluttered
22835         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
22836         * MODULES.html.sh (Support for building libraries and executables):
22837         Add configmake.
22838         * modules/configmake: New file.
22839
22840 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
22841
22842         * m4/config-h.m4: New file.
22843
22844 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22845
22846         * config/srclist.txt: Add elisp-comp.
22847
22848 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
22849
22850         * MODULES.html.sh (Support for building libraries and executables):
22851         Add elisp-comp.
22852         * build-aux/elisp-comp: New file.
22853         * modules/elisp-comp: New file.
22854
22855 2006-08-24  Bruno Haible  <bruno@clisp.org>
22856
22857         * gnulib-tool (func_create_testdir): Use non-default values of
22858         sourcebase and m4base.
22859
22860 2006-08-24  Bruno Haible  <bruno@clisp.org>
22861
22862         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
22863         HTML structure.
22864
22865 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
22866
22867         * modules/openat (Depends-on): Add lchown.
22868
22869 2006-08-23  Bruno Haible  <bruno@clisp.org>
22870
22871         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
22872         of gl_LOCK_EARLY instead of gl_LOCK.
22873
22874 2006-08-23  Bruno Haible  <bruno@clisp.org>
22875
22876         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
22877         on OSF/1 to no.
22878         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
22879
22880 2006-08-23  Bruno Haible  <bruno@clisp.org>
22881
22882         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
22883         as unusable.
22884
22885         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
22886         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
22887         (gl_LOCK): New macro.
22888
22889 2006-08-22  Simon Josefsson  <jas@extundo.com>
22890
22891         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
22892         to md5 module.
22893
22894 2006-08-22  Simon Josefsson  <jas@extundo.com>
22895
22896         * MODULES.html.sh: Add "Support for maintaining and release
22897         projects".
22898
22899         * build-aux/gnupload: New file, from coreutils.
22900
22901 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22902
22903         Avoid the need for AC_LIBSOURCES in m4 macros.
22904         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
22905         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
22906         * modules/check-version (EXTRA_DIST): Add check-version.h.
22907         * modules/crc (EXTRA_DIST): Add crc.h.
22908         * modules/des (EXTRA_DIST): Add des.h.
22909         * modules/gc (EXTRA_DIST): Add gc.h.
22910         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
22911         * modules/getline (EXTRA_DIST): Add getline.h.
22912         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
22913         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
22914         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
22915         * modules/md2 (EXTRA_DIST): Add md2.h.
22916         * modules/md4 (EXTRA_DIST): Add md4.h.
22917         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
22918         * modules/read-file (EXTRA_DIST): Add read-file.h.
22919         * modules/readline (EXTRA_DIST): Add readline.h.
22920         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
22921         rijndael-api-fst.h.
22922
22923 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22924
22925         * m4/rijndael.m4 (gl_ARCFOUR):
22926         * m4/arctwo.m4 (gl_ARCTWO):
22927         * m4/check-version.m4 (gl_CHECK_VERSION):
22928         * m4/crc.m4 (gl_CRC):
22929         * m4/des.m4 (gl_DES):
22930         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
22931         * m4/gc.m4 (gl_GC):
22932         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
22933         * m4/getline.m4 (gl_FUNC_GETLINE):
22934         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
22935         * m4/hmac-md5.m4 (gl_HMAC_MD5):
22936         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
22937         * m4/md2.m4 (gl_MD2):
22938         * m4/md4.m4 (gl_MD4):
22939         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
22940         * m4/read-file.m4 (gl_FUNC_READ_FILE):
22941         * m4/readline.m4 (gl_FUNC_READLINE):
22942         * m4/rijndael.m4 (gl_RIJNDAEL):
22943         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
22944         to get the necessary .h files and whatnot.
22945
22946 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
22947
22948         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
22949         gnulib rather than the other way around.
22950         * config/srclistvars.sh (COREUTILS): Remove.
22951
22952 2006-08-22  Jim Meyering  <jim@meyering.net>
22953
22954         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
22955
22956         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
22957
22958 2006-08-22  Eric Blake  <ebb9@byu.net>
22959
22960         * modules/regexprops-generic: New file.
22961         * MODULES.html.sh (Support for building documentation): List it.
22962
22963 2006-08-22  Eric Blake  <ebb9@byu.net>
22964
22965         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
22966         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
22967         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
22968         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
22969
22970 2006-08-22  Bruno Haible  <bruno@clisp.org>
22971
22972         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
22973         and lib_LTLIBRARIES like the other lib_* variables.
22974
22975 2006-08-22  Bruno Haible  <bruno@clisp.org>
22976
22977         * build-aux/x-to-1.in: New file, from GNU gettext.
22978
22979 2006-08-22  Bruno Haible  <bruno@clisp.org>
22980
22981         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
22982         <utmpx.h> exists.
22983
22984 2006-08-22  Bruno Haible  <bruno@clisp.org>
22985
22986         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
22987         <utmpx.h> exists.
22988
22989 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22990
22991         BeOS portability.
22992         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
22993         exist.
22994         Problem reported by Bruno Haible.
22995
22996 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
22997
22998         Avoid the need for AC_LIBSOURCES in m4 macros.
22999         * modules/acl (EXTRA_DIST): Add acl.h.
23000         * modules/argmatch (Files): Add m4/argmatch.m4.
23001         (configure.ac): Add gl_ARGMATCH.
23002         (EXTRA_DIST): Renamed from lib_SOURCES, for
23003         consistency with the other modules.  Remove argmatch.c.
23004         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
23005         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
23006         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
23007         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
23008         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
23009         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
23010         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
23011         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
23012         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
23013         * modules/closeout (EXTRA_DIST): Add closeout.h.
23014         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
23015         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
23016         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
23017         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
23018         dirname.h; remove basename.c and stripslash.c.
23019         * modules/exclude (EXTRA_DIST): Add exclude.h.
23020         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
23021         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
23022         * modules/file-type (EXTRA_DIST): Add file-type.h.
23023         * modules/filemode (EXTRA_DIST): Add filemode.h.
23024         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
23025         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
23026         * modules/fpending (EXTRA_DIST): Add __fpending.h.
23027         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
23028         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
23029         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
23030         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
23031         * modules/getdate (EXTRA_DIST): Add getdate.c.
23032         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
23033         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
23034         * modules/getpass (EXTRA_DIST): Add getpass.h.
23035         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
23036         * modules/group-member (EXTRA_DIST): Add group-member.h.
23037         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
23038         * modules/hash (EXTRA_DIST): Add hash.h.
23039         * modules/human (EXTRA_DIST): Add human.h.
23040         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
23041         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
23042         * modules/lchown (EXTRA_DIST): Add lchown.h.
23043         * modules/long-options (EXTRA_DIST): Add long-options.h.
23044         * modules/lstat (EXTRA_DIST): Add lstat.h.
23045         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
23046         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
23047         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
23048         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
23049         * modules/memxor (EXTRA_DIST): Add memxor.h.
23050         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
23051         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
23052         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
23053         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
23054         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
23055         * modules/physmem (EXTRA_DIST): Add physmem.h.
23056         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
23057         * modules/posixver (EXTRA_DIST): Add posixver.h.
23058         * modules/quote (EXTRA_DIST): Add quote.h.
23059         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
23060         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
23061         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
23062         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
23063         regex_internal.h regexec.c.
23064         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
23065         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
23066         * modules/same (EXTRA_DIST): Add same.h.
23067         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
23068         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
23069         * modules/savedir (EXTRA_DIST): Add savedir.h.
23070         * modules/sha1 (EXTRA_DIST): Add sha1.h.
23071         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
23072         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
23073         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
23074         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
23075         * modules/strdup (EXTRA_DIST): Add strdup.h.
23076         * modules/strftime (EXTRA_DIST): Add strftime.h.
23077         * modules/strndup (EXTRA_DIST): Add strndup.h.
23078         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
23079         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
23080         * modules/time_r (EXTRA_DIST): Add time_r.h.
23081         * modules/timespec (EXTRA_DIST): Add timespec.h.
23082         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
23083         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
23084         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
23085         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
23086         * modules/userspec (EXTRA_DIST): Add userspec.h.
23087         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
23088         * modules/utimens (EXTRA_DIST): Add utimens.h.
23089         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
23090         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
23091         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
23092         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
23093         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
23094         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
23095         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
23096         * modules/yesno (EXTRA_DIST): Add yesno.h.
23097
23098 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
23099
23100         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
23101
23102         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
23103         * m4/dev-ino.m4, same-inode.m4: Remove.
23104
23105         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
23106         * m4/acl.m4 (AC_FUNC_ACL):
23107         * m4/backupfile.m4 (gl_BACKUPFILE):
23108         * m4/c-strtod.m4 (gl_C99_STRTOLD):
23109         * m4/canon-host.m4 (gl_CANON_HOST):
23110         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
23111         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
23112         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
23113         * m4/cloexec.m4 (gl_CLOEXEC):
23114         * m4/close-stream.m4 (gl_CLOSE_STREAM):
23115         * m4/closeout.m4 (gl_CLOSEOUT):
23116         * m4/dirfd.m4 (gl_FUNC_DIRFD):
23117         * m4/dirname.m4 (gl_DIRNAME):
23118         * m4/exclude.m4 (gl_EXCLUDE):
23119         * m4/exitfail.m4 (gl_EXITFAIL):
23120         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
23121         * m4/file-type.m4 (gl_FILE_TYPE):
23122         * m4/filemode.m4 (gl_FILEMODE):
23123         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
23124         * m4/fpending.m4 (gl_FUNC_FPENDING):
23125         * m4/fprintftime.m4 (gl_FPRINTFTIME):
23126         * m4/fts.m4 (gl_FUNC_FTS):
23127         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
23128         * m4/getdate.m4 (gl_GETDATE):
23129         * m4/gethrxtime.m4 (gl_GETHRXTIME):
23130         * m4/getpagesize.m4 (gl_GETPAGESIZE):
23131         * m4/getpass.m4 (gl_FUNC_GETPASS):
23132         * m4/gettime.m4 (gl_GETTIME):
23133         * m4/getugroups.m4 (gl_GETUGROUPS):
23134         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
23135         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
23136         * m4/hard-locale.m4 (gl_HARD_LOCALE):
23137         * m4/hash.m4 (gl_HASH):
23138         * m4/idcache.m4 (gl_IDCACHE):
23139         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
23140         * m4/lchown.m4 (gl_FUNC_LCHOWN):
23141         * m4/long-options.m4 (gl_LONG_OPTIONS):
23142         * m4/lstat.m4 (gl_FUNC_LSTAT):
23143         * m4/md5.m4 (gl_MD5):
23144         * m4/memcasecmp.m4 (gl_MEMCASECMP):
23145         * m4/memcoll.m4 (gl_MEMCOLL):
23146         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
23147         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
23148         * m4/memxor.m4 (gl_MEMXOR):
23149         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
23150         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
23151         * m4/modechange.m4 (gl_MODECHANGE):
23152         * m4/mountlist.m4 (gl_MOUNTLIST):
23153         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
23154         * m4/openat.m4 (gl_FUNC_OPENAT):
23155         * m4/pathmax.m4 (gl_PATHMAX):
23156         * m4/physmem.m4 (gl_PHYSMEM):
23157         * m4/posixtm.m4 (gl_POSIXTM):
23158         * m4/posixver.m4 (gl_POSIXVER):
23159         * m4/quote.m4 (gl_QUOTE):
23160         * m4/quotearg.m4 (gl_QUOTEARG):
23161         * m4/readtokens.m4 (gl_READTOKENS):
23162         * m4/readutmp.m4 (gl_READUTMP):
23163         * m4/regex.m4 (gl_REGEX):
23164         * m4/safe-read.m4 (gl_SAFE_READ):
23165         * m4/safe-write.m4 (gl_SAFE_WRITE):
23166         * m4/same.m4 (gl_SAME):
23167         * m4/save-cwd.m4 (gl_SAVE_CWD):
23168         * m4/savedir.m4 (gl_SAVEDIR):
23169         * m4/settime.m4 (gl_SETTIME):
23170         * m4/sha1.m4 (gl_SHA1):
23171         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
23172         * m4/stat-macros.m4 (gl_STAT_MACROS):
23173         * m4/stat-time.m4 (gl_STAT_TIME):
23174         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
23175         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
23176         * m4/strdup.m4 (gl_FUNC_STRDUP):
23177         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
23178         * m4/strndup.m4 (gl_FUNC_STRNDUP):
23179         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
23180         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
23181         * m4/time_r.m4 (gl_TIME_R):
23182         * m4/timespec.m4 (gl_TIMESPEC):
23183         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
23184         * m4/unlinkdir.m4 (gl_UNLINKDIR):
23185         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
23186         * m4/userspec.m4 (gl_USERSPEC):
23187         * m4/utimecmp.m4 (gl_UTIMECMP):
23188         * m4/utimens.m4 (gl_UTIMENS):
23189         * m4/xalloc.m4 (gl_XALLOC):
23190         * m4/xgetcwd.m4 (gl_XGETCWD):
23191         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
23192         * m4/xreadlink.m4 (gl_XREADLINK):
23193         * m4/xstrtod.m4 (gl_XSTRTOD):
23194         * m4/yesno.m4 (gl_YESNO):
23195         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
23196         to get the necessary .h files and whatnot.
23197
23198 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
23199             Bruno Haible  <bruno@clisp.org>
23200
23201         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
23202         /bin/sh understanding of '!' conditional negation.
23203
23204 2006-08-21  Jim Meyering  <jim@meyering.net>
23205
23206         * modules/openat (Depends-on): Really alphabetize.
23207
23208         * modules/acl (Depends-on): Add error and quote.
23209
23210         * check-module (find_included_lib_files): Add at-func.c to the
23211         ok-to-include-more-than-once white list.
23212
23213         * modules/openat (Depends-on): Add lstat.  Alphabetize.
23214
23215 2006-08-21  Bruno Haible  <bruno@clisp.org>
23216
23217         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23218         Emit a pkgdata_DATA variable only if some snippets add contents to it.
23219         Reported by Martin Lambers <marlam@marlam.de>.
23220
23221 2006-08-21  Bruno Haible  <bruno@clisp.org>
23222
23223         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
23224         specify an installation location, don't emit a noinst_LIBRARIES or
23225         noinst_LTLIBRARIES assignment.
23226
23227 2006-08-21  Bruno Haible  <bruno@clisp.org>
23228
23229         BeOS portability.
23230         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
23231         BeOS has mbrtowc() but no <wctype.h>.
23232
23233 2006-08-21  Bruno Haible  <bruno@clisp.org>
23234
23235         BeOS portability.
23236         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
23237         exist.
23238
23239 2006-08-21  Bruno Haible  <bruno@clisp.org>
23240
23241         BeOS portability.
23242         * lib/mbchar.h: Include <wctype.h> only if it exists.
23243
23244 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23245
23246         Remove files that are no longer needed by their respective modules.
23247         * m4/obstack.m4: Remove.
23248         * m4/strerror_r.m4: Remove.
23249         * m4/uint32_t.m4: Remove.
23250         * m4/uintptr_t.m4: Remove.
23251         * m4/ullong_max.m4: Remove.
23252         * m4/xstrtoimax.m4: Remove.
23253         * m4/xstrtoumax.m4: Remove.
23254
23255         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
23256         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
23257         dependencies now capture this.
23258
23259         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
23260         Do not use AC_LIBSOURCES, since gnulib modules now do this.
23261         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
23262         * m4/human.m4 (gl_HUMAN): Likewise.
23263         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
23264         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
23265
23266         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
23267
23268         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
23269         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
23270         stdint.
23271         * m4/human.m4 (gl_HUMAN): Likewise.
23272         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
23273         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
23274         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23275         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23276         * m4/xstrtol (gl_XSTRTOL): Likewise.
23277
23278         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
23279         AC_TYPE_LONG_LONG_INT.
23280         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
23281         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
23282         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
23283         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
23284
23285         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
23286         on stdbool.
23287
23288         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
23289         (gl_PREREQ_XSTRTOUL): Remove.
23290
23291         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
23292
23293         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
23294         mode.
23295
23296 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23297
23298         Add and change modules to make it easier for coreutils to use
23299         gnulib-tool.
23300         * modules/backupfile (Files): Remove m4/d-ino.m4.
23301         (Depends-on): Add d-ino.
23302         * modules/cycle-check (Depends-on): Add stdint.
23303         (lib_SOURCES): Add cycle-check.h.
23304         * modules/d-ino: New module.
23305         * modules/d-type: New module.
23306         * modules/error (Files): Remove m4/strerror_r.m4.
23307         * modules/filemode (Files): Add m4/st_dm_mode.m4.
23308         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
23309         m4/inttypes_h.m4, m4/uintmax_t.m4.
23310         (Depends-on): Add stdint.
23311         (lib_SOURCES): Add fsusage.h.
23312         * modules/getcwd (Files): Remove d-ino.m4.
23313         (Depends-on): Add d-ino.
23314         * modules/getndelim2 (Depends-on): Add stdint.
23315         * modules/glob (Files): Remove m4/d-type.m4.
23316         (Depends-on): Add d-type.
23317         * modules/host-os: New module.
23318         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
23319         m4/inttypes_h.m4, m4/uintmax_t.m4.
23320         * Depends-on: Add stdint.
23321         (lib_SOURCES): Add human.h.
23322         * modules/inttostr (Files): Remove m4/intmax_t.m4,
23323         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
23324         m4/uintmax_t.m4, m4/ulonglong.m4.
23325         (Depends-on): Add stdint.
23326         (EXTRA_DIST): Add inttostr.h.
23327         * modules/lchmod: New module.
23328         * modules/link-follow: New module.
23329         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
23330         (Depends-on): Add lchmod.
23331         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
23332         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
23333         (Depends-on): Add stdint.
23334         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
23335         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
23336         (Depends-on): Add stdint.
23337         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
23338         * modules/perl: New module.
23339         * modules/regex (Depends-on): Add stdint.
23340         * modules/rmdir-errno: New module.
23341         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23342         m4/intmax_t.m4.
23343         (Depends-on): Add stdint.
23344         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
23345         m4/uintmax_t.m4.
23346         (Depends-on): Add stdint.
23347         * modules/unlink-busy: New module.
23348         * modules/utimecmp (Depends-on): Add stdint.
23349         * modules/uptime: New module.
23350         * modules/winsz-ioctl: New module.
23351         * modules/winsz-termios: New module.
23352         * modules/xnanosleep (Depends-on): Add nanosleep.
23353         * modules/ullong_max: Remove.
23354         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
23355         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
23356         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
23357         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
23358         (Depends-on): Add inttypes.
23359         (lib_SOURCES): Add xstrtol.h.
23360         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
23361         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
23362         * MODULES.html.sh: Move 'assert' into the assert section.
23363         Move 'dummy' into the linking section.
23364         Remove ullong_max.
23365         Add section for compatibility checks for POSIX:2001 functions,
23366         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
23367         winsz-ioctl, and winsz-termios into it.
23368         Add lchmod.
23369         Add top-level Misc section and put host-os, perl, and uptime
23370         into it.
23371
23372 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23373
23374         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
23375         now assume the stdint module.  Do not include inttypes.h.
23376         * lib/fsusage.h: Likewise.
23377         * lib/getndelim2.c: Likewise.
23378         * lib/human.h: Likewise.
23379         * lib/inttostr.h: Likewise.
23380         * lib/obstack.c: Likewise.
23381         * lib/regex_internal.h: Likewise.
23382         * lib/tempname.c: Likewise.
23383         * lib/utimecmp.c: Likewise.
23384         * lib/xstrtol.h: Likewise.
23385
23386         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
23387
23388         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
23389         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
23390         * lib/xtime.h: Likewise.
23391
23392 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23393
23394         * modules/openat (Files): Add lib/fchmodat.c.
23395         Fixes problem reported by Jay Youngman.
23396
23397 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23398
23399         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
23400         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
23401
23402 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
23403             Bruno Haible  <bruno@clisp.org>
23404
23405         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
23406         and is a script that invokes bison. Tighten the code. Add comments.
23407
23408 2006-08-18  Jim Meyering  <jim@meyering.net>
23409
23410         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
23411         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
23412         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
23413         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
23414
23415 2006-08-18  Bruno Haible  <bruno@clisp.org>
23416
23417         * modules/bison-i18n: New file.
23418         * MODULES.html.sh (Internationalization functions): Add it.
23419
23420 2006-08-18  Bruno Haible  <bruno@clisp.org>
23421
23422         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
23423         sys/statvfs.h. When getmntinfo was found, check its declaration and
23424         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
23425
23426 2006-08-18  Bruno Haible  <bruno@clisp.org>
23427
23428         * m4/bison-i18n.m4: New file, from bison.
23429
23430 2006-08-18  Bruno Haible  <bruno@clisp.org>
23431
23432         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
23433         (ME_DUMMY): Treat "kernfs" as a dummy.
23434         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
23435
23436 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23437
23438         Update from coreutils.
23439
23440         2006-08-15  Jim Meyering  <jim@meyering.net>
23441
23442         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
23443
23444         2006-01-17  Jim Meyering  <jim@meyering.net>
23445
23446         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
23447
23448         2006-01-11  Jim Meyering  <jim@meyering.net>
23449
23450         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
23451         Check for the lchmod function.
23452
23453 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
23454
23455         Update from coreutils.
23456
23457         * lib/__fpending.h: Add copyright notice.
23458         * lib/fprintftime.h: Likewise.
23459         * lib/savedir.c: Use (C) in copyright notice.
23460         * lib/savedir.h: Likewise.
23461
23462         2006-08-15  Jim Meyering  <jim@meyering.net>
23463
23464         * lib/at-func.c: New file, with the logic of all emulated at-functions.
23465         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
23466         in support of the EXPECTED_ERRNO macro.
23467         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
23468         definitions.  Instead, define the appropriate symbols and include
23469         "at-func.c".
23470         * lib/mkdirat.c (mkdirat): Likewise.
23471         * lib/fchmodat.c (fchmodat): Likewise.
23472         (ENOSYS): Remove definition.
23473         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
23474         it.  Don't include "unistd--.h" -- it wasn't ever used.
23475
23476         2006-01-17  Jim Meyering  <jim@meyering.net>
23477
23478         Rewrite fts.c not to change the current working directory,
23479         by using openat, fstatat, fdopendir, etc..
23480
23481         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
23482         (HAVE_OPENAT_SUPPORT): Define.
23483         [_LIBC] (fchdir): Don't undef or define; no longer used.
23484         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
23485         Now, this `function' always succeeds, and consumes its file descriptor
23486         parameter -- so callers must not close such FDs.  Update callers.
23487         (diropen_fd, opendirat, cwd_advance_fd): New functions.
23488         (diropen): Add parameter, SP.  Adjust all callers.
23489         Implement using diropen_fd, rather than open.
23490         (fts_open): Initialize new member, fts_cwd_fd.
23491         Remove fts_rft-setting code.
23492         (fts_close): Close fts_cwd_fd, if necessary.
23493         (__opendir2): Define in terms of opendir or opendirat,
23494         depending on whether the FST_NOCHDIR flag is set.
23495         (fts_build): Since fts_safe_changedir consumes its FD, and since
23496         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
23497         and close the dup'd file descriptor upon failure.
23498         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
23499         (fts_safe_changedir): Tweak semantics to reflect that this function
23500         now calls cwd_advance_fd and hence consumes its FD argument.
23501         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
23502         [struct FTS] (fts_rft): Remove now-unused member.
23503         [struct FTS] (fts_cycle.state): Improve comment.
23504
23505         * lib/openat.c (openat_needs_fchdir): New function.
23506         * lib/openat.h (openat_needs_fchdir): Declare it.
23507
23508 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
23509
23510         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
23511         Problem and fix reported by Pádraig Brady in
23512         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
23513
23514 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23515
23516         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
23517
23518 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23519
23520         * lib/memcoll.c (memcoll): Optimize for the common case where the
23521         arguments are bytewise equal.
23522
23523 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23524
23525         * doc/regexprops-generic.texi: Add a copyright notice.
23526
23527 2006-08-15  Bruno Haible  <bruno@clisp.org>
23528
23529         * modules/tmpdir (License): Change to LGPL.
23530
23531 2006-08-15  Bruno Haible  <bruno@clisp.org>
23532
23533         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
23534         module.
23535
23536 2006-08-14  Simon Josefsson  <jas@extundo.com>
23537
23538         * config/srclist.txt: Add gnupload.
23539
23540 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23541
23542         Change copyright notice from LGPL 2 to GPL 2, since that's the
23543         standard form used in the gnulib repository.
23544         * tests/test-lock.c: Likewise.
23545         * tests/test-stdint.c: Likewise.
23546         * tests/test-tls.c: Likewise.
23547
23548         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
23549         prelude-manager.  User shorter URLs for GNU projects, without '?'.
23550         Add copyright notice.
23551
23552         * check-module: Add copyright notice.  Output a copyright
23553         notice if "--version" is specified.
23554         * modules/COPYING: New file.
23555         * tests/test-getaddrinfo.c: Add copyright notice.
23556         * tests/test-verify.c: Likewise.
23557
23558 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23559
23560         Change copyright notice from LGPL 2 to GPL 2, since that's the
23561         standard form used in the gnulib repository.
23562         * lib/lock.c: LGPL -> GPL.
23563         * lib/lock.h: Likewise.
23564         * lib/strnlen1.c: Likewise.
23565         * lib/strnlen1.h: Likewise.
23566         * lib/tls.c: Likewise.
23567         * lib/tls.h: Likewise.
23568         * lib/tmpdir.c: Likewise.
23569
23570         * lib/TODO: Remove; this belongs only in coreutils.
23571
23572 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23573
23574         Add copyright notices to long-enough files that lack them, since
23575         otherwise the files aren't clearly free.  Use the same notice that
23576         getdate.texi already uses.
23577         * doc/alloca-opt.texi: Add copyright notice.
23578         * doc/alloca.texi: Likewise.
23579         * doc/ctime.texi: Likewise.
23580         * doc/functions.texi: Likewise.
23581         * doc/gcd.texi: Likewise.
23582         * doc/gnulib-tool.texi: Likewise.
23583         * doc/inet_ntoa.texi: Likewise.
23584         * doc/visibility.texi: Likewise.
23585
23586         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
23587         * doc/quote.texi: Add copyright notice.
23588
23589         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
23590         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
23591         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
23592         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
23593         is now obsolete, and give a pointer to the Sun list.
23594         Add copyright notice.
23595
23596 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23597
23598         * config/srclistvars.sh: Add copyright notice.
23599
23600 2006-08-14  Eric Blake  <ebb9@byu.net>
23601
23602         Import the following change from libc:
23603
23604         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
23605
23606         Upstream bug 2997.
23607         * lib/misc/error.c: Add space between program name and message if file
23608         name is missing.
23609
23610 2006-08-12  Karl Berry  <karl@gnu.org>
23611
23612         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
23613         remove, these originate in gnulib now.
23614
23615 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23616
23617         * doc/Makefile (standards.info standards.html standards.dvi):
23618         Also depend on make-stds.texi.
23619
23620 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
23621
23622         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
23623         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
23624
23625         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
23626         in wchar_t.  Problem reported by Eric Blake.
23627
23628         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
23629         LEN is smaller than SIZE.  Suggested by Bruno Haible.
23630         Also, help the compiler to keep LEN in a register.
23631
23632 2006-08-11  Eric Blake  <ebb9@byu.net>
23633
23634         * users.txt: Sort.  Add tar.
23635
23636 2006-08-11  Bruno Haible  <bruno@clisp.org>
23637
23638         * users.txt: New file.
23639
23640 2006-08-11  Bruno Haible  <bruno@clisp.org>
23641
23642         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
23643         before <wchar.h>. Needed for OSF/1 and BSD/OS.
23644
23645 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23646
23647         * modules/snprintf (Depends-on): Remove minmax.
23648         (Maintainer): Add self and Bruno.
23649
23650 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23651
23652         * lib/.cppi-disable: Add snprintf.h, socket_.h.
23653         * lib/snprintf.c: Include <errno.h> and <limits.h>.
23654         (EOVERFLOW): Define if the system does not.
23655         Do not include "minmax.h"; it wasn't used.
23656         (snprintf): Don't assume size_t promotes to an unsigned type.
23657         Fix bug when generated string was too long for the buffer: the
23658         buffer's contents are supposed to be the initial prefix of the
23659         output.  Don't assume vasnprintf returns EOVERFLOW if the size
23660         exceeds INT_MAX; do the check ourselves.
23661
23662         Import the following changes from libc:
23663
23664         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
23665
23666         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
23667         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
23668         set wc to the byte which couldn't be converted.
23669         (re_string_reconstruct): Don't clear valid_raw_len before calling
23670         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
23671         tip_context using re_string_context_at.
23672
23673         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
23674
23675         * lib/posix/regex.h: g++ still cannot handled [restrict].
23676
23677         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
23678
23679         * lib/posix/regex.h: Remove special handling for VMS.
23680
23681 2006-08-10  Jim Meyering  <jim@meyering.net>
23682
23683         * modules/same-inode: New module.
23684         * modules/dev-ino: New module.
23685         * modules/cycle-check: Depend on these modules, rather than simply
23686         including their .h files.
23687         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
23688         required via m4/cycle-check.m4.
23689         * modules/same: Depend on new same-inode module, rather than
23690         including same-inode.h.
23691         * modules/chdir-safer: New file.
23692
23693         * modules/chown (Depends-on): Add stat-macros.
23694
23695 2006-08-10  Jim Meyering  <jim@meyering.net>
23696
23697         * m4/cycle-check.m4: New file.
23698         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
23699         * m4/dev-ino.m4, m4/same-inode.m4: New files.
23700
23701 2006-08-10  Eric Blake  <ebb9@byu.net>
23702
23703         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
23704         in from original proposal.
23705
23706 2006-08-10  Eric Blake  <ebb9@byu.net>
23707         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
23708
23709         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
23710         namespace.
23711
23712 2006-08-10  Bruno Haible  <bruno@clisp.org>
23713
23714         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
23715         as well.
23716
23717 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23718
23719         Sync from coreutils.
23720
23721         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
23722
23723         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
23724         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
23725
23726 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23727
23728         * modules/restrict: Remove; no longer needed now that we assume
23729         Autoconf 2.59 or later.
23730         * MODULES.html.sh: Remove 'restrict'.
23731         * modules/argp (Depends-on): Remove 'restrict'.
23732         * modules/base64 (Depends-on): Likewise.
23733         * modules/gc (Depends-on): Likewise.
23734         * modules/getaddrinfo (Depends-on): Likewise.
23735         * modules/glob (Depends-on): Likewise.
23736         * modules/inet_ntop (Depends-on): Likewise.
23737         * modules/inet_pton (Depends-on): Likewise.
23738         * modules/memxor (Depends-on): Likewise.
23739         * modules/regex (Depends-on): Likewise.
23740         * modules/strtok_r (Depends-on): Likewise.
23741         * modules/time_r (Depends-on): Likewise.
23742
23743 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
23744
23745         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
23746         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
23747         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
23748         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
23749         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
23750         * m4/memxor.m4 (gl_MEMXOR): Likewise.
23751         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
23752         gl_C_RESTRICT replaced by AC_C_RESTRICT.
23753
23754         Merge from coreutils.
23755         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
23756         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
23757         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
23758         * m4/time_r.m4 (gl_TIME_R): Likewise.
23759
23760 2006-08-09  Karl Berry  <karl@gnu.org>
23761
23762         * config/srclist.txt: no more gettext-tools, per Bruno.
23763
23764 2006-08-08  Eric Blake  <ebb9@byu.net>
23765
23766         * modules/verror: New module.
23767         * MODULES.html.sh: Document it.
23768
23769 2006-08-08  Eric Blake  <ebb9@byu.net>
23770
23771         * lib/verror.h, lib/verror.c: New files.
23772
23773 2006-08-08  Eric Blake  <ebb9@byu.net>
23774
23775         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
23776         verror_at_line output complies with GNU Coding Standards even when
23777         file is NULL.
23778
23779 2006-08-07  Bruno Haible  <bruno@clisp.org>
23780
23781         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
23782         versions of AIX.
23783         Reported by Ralf Wildenhues.
23784
23785 2006-08-07  Bruno Haible  <bruno@clisp.org>
23786
23787         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
23788         in an AC_DEFUN. Needed so that the autoconf snippets can use
23789         AC_REQUIRE.
23790
23791 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23792
23793         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23794         Initialize pkgdata_DATA.
23795         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
23796         overriding it.
23797
23798 2006-08-06  Eric Blake  <ebb9@byu.net>
23799
23800         * lib/error.h: Fold in some upstream changes from glibc.
23801         * lib/error.c: Likewise.
23802
23803 2006-08-04  Bruno Haible  <bruno@clisp.org>
23804
23805         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23806         Make the mostlyclean-local rule depend on mostlyclean-generic.
23807         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
23808
23809 2006-07-31  Bruno Haible  <bruno@clisp.org>
23810
23811         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
23812         <stdlib.h>, <string.h>.
23813
23814 2006-07-30  Bruno Haible  <bruno@clisp.org>
23815
23816         * modules/readlink (License): Change to LGPL.
23817
23818 2006-07-30  Bruno Haible  <bruno@clisp.org>
23819
23820         * modules/javaversion (Makefile.am): Distribute javaversion.java and
23821         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
23822         set PKGDATADIR to point to it.
23823
23824 2006-07-30  Bruno Haible  <bruno@clisp.org>
23825
23826         * modules/csharpexec (configure.ac): Comment out macro invocation.
23827         * modules/javaexec (configure.ac): Likewise.
23828         * modules/javacomp-script (configure.ac): Likewise.
23829
23830         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
23831
23832 2006-07-30  Bruno Haible  <bruno@clisp.org>
23833
23834         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
23835         linked-list.
23836
23837 2006-07-30  Bruno Haible  <bruno@clisp.org>
23838
23839         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
23840
23841 2006-07-30  Bruno Haible  <bruno@clisp.org>
23842
23843         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23844         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
23845         get removed.
23846
23847 2006-07-29  Bruno Haible  <bruno@clisp.org>
23848
23849         Make it possible for gnulib-tool to work with locally modified or
23850         augmented gnulib repositories.
23851         * gnulib-tool (func_usage): Document --local-dir option.
23852         (local_gnulib_dir): New variable.
23853         Handle --local-dir option.
23854         (func_lookup_file): New function.
23855         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
23856         (func_get_description, func_get_filelist, func_get_description,
23857         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
23858         func_get_automake_snippet, func_get_include_directive,
23859         func_get_license, func_get_maintainer): Use func_lookup_file.
23860         (func_import, func_create_testdir): Use func_lookup_file.
23861
23862 2006-07-29  Bruno Haible  <bruno@clisp.org>
23863
23864         * modules/setenv (Depends-on): Add unistd.
23865
23866 2006-07-29  Bruno Haible  <bruno@clisp.org>
23867
23868         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
23869
23870 2006-07-29  Bruno Haible  <bruno@clisp.org>
23871
23872         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
23873
23874 2006-07-29  Bruno Haible  <bruno@clisp.org>
23875
23876         * gnulib-tool (import, update): If there is no Makefile.am, look at
23877         aclocal.m4, instead of bailing out.
23878
23879 2006-07-29  Bruno Haible  <bruno@clisp.org>
23880
23881         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
23882         Categorize the options by when they are useful.
23883
23884 2006-07-29  Bruno Haible  <bruno@clisp.org>
23885
23886         * gnulib-tool (func_usage): Document option --no-libtool.
23887         Handle option --no-libtool.
23888         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
23889         for changed semantics of $libtool variable.
23890         (func_import): Likewise. If libtool is not used, show this through
23891         an option --no-libtool.
23892         (func_create_testdir): Update.
23893
23894 2006-07-29  Bruno Haible  <bruno@clisp.org>
23895
23896         * gnulib-tool (func_import): Extend error message about missing
23897         --doc-base.
23898
23899 2006-07-29  Bruno Haible  <bruno@clisp.org>
23900
23901         * gnulib-tool (func_import): Don't create the $docbase directory if
23902         there is no file to store there.
23903
23904 2006-07-29  Bruno Haible  <bruno@clisp.org>
23905
23906         * gnulib-tool (autoconf_minversion): If a --dir option is given and
23907         relevant, look for configure.ac there, not in the current directory.
23908         Also use a simple search for AC_PREREQ, not "autoconf --trace".
23909
23910 2006-07-29  Bruno Haible  <bruno@clisp.org>
23911
23912         * gnulib-tool (SORT): New variable.
23913         (func_usage): Undocument --assume-autoconf option.
23914         Remove --assume-autoconf option handling.
23915         (autoconf_minversion): Determine from the contents of configure.ac.
23916         (func_import): Remove autoconf_minversion handling.
23917         Suggested by Eric Blake.
23918
23919 2006-07-29  Bruno Haible  <bruno@clisp.org>
23920
23921         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
23922
23923 2006-07-29  Bruno Haible  <bruno@clisp.org>
23924
23925         * config/srclist.txt (*setenv.[ch]): Remove rules.
23926
23927 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23928
23929         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
23930
23931 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23932
23933         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
23934         arpa/inet.h.
23935
23936 2006-07-28  Simon Josefsson  <jas@extundo.com>
23937
23938         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
23939         * modules/inet_pton (Depends-on): Likewise.
23940
23941 2006-07-28  Simon Josefsson  <jas@extundo.com>
23942
23943         * m4/netinet_in_h.m4: New file.
23944
23945 2006-07-28  Simon Josefsson  <jas@extundo.com>
23946
23947         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
23948         #include's.
23949
23950 2006-07-28  Simon Josefsson  <jas@extundo.com>
23951
23952         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
23953         #include's.
23954
23955 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
23956
23957         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
23958         setgid on directories only if they set these bits.
23959         * lib/modechange.h: Remove obsolete comment about masks.
23960
23961 2006-07-28  Eric Blake  <ebb9@byu.net>
23962
23963         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
23964         macro expansion.
23965
23966 2006-07-28  Bruno Haible  <bruno@clisp.org>
23967
23968         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
23969
23970 2006-07-28  Bruno Haible  <bruno@clisp.org>
23971
23972         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
23973
23974 2006-07-28  Bruno Haible  <bruno@clisp.org>
23975
23976         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
23977         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
23978         Define fallbacks.
23979         Avoids link error on FreeBSD 4.x.
23980         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23981
23982         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
23983         encoding.
23984         * lib/mbswidth.c (iswcntrl): Likewise.
23985
23986 2006-07-27  Bruno Haible  <bruno@clisp.org>
23987
23988         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
23989         test.
23990
23991 2006-07-27  Bruno Haible  <bruno@clisp.org>
23992
23993         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
23994         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
23995         defined.
23996
23997 2006-07-26  Eric Blake  <ebb9@byu.net>
23998
23999         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
24000
24001 2006-07-26  Eric Blake  <ebb9@byu.net>
24002
24003         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
24004         like mingw that lack mkstemp.
24005         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
24006         avoid compilation warning on mingw.
24007
24008 2006-07-26  Bruno Haible  <bruno@clisp.org>
24009
24010         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
24011         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
24012         INT_FAST*_MIN, INTPTR_MIN.
24013
24014 2006-07-25  Bruno Haible  <bruno@clisp.org>
24015
24016         * modules/version-etc (Depends-on): Add stdarg.
24017
24018 2006-07-25  Bruno Haible  <bruno@clisp.org>
24019
24020         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
24021         complex commands.
24022
24023 2006-07-25  Bruno Haible  <bruno@clisp.org>
24024
24025         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
24026         defined in <stdarg.h> or config.h.
24027
24028 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
24029
24030         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
24031         (gl_STDIO_SAFER): Remove.
24032
24033 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
24034
24035         * MODULES.html.sh (File stream based Input/Output):
24036         Add fopen-safer, tmpfile-safer; remove stdio-safer.
24037         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
24038         * modules/fopen-safer, modules/tmpfile-safer: New files.
24039         * modules/stdio-safer: Remove.
24040
24041 2006-07-24  Bruno Haible  <bruno@clisp.org>
24042
24043         * modules/tmpdir: New file.
24044         * MODULES.html.sh (File system functions): Add it.
24045
24046 2006-07-24  Bruno Haible  <bruno@clisp.org>
24047
24048         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
24049         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
24050
24051 2006-07-24  Bruno Haible  <bruno@clisp.org>
24052
24053         * modules/clean-temp: New file.
24054
24055 2006-07-24  Bruno Haible  <bruno@clisp.org>
24056
24057         * m4/tmpdir.m4: New file, from GNU gettext.
24058
24059 2006-07-24  Bruno Haible  <bruno@clisp.org>
24060
24061         * lib/tmpdir.h: New file, from GNU gettext.
24062         * lib/tmpdir.c: New file, from GNU gettext.
24063
24064 2006-07-24  Bruno Haible  <bruno@clisp.org>
24065
24066         * lib/clean-temp.h: New file, from GNU gettext.
24067         * lib/clean-temp.c: New file, from GNU gettext.
24068
24069 2006-07-23  Eric Blake  <ebb9@byu.net>
24070
24071         * modules/stdio-safer (Files): Add tmpfile-safer.c.
24072         (Depends-on): Add binary-io.
24073
24074 2006-07-23  Eric Blake  <ebb9@byu.net>
24075
24076         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
24077
24078 2006-07-23  Eric Blake  <ebb9@byu.net>
24079
24080         * lib/tmpfile-safer.c: New file.
24081         * lib/stdio-safer.h (fopen_safer): Add prototype.
24082         * lib/stdio--.h (tmpfile): Make safer.
24083
24084 2006-07-23  Bruno Haible  <bruno@clisp.org>
24085
24086         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
24087         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
24088         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
24089         gl_linked_remove_at): Use it.
24090
24091 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24092         and Simon Josefsson <jas@extundo.com>
24093
24094         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
24095
24096         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
24097
24098 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
24099
24100         * modules/close-stream: New file.
24101         * modules/closeout (Description): Make it clear that it exits
24102         with a diagnostic on error.
24103         (Depends-on): Add close-stream.  Remove fpending, stdbool.
24104         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
24105
24106 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
24107
24108         * m4/close-stream.m4: New file.
24109
24110 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
24111
24112         * lib/close-stream.c, lib/close-stream.h: New files.
24113
24114 2006-07-22  Bruno Haible  <bruno@clisp.org>
24115
24116         Merge from GNU gettext 0.15.
24117
24118         2006-05-01  Bruno Haible  <bruno@clisp.org>
24119
24120                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
24121
24122         2006-07-22  Bruno Haible  <bruno@clisp.org>
24123
24124                 * modules/javaversion: New file.
24125                 * MODULES.html.sh (Java): Add javaversion.
24126
24127         2006-03-12  Bruno Haible  <bruno@clisp.org>
24128
24129                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
24130
24131         2005-12-04  Bruno Haible  <bruno@clisp.org>
24132
24133                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
24134                 (untested).
24135
24136         2006-06-21  Bruno Haible  <bruno@clisp.org>
24137
24138                 Avoid warnings from recent versions of mcs.
24139                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
24140                 -o, -L, -r any more. Use options documented since mcs-1.0
24141                 instead. Similarly for -g.
24142
24143         2005-12-04  Bruno Haible  <bruno@clisp.org>
24144
24145                 * build-aux/csharpcomp.sh.in: Suffix for resources is
24146                 .resources, not .resource.
24147
24148         2005-07-09  Bruno Haible  <bruno@clisp.org>
24149
24150                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
24151                 add a .dll suffix.
24152                 Reported by Mark Junker <mjscod@gmx.de>.
24153
24154         2006-07-22  Bruno Haible  <bruno@clisp.org>
24155
24156                 * modules/gettext: Upgrade to gettext-0.15.
24157                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
24158                 m4/visibility.m4.
24159                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
24160
24161 2006-07-22  Bruno Haible  <bruno@clisp.org>
24162
24163         Merge from GNU gettext 0.15.
24164
24165         2006-03-25  Bruno Haible  <bruno@clisp.org>
24166
24167                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
24168
24169         2006-07-21  Bruno Haible  <bruno@clisp.org>
24170
24171                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
24172                 "1.1".
24173
24174         2006-05-09  Bruno Haible  <bruno@clisp.org>
24175
24176                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
24177                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
24178                 for the conftestver execution.
24179
24180         2006-05-01  Bruno Haible  <bruno@clisp.org>
24181
24182                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
24183                 optional target-version argument. Verify that the compiler
24184                 groks source of the specified source-version, or add -source
24185                 option as necessary. Verify that the compiler produces
24186                 bytecode in the specified target-version, or add -target and
24187                 -source options as necessary. Make the result of the test
24188                 available as variable CONF_JAVAC. Also log error output in
24189                 config.log.
24190
24191         2006-03-11  Bruno Haible  <bruno@clisp.org>
24192
24193                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
24194
24195         2006-05-09  Bruno Haible  <bruno@clisp.org>
24196
24197                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
24198                 CLASSPATH_SEPARATOR to a semicolon.
24199
24200         2006-03-12  Bruno Haible  <bruno@clisp.org>
24201
24202                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
24203                 available as variable CONF_JAVA, for subsequent autoconf
24204                 tests. Also log error output in config.log.
24205
24206         2006-07-19  Bruno Haible  <bruno@clisp.org>
24207
24208                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
24209                 that getline works on glibc2 systems. Needed to avoid trouble
24210                 in relocatable.c.
24211                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
24212
24213         2005-12-04  Bruno Haible  <bruno@clisp.org>
24214
24215                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
24216                 launcher (untested).
24217
24218         2005-12-04  Bruno Haible  <bruno@clisp.org>
24219
24220                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
24221
24222         2006-07-22  Bruno Haible  <bruno@clisp.org>
24223
24224                 * gettext.m4: Update from GNU gettext-0.15.
24225                 * nls.m4: Likewise.
24226                 * po.m4: Likewise.
24227                 * inttypes-pri.m4: Likewise.
24228                 * inttypes-h.m4: Renamed from inttypes.m4.
24229                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
24230
24231 2006-07-22  Bruno Haible  <bruno@clisp.org>
24232
24233         Merge from GNU gettext 0.15.
24234
24235         2005-07-05  Bruno Haible  <bruno@clisp.org>
24236
24237                 * printf-args.c (printf_fetchargs): Work around broken
24238                 definition of wint_t on mingw.
24239
24240         2005-02-12  Bruno Haible  <bruno@clisp.org>
24241
24242                 * xallocsa.h: Add extern "C" for C++.
24243
24244         2006-05-17  Bruno Haible  <bruno@clisp.org>
24245
24246                 Cygwin portability.
24247                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
24248
24249         2006-04-30  Bruno Haible  <bruno@clisp.org>
24250
24251                 * progreloc.c: Include <mach-o/dyld.h> if available.
24252                 (find_executable): Use _NSGetExecutablePath when possible.
24253
24254         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
24255
24256                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
24257                 function.
24258
24259         2005-12-29  Bruno Haible  <bruno@clisp.org>
24260
24261                 * progreloc.c (set_program_name_and_installdir): Fix
24262                 compilation error.
24263
24264         2005-12-04  Bruno Haible  <bruno@clisp.org>
24265
24266                 Cygwin portability.
24267                 * progreloc.c: Include <windows.h> also on Cygwin.
24268                 (find_executable): Add support for Cygwin.
24269                 (set_program_name_and_installdir): Handle also platforms with
24270                 nonempty EXEEXT.
24271
24272         2006-07-11  Bruno Haible  <bruno@clisp.org>
24273
24274                 * javacomp.c: Fix a comment.
24275                 Reported by Jim Meyering.
24276
24277         2006-04-30  Bruno Haible  <bruno@clisp.org>
24278
24279                 * javacomp.h (compile_java_class): Add source_version,
24280                 target_version arguments.
24281                 * javacomp.c: Rewritten to choose only a compiler that
24282                 respects the specified source_version and target_version.
24283
24284         2006-06-27  Bruno Haible  <bruno@clisp.org>
24285
24286                 Assume correct S_ISDIR macro.
24287                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
24288
24289         2006-07-22  Bruno Haible  <bruno@clisp.org>
24290
24291                 * javaversion.h: New file, from GNU gettext.
24292                 * javaversion.c: New file, from GNU gettext.
24293                 * javaversion.java: New file, from GNU gettext.
24294                 * javaversion.class: New file, from GNU gettext.
24295
24296         2006-05-17  Bruno Haible  <bruno@clisp.org>
24297
24298                 Cygwin portability.
24299                 * javaexec.c (execute_java_class): Test for jview program
24300                 also on Cygwin.
24301
24302         2006-04-09  Bruno Haible  <bruno@clisp.org>
24303
24304                 * fatal-signal.c: Don't include string.h.
24305                 (at_fatal_signal): Use a copying loop instead of memcpy.
24306
24307         2005-12-04  Bruno Haible  <bruno@clisp.org>
24308
24309                 * csharpexec.c: Add support for 'clix' launcher (untested).
24310                 (execute_csharp_using_sscli): New function.
24311                 (execute_csharp_program): Call it.
24312
24313         2006-06-21  Bruno Haible  <bruno@clisp.org>
24314
24315                 Avoid warnings from recent versions of mcs.
24316                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
24317                 -o, -L, -r any more. Use options documented since mcs-1.0
24318                 instead. Similarly for -g.
24319
24320         2005-07-09  Bruno Haible  <bruno@clisp.org>
24321
24322                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
24323                 add a .dll suffix.
24324                 Reported by Mark Junker <mjscod@gmx.de>.
24325
24326         2006-06-17  Bruno Haible  <bruno@clisp.org>
24327
24328                 * config.charset: Update for NetBSD 3.0.
24329
24330         2006-05-17  Bruno Haible  <bruno@clisp.org>
24331
24332                 Cygwin portability.
24333                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
24334
24335         2006-05-16  Bruno Haible  <bruno@clisp.org>
24336
24337                 * localcharset.c [CYGWIN]: Include <windows.h>.
24338                 (get_charset_aliases): For Cygwin, return the same CPxxx
24339                 aliases list as under WIN32.
24340                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
24341                 the environment variables. Fall back to GetACP().
24342
24343         2006-04-05  Bruno Haible  <bruno@clisp.org>
24344
24345                 * config.charset: Update Juan Manuel Guerrero's address.
24346
24347         2005-02-12  Bruno Haible  <bruno@clisp.org>
24348
24349                 * allocsa.h: Add extern "C" for C++.
24350
24351         2005-02-10  Bruno Haible  <bruno@clisp.org>
24352
24353                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
24354                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
24355
24356         2006-07-22  Bruno Haible  <bruno@clisp.org>
24357
24358                 * gettext.h: Update to GNU gettext-0.15.
24359
24360 2006-07-22  Bruno Haible  <bruno@clisp.org>
24361
24362         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
24363         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
24364         lib-prefix.m4, longdouble.m4, ssize_t.m4.
24365
24366 2006-07-21  Eric Blake  <ebb9@byu.net>
24367
24368         * modules/stdlib-safer: New file.
24369         * MODULES.html.sh (File stream based Input/Output): Add
24370         stdlib-safer.
24371
24372 2006-07-21  Eric Blake  <ebb9@byu.net>
24373
24374         * lib/stdlib-safer.h: New file from coreutils, required by
24375         stdlib--.h.
24376
24377 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
24378
24379         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
24380
24381 2006-07-20  Bruno Haible  <bruno@clisp.org>
24382
24383         * gnulib-tool: Recognize new option --assume-autoconf.
24384         (autoconf_minversion): New variable.
24385         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
24386
24387 2006-07-20  Bruno Haible  <bruno@clisp.org>
24388
24389         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
24390
24391 2006-07-19  Derek R. Price  <derek@ximbiot.com>
24392
24393         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
24394         Reindent and repaginate.
24395
24396 2006-07-19  Derek Price  <derek@ximbiot.com>
24397
24398         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
24399         Correct grammar.
24400
24401 2006-07-17  Bruno Haible  <bruno@clisp.org>
24402
24403         * modules/list: New file.
24404         * modules/array-list: New file.
24405         * modules/carray-list, modules/carray-list-tests: New files.
24406         * modules/linked-list, modules/linked-list-tests: New files.
24407         * modules/avltree-list, modules/avltree-list-tests: New files.
24408         * modules/rbtree-list, modules/rbtree-list-tests: New files.
24409         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
24410         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
24411         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
24412         * modules/oset: New file.
24413         * modules/array-oset: New file.
24414         * modules/avltree-oset, modules/avltree-oset-tests: New files.
24415         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
24416         * tests/test-carray_list.c: New file.
24417         * tests/test-linked_list.c: New file.
24418         * tests/test-avltree_list.c: New file.
24419         * tests/test-rbtree_list.c: New file.
24420         * tests/test-linkedhash_list.c: New file.
24421         * tests/test-avltreehash_list.c: New file.
24422         * tests/test-rbtreehash_list.c: New file.
24423         * tests/test-avltree_oset.c: New file.
24424         * tests/test-rbtree_oset.c: New file.
24425         * MODULES.html.sh (Container data structures): New section.
24426
24427 2006-07-17  Bruno Haible  <bruno@clisp.org>
24428
24429         * m4/gl_list.m4: New file.
24430
24431 2006-07-17  Bruno Haible  <bruno@clisp.org>
24432
24433         * lib/gl_list.h: New file.
24434         * lib/gl_list.c: New file.
24435         * lib/gl_array_list.h: New file.
24436         * lib/gl_array_list.c: New file.
24437         * lib/gl_carray_list.h: New file.
24438         * lib/gl_carray_list.c: New file.
24439         * lib/gl_linked_list.h: New file.
24440         * lib/gl_linked_list.c: New file.
24441         * lib/gl_anylinked_list1.h: New file.
24442         * lib/gl_anylinked_list2.h: New file.
24443         * lib/gl_avltree_list.h: New file.
24444         * lib/gl_avltree_list.c: New file.
24445         * lib/gl_anyavltree_list1.h: New file.
24446         * lib/gl_anyavltree_list2.h: New file.
24447         * lib/gl_rbtree_list.h: New file.
24448         * lib/gl_rbtree_list.c: New file.
24449         * lib/gl_anyrbtree_list1.h: New file.
24450         * lib/gl_anyrbtree_list2.h: New file.
24451         * lib/gl_anytree_list1.h: New file.
24452         * lib/gl_anytree_list2.h: New file.
24453         * lib/gl_linkedhash_list.h: New file.
24454         * lib/gl_linkedhash_list.c: New file.
24455         * lib/gl_anyhash_list1.h: New file.
24456         * lib/gl_anyhash_list2.h: New file.
24457         * lib/gl_avltreehash_list.h: New file.
24458         * lib/gl_avltreehash_list.c: New file.
24459         * lib/gl_rbtreehash_list.h: New file.
24460         * lib/gl_rbtreehash_list.c: New file.
24461         * lib/gl_anytreehash_list1.h: New file.
24462         * lib/gl_anytreehash_list2.h: New file.
24463
24464         * lib/gl_oset.h: New file.
24465         * lib/gl_oset.c: New file.
24466         * lib/gl_array_oset.h: New file.
24467         * lib/gl_array_oset.c: New file.
24468         * lib/gl_avltree_oset.h: New file.
24469         * lib/gl_avltree_oset.c: New file.
24470         * lib/gl_rbtree_oset.h: New file.
24471         * lib/gl_rbtree_oset.c: New file.
24472         * lib/gl_anytree_oset.h: New file.
24473
24474 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24475
24476         * m4/mkancesdirs.m4: New file.
24477         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
24478         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
24479         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
24480         it.
24481
24482 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24483
24484         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
24485         * lib/mkancesdirs.h: New files.
24486         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
24487         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
24488         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
24489         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
24490         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
24491         callers changed.  Revamp internals significantly, by not
24492         attempting to create directories that are temporarily more
24493         permissive than the final results.  Do not attempt to use
24494         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
24495         This removes some race conditions, fixes some bugs, and simplifies
24496         things.  Use new dirchownmod function to do owner and mode changes.
24497         * lib/mkdir-p.h: Likewise.
24498         * lib/modechange.c (octal_to_mode): New function.
24499         (struct mode_change): New member mentioned.
24500         (make_node_op_equals): New arg mentioned.  All callers changed.
24501         (mode_compile): Keep track of which mode bits the user has explicitly
24502         mentioned.
24503         (mode_adjust): New arg DIR, so that we implement the X op correctly.
24504         New arg PMODE_BITS, to keep track of which mode bits the user
24505         mentioned; it treats S_ISUID and S_ISGID speciall.
24506         All callers changed.
24507         * lib/modechange.h: Likewise.
24508
24509 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
24510
24511         * MODULES.html.sh: Add mkancestors.
24512         * modules/mkancesdirs: New module.
24513         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
24514         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
24515         The chdir-safer and afs files are now orphans; I'll remove them
24516         unless someone speaks up.
24517         Add lib/dirchownmod.c, lib/dirchownmod.h.
24518         (Depends-on): Remove alloca, chown, save-cwd, dirname.
24519         Add lchown, mkancesdirs.
24520         (Maintainer): Add self.
24521
24522 2006-07-15  Karl Berry  <karl@gnu.org>
24523
24524         * gnulib-tool: help message wording/arrangement.
24525
24526 2006-07-14  Simon Josefsson  <jas@extundo.com>
24527
24528         * doc/gnulib.texi (Libtool and Windows): New section.
24529
24530 2006-07-12  Simon Josefsson  <jas@extundo.com>
24531
24532         * modules/gendocs (License): Fix license, approved by Karl.
24533
24534 2006-07-12  Eric Blake  <ebb9@byu.net>
24535
24536         * MODULES.html.sh: Add gendocs.
24537
24538 2006-07-11  Eric Blake  <ebb9@byu.net>
24539
24540         * modules/fdl: New module, to install doc/fdl.texi.
24541         * MODULES.html.sh: Add new section for documentation modules.
24542         * gnulib-tool: Avoid space-tab.
24543         (--doc-base): New option, to manage files from doc.
24544
24545 2006-07-11  Eric Blake  <ebb9@byu.net>
24546
24547         * m4/absolute-header.m4: Fix comments to match recent change.
24548
24549 2006-07-11  Eric Blake  <ebb9@byu.net>
24550
24551         * gnulib-tool: List --doc-base before --tests-base.
24552
24553 2006-07-11  Derek R. Price  <derek@ximbiot.com>
24554
24555         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
24556
24557 2006-07-11  Bruno Haible  <bruno@clisp.org>
24558
24559         * README: Mention where to put documentation.
24560
24561 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24562
24563         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
24564
24565 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24566
24567         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
24568         to stdint.m4.
24569
24570 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
24571
24572         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
24573         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
24574         "no/such/file/stdint.h" when there is no such file, so that
24575         the resulting C code can be parsed by dodgy compilers.
24576         Problems reported by Bob Proulx.
24577
24578 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24579
24580         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
24581         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24582         macros into the GNU _D_EXACT_NAMLEN.
24583         * lib/savedir.c:  Likewise.
24584         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
24585
24586 2006-07-10  Derek R. Price  <derek@ximbiot.com>
24587         and Paul Eggert  <eggert@cs.ucla.edu>
24588
24589         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
24590         * m4/savedir.m4:
24591         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
24592         macros into the GNU _D_EXACT_NAMLEN.
24593
24594 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24595
24596         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
24597         around the absolute name, to work around a problem with the HP-UX
24598         11.23 native C compiler, reported by Bob Proulx.
24599
24600 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24601
24602         * doc/maintain.texi, make-stds.texi: Sync from
24603         <http://savannah.gnu.org/projects/gnustandards>.
24604
24605 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
24606
24607         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
24608
24609 2006-07-09  Jim Meyering  <jim@meyering.net>
24610
24611         * m4/glob.m4: Remove a doubled word in a comment.
24612
24613 2006-07-09  Jim Meyering  <jim@meyering.net>
24614
24615         * lib/argp-pv.c: Remove a doubled word in a comment.
24616         * lib/check-version.c (check_version): Likewise.
24617         * lib/javacomp.c (compile_java_class): Likewise.
24618
24619 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
24620
24621         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
24622         for the benefit of people using Autoconf 2.60.  If you want to
24623         support older Autoconf versions you can copy m4/onceonly_2_57.m4
24624         (or m4/onceonly.m4, if pre-2.57) manually.
24625
24626 2006-07-08  Jim Meyering  <jim@meyering.net>
24627
24628         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
24629         comment.
24630         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
24631         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
24632         comment.
24633
24634 2006-07-08  Jim Meyering  <jim@meyering.net>
24635
24636         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
24637
24638 2006-07-07  Simon Josefsson  <jas@extundo.com>
24639
24640         * tests/test-crc.c: Change expected crc value, the test vector
24641         were probably computed using the old broken crc.c?
24642
24643 2006-07-06  Simon Josefsson  <jas@extundo.com>
24644
24645         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
24646         now the canonical place for the M4 file).
24647
24648         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
24649         from the sys_socket dependency now.
24650
24651         * modules/inet_pton (Files): Ditto.
24652
24653         * modules/inet_ntop (Files): Ditto.
24654
24655 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24656
24657         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
24658         not gl_PREREQ_GETUSERSHELL.
24659
24660 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24661
24662         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
24663         with only one argument, for Autoconf 2.60.
24664         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
24665         expand to nothing, so add a shell command to avoid syntax error.
24666         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
24667
24668 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24669
24670         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
24671
24672 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24673
24674         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
24675         no longer needed.  Check for isblank decl.
24676         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
24677         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
24678         of existence.
24679
24680 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24681
24682         * lib/getloadavg.c: Use __VMS, not VMS.
24683         * lib/getopt.c: Likewise.
24684         * lib/getpagesize.h: Likewise.
24685         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
24686         and probably does not work.
24687
24688 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24689
24690         * lib/.cppi-disable: Add wcwidth.
24691         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
24692         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
24693         (ISGRAPH): Remove.  All uses changed to isgraph.
24694         (FOLD) [!defined _LIBC]: Remove special case.
24695         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
24696         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
24697         HAVE_ISBLANK.
24698         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
24699         case.
24700
24701 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
24702
24703         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
24704         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
24705         brackets.  Other minor changes to suppress some compiler
24706         warnings.
24707
24708 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24709         and Paul Eggert  <eggert@cs.ucla.edu>
24710
24711         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
24712         of invoking obsolescent AC_HEADER_DIRENT macro.
24713         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
24714         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
24715         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
24716         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
24717         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
24718         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
24719         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
24720         * m4/readdir.m4: Remove; no longer needed.
24721
24722 2006-07-06  Derek R. Price  <derek@ximbiot.com>
24723         and Paul Eggert  <eggert@cs.ucla.edu>
24724
24725         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
24726         Don't worry about this obsolete case any more.
24727         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
24728         directories.
24729         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
24730         worry about this obsolete case any more.
24731         * lib/fts.c: Likewise.
24732         * lib/getcwd.c: Likewise.
24733         * lib/glob.h: Likewise.
24734         * lib/savedir.c: Likewise.
24735
24736 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24737
24738         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
24739         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
24740         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
24741         needed.
24742         All uses removed.
24743         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24744         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24745         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
24746         needed.
24747         * m4/getdate.m4 (gl_GETDATE): Likewise.
24748         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24749         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24750         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24751         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24752         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
24753         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24754         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
24755         needed.
24756
24757 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24758
24759         * lib/memcasecmp.c: Include <limits.h>.
24760         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
24761         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
24762         Don't assume isdigit succeeds only on '0' through '9'.
24763
24764 2006-07-05  Eric Blake  <ebb9@byu.net>
24765
24766         * modules/getaddrinfo (Depends-on): Add snprintf.
24767
24768 2006-07-05  Eric Blake  <ebb9@byu.net>
24769
24770         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
24771         to avoid 'header present but could not be compiled' on cygwin.
24772
24773 2006-07-05  Eric Blake  <ebb9@byu.net>
24774
24775         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
24776         missing from netdb.h.
24777         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
24778
24779 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24780
24781         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
24782         no longer needed.
24783         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
24784         * m4/getdate.m4 (gl_GETDATE): Likewise.
24785         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
24786         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
24787         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
24788         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
24789         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24790
24791 2006-07-05  Derek R. Price  <derek@ximbiot.com>
24792
24793         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
24794         All uses of is_space replaced by isspace.
24795         * lib/exit.h: Don't talk about STDC_HEADERS.
24796         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
24797         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
24798         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
24799         replaced by isprint etc.
24800         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
24801         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24802         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
24803         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
24804         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
24805         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
24806
24807 2006-07-05  Bruno Haible  <bruno@clisp.org>
24808
24809         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
24810         the function exists, before testing against AIX.
24811         Reported by Martin Lambers <marlam@marlam.de>.
24812
24813 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24814
24815         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
24816         From Mark D. Baushke.
24817
24818 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
24819
24820         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
24821         to the absolute name, not just one, to bypass Sun C 5.8's
24822         "warning: #include of /usr/include/... may be non-portable".
24823
24824 2006-07-04  Eric Blake  <ebb9@byu.net>
24825
24826         * modules/dirname-tests: New test module.
24827         * tests/test-dirname.c: New file, replacing dirname.c
24828         TEST_DIRNAME section that was recently deleted.
24829
24830 2006-07-04  Bruno Haible  <bruno@clisp.org>
24831
24832         Assume ANSI C header files and <ctype.h> functions.
24833         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
24834         (mbsnwidth): Use isprint, iscntrl instead.
24835
24836 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24837
24838         Merge from coreutils.
24839         * MODULES.html.sh: Add xstrtold.
24840         * modules/xstrtold: New file.
24841         * modules/cycle-check (Files): Add lib/same-inode.h.
24842         * modules/dirname (Files): Add m4/double-slash-root.m4.
24843         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
24844         * modules/mkdir-p (Files): Add lib/same-inode.h.
24845         * modules/same (Files): Add lib/same-inode.h.
24846
24847 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24848
24849         * m4/absolute-header.m4: Renamed from full-header-path.m4.
24850         This is to keep the terminology clean; POSIX talks about
24851         "absolute pathnames", not "full pathnames", but the GNU
24852         Coding Standards say to use "path" for something else;
24853         so use "absolute" to keep both sides happy.
24854         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
24855         Set gl_absolute_header, not gl_full_header_path.
24856         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
24857         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
24858         All uses changed.
24859
24860         Merge from coreutils.
24861
24862         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24863
24864         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
24865         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
24866         want to require the building of c-strtod.o.
24867         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
24868         needs -lm directly.
24869         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
24870
24871         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
24872
24873         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
24874         --as-needed option if available.  Problem reported by Albert Chin in
24875         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
24876         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
24877         cc merely issues a bunch of annoying warnings for --as-needed
24878         (this problem was reported by Bob Proulx).  Also, try linking with
24879         -lm to detect a bug in binutils 2.16 (this problem was reported
24880         by Ralf Wildenhues).
24881
24882         2006-06-18  Jim Meyering  <jim@meyering.net>
24883
24884         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
24885         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
24886         macro.
24887         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
24888         also check for glibc-2.4's abort-inducing bug.
24889
24890         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
24891         Low-probability clean-up should be to use rmdir to get rid of
24892         the just-created directory, not unlink.
24893
24894         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
24895         configure fail, and request a bug report to inform us about it.
24896         Add a comment that, barring reports to the contrary, in 2007 we'll
24897         assume ftruncate is universally available.
24898
24899         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24900
24901         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
24902
24903         2006-03-12  Jim Meyering  <jim@meyering.net>
24904
24905         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
24906         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
24907         * m4/same.m4 (gl_SAME): Likewise.
24908         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
24909
24910         2006-03-11  Eric Blake  <ebb9@byu.net>
24911
24912         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
24913         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
24914         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
24915         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
24916
24917 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24918
24919         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
24920         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
24921         reported by Mark D. Baushke, one in
24922         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
24923
24924         Merge from coreutils.
24925
24926         * lib/.cppi-disable: Add stdint_.h.
24927         * lib/.cvsignore: Add stdint.h.
24928
24929         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
24930
24931         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
24932         both double and long double versions.
24933         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
24934         * lib/xstrtold.c: New file.
24935         * lib/xstrtod.h (xstrtold): New decl.
24936
24937         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
24938
24939         * lib/filemode.c (setst): Remove.
24940         (strmode): Rewrite to avoid setst.  This makes the code shorter,
24941         (arguably) clearer, and the generated code is a bit smaller on my
24942         Debian GNU/Linux stable x86 host.
24943
24944         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
24945
24946         * lib/filemode.c: Include "filemode.h" first, to test the interface.
24947         Assume that filemode.h includes sys/types.h and sys/stat.h.
24948         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
24949         (ftypelet): Reorder to put common cases first, for efficiency.
24950         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
24951         to do 'M'.
24952         (strmode): Renamed from mode_string, and now stores 12 bytes instead
24953         of 10, for compatibility with FreeBSD.  All callers changed.
24954         (filemodestring): Now stores 12 bytes instead of 10, and sets file
24955         types that can't be deduced solely from st_mode.  First arg is now a
24956         const pointer.
24957         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
24958         (strmode): Renamed from mode_string.
24959         (filemodestring): New decl.
24960         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
24961         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
24962         needed.
24963         (S_ISPORT, S_ISWHT): New macros, if not already defined.
24964
24965         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
24966
24967         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
24968         fsusage.h now does that.  Include fsusage.h first, to test interface.
24969         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
24970         at most one method (the old code could have generated decls that
24971         didn't conform to C89, not that this was ever exercised).
24972         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
24973
24974         2006-03-19  Jim Meyering  <jim@meyering.net>
24975
24976         Work even in a chroot where d_ino values for entries in "/"
24977         don't match the stat.st_ino values for the same names.
24978         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
24979         number, iterate through all entries again, using lstat instead.
24980         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
24981         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
24982
24983         * lib/getcwd.c (__getcwd): Clarify a comment.
24984         Use memcpy in place of a call to strcpy.
24985
24986         2006-03-12  Jim Meyering  <jim@meyering.net>
24987
24988         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
24989         matches that of the current directory (which we're about to chdir ".."
24990         out of), then save the dev-ino of the parent, instead.
24991
24992         * lib/same-inode.h (SAME_INODE): New file/macro.
24993         * lib/chdir-safer.c (SAME_INODE): Remove definition.
24994         Include "same-inode.h", instead.
24995         * lib/same.c: Likewise.
24996         * lib/cycle-check.h: Include "same-inode.h".
24997         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
24998         * lib/cycle-check.c (SAME_INODE): Remove definition.
24999         * lib/root-dev-ino.h: Include "same-inode.h".
25000
25001         2006-03-11  Eric Blake  <ebb9@byu.net>
25002
25003         * lib/same.c (same_name): s/base_name/last_component/
25004         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
25005         * lib/filenamecat.c (file_name_concat): Likewise.
25006
25007         2006-03-11  Eric Blake  <ebb9@byu.net>,
25008                     Paul Eggert  <eggert@cs.ucla.edu>
25009
25010         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
25011         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
25012         drive prefix.
25013         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
25014         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
25015         (last_component): New method.
25016         * lib/dirname.c (dir_len): Determine when drive letters need a
25017         subsequent slash.  Preserve // when it is special.
25018         (dir_name): Don't append dot when drive letter is absolute.
25019         [TEST_DIRNAME]: Move into a full-blown gnulib test.
25020         * lib/basename.c (base_name): New semantics - malloc the result.
25021         Preserve // when it is special.  Preserve relative files that look
25022         like drive letters.
25023         (base_len): Preserve // when it is special.
25024         (last_component): New method, similar to old base_name semantics.
25025         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
25026         base_name.  Strip redundant slashes from ///.
25027
25028 2006-07-03  Jim Meyering  <jim@meyering.net>
25029
25030         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
25031         macro is used before the first cycle_check call.
25032
25033 2006-07-03  Eric Blake  <ebb9@byu.net>
25034
25035         * modules/dirname (Depends-on): Add xstrndup.
25036
25037 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
25038
25039         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
25040         test cases, so that config.log is a bit easier to follow.
25041
25042 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
25043
25044         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
25045         both are 64 bits, since this seems to be the tradition, and this
25046         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
25047         we ever run into a host that prefers long long to long in this
25048         case, we'll need another configure-time test.  Problem reported by
25049         Jim Meyering.
25050
25051 2006-07-02  Eric Blake  <ebb9@byu.net>
25052
25053         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
25054
25055 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
25056
25057         * modules/inttypes (Depends-on): No longer depends on stdint.
25058         * modules/stdint (Description): Say more about assumptions.
25059         Say that the fast types might differ.  Say macros are used.
25060         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
25061         (Makefile.am): Revise list of substituted symbols to match
25062         new stdint.m4.
25063         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
25064         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
25065         * tests/test-stdint.c (verify_same_types)
25066         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
25067         the code conforms to C99/C89.
25068         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
25069         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
25070
25071 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
25072
25073         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
25074         but fix a bug, by requiring at least 64 bits.
25075         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
25076         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
25077         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
25078         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
25079
25080         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
25081         changes.  Make 2.59 a prerequisite.  Check and substitute for
25082         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
25083         inttypes.h.  Do not use special include files; just use the
25084         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
25085         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
25086         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
25087         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
25088         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
25089         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
25090         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
25091         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
25092         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
25093         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
25094         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
25095         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
25096         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
25097         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
25098         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
25099         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
25100         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
25101         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
25102         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
25103         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
25104         WINT_MAX.  Check for C99 conformance more strictly, by detecting
25105         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
25106         not check for things that C99 does not require, e.g., int8_t.  If
25107         a test isn't needed unless <stdint.h> isn't working, and is
25108         unlikely to be needed for any other reason, then don't do it
25109         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
25110         size_t, since we assume C89 freestanding at least.  Do not check
25111         for sig_atomic_t, wchar_t, or wint_t, since the code now does
25112         the right thing even if the types are not defined.  Instead use:
25113         (gl_STDINT_TYPE_PROPERTIES): New macro.
25114         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
25115         testing whether <sys/types.h> clashes, as Autoconf does this for
25116         us now.  All uses removed.
25117         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
25118         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
25119         (gl_CHECK_TYPE_SAME):
25120         Remove; no longer needed.
25121         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
25122         exists, since we'll return 0 anyway in that case.
25123         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
25124
25125 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
25126
25127         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
25128         possible collision with system files.
25129         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
25130         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
25131         WCHAR_MIN and WCHAR_MAX in this case.
25132         (<stddef.h>): Do not include; no longer needed.
25133         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
25134         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
25135         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
25136         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
25137         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
25138         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
25139         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
25140         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
25141         !defined(__c99))]: Include in this case too, since it's harmless
25142         now.
25143         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
25144         dangerous to do so.
25145         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
25146         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
25147         (_STDINT_MIN, _STDINT_MAX): New macros.
25148         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
25149         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
25150         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
25151         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
25152         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
25153         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
25154         macros, not typedefs; this simplifies things quite a bit.
25155         Use long int for all types narrower than int64_t.
25156         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
25157         Define in terms of long long int or int64_t or long int,
25158         not int64_t or int32_t.  This saves some compile-time testing.
25159         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
25160         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
25161         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
25162         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
25163         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
25164         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
25165         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
25166         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
25167         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
25168         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
25169         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
25170         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
25171         undef any previous version and define our own version, for
25172         simplicity and consistency with the new macros for types.
25173         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
25174         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
25175         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
25176         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
25177         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
25178         @WINT_T_SUFFIX@ to keep things simple here.
25179         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
25180         Simplify by assuming typical 8/16/32/64 host, since we're
25181         already doing that elsewhere anyway.
25182         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
25183         and assume long long int is 64 bits if available.  This
25184         speeds up 'configure'.
25185
25186 2006-07-01  Eric Blake  <ebb9@byu.net>
25187
25188         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
25189         Reported by Andreas Buening.
25190
25191 2006-07-01  Eric Blake  <ebb9@byu.net>
25192
25193         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
25194
25195 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
25196
25197         * lib/getaddrinfo.c: fixed typo
25198
25199 2006-06-29  Jim Meyering  <jim@meyering.net>
25200
25201         * modules/strftime (Maintainer): Add my name, since with the
25202         FPRINTFTIME changes strftime.c has forked from glibc.
25203
25204 2006-06-29  Eric Blake  <ebb9@byu.net>
25205
25206         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
25207
25208 2006-06-29  Eric Blake  <ebb9@byu.net>
25209
25210         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
25211
25212 2006-06-29  Eric Blake  <ebb9@byu.net>
25213
25214         * lib/stat_.h: New file.
25215
25216 2006-06-29  Eric Blake  <ebb9@byu.net>
25217
25218         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
25219         unused static function.
25220
25221 2006-06-29  Eric Blake  <ebb9@byu.net>
25222
25223         * doc/functions.texi (Function Portability): Document missing lstat
25224         on mingw.
25225
25226 2006-06-29  Eric Blake  <ebb9@byu.net>
25227
25228         * MODULES.html.sh: Add sys_stat.
25229         * modules/sys_stat: New module.
25230         * modules/mkstemp (Depends-on): Add sys_stat.
25231
25232 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25233
25234         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
25235
25236 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25237
25238         * m4/c-bs-a.m4: Removed.
25239
25240 2006-06-29  Derek R. Price  <derek@ximbiot.com>
25241
25242         * lib/strftime.c: Assume strftime() exists.
25243
25244 2006-06-29  Derek Price  <derek@ximbiot.com>
25245
25246         * modules/c-bs-a: Removed - \a is C89.
25247         * MODULES.html.sh: Remove c-bs-a.
25248
25249 2006-06-29  Bruno Haible  <bruno@clisp.org>
25250
25251         * modules/wcwidth (License): Change to LGPL.
25252
25253 2006-06-28  Simon Josefsson  <jas@extundo.com>
25254
25255         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
25256         on _WIN32.
25257
25258         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
25259         getnameinfo.
25260
25261 2006-06-28  Simon Josefsson  <jas@extundo.com>
25262
25263         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
25264
25265 2006-06-28  Simon Josefsson  <jas@extundo.com>
25266
25267         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
25268         functions there.  It will succeed on Windows XP, but on Windows
25269         2000 and (presumably) earlier, it will fail, and use the internal
25270         re-implementation.
25271         (use_win32_p): New function.
25272         (getaddrinfo): Use strtoul on servname, to support numeric ports.
25273         Support AI_NUMERICSERV to disable getservbyname.
25274         (getnameinfo): New function, only supports
25275         NI_NUMERICHOST|NI_NUMERICSERV for now.
25276
25277         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
25278         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
25279         getnameinfo.
25280
25281 2006-06-28  Eric Blake  <ebb9@byu.net>
25282
25283         * modules/wcwidth: New file.
25284         * modules/mbchar (Depends-on): Add wcwidth.
25285         * modules/mbswidth (Depends-on): Add wcwidth.
25286         * MODULES.html.sh: Add wcwidth.
25287
25288 2006-06-28  Eric Blake  <ebb9@byu.net>
25289
25290         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
25291         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
25292
25293 2006-06-28  Eric Blake  <ebb9@byu.net>
25294
25295         * lib/xvasprintf.h: Fix comments.
25296
25297 2006-06-28  Eric Blake  <ebb9@byu.net>
25298
25299         * lib/mbchar.h (wcwidth): Include wcwidth.h.
25300         * lib/mbswidth.c (wcwidth): Move from here...
25301         * lib/wcwidth.h: ...to this new file.
25302
25303 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25304
25305         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
25306
25307         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
25308         it's obsolete.
25309         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
25310
25311 2006-06-28  Derek R. Price  <derek@ximbiot.com>
25312
25313         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
25314         Autoconf 2.60 says this stuff was obsolete.
25315
25316 2006-06-28  Bruno Haible  <bruno@clisp.org>
25317
25318         * modules/wcwidth (Files): Add m4/wchar_t.m4.
25319
25320 2006-06-28  Bruno Haible  <bruno@clisp.org>
25321
25322         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
25323         gt_TYPE_WCHAR_T.
25324
25325 2006-06-28  Bruno Haible  <bruno@clisp.org>
25326
25327         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
25328         declaration for wcwidth.
25329         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
25330
25331 2006-06-28  Bruno Haible  <bruno@clisp.org>
25332
25333         * lib/mkdtemp.c [MINGW]: Include <io.h>.
25334         (mkdir): Define using _mkdir.
25335
25336 2006-06-28  Bruno Haible  <bruno@clisp.org>
25337
25338         * lib/getaddrinfo.h: Fix POSIX URL.
25339         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
25340         _WIN32.
25341         (use_win32_p): Make static.
25342         (getaddrinfo): Reject service name if it is empty or does not consist
25343         solely of decimal digits, or if its value is > 65535.
25344         (getnameinfo): Remove useless casts.
25345
25346 2006-06-27  Simon Josefsson  <jas@extundo.com>
25347
25348         * modules/sys_select: New file, suggested by Bruno Haible, Paul
25349         Eggert and Martin Lambers.
25350
25351 2006-06-27  Simon Josefsson  <jas@extundo.com>
25352
25353         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
25354         Eggert and Martin Lambers.
25355
25356 2006-06-27  Bruno Haible  <bruno@clisp.org>
25357
25358         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
25359         result to 0, not to empty.
25360         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
25361
25362 2006-06-27  Bruno Haible  <bruno@clisp.org>
25363
25364         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
25365
25366 2006-06-26  Simon Josefsson  <jas@extundo.com>
25367
25368         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
25369         present.
25370
25371 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
25372
25373         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
25374         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
25375         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
25376
25377 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
25378
25379         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
25380
25381 2006-06-26  Bruno Haible  <bruno@clisp.org>
25382
25383         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
25384
25385 2006-06-26  Bruno Haible  <bruno@clisp.org>
25386
25387         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
25388
25389 2006-06-26  Bruno Haible  <bruno@clisp.org>
25390
25391         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
25392         SGI C compiler in pre-C99 mode.
25393         Suggested by Mark D. Baushke and Larry Jones.
25394
25395 2006-06-26  Bruno Haible  <bruno@clisp.org>
25396
25397         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
25398         WCHAR_MAX.
25399         Reported by Mark D. Baushke and Larry Jones.
25400
25401 2006-06-26  Bruno Haible  <bruno@clisp.org>
25402
25403         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
25404         in pre-C99 mode.
25405         Suggested by Mark D. Baushke and Larry Jones.
25406
25407 2006-06-23  Simon Josefsson  <jas@extundo.com>
25408             Bruno Haible  <bruno@clisp.org>
25409
25410         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
25411         Emit mostlyclean-local rule.
25412         (func_emit_tests_Makefile_am): Likewise.
25413         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
25414
25415 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
25416
25417         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
25418
25419 2006-06-23  Bruno Haible  <bruno@clisp.org>
25420
25421         * tests/test-stdint.c: Update to match ISO C 99 Technical
25422         Corrigendum 1.
25423
25424 2006-06-23  Bruno Haible  <bruno@clisp.org>
25425
25426         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
25427
25428 2006-06-23  Bruno Haible  <bruno@clisp.org>
25429
25430         * lib/stdint_.h: Treat IRIX like OpenBSD.
25431
25432 2006-06-23  Bruno Haible  <bruno@clisp.org>
25433
25434         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
25435         ISO C 99 Technical Corrigendum 1.
25436
25437 2006-06-22  Simon Josefsson  <jas@extundo.com>
25438
25439         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
25440         MinGW.
25441
25442 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
25443
25444         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
25445         needed.  Some compiler complained about some of them.  Problem reported
25446         by Larry Jones in
25447         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
25448
25449 2006-06-21  Simon Josefsson  <jas@extundo.com>
25450
25451         * tests/test-getaddrinfo.c: New file.
25452
25453         * modules/getaddrinfo-tests: New file.
25454
25455         * MODULES.html.sh: Add inet_pton.
25456
25457         * modules/inet_pton: New file.
25458
25459 2006-06-21  Simon Josefsson  <jas@extundo.com>
25460
25461         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
25462         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
25463         of using the (limited) gnulib implementation on Windows XP.
25464
25465         * m4/inet_pton.m4: New file.
25466
25467 2006-06-21  Simon Josefsson  <jas@extundo.com>
25468
25469         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
25470         variable.
25471
25472         * lib/socket_.h: Don't define WINVER.
25473
25474         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
25475         slightly modified to work in gnulib.
25476
25477 2006-06-21  Simon Josefsson  <jas@extundo.com>
25478
25479         * doc/gnulib.texi (Windows sockets): Add.
25480
25481 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
25482
25483         * lib/read-file.c (fread_file): Start with buffer allocation of
25484         0 bytes rather than 1 byte; this simplifies the code.
25485         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
25486         code to free buffer and save/restore errno.
25487         (internal_read_file): Remove unused local.
25488
25489 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
25490
25491         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
25492         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
25493         Problem reported by Denis Excoffier in
25494         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
25495
25496 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25497
25498         * modules/sys_socket, modules/socklen: Include sys/types since
25499         FreeBSD 4.x's sys/socket.h needs it.
25500
25501 2006-06-19  Simon Josefsson  <jas@extundo.com>
25502
25503         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
25504
25505 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
25506
25507         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
25508
25509 2006-06-19  Bruno Haible  <bruno@clisp.org>
25510
25511         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
25512         and FULL_PATH_INTTYPES_H in angle brackets.
25513         Reported by Mark D. Baushke <mdb@gnu.org>.
25514
25515 2006-06-17  Eric Blake  <ebb9@byu.net>
25516
25517         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
25518         errno.
25519
25520 2006-06-17  Bruno Haible  <bruno@clisp.org>
25521
25522         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
25523         <sys/inttypes.h>.
25524
25525 2006-06-17  Bruno Haible  <bruno@clisp.org>
25526
25527         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
25528         whether errno is declared. Assume <errno.h> declares errno.
25529
25530 2006-06-17  Bruno Haible  <bruno@clisp.org>
25531
25532         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
25533
25534 2006-06-17  Bruno Haible  <bruno@clisp.org>
25535
25536         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
25537         problem on Solaris 2.5.1.
25538
25539 2006-06-16  Eric Blake  <ebb9@byu.net>
25540
25541         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
25542         * lib/unicodeio.c [!defined errno]: Likewise.
25543         * lib/strtol.c [!defined errno]: Likewise.
25544         * lib/strtod.c [!defined errno]: Likewise.
25545
25546 2006-06-15  Eric Blake  <ebb9@byu.net>
25547
25548         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
25549
25550 2006-06-15  Eric Blake  <ebb9@byu.net>
25551
25552         * config/srclist.txt (ssize_t.m4): Lose sync.
25553
25554 2006-06-15  Bruno Haible  <bruno@clisp.org>
25555
25556         * modules/stdint (Files): Include m4/full-header-path.m4,
25557         m4/size_max.m4, m4/wchar_t.m4.
25558         (Makefile.am): Many more substitutions.
25559         * modules/stdint-tests: New file.
25560         * tests/test-stdint.c: New file.
25561
25562 2006-06-15  Bruno Haible  <bruno@clisp.org>
25563
25564         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
25565         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
25566         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
25567         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
25568         gl_CHECK_TYPE_SAME): New macros.
25569
25570 2006-06-15  Bruno Haible  <bruno@clisp.org>
25571
25572         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
25573
25574 2006-06-15  Bruno Haible  <bruno@clisp.org>
25575
25576         * lib/stdint_.h: Rewritten to be fully auto-configured.
25577         Fixes bug on HP-UX/IA64.
25578
25579 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
25580
25581         * lib/getdate.y (__attribute__): Don't define if already defined.
25582         Problem reported by Larry Jones.
25583         * lib/utimens.c (__attribute__): Likewise.
25584
25585 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
25586
25587         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
25588         reported by Andreas Schwab.
25589
25590 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25591             Bruno Haible  <bruno@clisp.org>
25592
25593         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
25594         check for the declaration of strnlen and a run test that exposes the
25595         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
25596         rpl_strndup.
25597
25598 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25599             Bruno Haible  <bruno@clisp.org>
25600
25601         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
25602
25603 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25604
25605         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
25606         compile test, for Tru64 4.0D.
25607
25608 2006-05-28  Karl Berry  <karl@gnu.org>
25609
25610         * config/srclist.txt (printf-args.c): lose sync.
25611
25612 2006-05-26  Martin Lambers  <marlam@marlam.de>
25613
25614         * lib/getpass.c: Updates the test for the native W32 API, and adds
25615         missing includes, thus fixing compilation warnings.
25616
25617 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
25618
25619         * lib/exclude.c (exclude_fnmatch): New function.
25620         (excluded_file_name): Call exclude_fnmatch.
25621         * lib/exclude.h (excluded_file_name): New prototype
25622
25623 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
25624
25625         * lib/tempname.c (small_open, large_open): New macros.
25626         (__open, __open64) [!_LIBC]: Remove.
25627         (__gen_tempname): Use small_open and large_open instead of __open
25628         and __open64.  This fixes a portability bug on HP-UX 11.11i
25629         reported by Simon Wing-Tang in
25630         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
25631
25632 2006-05-24  Bruno Haible  <bruno@clisp.org>
25633
25634         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
25635         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
25636         Reported by Thorsten Maerz <torte@netztorte.de> via
25637         Aaron Stone <aaron@serendipity.cx>.
25638
25639 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25640
25641         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
25642         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
25643         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
25644         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
25645         not really conditional on the cache.
25646         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
25647
25648 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
25649
25650         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
25651         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
25652         (my_usleep): Don't mishandle maximum value.
25653
25654 2006-05-19  Jim Meyering  <jim@meyering.net>
25655
25656         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
25657
25658 2006-05-17  Bruno Haible  <bruno@clisp.org>
25659
25660         Cygwin portability.
25661         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
25662
25663 2006-05-17  Bruno Haible  <bruno@clisp.org>
25664
25665         * lib/stdint_.h: Fix recognition of Cygwin.
25666
25667 2006-05-15  Bruno Haible  <bruno@clisp.org>
25668
25669         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
25670         on libtool patch by Ralf Wildenhues.
25671
25672 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25673
25674         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
25675         test for C99 conformance; (bool) 0.5 is an integer constant
25676         expression, but (bool) -0.5 is not.  Problem reported by Fedor
25677         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
25678
25679 2006-05-11  Simon Josefsson  <jas@extundo.com>
25680
25681         * m4/xvasprintf.m4: Fix obvious typo.
25682
25683 2006-05-11  Jim Meyering  <jim@meyering.net>
25684
25685         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
25686         James Lemley.
25687
25688 2006-05-10  Simon Josefsson  <jas@extundo.com>
25689
25690         * lib/md4.c: Typo fix, update copyright years.
25691         (K1, K2): Don't use L because it turn computations into 64-bit on
25692         64-bit platforms.
25693
25694 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
25695
25696         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
25697         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
25698         unwanted sign propagation, e.g., on hosts with 64-bit int.
25699         There still are some problems with reeelly weird theoretical hosts
25700         (e.g., 33-bit int) but it's not worth worrying about now.
25701         * lib/sha1.c (rol): Likewise.
25702         (K1, K2, K3, K4): Remove unnecessary L suffix.
25703
25704 2006-05-10  Bruno Haible  <bruno@clisp.org>
25705
25706         * lib/des.c: Cast to avoid warnings.
25707
25708 2006-05-09  Bruno Haible  <bruno@clisp.org>
25709
25710         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
25711         (Depends-on): Depend also on xsize, stdarg.
25712         (configure.ac): Add gl_XVASPRINTF.
25713
25714 2006-05-09  Bruno Haible  <bruno@clisp.org>
25715
25716         * m4/xvasprintf.m4: New file.
25717
25718 2006-05-09  Bruno Haible  <bruno@clisp.org>
25719
25720         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
25721         (EOVERFLOW): Define fallback value.
25722         (xstrcat): New function.
25723         (xvasprintf): Recognize the special case of a string concatenation.
25724
25725 2006-05-08  Eric Blake  <ebb9@byu.net>
25726
25727         * gnulib-tool (func_version): Base copyright year on CVS date.
25728         (func_emit_copyright_notice): New function.
25729         (func_emit_lib_Makefile_am): Use it.
25730         (func_emit_tests_Makefile_am): Likewise.
25731         (func_import): Likewise.
25732
25733 2006-05-08  Bruno Haible  <bruno@clisp.org>
25734
25735         * modules/stdarg: New file.
25736         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
25737
25738 2006-05-08  Bruno Haible  <bruno@clisp.org>
25739
25740         * m4/stdarg.m4: New file, from GNU gettext.
25741
25742 2006-05-08  Bruno Haible  <bruno@clisp.org>
25743
25744         * config/srclist.txt (build-aux/config.rpath): different from latest
25745         release.
25746
25747 2006-05-08  Bruno Haible  <bruno@clisp.org>
25748
25749         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
25750
25751 2006-05-05  Jim Meyering  <jim@meyering.net>
25752
25753         * m4/warning.m4: New file, derived from bison's file by the same name.
25754
25755 2006-05-03  Bruno Haible  <bruno@clisp.org>
25756
25757         * lib/stdint_.h: Shorter URL.
25758         * lib/inttypes.h: Likewise.
25759
25760 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25761
25762         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
25763
25764 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25765
25766         * lib/verify.h: Document the internals better.  Most of this change
25767         was written by Bruno Haible.
25768
25769 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25770
25771         * doc/verify.texi: New file, partly based on a proposal by
25772         Bruno Haible.
25773
25774 2006-05-02  Bruno Haible  <bruno@clisp.org>
25775
25776         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
25777         test from here...
25778         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
25779
25780 2006-04-29  Bruno Haible  <bruno@clisp.org>
25781
25782         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
25783         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
25784
25785 2006-04-29  Bruno Haible  <bruno@clisp.org>
25786
25787         * gnulib-tool: Make --update option actually work.
25788
25789 2006-04-29  Bruno Haible  <bruno@clisp.org>
25790
25791         * doc/gcd.texi: New file.
25792         * doc/gnulib.texi: Include it.
25793
25794 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
25795
25796         * lib/getdate.y (get_date): When adding relative date, start with the
25797         initial time, not with the result of the first mktime call.
25798
25799 2006-04-25  Bruno Haible  <bruno@clisp.org>
25800
25801         * gnulib-tool (func_import): Output the include directives in three
25802         blocks, sorted separately.
25803         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25804
25805 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25806
25807         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
25808         to define main with arguments, for C++.  Reported by Eric Blake.
25809         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
25810         Prefer 'int main ()' to 'int main (void)', for C++.
25811         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
25812         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
25813         for 'main', for C99 and C++.
25814
25815 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
25816
25817         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
25818         Don't assume that exit status -1 is valid.
25819         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
25820         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
25821         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
25822         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
25823         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
25824         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
25825         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
25826         functions can be used without declaring them, or that you can
25827         exit with status -1.
25828         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
25829
25830 2006-04-24  Karl Berry  <karl@gnu.org>
25831
25832         * config/srclist.txt (longdouble.m4): sync lost.
25833
25834 2006-04-24  Eric Blake  <ebb9@byu.net>
25835
25836         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
25837
25838 2006-04-24  Bruno Haible  <bruno@clisp.org>
25839
25840         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
25841         poll() implementation in AIX.
25842         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25843
25844 2006-04-24  Bruno Haible  <bruno@clisp.org>
25845
25846         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
25847         assigned exactly once.
25848
25849 2006-04-23  Claudio Fontana  <claudio@gnu.org>
25850             Bruno Haible  <bruno@clisp.org>
25851
25852         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
25853         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
25854         for AM_CPPFLAGS.
25855
25856 2006-04-23  Bruno Haible  <bruno@clisp.org>
25857
25858         * modules/copy-file: Depend on unistd.
25859         * modules/execute: Likewise.
25860         * modules/fatal-signal: Likewise.
25861         * modules/findprog: Likewise.
25862         * modules/mkdtemp : Likewise.
25863         * modules/pipe: Likewise.
25864         * modules/wait-process: Likewise.
25865
25866 2006-04-23  Bruno Haible  <bruno@clisp.org>
25867
25868         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
25869         condition was already detected.
25870         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25871
25872 2006-04-23  Bruno Haible  <bruno@clisp.org>
25873
25874         * lib/copy-file.c: Include <unistd.h> unconditionally.
25875         * lib/execute.c: Likewise.
25876         * lib/fatal-signal.c: Likewise.
25877         * lib/findprog.c: Likewise.
25878         * lib/mkdtemp.c: Likewise.
25879         * lib/pipe.h: Likewise.
25880         * lib/pipe.c: Likewise.
25881         * lib/wait-process.h: Likewise.
25882
25883 2006-04-23  Bruno Haible  <bruno@clisp.org>
25884
25885         * gnulib-tool (func_usage): Fix --import description. Document
25886         --update.
25887         (func_import): Create temporary file in a temporary directory, if
25888         --dry-run is specified. Silence errors from 'grep' when there are no
25889         m4 files in $m4dir.
25890         (func_create_testdir): Silence errors from 'grep' when there are no
25891         m4 files in $m4dir.
25892         Reported by Karl Berry <karl@freefriends.org>.
25893
25894 2006-04-20  Bruno Haible  <bruno@clisp.org>
25895
25896         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
25897         one argument, so that the code will be portable to Autoconf 2.60.
25898         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
25899         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
25900         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
25901
25902 2006-04-19  Derek Price  <derek@ximbiot.com>
25903             Eric Blake  <ebb9@byu.net>
25904
25905         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
25906         rather than "/full/path.h".  Update comment to match.  Shorten &
25907         generalize m4_translit call via AS_TR_CPP.
25908
25909 2006-04-19  Derek Price  <derek@ximbiot.com>
25910             Eric Blake  <ebb9@byu.net>
25911
25912         * lib/inttypes.h: Correct grammar in comment.
25913
25914 2006-04-18  Derek Price  <derek@ximbiot.com>
25915             Paul Eggert  <eggert@cs.ucla.edu>
25916
25917         * modules/inttypes: New file.
25918         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
25919
25920 2006-04-18  Derek Price  <derek@ximbiot.com>
25921             Paul Eggert  <eggert@cs.ucla.edu>
25922
25923         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
25924         New files.
25925
25926 2006-04-18  Derek Price  <derek@ximbiot.com>
25927             Paul Eggert  <eggert@cs.ucla.edu>
25928
25929         * lib/inttypes.h: New file.
25930         * lib/strtoimax.c: Assume <inttypes.h>.
25931
25932 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
25933
25934         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
25935         isn't mounted.  Problem reported by Kir Kolyshkin.
25936
25937 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
25938
25939         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
25940         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
25941         Derek R. Price.
25942         * lib/regex.h (RE_DUP_MAX): Update comment to match current
25943         implementation.
25944
25945 2006-04-12  Eric Blake  <ebb9@byu.net>
25946
25947         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
25948         is now done automatically by the corresponding Autoconf macro.
25949
25950 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
25951
25952         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
25953         time_r.h.
25954
25955 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
25956
25957         Merge regex changes from libc, removing some of our
25958         POSIX-conformance changes that were rejected and redoing them in a
25959         less-intrusive way.
25960
25961         * lib/regcomp.c (re_compile_internal, init_dfa):
25962         Length arg is now size_t, not Idx.  All uses changed.
25963         (peek_token): Forward decl now says internal_function.
25964         (__re_error_msgid, __re_error_msgid_idx):
25965         Now static rather than extern with attribute_hidden.
25966         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
25967         For some reason libc prefers K&R style defns for external functions.
25968         (regerror) [!defined _LIBC]: Likewise.
25969         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
25970         (seek_collating_symbol_entry, lookup_collation_sequence_value):
25971         (build_range_exp, build_collating_symbol):
25972         Use K&R-style defn.
25973         (re_compile_fastmap): Use '\0' to memset, not 0.
25974         (utf8_sb_map): Make the calculations more obvious.
25975         (init_dfa, parse_bracket_exp, build_charclass_op):
25976         Call calloc and cast result, as glibc does.
25977         (init_word_char, fetch_token, peek_token, peek_token_bracket):
25978         (build_range_exp, build_collating_symbol):
25979         Now internal functions.
25980
25981         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
25982
25983         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
25984         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
25985         Don't depend on VMS; depend on __VMS instead, for POSIX
25986         namespace cleanness.
25987         (regoff_t): Define to ssize_t, not long int.
25988
25989         Remove the REG_ macros named below.  Instead, make the old names
25990         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
25991         __USE_GNU_REGEX.
25992         (REG_BACKSLASH_ESCAPE_IN_LISTS):
25993         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
25994         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
25995         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
25996         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
25997         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
25998         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
25999         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
26000         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
26001         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
26002         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
26003         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
26004         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
26005         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
26006         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
26007         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
26008         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
26009         (REG_NREGS):
26010         Remove.  All uses replaced by the old RE_* names.
26011         (RE_BACKSLASH_ESCAPE_IN_LISTS):
26012         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
26013         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
26014         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
26015         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
26016         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
26017         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
26018         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
26019         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
26020         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
26021         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
26022         Don't bother having these macros be independent of each others'
26023         values, since they no longer exist in the POSIX name space.
26024
26025         Rename the following member names back to their old names,
26026         unless !__USE_GNU_REGEX.  All uses changed back.
26027         (buffer): Renamed from re_buffer.
26028         (allocated): Renamed from re_allocated.
26029         (used): Renamed from re_used.
26030         (syntax): Renamed from re_syntax.
26031         (fastmap): Renamed from re_fastmap.
26032         (translate): Renamed from re_translate.
26033         (can_be_null): Renamed from re_can_be_null.
26034         (regs_allocated): Renamed from re_regs_allocated.
26035         (fastmap_accurate): Renamed from re_fastmap_accurate.
26036         (no_sub): Renamed from re_no_sub.
26037         (not_bol): Renamed from re_not_bol.
26038         (not_eol): Renamed from re_not_eol.
26039         (newline_anchor): Renamed from re_newline_anchor.
26040         (num_regs): Renamed from rm_num_regs.
26041         (start): Renamed from rm_start.
26042         (end): Renamed from rm_end.
26043
26044         (free_state): Move up a bit.
26045
26046         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
26047         #define to be empty.
26048         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
26049         when that is what is intended.
26050         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
26051         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
26052         (MAX): New macro.
26053         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
26054         All uses changed back to re_malloc, etc.  It's now the caller's
26055         responsibility to check for overflow; all callers changed.
26056         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
26057         (re_x2nrealloc): Remove.
26058         (free_state): Remove decl.
26059
26060         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
26061         (re_set_registers, re_exec):
26062         Use K&R-style defn.
26063
26064         2006-01-31  Roland McGrath  <roland@redhat.com>
26065
26066         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
26067         Reported by Mike Frysinger <vapier@gentoo.org>.
26068
26069         2006-01-15  Andreas Jaeger  <aj@suse.de>
26070
26071         [BZ #1950]
26072         * lib/regex_internal.c (re_string_reconstruct): Adjust for
26073         build_wcs_upper_buffer change.
26074         (build_wcs_upper_buffer): Change return type.
26075
26076         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
26077
26078         * lib/regex_internal.h: Include <stdint.h> if available.
26079
26080         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
26081
26082         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
26083
26084         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
26085
26086         * lib/regcomp.c: Adjust for changed secondary hash function.
26087
26088         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
26089
26090         * lib/regex.h: Pretty printing.
26091         Clean up namespace a bit.
26092
26093         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
26094
26095         * lib/regexec.c (update_cur_sifted_state, check_arrival,
26096         check_arrival_add_next_nodes): Avoid using uninitialized variable.
26097
26098         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
26099                     Ulrich Drepper  <drepper@redhat.com>
26100
26101         [BZ #1302]
26102         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
26103         changed.
26104         (bitset_word_t): Renamed from bitset_word.  All uses changed.
26105
26106         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
26107
26108         [BZ #281]
26109         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
26110         * lib/regcomp.c: Remove unnecessary uses of
26111         unsigned RE_TRANSLATE_TYPE.
26112         * lib/regex_internal.h: Likewise.
26113         * lib/regex_internal.c: Likewise.
26114         * lib/regexec.c: Likewise.
26115         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
26116
26117         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
26118
26119         * lib/regexec.c (find_recover_state): Remove unnecessary
26120         initialization.
26121         (transit_state_bkref): Make DFA a const pointer.
26122         (get_subexp): Likewise.
26123         (check_arrival): Likewise.
26124         (update_cur_sifted_state): Likewise.
26125         (re_search_internal): Likewise.
26126         (prune_impossible_nodes): Likewise.
26127         (acquire_init_state_context): Likewise.
26128         (proceed_next_node): Likewise.
26129         (set_regs): Likewise.
26130         (free_fail_stack_return): Likewise.
26131         (check_arrival_expand_ecl): Mark DFA parameter as const.
26132         (check_arrival_expand_ecl_sub): Likewise.
26133         (check_subexp_limits): Likewise.
26134         (sub_epsilon_src_nodes):  Likewise.
26135         (add_epsilon_src_nodes):  Likewise.
26136         (merge_state_array): Likewise.
26137         (update_regs): Likewise.
26138         (build_trtable): Likewise.
26139         (sift_states_backward): Mark MCTX parameter as const.
26140         (build_sifted_states): Likewise.
26141         (update_cur_sifted_state): Likewise.
26142         (sift_states_mkref): Likewise.
26143         (check_arrival_expand_ecl): Mark eclosure as const.
26144         (check_dst_limits_calc_pos_1): Likewise.
26145         * lib/regex_internal.h (re_match_context_t): Make dfa a const
26146         pointer.
26147
26148         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
26149
26150         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
26151         (transit_state_sb): Likewise.
26152         (transit_state_mb): Likewise.
26153         (sift_states_iter_mb): Likewise.
26154         (check_arrival_add_next_nodes): Likewise.
26155         (check_node_accept_bytes): Change first parameter to pointer-to-const.
26156         [_LIBC] (re_search_2_stub): Use mempcpy.
26157
26158         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
26159         mbrtowc for very simple UTF-8 case.
26160
26161         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
26162         a pointer-to-const.
26163         (re_acquire_state_context): Likewise.
26164         * lib/regex_internal.h: Adjust prototypes.
26165
26166         * lib/regex.c: Prevent using C++ compilers.
26167
26168         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
26169         (re_acquire_state_context): Likewise.
26170
26171 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26172
26173         * modules/regex (Depends-on): Add ssize_t.
26174
26175 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26176
26177         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
26178         translation table.
26179
26180 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
26181
26182         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
26183
26184 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
26185             Bruno Haible  <bruno@clisp.org>
26186
26187         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
26188         <sys/types.h> and <inttypes.h>.
26189
26190 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26191
26192         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
26193         `__error_t_defined', so argp.h will not typedef the former.
26194
26195 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
26196
26197         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
26198         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
26199         glibc names.  Even if glibc is changed to conform to POSIX, the
26200         traditional names will be available anyway, since regex depends on
26201         the extensions module.  Also, fix a longstanding typo in the
26202         implementation of Spencer ERE test #75 from grep 2.3.  Problems
26203         reported by Emanuele Giaquinta.  Also, change sense of cached
26204         variable, so that the message makes sense.
26205
26206 2006-03-24  Simon Josefsson  <jas@extundo.com>
26207
26208         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
26209         including some doc fixes.
26210         (base64_encode_alloc): Fix +1 bug on allocation failures.
26211
26212 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26213
26214         * lib/base64.c (base64_encode): Do not read past end of array with
26215         unsanitized input on systems with CHAR_BIT > 8.
26216
26217 2006-03-24  Eric Blake  <ebb9@byu.net>
26218
26219         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
26220
26221 2006-03-22  Karl Berry  <karl@gnu.org>
26222
26223         * config/srclist.txt (*setenv.[ch]): get from coreutils.
26224         * config/srclistvars.sh (COREUTILS): new var.
26225
26226 2006-03-17  Jim Meyering  <jim@meyering.net>
26227
26228         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
26229         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
26230
26231 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26232
26233         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
26234         no longer needs it.  Instead, check that regoff_t is as least
26235         as wide as ptrdiff_t.
26236
26237         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
26238         so that our regex.h stays compatible with the installed regex.
26239         This is helpful for installers who configure --without-included-regex.
26240         Problem reported by Emanuele Giaquinta.
26241
26242 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
26243
26244         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
26245         Typedef to long int, not to off_, as POSIX will likely change
26246         in that direction.
26247
26248 2006-03-15  Eric Blake  <ebb9@byu.net>
26249
26250         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
26251
26252 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26253
26254         * lib/argp-help.c (validate_uparams): Fix typo
26255         * lib/argp-parse.c (argp_default_options): Consistently begin help
26256         messages with a lowercase letter.
26257
26258 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
26259
26260         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
26261         overrun buffers and shouldn't be used (much as gets shouldn't be
26262         used).
26263         * lib/time_r.c (asctime_r, ctime_r): Likewise.
26264
26265 2006-03-08  Simon Josefsson  <jas@extundo.com>
26266
26267         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
26268         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26269
26270 2006-03-08  Simon Josefsson  <jas@extundo.com>
26271
26272         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
26273         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26274
26275 2006-03-08  Simon Josefsson  <jas@extundo.com>
26276
26277         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
26278         signal that configure disabled the device.
26279
26280 2006-03-08  Simon Josefsson  <jas@extundo.com>
26281
26282         * build-aux/maint.mk: Fix refresh-po, to handle no translated
26283         languages.
26284
26285 2006-03-07  Simon Josefsson  <jas@extundo.com>
26286
26287         * modules/getopt (Depends-on): Add unistd.
26288
26289         * modules/unistd: New file.
26290
26291 2006-03-07  Simon Josefsson  <jas@extundo.com>
26292
26293         * modules/gc-random: New file.
26294
26295 2006-03-07  Simon Josefsson  <jas@extundo.com>
26296
26297         * m4/unistd_h.m4: New file.
26298
26299 2006-03-07  Simon Josefsson  <jas@extundo.com>
26300
26301         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
26302         test to be side-effect free by storing the result in the cache
26303         variable gl_cv_lib_readline, and moving the assignment of
26304         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
26305         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26306
26307 2006-03-07  Simon Josefsson  <jas@extundo.com>
26308
26309         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
26310         error on missing devices (the functions will return an error).
26311
26312         * m4/gc.m4: Move random stuff to gc-random.m4
26313
26314 2006-03-07  Simon Josefsson  <jas@extundo.com>
26315
26316         * lib/unistd_.h: New file.
26317
26318 2006-03-07  Simon Josefsson  <jas@extundo.com>
26319
26320         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
26321
26322 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26323
26324         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
26325         Problem reported by Juan Manuel Guerrero.
26326
26327 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26328
26329         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
26330         the unistd module.
26331         * lib/getlogin_r.c: Likewise.
26332         * lib/getlogin_r.h: Likewise.
26333         * lib/glob.c: Likewise.
26334         * lib/pagealign_alloc.c: Likewise.
26335         * lib/unistd_.h: Remove; no longer needed.
26336
26337 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
26338
26339         * MODULES.html.sh (Support for systems lacking POSIX:2001):
26340         Add unistd.
26341         * modules/c-stack (Depends-on): Add unistd.
26342         * modules/getlogin_r: Likewise.
26343         * modules/glob: Likewise.
26344         * modules/pagealign_alloc: Likewise.
26345         * modules/unistd (Files): Remove lib/unistd_.h.
26346         (EXTRA_DIST): Remove.
26347         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
26348         need unistd_.h.
26349         (MOSTLYCLEANFILES): Remove unistd.h-t.
26350
26351 2006-03-03  Simon Josefsson  <jas@extundo.com>
26352
26353         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
26354
26355 2006-03-03  Simon Josefsson  <jas@extundo.com>
26356
26357         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
26358         libidn and bison.
26359
26360 2006-03-03  Simon Josefsson  <jas@extundo.com>
26361
26362         * build-aux/maint.mk: Add indent target.
26363
26364 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
26365
26366         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
26367         our replacement poll.h in any case, to avoid a differing
26368         declaration from a system header.  Seen on AIX.
26369
26370 2006-03-01  Simon Josefsson  <jas@extundo.com>
26371
26372         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
26373         <kasal@ucw.cz>.
26374
26375 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26376
26377         * modules/gettime (Depends-on): Add extensions module.
26378         * modules/nanosleep (Depends-on): Likewise.
26379         * modules/settime (Depends-on): Likewise.
26380
26381 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
26382
26383         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
26384         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
26385         pedantically.
26386         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
26387         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
26388
26389         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
26390         not "==".  Reported by Ralf Wildenhues.
26391
26392 2006-03-01  Karl Berry  <karl@gnu.org>
26393
26394         * doc/Copyright/request-*: new files, synced from gnuorg.
26395
26396 2006-03-01  Karl Berry  <karl@gnu.org>
26397
26398         * config/srclist.txt (Copyright/*): new entries.
26399
26400 2006-02-28  Simon Josefsson  <jas@extundo.com>
26401
26402         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
26403
26404 2006-02-27  Simon Josefsson  <jas@extundo.com>
26405
26406         * lib/base64.h: Indent #define's.  From Jim Meyering
26407         <jim@meyering.net>.
26408
26409 2006-02-27  Jim Meyering  <jim@meyering.net>
26410
26411         Revert the change of 2006-02-24, so these files can continue
26412         to be sync'd from gettext.
26413         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
26414         of `config.h'.
26415
26416 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
26417
26418         * modules/intprops: New file.
26419         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
26420         Add intprops.
26421         * modules/getloadavg (Files): Remove lib/intprops.h.
26422         (Depends-on): Add intprops.
26423         * modules/human: Likewise.
26424         * modules/inttostr: Likewise.
26425         * modules/openat: Likewise.
26426         * modules/sig2str: Likewise.
26427         * modules/userspec: Likewise.
26428         * modules/utimecmp: Likewise.
26429         * modules/xnanosleep: Likewise.
26430         * modules/xstrtol: Likewise.
26431
26432 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
26433
26434         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
26435         * modules/lock-tests (TESTS): Use $(EXEEXT).
26436         * modules/tls-tests: Likewise.
26437         * modules/argp-tests: Likewise.
26438         (check_PROGRAMS): New var, replacing...
26439         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
26440
26441 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26442
26443         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
26444         `config.h'.
26445
26446 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
26447
26448         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
26449
26450 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26451
26452         Sync from coreutils.
26453         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
26454         gl_CHDIR_SAFER.
26455
26456 2006-02-22  Jim Meyering  <jim@meyering.net>
26457
26458         Sync from coreutils.
26459         * m4/chdir-safer.m4: New file.
26460
26461 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
26462
26463         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
26464         AT_FDCWD exceeds INT_MAX.
26465         * lib/openat.h (AT_FDCWD): Likewise.
26466
26467 2006-02-17  Eric Blake  <address@hidden>
26468
26469         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
26470
26471 2006-02-16  Simon Josefsson  <jas@extundo.com>
26472
26473         * modules/getaddrinfo (Depends-on): Add sys_socket.
26474
26475 2006-02-15  Simon Josefsson  <jas@extundo.com>
26476
26477         * build-aux/maint.mk: Add dsyntax-check rule.
26478
26479 2006-02-15  Eric Blake  <ebb9@byu.net>
26480
26481         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
26482         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
26483         'present but cannot compile' warnings on cygwin.
26484         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
26485         use ws2tcpip.h if sys/socket.h works.
26486         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
26487         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
26488
26489 2006-02-14  Simon Josefsson  <jas@extundo.com>
26490
26491         * modules/maintainer-makefile (Files): Rename.
26492
26493         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
26494         and (the local) Makefile.cfg to maint-cfg.mk.
26495
26496         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
26497         to the latter.
26498
26499         * modules/maintainer-makefile: New module.
26500
26501         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
26502         severaly stripped to make it possible to build it up from scratch
26503         with reliable tests.
26504
26505         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
26506         fixes to permit overriding the default actions when configure and
26507         makefile are not available.
26508
26509 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
26510
26511         Sync from coreutils.
26512         * modules/lstat (Depends-on): Don't depend on xalloc.
26513         (License): Change from GPL to LGPL, since this is now simply a
26514         replacement for a libc function.
26515
26516 2006-02-14  Jim Meyering  <jim@meyering.net>
26517
26518         Sync from coreutils.
26519
26520         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
26521         failure on deficient systems, and simplify gnulib lgpl dependencies.
26522         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
26523         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
26524
26525         * lib/xalloc-die.c: Remove unused definition of N_.
26526
26527 2006-02-14  Jim Meyering  <jim@meyering.net>
26528
26529         Sync from coreutils.
26530         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
26531         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
26532         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
26533         double-quote uses of that variable, to accommodate the rare case in
26534         which getmntent is available in none of the libraries checked.  This
26535         happens at least on FreeBSD 5.0.
26536
26537 2006-02-13  Simon Josefsson  <jas@extundo.com>
26538
26539         * gnulib-tool (Usage): Fix --import, from
26540         karl@freefriends.org (Karl Berry).
26541
26542 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
26543
26544         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
26545
26546 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
26547
26548         * lib/argp-namefrob.h: Restore changes accidentally lost during the
26549         "autoupdate" on 2005-12-12.
26550
26551 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26552
26553         * modules/closeout (Depends-on): Remove atexit.
26554
26555 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
26556
26557         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
26558         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
26559
26560 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
26561
26562         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
26563         __EXTENSIONS__ if this causes compilation to fail.  Problem
26564         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
26565         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
26566
26567 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
26568
26569         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
26570         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
26571         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
26572         All uses changed.
26573
26574 2006-01-26  Simon Josefsson  <jas@extundo.com>
26575
26576         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
26577         prototype is visible on mingw32.
26578
26579         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
26580         for mingw32.
26581
26582         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
26583         mingw32).
26584
26585 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
26586
26587         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
26588         attempt to open for write; this always fails, at least on POSIX
26589         hosts.  This reinstates the 2006-01-09 change, which was
26590         inadvertently removed.
26591
26592 2006-01-26  Bruno Haible  <bruno@clisp.org>
26593
26594         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
26595         Reported by Paul Eggert.
26596
26597 2006-01-26  Bruno Haible  <bruno@clisp.org>
26598             Paul Eggert  <eggert@cs.ucla.edu>
26599
26600         * lib/stdbool_.h (_Bool)
26601         [(! (defined __cplusplus || defined __BEOS__)
26602           && !defined __GNUC__
26603           && !(defined __HP_cc || defined __xlc__
26604                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
26605                || defined __sgi))]:
26606         #define to signed char in these cases too; this simplifies
26607         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
26608         etc., separately) and makes it more conservative.
26609
26610 2006-01-25  Simon Josefsson  <jas@extundo.com>
26611
26612         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
26613         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
26614         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
26615
26616 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
26617
26618         * lib/argp-namefrob.h: Bugfix. Remove stray #
26619
26620 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
26621
26622         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
26623         so that we test the test.
26624         Check for yet another HP-UX cc bug involving *bool |= bool.
26625
26626 2006-01-25  Karl Berry  <karl@gnu.org>
26627
26628         * config/srclist.txt (vasnprintf.c): sync lost.
26629
26630 2006-01-25  Jim Meyering  <jim@meyering.net>
26631
26632         Sync from the stable (b5) branch of coreutils:
26633
26634         * lib/fts.c (fts_children): Don't let close() clobber errno from
26635         failed fchdir().
26636
26637         * lib/fts.c (fts_stat): When following a symlink-to-directory,
26638         don't necessarily interpret stat-fails+lstat-succeeds as indicating
26639         a dangling symlink.  That can also happen at least for ELOOP.
26640         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
26641         FYI, this bug predates the inclusion of fts.c in coreutils.
26642
26643         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
26644         in their own block, so pre-c99 compilers don't object.
26645
26646         Avoid the double-free (first in fts_read, second in fts_close) that
26647         would occur when an `active' directory is made inaccessible (e.g.,
26648         via chmod a-x) during a traversal.
26649         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26650         before returning.  Reproduce this failure by
26651         mkdir -p a/b; cd a; chmod a-x . b
26652         Reported by Stavros Passas.
26653
26654 2006-01-25  Jim Meyering  <jim@meyering.net>
26655
26656         * lib/fileblocks.c: Remove more useless parentheses.
26657         * lib/readutmp.h: Likewise.
26658
26659 2006-01-25  Bruno Haible  <bruno@clisp.org>
26660
26661         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
26662         warnings.
26663         Reported by Paul Eggert.
26664
26665 2006-01-25  Bruno Haible  <bruno@clisp.org>
26666
26667         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
26668         rid of a trap command. For Solaris sh.
26669         Reported by Mark D. Baushke <mdb@gnu.org>.
26670
26671 2006-01-24  Simon Josefsson  <jas@extundo.com>
26672
26673         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
26674         Bruno.
26675
26676 2006-01-24  Karl Berry  <karl@gnu.org>
26677
26678         * config/srclist.txt (argp-namefrob.h): sync lost.
26679
26680 2006-01-24  Jim Meyering  <jim@meyering.net>
26681
26682         * modules/openat (Files): Add lib/intprops.h.
26683         From Mark D. Baushke.
26684
26685 2006-01-24  Jim Meyering  <jim@meyering.net>
26686
26687         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
26688         Reported by Mark D. Baushke.
26689
26690 2006-01-24  Jim Meyering  <jim@meyering.net>
26691
26692         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
26693
26694 2006-01-24  Bruno Haible  <bruno@clisp.org>
26695
26696         * modules/strnlen (Maintainer): Change from glibc to all.
26697
26698 2006-01-24  Bruno Haible  <bruno@clisp.org>
26699
26700         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
26701         Patch by Paul Eggert.
26702
26703 2006-01-24  Bruno Haible  <bruno@clisp.org>
26704
26705         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
26706         already has it.
26707         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
26708         2005-11-26.
26709
26710         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
26711         'signed char' to avoid problems with the built-in _Bool type.
26712         Reported by Paul Eggert on 2005-11-26.
26713
26714 2006-01-24  Bruno Haible  <bruno@clisp.org>
26715
26716         * gnulib-tool (func_import): Avoid constructing complicated sed
26717         expressions inside backquote.
26718         Report and solution by Mark D. Baushke <mdb@gnu.org>.
26719
26720 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
26721
26722         These changes imported from libc.
26723         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
26724         test and two separate function calls.
26725         * lib/strndup.c (__strndup): Add libc_hidden_def.
26726
26727 2006-01-23  Simon Josefsson  <jas@extundo.com>
26728
26729         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
26730         Remove the test_*_SOURCES variable: automake infers it by default.
26731         * modules/tls-tests: Likewise.
26732
26733 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26734
26735         Work around porting bugs reported by Dieter in
26736         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
26737         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
26738         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
26739         Include "getopt.h" first, to check interface.
26740         (getenv): Declare only if defined HAVE_DECL_GETENV &&
26741         !HAVE_DECL_GETENV.
26742         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
26743         (__strndup): Revert to K&R-style function dfns, the glibc style.
26744         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
26745         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
26746         Include strnlen.h first, to get prototype properly.
26747         (strnlen): Renamed from __strnlen.
26748         Remove weak alias.
26749
26750 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26751
26752         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
26753
26754 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26755
26756         * config/srclist.txt: Adjust to reflect glibc reorganization.
26757         This affects only comments.
26758
26759 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26760
26761          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
26762          Reported by Bruce Korb <bkorb@gnu.org>.
26763
26764 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
26765
26766         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
26767         to pacify gcc -Wswitch-default.
26768
26769 2006-01-22  Bruno Haible  <bruno@clisp.org>
26770
26771         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
26772         temporary buffer for sprintf, take into account the precision also
26773         for 'd', 'i', 'u', 'o', 'x', 'X'.
26774
26775 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26776
26777         * modules/argp-tests: New module
26778         * tests/test-argp.c: New file
26779         * tests/test-argp-2.sh: New file
26780
26781 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
26782
26783         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
26784         (__argp_base_name): Removed
26785         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
26786         typo.
26787         (__argp_base_name): Provide macro definition or extern declaration
26788         depending on the configuration
26789
26790 2006-01-20  Simon Josefsson  <jas@extundo.com>
26791
26792         * modules/inet_ntop (Depends-on): Depend on sys_socket.
26793
26794 2006-01-20  Simon Josefsson  <jas@extundo.com>
26795
26796         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
26797
26798 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26799
26800         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
26801         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
26802         Suggested by Bruno Haible.
26803
26804 2006-01-20  Karl Berry  <karl@gnu.org>
26805
26806         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
26807         until changes propagate, I guess.
26808
26809 2006-01-19  Simon Josefsson  <jas@extundo.com>
26810
26811         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
26812
26813 2006-01-19  Simon Josefsson  <jas@extundo.com>
26814
26815         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
26816
26817 2006-01-19  Simon Josefsson  <jas@extundo.com>
26818
26819         * gnulib-tool: Set check_PROGRAMS.
26820
26821         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26822         modules/des-tests, modules/gc-arcfour-tests,
26823         modules/gc-arctwo-tests, modules/gc-des-tests,
26824         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26825         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26826         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26827         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26828         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26829         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
26830         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
26831         test_*_SOURCES.
26832
26833 2006-01-18  Simon Josefsson  <jas@extundo.com>
26834
26835         * modules/socklen (Depends-on): Depend on sys_socket.
26836
26837 2006-01-18  Simon Josefsson  <jas@extundo.com>
26838
26839         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
26840         modules/des-tests, modules/gc-arcfour-tests,
26841         modules/gc-arctwo-tests, modules/gc-des-tests,
26842         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
26843         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
26844         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
26845         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
26846         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
26847         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
26848         $(EXEEXT) to automake TESTS variable, for mingw32.
26849
26850 2006-01-17  Simon Josefsson  <jas@extundo.com>
26851
26852         * modules/socklen (Include): Need sys/socket.h.
26853
26854 2006-01-17  Bruno Haible  <bruno@clisp.org>
26855
26856         * modules/ssize_t (Include): Add <sys/types.h>.
26857
26858 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
26859
26860         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
26861         it's not portable and it doesn't work with cross-compiles.
26862         Problem reported by Bruno Haible.  Fix missing-$ typo in
26863         'test "gl_cv_ignore_unused_libraries" ...' that prevented
26864         -zignore from being used with Sun's C compiler.
26865
26866 2006-01-12  Simon Josefsson  <jas@extundo.com>
26867
26868         * lib/base64.c: Fix warning, reported by Bruno Haible
26869         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
26870
26871 2006-01-12  Bruno Haible  <bruno@clisp.org>
26872
26873         * modules/ldd: New file.
26874         * build-aux/ldd.sh.in: New file.
26875         * MODULES.html.sh (Support for building libraries and executables): Add
26876         ldd.
26877
26878 2006-01-12  Bruno Haible  <bruno@clisp.org>
26879
26880         * m4/ldd.m4: New file.
26881
26882 2006-01-12  Bruno Haible  <bruno@clisp.org>
26883
26884         * gnulib-tool (func_import, func_create_testdir): Don't go into an
26885         endless loop while replacing $auxdir with build-aux.
26886
26887 2006-01-11  Simon Josefsson  <jas@extundo.com>
26888
26889         * lib/stdint_.h (SIZE_MAX): Add missing (.
26890
26891 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
26892
26893         Sync from coreutils.
26894         * lib/md5.c: Fix commentary typos.
26895         (alignof, UNALIGNED_P): No need for a GCC-specific version.
26896         * lib/md5.h (__attribute__): Remove; unused.
26897         * lib/sha1.c: Fix commentary to match md5 better.
26898         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
26899         so that we don't need to worry about alignment.  All uses changed.
26900         This merges the 2005-10-28 md5 change into sha1.
26901
26902 2006-01-11  Jim Meyering  <jim@meyering.net>
26903
26904         Sync from coreutils.
26905         * lib/md5.c (OP): Fix spacing.
26906
26907 2006-01-11  Bruno Haible  <bruno@clisp.org>
26908
26909         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26910         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
26911         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
26912
26913 2006-01-11  Bruno Haible  <bruno@clisp.org>
26914
26915         Ensure automatic ordering between gl_LOCK and gl_ARGP.
26916         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
26917         the "early" section as well.
26918
26919 2006-01-11  Bruno Haible  <bruno@clisp.org>
26920
26921         Avoid "ar: no archive members specified" error on MacOS X.
26922         * gnulib-tool (func_modules_add_dummy): New function.
26923         (func_import, func_create_testdir): Invoke it.
26924
26925 2006-01-11  Bruno Haible  <bruno@clisp.org>
26926
26927         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
26928         with $auxdir in AC_CONFIG_FILES statements.
26929
26930 2006-01-11  Bruno Haible  <bruno@clisp.org>
26931
26932         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26933         Initialize also noinst_HEADERS to empty.
26934
26935 2006-01-11  Bruno Haible  <bruno@clisp.org>
26936
26937         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
26938         variables.
26939         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
26940         autoreconf.
26941
26942 2006-01-11  Bruno Haible  <bruno@clisp.org>
26943
26944         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
26945         overridable by the user.
26946         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26947
26948 2006-01-10  Simon Josefsson  <jas@extundo.com>
26949
26950         * modules/sys_socket: New file.
26951
26952 2006-01-10  Simon Josefsson  <jas@extundo.com>
26953
26954         * m4/sys_socket_h.m4: New file.
26955
26956 2006-01-10  Simon Josefsson  <jas@extundo.com>
26957
26958         * lib/socket_.h: New file.
26959
26960 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26961
26962         * modules/readutmp (Maintainer): Add myself.
26963
26964 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26965
26966         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
26967         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
26968         People who are still concerned with buggy memcmp implementations
26969         can invoke gl_FUNC_MEMCMP themselves.
26970
26971 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
26972
26973         * lib/regex_internal.h (BITSET_WORD_BITS):
26974         Work around a bug in 64-bit PGC (before version 6.1-2), where the
26975         preprocessor mishandles large unsigned values as if they were signed.
26976         Problem reported by Claudio Fontana in
26977         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
26978
26979 2006-01-10  Jim Meyering  <jim@meyering.net>
26980
26981         Avoid the double-free (first in fts_read, second in fts_close) that
26982         would occur when an `active' directory is made inaccessible (e.g.,
26983         via chmod a-x) during a traversal.
26984         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
26985         before returning.  Reproduce this failure by
26986         mkdir -p a/b; cd a; chmod a-x . b
26987         Reported by Stavros Passas.
26988
26989         Sync from coreutils.
26990         * lib/sha1.c: Tweak grammar in a comment.
26991
26992 2006-01-10  Jim Meyering  <jim@meyering.net>
26993
26994         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
26995         Patch by Joerg Sonnenberger.
26996
26997 2006-01-10  Bruno Haible  <bruno@clisp.org>
26998
26999         * modules/readutmp: Depend on module free.
27000         * modules/strtok_r: Depend on module restrict.
27001
27002 2006-01-10  Bruno Haible  <bruno@clisp.org>
27003
27004         * modules/gettext (configure.ac): Add an invocation of
27005         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
27006
27007 2006-01-10  Bruno Haible  <bruno@clisp.org>
27008
27009         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
27010         Reported by Werner Lemberg <wl@gnu.org>.
27011
27012 2006-01-10  Bruno Haible  <bruno@clisp.org>
27013
27014         * lib/localcharset.c: Update from GNU gettext.
27015
27016 2006-01-10  Bruno Haible  <bruno@clisp.org>
27017
27018         * lib/argp.h (__const): Remove macro. Use const instead.
27019         * lib/argp-fmtstream.h (__const): Likewise.
27020         * lib/glob_.h (__const): Remove macro.
27021         * lib/glob-libc.h: Use const instead of __const.
27022
27023 2006-01-10  Bruno Haible  <bruno@clisp.org>
27024
27025         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
27026         variable.
27027         Needed to avoid an automake error regarding the 'gettext' module.
27028
27029 2006-01-09  Simon Josefsson  <jas@extundo.com>
27030
27031         * modules/inet_ntop (Depends-on): Add restrict.
27032
27033 2006-01-09  Simon Josefsson  <jas@extundo.com>
27034
27035         * modules/gc-rijndael-tests (License): Put under LGPL.
27036
27037         * modules/gc-des-tests (License): Likewise.
27038
27039         * modules/gc-arcfour-tests (License): Likewise.
27040
27041         * modules/gc-arctwo-tests (License): Likewise.
27042
27043         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
27044
27045         * modules/gc-hmac-sha1-tests (Files): Likewise.
27046
27047         * modules/gc-hmac-md5-tests (License): Likewise.
27048
27049         * modules/gc-sha1-tests (License): Likewise.
27050
27051         * modules/gc-md5-tests (License): Likewise.
27052
27053         * modules/gc-md4-tests (License): Likewise.
27054
27055         * modules/gc-md2-tests (License): Likewise.
27056
27057         * modules/gc-tests (License): Likewise.
27058
27059         * modules/des-tests (License): Likewise.
27060
27061         * modules/md4-tests (License): Likewise.
27062
27063         * modules/md2-tests (License): Likewise.
27064
27065 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27066
27067         Sync from coreutils:
27068
27069         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
27070         * modules/lib-ignore: New file.
27071         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
27072         chdir-safer.m4, lchmod.m4.
27073         * modules/openat: Add mkdirat.c, openat-priv.h.
27074
27075 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27076
27077         Sync from coreutils.
27078         * m4/lib-ignore.m4: New file.
27079         * m4/lchmod.m4: New file.
27080
27081 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27082
27083         Sync from coreutils.
27084         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
27085         for write access: POSIX says that must fail.
27086         * lib/fts.c (diropen): Likewise.
27087         * lib/save-cwd.c (save_cwd): Likewise.
27088         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
27089         well, for minor improvements on hosts that lack O_DIRECTORY.
27090         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
27091         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
27092         Fall back on chown if open failed with EACCES.
27093
27094         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
27095         Report an error at compile-time if only a 1-second nominal clock
27096         resolution is found.
27097
27098         * lib/lchmod.h: New file.
27099         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
27100         (make_dir_parents): Use lchown rather than chown, and
27101         lchmod rather than chmod.
27102
27103         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
27104         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
27105         "proc" reported by n0dalus.
27106
27107         * lib/mountlist.c: Include <limits.h>.
27108         (dev_from_mount_options)
27109         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
27110         New function.  It no longer assumes "dev=" has the System V meaning
27111         on Linux (since it doesn't).  It also parses "dev=" more carefully.
27112         (read_file_system_list)
27113         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
27114         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
27115         dev= in that case.
27116
27117         * lib/posixtm.h (PDS_PRE_2000): New macro.
27118         * lib/posixtm.c (year): Arg is now syntax_bits rather than
27119         allow_century.  All usages changed.  Reject dates outside the range
27120         1969-1999 if PDS_PRE_2000 is used.
27121
27122 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
27123
27124         Sync from coreutils.
27125         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
27126         (Time of day items): Mention the possibility of leap seconds.
27127         Problem reported by Dr. David Alan Gilbert.
27128
27129 2006-01-09  Jim Meyering  <jim@meyering.net>
27130
27131         Sync from coreutils.
27132
27133         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
27134
27135         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
27136
27137         * lib/modechange.c (mode_compile): Reject an invalid mode string
27138         that starts with an octal digit.  From Andreas Gruenbacher.
27139
27140         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
27141         and dup to open_safer and dup_safer, respectively.
27142         (openat_permissive): Fix typo in comment.
27143
27144         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
27145         "gettext.h"; either no longer needed or are guaranteed by openat.h.
27146         (_): Remove; no longer needed.
27147         (openat): Renamed from rpl_openat; no need for rpl_openat
27148         since openat.h renames openat for us.
27149         Replace most of the body with a call to openat_permissive,
27150         to avoid duplicate code.
27151         Port to (probably hypothetical) environments were mode_t is
27152         wider than int.
27153         (openat_permissive): Require mode arg, so that we can check
27154         types better.  Put it just after flags.  Change cwd failure
27155         indicator from pointer-to-bool to pointer-to-errno-value.
27156         All callers changed.
27157         Invoke openat_save_fail and/or openat_restore_fail if
27158         cwd_errno is null, so that openat can call us.
27159         (openat_permissive, fdopendir, fstatat, unlinkat):
27160         Simplify errno handling to avoid some duplicate code,
27161         as it's OK to set errno on success.
27162         * lib/openat.h: Revamp code so that function macros depend on
27163         __OPENAT_PREFIX only, not also on AT_FDCWD.
27164         (openat_ro): Remove.  Caller changed to use openat_permissive.
27165         (openat_permissive): Now a macro, if not a function.
27166         (openat_restore_fail, openat_save_fail): Now always functions,
27167         since mkdirat needs them even if __OPENAT_PREFIX is defined.
27168
27169         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
27170         and openat.c.
27171         * lib/mkdirat.c: Include openat-priv.h.
27172         Remove definitions of macros defined therein.
27173         * lib/openat.c: Likewise.
27174
27175         * lib/mkdirat.c (mkdirat): New file and function.
27176         * lib/openat.h (mkdirat): Declare.
27177
27178         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
27179
27180         * lib/openat.h (openat_permissive): Declare.
27181         (openat_ro): Define.
27182
27183         * lib/openat.c (EXPECTED_ERRNO): New macro.
27184         (openat_permissive): New function -- used in remove.c rewrite.
27185         (all functions): Set errno just before returning, only if there
27186         was an actual failure.
27187         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
27188
27189         Emulate openat-family functions using Linux's procfs, if possible.
27190         Idea and some code based on Ulrich Drepper's glibc changes.
27191
27192         * lib/openat.c: (BUILD_PROC_NAME): New macro.
27193         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
27194         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
27195         before falling back on save_cwd and restore_cwd.
27196         (fdopendir, fstatat, unlinkat): Likewise.
27197
27198         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
27199         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
27200
27201         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
27202         as second argument to va_arg.  Otherwise, some versions of gcc
27203         warn that `if this code is reached, the program will abort'.
27204
27205 2006-01-09  Jim Meyering  <jim@meyering.net>
27206
27207         Sync from coreutils.
27208         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
27209         Require openat-priv.h.
27210
27211 2006-01-09  Bruno Haible  <bruno@clisp.org>
27212
27213         * modules/strnlen (Include): Use strnlen.h.
27214
27215 2006-01-09  Bruno Haible  <bruno@clisp.org>
27216
27217         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
27218
27219 2006-01-09  Bruno Haible  <bruno@clisp.org>
27220
27221         * lib/sysexit_.h (EX_OK): New macro.
27222         Suggested by Martin Lambers <marlam@marlam.de>.
27223
27224 2006-01-09  Bruno Haible  <bruno@clisp.org>
27225
27226         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
27227         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
27228
27229 2006-01-09  Bruno Haible  <bruno@clisp.org>
27230
27231         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
27232         numbers.
27233
27234 2006-01-09  Bruno Haible  <bruno@clisp.org>
27235
27236         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
27237         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
27238         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
27239         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
27240
27241 2006-01-09  Bruno Haible  <bruno@clisp.org>
27242
27243         * build-aux/javacomp.sh.in: New file, moved from lib/.
27244         * modules/javacomp-script (Files): Update.
27245         (configure.ac): Add AC_CONFIG_FILES invocation.
27246         (EXTRA_DIST): Remove variable.
27247
27248         * build-aux/javaexec.sh.in: New file, moved from lib/.
27249         * modules/javaexec (Files): Update.
27250         (configure.ac): Add AC_CONFIG_FILES invocation.
27251         (EXTRA_DIST): Remove javaexec.sh.in.
27252
27253         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
27254         * modules/csharpcomp-script (Files): Update.
27255         (configure.ac): Add AC_CONFIG_FILES invocation.
27256         (EXTRA_DIST): Remove variable.
27257
27258         * build-aux/csharpexec.sh.in: New file, moved from lib/.
27259         * modules/csharpexec (Files): Update.
27260         (configure.ac): Add AC_CONFIG_FILES invocation.
27261         (EXTRA_DIST): Remove csharpexec.sh.in.
27262
27263 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27264
27265         Sync from coreutils.
27266
27267         Add POSIX ACL support
27268         * lib/acl.h (copy_acl, set_acl): Add declarations.
27269         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
27270         systems other than Linux.
27271         (chmod_or_fchmod): New function: use fchmod when possible,
27272         and chmod otherwise.
27273         (file_has_acl): Add a POSIX ACL implementation, with a
27274         Linux-specific subcase.
27275         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
27276         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
27277         acls are unsupported.
27278         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
27279         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
27280         are unsupported.
27281
27282 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
27283
27284         Sync from coreutils.
27285         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
27286
27287 2006-01-07  Bruno Haible  <bruno@clisp.org>
27288
27289         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
27290         gl_EARLY.
27291
27292 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27293
27294         * lib/strftime.c (tzname): Don't declare if it is already #defined.
27295         Problem reported for Mingw by Mark Junker.
27296
27297 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27298
27299         * README: Gnulib normally doesn't generate a tarball.
27300
27301 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
27302
27303         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
27304         long int, not int, for nanosecond counts, so that people who are
27305         used to POSIX struct timespec won't be surprised.  Reported by Jim
27306         Meyering.
27307
27308 2005-12-28  Bruno Haible  <bruno@clisp.org>
27309
27310         * build-aux/config.rpath: Update from GNU gettext.
27311
27312 2005-12-16  Jim Meyering  <jim@meyering.net>
27313
27314         * modules/fprintftime: New module.
27315         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
27316
27317 2005-12-16  Jim Meyering  <jim@meyering.net>
27318
27319         * m4/fprintftime.m4: New file.
27320
27321 2005-12-16  Jim Meyering  <jim@meyering.net>
27322
27323         * lib/fprintftime.c, lib/fprintftime.h: New files.
27324
27325 2005-12-15  Simon Josefsson  <jas@extundo.com>
27326
27327         * modules/socklen (configure.ac): Fix M4 macro name, to align with
27328         new m4/socklen.m4.
27329
27330 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27331
27332         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
27333         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
27334
27335 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
27336
27337         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
27338         * lib/argp-help.c (fill_in_uparams): Check if the constructed
27339         struct uparams is valid. Fall back to the default values if it is
27340         not.
27341
27342 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27343
27344         * modules/argp (Files): Add argp-pin.c
27345         (Depends-on): dirname
27346         (lib_SOURCES): Add argp-pin.c
27347
27348 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27349
27350         * m4/argp.m4:  Check if program_invocation_name and
27351         program_invocation_short_name are declared and define appropriate
27352         macros if they are not.
27353
27354 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27355
27356         * lib/argp-help.c (__argp_base_name): New function
27357         (__argp_short_program_name): Rewrite using __argp_base_name
27358         * lib/argp-namefrob.h: Define program_invocation_name and
27359         program_invocation_short_name if requested
27360         (__argp_base_name): Add prototype
27361         * lib/argp-parse.c (argp_def): Use gettext wrappers
27362         (argp_default_parser): Use __argp_base_name
27363         * lib/argp-pin.c: New file. Defines program_invocation_name and
27364         program_invocation_short_name on systems that lack them.
27365
27366 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27367
27368         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
27369         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27370         porting problem reported by Georg Schwarz in
27371         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27372
27373 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
27374
27375         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
27376         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
27377         porting problem reported by Georg Schwarz in
27378         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
27379
27380 2005-12-05  Bruno Haible  <bruno@clisp.org>
27381
27382         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
27383         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
27384         Reported by Mark Junker <mjscod@gmx.de>.
27385
27386 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
27387
27388         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
27389         Use implementation from Albert Chin, with some
27390         comments/corrections by Stepan Kasal and myself.
27391
27392 2005-12-02  Bruno Haible  <bruno@clisp.org>
27393
27394         * gnulib-tool (func_import): Accept GPLed build tool modules when
27395         --lgpl is given.
27396         * modules/csharpcomp-script: New file.
27397         * modules/csharpcomp: Depend on it.
27398         * modules/javacomp-script: New file.
27399         * modules/javacomp: Depend on it.
27400         Suggested by Simon Josefsson.
27401
27402 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
27403
27404         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
27405         statement, to work around an HP-UX 10.20 compiler bug reported by
27406         Peter O'Gorman.
27407
27408 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27409
27410         * modules/savedir (Depends-on): Add openat.
27411
27412 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
27413
27414         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
27415         (uintmax_t) [defined uintmax_t]: Do not declare.
27416         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
27417         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
27418         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
27419         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
27420         sake of portability to weird hosts that C allows (though we don't
27421         know of any practical examples).
27422
27423         * lib/savedir.h (fdsavedir): New decl.
27424         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
27425         contains most of the former guts of savedir.
27426         (savedir): Use savedirstream.
27427         Include "openat.h".
27428
27429 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
27430
27431         * modules/obstack (Files): Add m4/ulonglong.m4.
27432         Problem reported by Davide Angelocola.
27433
27434 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
27435
27436         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
27437         coreutils no longer futzes with rounding modes.
27438
27439 2005-11-14  Jim Meyering  <jim@meyering.net>
27440
27441         * lib/mkstemp-safer.c: Include <config.h>, required for possible
27442         replacement of mkstemp.
27443
27444 2005-11-10  Simon Josefsson  <jas@extundo.com>
27445
27446         * lib/readline.c: Remove EOL.
27447
27448 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27449
27450         * modules/gethrxtime (Depends-on): Add gettime.
27451
27452 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27453
27454         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
27455         or gettimeofday; no longer needed.
27456
27457 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
27458
27459         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
27460         time business.
27461         (gethrxtime) [! (HAVE_NANOUPTIME
27462         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
27463         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
27464         our own approximation.
27465
27466 2005-11-08  Eric Blake  <ebb9@byu.net>
27467
27468         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27469
27470 2005-11-08  Eric Blake  <ebb9@byu.net>
27471
27472         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
27473
27474 2005-11-04  Bruno Haible  <bruno@clisp.org>
27475
27476         * gnulib-tool: Implement --update mode.
27477
27478 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27479
27480         Fix porting problem reported by Theodoros V. Kalamatianos.
27481         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
27482         Don't assume that futimes failing means we must fail.
27483
27484 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
27485
27486         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
27487         variables to suggest the intended function of the PATH_MAX check.
27488
27489 2005-10-30  Kean Johnston  <jkj@sco.com>
27490
27491         Trivial changes to support SCO systems.
27492         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
27493         as PATH_MAX.
27494         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
27495         where __ptr is null when no I/O is pending.
27496
27497 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27498
27499         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
27500         leave errno alone.  Problem reported by Dmitry V. Levin.
27501
27502 2005-10-28  Simon Josefsson  <jas@extundo.com>
27503
27504         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
27505         Test more.
27506
27507         * tests/test-gc-md2.c, tests/test-md2.c: New files.
27508
27509         * modules/md2, modules/md2-tests: New files.
27510
27511 2005-10-28  Simon Josefsson  <jas@extundo.com>
27512
27513         * m4/inet_ntop.m4: More tests.
27514
27515         * m4/gc-md2.m4, md2.m4: New file.
27516
27517 2005-10-28  Simon Josefsson  <jas@extundo.com>
27518
27519         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
27520         "restrict" keywords, as per POSIX.  Protect the function
27521         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
27522         Don't use K&R prototypes.  Check the sprintf return values.
27523         Re-define EAFNOSUPPORT if not present.  Indent.
27524
27525         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
27526         suggested by Bruno Haible <bruno@clisp.org>.
27527
27528         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
27529
27530         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
27531
27532         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
27533         libgcrypt).
27534
27535         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
27536
27537         * lib/md2.h, lib/md2.c: New files.
27538
27539 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
27540
27541         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
27542         errno alone.  Problem reported by Frederic Jolliton.
27543
27544 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
27545
27546         * modules/verify (License): Change from GPL to LGPL.  This is a
27547         tiny module and there are apparently near-equivalents that are
27548         under the BSD license.
27549
27550 2005-10-24  Simon Josefsson  <jas@extundo.com>
27551
27552         * modules/sha1: Relicense to LGPL.
27553
27554 2005-10-24  Simon Josefsson  <jas@extundo.com>
27555
27556         * lib/md4.h: Shrink buffer size, now that we changed the type.
27557
27558 2005-10-23  Simon Josefsson  <jas@extundo.com>
27559
27560         * gnulib-tool (func_import): Fix --tests-base.
27561
27562 2005-10-22  Simon Josefsson  <jas@extundo.com>
27563
27564         * modules/arcfour (Depends-on): Need stdint.
27565
27566 2005-10-22  Simon Josefsson  <jas@extundo.com>
27567
27568         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
27569         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
27570
27571 2005-10-22  Simon Josefsson  <jas@extundo.com>
27572
27573         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
27574         suggested by Bruno Haible <bruno@clisp.org>.
27575
27576 2005-10-22  Simon Josefsson  <jas@extundo.com>
27577
27578         * lib/crc.h: Include stddef.h, for size_t.
27579
27580 2005-10-22  Simon Josefsson  <jas@extundo.com>
27581
27582         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
27583         arcfour_context struct (simplify test vector testing in GNU
27584         Shishi).
27585
27586 2005-10-21  Simon Josefsson  <jas@extundo.com>
27587
27588         * modules/des, modules/des-tests: New files.
27589
27590         * modules/gc-des, modules/gc-des-tests: New files.
27591
27592         * tests/test-des.c, tests/test-gc-des.c: New file.
27593
27594 2005-10-21  Simon Josefsson  <jas@extundo.com>
27595
27596         * modules/arctwo, modules/arctwo-tests: New files.
27597
27598         * tests/test-arctwo.c: New file.
27599
27600         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
27601
27602         * tests/test-gc-arctwo.c: New file.
27603
27604 2005-10-21  Simon Josefsson  <jas@extundo.com>
27605
27606         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
27607         Bruno Haible <bruno@clisp.org>.
27608
27609         * m4/gc-des.m4: New file.
27610
27611 2005-10-21  Simon Josefsson  <jas@extundo.com>
27612
27613         * m4/arctwo.m4: New file.
27614
27615         * m4/gc-arctwo.m4: New file.
27616
27617 2005-10-21  Simon Josefsson  <jas@extundo.com>
27618
27619         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
27620         block.
27621
27622 2005-10-21  Simon Josefsson  <jas@extundo.com>
27623
27624         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
27625         <bruno@clisp.org>.
27626
27627         * lib/hmac-sha1.c (hmac_sha1): Likewise.
27628
27629         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
27630         Bruno Haible <bruno@clisp.org>.
27631
27632         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
27633         <bruno@clisp.org>.
27634
27635 2005-10-21  Simon Josefsson  <jas@extundo.com>
27636
27637         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
27638
27639 2005-10-21  Simon Josefsson  <jas@extundo.com>
27640
27641         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
27642
27643 2005-10-21  Simon Josefsson  <jas@extundo.com>
27644
27645         * lib/des.h, lib/des.c: New files.
27646
27647         * lib/gc-gnulib.c: Support DES.c
27648
27649 2005-10-21  Simon Josefsson  <jas@extundo.com>
27650
27651         * lib/arctwo.h, lib/arctwo.c: New files.
27652
27653         * lib/gc-gnulib.c: Support ARCTWO.
27654
27655 2005-10-21  Simon Josefsson  <jas@extundo.com>
27656
27657         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
27658         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
27659
27660 2005-10-21  Simon Josefsson  <jas@extundo.com>
27661
27662         * gnulib-tool (func_import, func_create_testdir): Define automake
27663         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
27664         Makefile.am snippet),
27665         suggested by Bruno Haible <bruno@clisp.org>.
27666
27667         * modules/gc (Makefile.am): Use it.
27668
27669 2005-10-21  Bruno Haible  <bruno@clisp.org>
27670
27671         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
27672         patch.
27673
27674 2005-10-19  Simon Josefsson  <jas@extundo.com>
27675
27676         * tests/test-gc-rijndael.c: New file.
27677
27678         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
27679
27680 2005-10-19  Simon Josefsson  <jas@extundo.com>
27681
27682         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
27683         interface too.
27684
27685 2005-10-19  Simon Josefsson  <jas@extundo.com>
27686
27687         * tests/test-gc-arcfour.c: New file.
27688
27689         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
27690
27691 2005-10-19  Simon Josefsson  <jas@extundo.com>
27692
27693         * modules/gc-md4, modules/gc-md4-tests: New file.
27694
27695         * tests/test-gc-md4.c: New file.
27696
27697 2005-10-19  Simon Josefsson  <jas@extundo.com>
27698
27699         * m4/gc-md4.m4: New file.
27700
27701 2005-10-19  Simon Josefsson  <jas@extundo.com>
27702
27703         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
27704         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
27705         <kasal@ucw.cz>.
27706
27707 2005-10-19  Simon Josefsson  <jas@extundo.com>
27708
27709         * m4/gc-arcfour.m4: New file.
27710
27711         * m4/gc-rijndael.m4: New file.
27712
27713 2005-10-19  Simon Josefsson  <jas@extundo.com>
27714
27715         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
27716
27717 2005-10-19  Simon Josefsson  <jas@extundo.com>
27718
27719         * lib/gc-gnulib.c: Support ARCFOUR.
27720
27721 2005-10-19  Simon Josefsson  <jas@extundo.com>
27722
27723         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
27724         support.
27725
27726         * lib/gc.h: Add ECB enum type.
27727
27728         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
27729
27730 2005-10-18  Simon Josefsson  <jas@extundo.com>
27731
27732         * tests/test-md5.c: New file.
27733
27734         * modules/md5-tests: New file.
27735
27736 2005-10-18  Simon Josefsson  <jas@extundo.com>
27737
27738         * tests/test-md4.c: New file.
27739
27740         * modules/md4, modules/md4-tests: New files.
27741
27742 2005-10-18  Simon Josefsson  <jas@extundo.com>
27743
27744         * m4/md4.m4: New file.
27745
27746 2005-10-18  Simon Josefsson  <jas@extundo.com>
27747
27748         * lib/md4.h, lib/md4.c: New files, based on md5.?.
27749
27750 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
27751
27752         * gnulib-tool (func_create_testdir): Omit the second check whether
27753         BUILT_SOURCES in nonempty.
27754
27755 2005-10-17  Simon Josefsson  <jas@extundo.com>
27756
27757         * tests/test-rijndael.c: New file.
27758
27759 2005-10-17  Simon Josefsson  <jas@extundo.com>
27760
27761         * modules/sha1: Depend on stdint instead of md5.
27762
27763         * modules/md5: Depend on stdint, remove uint32_t.
27764
27765 2005-10-17  Simon Josefsson  <jas@extundo.com>
27766
27767         * modules/gc-sha1-tests: New file.
27768
27769         * tests/test-gc-sha1.c: New file.
27770
27771 2005-10-17  Simon Josefsson  <jas@extundo.com>
27772
27773         * m4/md5.m4: Remove call to uint32_t.m4.
27774
27775 2005-10-17  Simon Josefsson  <jas@extundo.com>
27776
27777         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
27778
27779         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
27780         md5.h.
27781
27782         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
27783
27784         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
27785
27786 2005-10-17  Simon Josefsson  <jas@extundo.com>
27787
27788         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
27789
27790 2005-10-17  Simon Josefsson  <jas@extundo.com>
27791
27792         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
27793
27794 2005-10-17  Simon Josefsson  <jas@extundo.com>
27795
27796         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
27797
27798         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
27799
27800 2005-10-17  Bruno Haible  <bruno@clisp.org>
27801
27802         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
27803         that it can also be used in a test.
27804
27805 2005-10-16  Bruno Haible  <bruno@clisp.org>
27806
27807         * gnulib-tool (func_emit_tests_Makefile_am): Also define
27808         TESTS_ENVIRONMENT, so that individual tests can augment it.
27809
27810         * gnulib-tool (func_create_testdir): Use an intermediate target for
27811         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
27812         macros, like $(ALLOCA_H), which cannot be passed through the command
27813         line.
27814
27815 2005-10-15  Simon Josefsson  <jas@extundo.com>
27816
27817         * modules/rijndael-tests: New file.
27818
27819         * modules/rijndael: New file.
27820
27821 2005-10-15  Simon Josefsson  <jas@extundo.com>
27822
27823         * m4/rijndael.m4: New file.
27824
27825 2005-10-15  Simon Josefsson  <jas@extundo.com>
27826
27827         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
27828
27829         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
27830
27831 2005-10-14  Simon Josefsson  <jas@extundo.com>
27832
27833         * tests/test-arcfour.c: New file.
27834
27835         * modules/arcfour, modules/arcfour-tests: New files.
27836
27837 2005-10-14  Simon Josefsson  <jas@extundo.com>
27838
27839         * m4/arcfour.m4: New file.
27840
27841 2005-10-14  Simon Josefsson  <jas@extundo.com>
27842
27843         * lib/arcfour.h, lib/arcfour.c: New files.
27844
27845 2005-10-14  Roland McGrath  <roland@redhat.com>
27846
27847         Import from libc.  [BZ #1331]
27848         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
27849         macro argument.
27850         Reported by Matej Vela <vela@debian.org>.
27851
27852 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27853
27854         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
27855         include <wchar.h>; no longer needed.
27856
27857 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27858
27859         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
27860
27861 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
27862         and  Ulrich Drepper  <drepper@redhat.com>
27863
27864         Import from libc.
27865         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
27866         instead of inline stream orientation test and two separate
27867         function calls.  Pay no attention to USE_IN_LIBIO.
27868
27869 2005-10-13  Simon Josefsson  <jas@extundo.com>
27870
27871         * modules/gc-hmac-md5-tests: New file.
27872
27873         * tests/test-gc-hmac-sha1.c: New file.
27874
27875         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
27876
27877         * modules/gc-hmac-md5-tests: New file.
27878
27879         * tests/test-gc-md5.c: New file.
27880
27881         * modules/gc-md5-tests: New file.
27882
27883 2005-10-13  Simon Josefsson  <jas@extundo.com>
27884
27885         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
27886         Move memory allocation outside of loop.
27887
27888 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
27889
27890         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
27891         intermediate directory is in a read-only file system.  Problem
27892         reported by Eric Blake.
27893
27894 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
27895
27896         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
27897
27898 2005-10-12  Simon Josefsson  <jas@extundo.com>
27899
27900         * tests/test-hmac-sha1.c: New file.
27901
27902         * modules/hmac-sha1-tests: New file.
27903
27904         * modules/hmac-sha1: New file.
27905
27906 2005-10-12  Simon Josefsson  <jas@extundo.com>
27907
27908         * modules/gc-sha1: New file.
27909
27910 2005-10-12  Simon Josefsson  <jas@extundo.com>
27911
27912         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
27913
27914         * tests/test-gc-pbkdf2-sha1.c: New file.
27915
27916 2005-10-12  Simon Josefsson  <jas@extundo.com>
27917
27918         * modules/gc-md5, modules/gc-hmac-md5: New files.
27919
27920         * modules/gc (Files): Remove md5, memxor and hmac files.
27921
27922 2005-10-12  Simon Josefsson  <jas@extundo.com>
27923
27924         * m4/gc-pbkdf2-sha1.m4: New file.
27925
27926         * m4/gc-hmac-sha1.m4: New file.
27927
27928         * m4/gc-sha1: New file.
27929
27930         * m4/hmac-sha1.m4: New file.
27931
27932 2005-10-12  Simon Josefsson  <jas@extundo.com>
27933
27934         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
27935
27936         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
27937
27938 2005-10-12  Simon Josefsson  <jas@extundo.com>
27939
27940         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
27941         suggested by Bruno Haible <bruno@clisp.org>.
27942
27943 2005-10-12  Simon Josefsson  <jas@extundo.com>
27944
27945         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
27946
27947 2005-10-12  Simon Josefsson  <jas@extundo.com>
27948
27949         * lib/gc-pbkdf2-sha1.c: New file.
27950
27951         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
27952
27953 2005-10-12  Simon Josefsson  <jas@extundo.com>
27954
27955         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
27956
27957         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
27958
27959 2005-10-12  Simon Josefsson  <jas@extundo.com>
27960
27961         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
27962         GC_USE_HMAC_MD5, respectively.
27963
27964         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
27965         (gc_md5): Fix typo.
27966
27967         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
27968
27969         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
27970
27971         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
27972
27973 2005-10-12  Bruno Haible  <bruno@clisp.org>
27974
27975         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
27976         Reported by Stepan Kasal <kasal@ucw.cz>.
27977
27978 2005-10-11  Simon Josefsson  <jas@extundo.com>
27979
27980         * tests/test-crc.c: New file.
27981
27982         * modules/crc, modules/crc-tests: New files.
27983
27984 2005-10-11  Simon Josefsson  <jas@extundo.com>
27985
27986         * m4/crc.m4: New file.
27987
27988 2005-10-11  Simon Josefsson  <jas@extundo.com>
27989
27990         * lib/gc.h: Add gc_hash and gc_hash_buffer.
27991
27992         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
27993
27994         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
27995
27996 2005-10-11  Simon Josefsson  <jas@extundo.com>
27997
27998         * lib/crc.h, lib/crc.c: New files.
27999
28000         * lib/gc.h (gc_hash_buffer): Add doc.
28001
28002 2005-10-11  Bruno Haible  <bruno@clisp.org>
28003
28004         * modules/c-strcasestr: New file.
28005         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
28006
28007 2005-10-11  Bruno Haible  <bruno@clisp.org>
28008
28009         * modules/c-strcase: New file.
28010         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
28011
28012 2005-10-11  Bruno Haible  <bruno@clisp.org>
28013
28014         * lib/strcasecmp.c: Include limits.h.
28015         (strcasecmp): Avoid integer overflow on exotic platforms.
28016         * lib/strncasecmp.c: Include limits.h.
28017         (strncasecmp): Avoid integer overflow on exotic platforms.
28018         Reported by Paul Eggert.
28019
28020 2005-10-11  Bruno Haible  <bruno@clisp.org>
28021
28022         * lib/c-strcasestr.h: New file, from GNU gettext.
28023         * lib/c-strcasestr.c: New file, from GNU gettext.
28024
28025 2005-10-11  Bruno Haible  <bruno@clisp.org>
28026
28027         * lib/c-strcase.h: New file, from GNU gettext.
28028         * lib/c-strcasecmp.c: New file, from GNU gettext.
28029         * lib/c-strncasecmp.c: New file, from GNU gettext.
28030
28031 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
28032
28033         * modules/mempcpy (License): GPL -> LGPL.
28034         * modules/strchrnul (License): Likewise.
28035         * modules/sysexits (License): Likewise.
28036
28037 2005-10-08  Simon Josefsson  <jas@extundo.com>
28038
28039         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
28040
28041 2005-10-07  Simon Josefsson  <jas@extundo.com>
28042
28043         * m4/memxor.m4: Remove gl_C_RESTRICT call.
28044
28045 2005-10-06  Simon Josefsson  <jas@extundo.com>
28046
28047         * tests/test-hmac-md5.c: New file.
28048
28049         * modules/hmac-md5-tests: New file.
28050
28051         * modules/hmac-md5: New file.
28052
28053 2005-10-06  Simon Josefsson  <jas@extundo.com>
28054
28055         * m4/hmac-md5.m4: New file.
28056
28057         * m4/memxor.m4: Require gl_C_RESTRICT.
28058
28059 2005-10-06  Simon Josefsson  <jas@extundo.com>
28060
28061         * lib/memxor.c (memxor): Avoid casts and warnings.
28062
28063 2005-10-06  Simon Josefsson  <jas@extundo.com>
28064
28065         * lib/hmac-md5.c: New file.
28066
28067         * lib/hmac.h: New file.
28068
28069 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
28070
28071         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
28072         promotes to int, not unsigned int, to catch the AIX 5.3
28073         compiler bug.
28074
28075 2005-10-05  Simon Josefsson  <jas@extundo.com>
28076
28077         * modules/memxor: New file.
28078
28079         * modules/iconv (Files): Move config.rpath to havelib, it is used
28080         there.
28081
28082         * modules/havelib (Files): Add config.rpath.
28083
28084 2005-10-05  Simon Josefsson  <jas@extundo.com>
28085
28086         * m4/memxor.m4: New file.
28087
28088 2005-10-05  Simon Josefsson  <jas@extundo.com>
28089
28090         * lib/memxor.c (memxor): Fix compiler error.
28091
28092         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
28093         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
28094
28095         * lib/memxor.h, lib/memxor.c: New files.
28096
28097         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
28098         we assume all systems have it, suggested by Jim Meyering
28099         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
28100         any systems lack sys/socket.h; mingw32 is known to lack it, but we
28101         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
28102         same reasons.
28103
28104 2005-10-05  Simon Josefsson  <jas@extundo.com>
28105
28106         * config/srclist.txt: Add glibc bug 1423 for md5.h.
28107
28108 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
28109
28110         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
28111         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
28112         needed, since the source code now assumes these .h files.
28113
28114 2005-10-05  Derek Price  <derek@ximbiot.com>
28115
28116         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
28117
28118 2005-10-05  Bruno Haible  <bruno@clisp.org>
28119
28120         * modules/stdint (License): Change to LGPL.
28121
28122 2005-10-04  Simon Josefsson  <jas@extundo.com>
28123
28124         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
28125         D. Baushke" <mdb@gnu.org>.
28126
28127 2005-10-04  Bruno Haible  <bruno@clisp.org>
28128
28129         * lib/verify.h (verify_true): Provide alternative definition for C++.
28130
28131 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
28132
28133         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
28134         (SSIZE_MAX): New macro, if not already defined.
28135         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
28136         than 2 GiB.
28137
28138 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28139
28140         Sync from coreutils.
28141         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
28142         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
28143         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
28144         ULLONG_MAX doesn't work with 2.7.2.1.
28145
28146 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28147
28148         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
28149         From Ben Pfaff.
28150
28151         * modules/exclude (Depends-on): Depend on verify.
28152         * modules/strtoimax (Depends-on): Likewise.
28153         * modules/utimecmp (Depends-on): Likewise.
28154
28155 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
28156
28157         * lib/exclude.c: Include verify.h.
28158         (verify): Remove.  All callers changed to use verify.h's version.
28159         * lib/strtoimax.c: Likewise.
28160         * lib/utimecmp.c: Likewis.e
28161
28162         Sync from coreutils.
28163         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
28164         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
28165         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
28166         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
28167         bother returning ENOSYS if settimeofday or stime fails; just let
28168         them return whatever errno they want to return.
28169         * lib/utimens.c: Include unistd.h, for dup2.
28170         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
28171         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
28172
28173 2005-10-02  Jim Meyering  <jim@meyering.net>
28174
28175         Sync from coreutils.
28176         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
28177         from glibc-2.2.5 that fails for read-only files.
28178
28179 2005-10-02  Jim Meyering  <jim@meyering.net>
28180
28181         Sync from coreutils.
28182         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
28183         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
28184         `#if HAVE_CONFIG_H'.
28185         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
28186         Remove AT_FDCWD test.
28187         Do not consume the fd unless successful.
28188         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
28189         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
28190         block, so that we don't even try to compile it if settimeofday is
28191         available.  This works around a compilation failure on OSF1 V5.1,
28192         due to stime requiring a `long int*' while tv_sec is `int'.
28193
28194 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
28195
28196         Sync from coreutils.
28197         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
28198         against `yes', rather than just testing for nonempty.
28199
28200 2005-10-01  Simon Josefsson  <jas@extundo.com>
28201
28202         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
28203         and Darwin.
28204
28205         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
28206         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
28207         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
28208         freeaddrinfo and gai_strerror are declared by the POSIX headers.
28209         Check if struct addrinfo is declared.
28210
28211 2005-10-01  Simon Josefsson  <jas@extundo.com>
28212
28213         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
28214         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
28215         AI_* and EAI_* definitions.  Protect function declarations.
28216
28217 2005-10-01  Jim Meyering  <jim@meyering.net>
28218
28219         Sync from coreutils.
28220
28221         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
28222         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
28223         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
28224         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28225         in the inet and nsl libraries.  Required on Solaris 5.7.
28226
28227 2005-10-01  Jim Meyering  <jim@meyering.net>
28228
28229         Sync from coreutils.
28230         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
28231         in the inet and nsl libraries.  Required on Solaris 5.7.
28232
28233 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
28234
28235         * lib/getdelim.c (getdelim): Remove unused variables.
28236
28237 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
28238
28239         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
28240         so that the code works even with ancient cpp.  Portability problem
28241         with GCC 2.7.2.1 reported by Thomas M.Ott.
28242
28243 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
28244
28245         * modules/regex (Depends-on): Add strcase.
28246
28247         * modules/gethostname (Licence): Change from GPL to LGPL, since
28248         gethostname.c is a trivial implementation of a standard library
28249         function.
28250         * modules/poll (License): Change from GPL to LGPL, since it's
28251         derived from LGPL code.
28252
28253 2005-09-27  Jim Meyering  <jim@meyering.net>
28254
28255         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
28256         HAVE_CONFIG_H.
28257
28258         * lib/intprops.h (signed_type_or_expr__): Define.
28259         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
28260         for unsigned types.
28261
28262 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
28263
28264         * lib/verify.h (verify_expr): Remove, replacing with:
28265         (verify_true): New macro that returns true instead of void.
28266         (verify_type__): Remove.
28267         (verify): Use verify_true rather than verify_type__.
28268
28269 2005-09-26  Bruno Haible  <bruno@clisp.org>
28270
28271         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
28272         is necessary.
28273         (lib_SOURCES): Remove mbchar.c.
28274         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
28275         (Files): Add m4/mbrtowc.m4.
28276         * modules/mbiter: Likewise.
28277         * modules/mbuiter: Likewise.
28278
28279 2005-09-26  Bruno Haible  <bruno@clisp.org>
28280
28281         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
28282         compile mbchar.c if they are not both present.
28283         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
28284         * m4/mbiter.m4 (gl_MBITER): Likewise.
28285         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
28286         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
28287         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
28288
28289 2005-09-25  Jim Meyering  <jim@meyering.net>
28290
28291         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
28292         also uses socklen_t.
28293
28294 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
28295
28296         * lib/utimens.c (ENOSYS): Define if not already defined.
28297         (futimens): Support having a null PATH if the file descriptor
28298         is nonnegative.
28299
28300         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
28301         Remove.
28302         (__attribute): Define to empty unless GCC 3.1 or later.
28303         This works around a core dump on OpenBSD 3.4, which has GCC
28304         2.95.3, which dumps core when given __attribute__(()).  It also
28305         simplifies other tests, since we really don't want to bother with
28306         worrying about which ancient version of GCC supported what.
28307         Original problem reported by Yoann Vandoorselaere, with part of
28308         the fix suggested by Derek Price.
28309
28310 2005-09-24  Jim Meyering  <jim@meyering.net>
28311
28312         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
28313         so we can once again use a positive bitfield width of 1 -- now we
28314         don't have to explain why we were using a bitfield width of 2.
28315
28316 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28317
28318         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
28319         and similarly for the other external symbols.  Problem reported
28320         by James Gallager.
28321
28322         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
28323         bug reported by Jim Meyering.
28324
28325         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
28326         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
28327         not needed, since socklen is a prerequisite module.
28328
28329 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
28330
28331         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
28332         Problem reported by Eric Blake.
28333         (getaddrinfo): Initialize se so that it's not garbage.
28334         Redo internal storage allocation so that it doesn't make unportable
28335         assumptions about alignment.
28336         Fix a memory leak.
28337
28338         * lib/utimens.c (futimens): Use futimesat if available.
28339         Prefer it to futimes since it doesn't have the futimes bug.
28340
28341         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
28342         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
28343         Instead, declare a function that returns a pointer to an array,
28344         and use verify_type__ to declare the size of the array.
28345         Problem and germ of a solution reported by Bruno Haible.
28346         (verify_type__): Use 2, not 1, for bitfield size, to avoid
28347         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
28348
28349 2005-09-23  Jim Meyering  <jim@meyering.net>
28350
28351         Sync from coreutils.
28352         Correct build failure (socklen_t not defined) on at least
28353         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
28354         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
28355
28356 2005-09-23  Jim Meyering  <jim@meyering.net>
28357
28358         * modules/getaddrinfo (Depends-on): Add socklen.
28359
28360 2005-09-23  Bruno Haible  <bruno@clisp.org>
28361
28362         * tests/test-verify.c: New file.
28363
28364 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28365
28366         Sync from coreutils.
28367
28368         * modules/argmatch (Depends-on): Add verify.
28369         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
28370         unistd-safer.
28371         * modules/save-cwd (Depends-on): Likewise.
28372
28373         * modules/openat (Files): Add lib/openat-die.c.
28374         (Depends-on): Remove error, exitfail.
28375         Add dirname.
28376
28377         * modules/verify: New file.
28378         * MODULES.html.sh (Diagnostics <assert.h>): New section,
28379         with "verify" module.
28380
28381 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28382
28383         Sync from coreutils.
28384
28385         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
28386         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
28387         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
28388         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
28389         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
28390         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
28391         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
28392         Don't bother checking for string.h, stdlib.h, unistd.h.
28393         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
28394         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
28395         module's job.
28396         * m4/jm-macros.m4 (gl_MACROS): Likewise.
28397         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
28398
28399         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
28400         (gl_GETDATE): Use it.
28401
28402         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
28403
28404 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28405
28406         Sync from coreutils.
28407
28408         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
28409         stat-time.h.
28410         * lib/argmatch.h: Include verify.h
28411         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
28412         (ARGMATCH_ASSERT): Remove; unused.
28413         * lib/canonicalize.c: Assume STDC_HEADERS.
28414         * lib/exclude.c: Include "strcase.h".
28415         * lib/regex_internal.h [!defined _LIBC]: Likewise.
28416         * lib/getusershell.c: Include stdio--.h rather than stdio.h
28417         and stdio-safer.h.
28418         (getusershell): Call fopen, not fopen_safer.
28419         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
28420         Do not include unistd-safer.h.
28421         (save_cwd): Don't call fd_safer; no longer needed
28422         now that we include fcntl--.h.
28423
28424         * lib/getdate.y (relative_time): New type.
28425         (RELATIVE_TIME_0): New constant.
28426         (parser_control): Use relative_time instead of doing it ourselves.
28427         (%union): Add new relative_time rel member.
28428         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
28429         Now typeless.
28430         (relunit, relunit_snumber): Now of type rel.
28431         (zone, rel, relunit, get_date): Adjust to above changes.
28432
28433         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
28434         Do not include unistd-safer.h.
28435         (getloadavg): Don't call fd_safer; no longer needed
28436         now that we include fcntl--.h.
28437
28438         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
28439         (make_dir_parents): Treat ENOSYS like EEXIST.
28440
28441         Improve quality of diagnostics on restore_cwd failure.
28442         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
28443         (make_dir_parents): Last arg is now int * (for errno), not bool *.
28444         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
28445         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
28446         each time through the loop.  Do not diagnose restore_cwd failure;
28447         that is the caller's job (and perhaps the caller does not care).
28448
28449         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
28450         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
28451         If the file already exists but is not a directory, don't bother
28452         to try to make its parents.
28453         Close potential file descriptor leak if we can't chdir("/") (!).
28454         Don't always return true if chdir($PWD) fails; return true only
28455         if the requested action was done successfully (except for the
28456         chdir($PWD)).
28457         Don't log final directory unless we actually made it.
28458         Refactor to avoid duplicate code to fix up permissions.
28459         Don't attempt to fix up parent permissions if chdir($PWD) fails.
28460
28461         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
28462         to make it a bit faster and (I hope) clearer.
28463         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
28464         Fix bug in formats like %2N.
28465
28466         * lib/verify.h: New file.
28467
28468 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
28469
28470         Sync from coreutils.
28471         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
28472
28473 2005-09-22  Jim Meyering  <jim@meyering.net>
28474
28475         Sync from coreutils.
28476
28477         * m4/lstat.m4 (gl_FUNC_LSTAT):
28478         Use AC_LIBSOURCES to require lstat.c and lstat.h.
28479         Remove obsolete comment.
28480         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
28481         * m4/xstrtod.m4: Likewise.
28482
28483         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
28484
28485 2005-09-22  Jim Meyering  <jim@meyering.net>
28486
28487         Sync from coreutils.
28488
28489         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
28490
28491         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
28492         the .tm_year member, since otherwise gcc-4.0 would now warn about
28493         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
28494
28495         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
28496         order to avoid an unsuppressible warning from gcc on 64-bit systems.
28497
28498         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
28499         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
28500         when run in a time zone for which daylight savings time is in effect
28501         for the starting date.
28502
28503         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
28504         stop us from restricting permissions of just-created absolute-named
28505         directories.
28506         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
28507         to restore initial working directory.
28508         * lib/mkdir-p.c (make_dir_parents): New parameter:
28509         different_working_dir, to tell caller if/when we change the working
28510         directory and are unable to return to the initial one.
28511         * lib/mkdir-p.h (make_dir_parents): Update prototype.
28512         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
28513         `return false'.  This fixes a bug introduced on 2004-07-30.
28514
28515         * lib/openat.c (fdopendir): Be sure to close the supplied
28516         file descriptor before returning.  This makes our replacement
28517         implementation a little closer to Solaris's, where fdopendir
28518         ties the file descriptor to the returned DIR* pointer.
28519         * lib/openat.c (unlinkat): New function.
28520         * lib/openat.h (unlinkat): Add prototype.
28521         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
28522         (openat_restore_fail): Rename from openat_restore_die.
28523         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
28524
28525         Provide an alternative to exiting immediately upon save_cwd or
28526         restore_cwd failure.  Now, an application can arrange e.g.,
28527         to perform a longjump in that case.
28528         * lib/openat.c: Include dirname.h.
28529         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
28530         (rpl_openat, fdopendir, fstatat): Call openat_save_die
28531         and openat_restore_die rather than calling error directly.
28532         Don't include "error.h" or "exitfail.h"; they're no longer needed.
28533
28534         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
28535         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
28536         define.
28537
28538         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
28539         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
28540                             int utc, int nanoseconds);
28541         Background:
28542         date should not have to allocate a megabyte of virtual memory to
28543         handle a format argument like +%1048575T.  When implemented with
28544         strftime, it must allocate such a buffer, use strftime to fill it
28545         in, print it, then free it.
28546         With fprintftime, it simply prints everything and exits.
28547         With no need for memory allocation, that's one fewer way to fail.
28548         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
28549         optional field width, not before, so we accept %9:z, not %:9z.
28550         (my_strftime): Be sure to use L_('x') for literals.
28551
28552         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
28553         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
28554         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
28555         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
28556         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
28557         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
28558         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
28559         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
28560         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
28561         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
28562         * lib/xgethostname.c, lib/xreadlink.c:
28563         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
28564
28565         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
28566         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
28567         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
28568         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
28569         and don't include <sys/file.h>).
28570
28571 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
28572
28573         Sync from coreutils.
28574
28575         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
28576         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
28577         [!LDAV_DONE]: Avoid unused variable warning.
28578
28579 2005-09-21  Bruno Haible  <bruno@clisp.org>
28580
28581         * lib/unicodeio.h (unicode_to_mb): New declaration.
28582
28583 2005-09-20  Derek Price  <derek@ximbiot.com>
28584
28585         * lib/getaddrinfo.c: Don't include <netdb.h> included from
28586         getaddrinfo.h.
28587
28588 2005-09-20  Bruno Haible  <bruno@clisp.org>
28589
28590         * gnulib-tool: Remove trailing slashes from the values specified for
28591         --source-base, --m4-base, --tests-base, --aux-dir.
28592         Suggested by Simon Josefsson <jas@extundo.com>.
28593
28594 2005-09-20  Bruno Haible  <bruno@clisp.org>
28595
28596         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
28597         func_modules_to_filelist, func_import, func_create_testdir): Make all
28598         sorting results locale-independent, so that gnulib-cache.m4 doesn't
28599         change when gnulib-tool is invoked in a different locale.
28600
28601 2005-09-19  Simon Josefsson  <jas@extundo.com>
28602
28603         * m4/socklen.m4: Fix typo.
28604
28605 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28606
28607         Use a consistent style for including <config.h>.
28608         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
28609         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
28610         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
28611         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
28612         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
28613         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
28614         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
28615         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
28616         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
28617         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
28618         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
28619         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
28620         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
28621         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
28622         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
28623         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
28624         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
28625         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
28626         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
28627         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
28628         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
28629         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
28630         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
28631         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
28632         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
28633         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
28634         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
28635         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
28636         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
28637         lib/xstrtoumax.c, lib/yesno.c:
28638         Standardize inclusion of config.h.
28639         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
28640         lib/inttostr.h:  Removed inclusion of config.h from header files.
28641         * lib/inttostr.c:  Adjusted in-tree users.
28642         * lib/timespec.h: Remove superfluous warning to include config.h.
28643         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
28644         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
28645         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
28646         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
28647         config.h with HAVE_CONFIG_H.
28648
28649 2005-09-19  Jim Meyering  <jim@meyering.net>
28650
28651         * modules/pathmax (License): Change to LGPL.
28652
28653 2005-09-19  Derek Price  <derek@ximbiot.com>
28654
28655         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
28656
28657 2005-09-19  Bruno Haible  <bruno@clisp.org>
28658
28659         * gnulib-tool (import): Provide default for --tests-base.
28660
28661 2005-09-19  Bruno Haible  <bruno@clisp.org>
28662
28663         * doc/quote.texi: New file, extracted from gnulib.texi.
28664         * doc/ctime.texi: New file, extracted from gnulib.texi.
28665         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
28666         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
28667         * doc/gnulib.texi: Include them.
28668
28669 2005-09-18  Bruno Haible  <bruno@clisp.org>
28670
28671         Portability fix.
28672         * gnulib-tool (func_readlink): New function.
28673         (func_ln_if_changed): Use it.
28674
28675 2005-09-18  Bruno Haible  <bruno@clisp.org>
28676
28677         * gnulib-tool: Support --with-tests also with --import.
28678         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
28679         (func_import): Use variables $testsbase and $inctests. Emit a
28680         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
28681         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
28682         SUBDIRS += $testsdir.
28683         (func_create_testdir): Update.
28684
28685 2005-09-18  Bruno Haible  <bruno@clisp.org>
28686
28687         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
28688         instead of $dry_run.
28689         (func_cp_if_changed, func_mv_if_changed): Remove functions.
28690         (func_ln_if_changed): Don't handle dry-run here.
28691         (func_import): In dry-run mode, detect more precisely which actions
28692         would be performed, and don't use "...ing" verbs.
28693
28694 2005-09-18  Bruno Haible  <bruno@clisp.org>
28695
28696         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
28697         (func_import): Use join on two temporary files instead of three nested
28698         loops, in order to determine which files are new or old.
28699
28700 2005-09-18  Bruno Haible  <bruno@clisp.org>
28701
28702         * gnulib-tool (func_import): Comment out code that spits out the
28703         new files with --dry-run.
28704
28705 2005-09-18  Bruno Haible  <bruno@clisp.org>
28706
28707         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
28708
28709 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28710
28711         * lib/stat-time.h: New file.
28712         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
28713         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
28714         in a different way.
28715         (timespec_cmp): New function.
28716         * lib/utimecmp.c: Include stat-time.h.
28717         (SYSCALL_RESOLUTION): Depend on whether various struct stat
28718         members exist, not on the obsolescent ST_MTIM_NSEC.
28719         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
28720
28721 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28722
28723         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
28724
28725 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
28726
28727         * MODULES.html.sh (File system functions): Add stat-time.
28728         * modules/stat-time: New file.
28729         * modules/timespec (Files): Remove m4/st_mtim.m4; this
28730         is now done in a different way, by the stat-time module.
28731         * modules/utimecmp (Depends-on): Add stat-time.
28732
28733 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
28734
28735         * m4/st_mtim.m4: Remove.  Superseded by...
28736         * m4/stat-time.m4: New file.
28737         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
28738         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
28739
28740 2005-09-15  Derek Price  <derek@ximbiot.com>
28741
28742         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
28743
28744 2005-09-15  Derek Price  <derek@ximbiot.com>
28745
28746         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
28747         * lib/regex_internal.c: Ditto, using this...
28748         (__GNUC_PREREQ): ...new macro.
28749         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
28750         using...
28751         (__GNUC_PREREQ): ...this new macro.
28752
28753         * lib/strstr.h: Include string.h. Define strstr as a macro here.
28754
28755 2005-09-15  Derek Price  <derek@ximbiot.com>
28756             Paul Eggert  <eggert@cs.ucla.edu>
28757
28758         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
28759         changes, consolidating in...
28760         * lib/regex_internal.h: ...this file.
28761
28762 2005-09-13  Jim Meyering  <jim@meyering.net>
28763
28764         * lib/canon-host.c: Filter through gnu indent and reword comments
28765         slightly.
28766         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
28767
28768 2005-09-13  Derek Price  <derek@ximbiot.com>
28769
28770         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
28771         failure.
28772         Reported by Jim Meyering  <jim@meyering.net>.
28773
28774 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
28775
28776         * lib/base64.c: Typo.
28777         (base64_encode): Put b64str in initialized data section.
28778
28779 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
28780
28781         Merge glibc and coreutils changes into gnulib, plus a few
28782         extra fixes.
28783         * lib/md5.c: Use #error rather than a string.
28784         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
28785         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
28786         (__attribute__): Define to empty for non recent-GCC.
28787         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
28788         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
28789         Renamed from their non-__ counterparts, with new macros replacing
28790         them if not _LIBC.  Add __THROW attribute.
28791         (rol): Remove.
28792         (struct md5_ctx): Align buffer if using GCC.
28793         * lib/sha1.h (struct sha1_ctx): Likewise.
28794         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
28795         The old name was backwards.
28796         (NOTSWAP): Remove; not used.
28797         (rol): New macro, moved here from md5.h.
28798         (sha1_process_block): Remove a FIXME that doesn't make sense.
28799
28800 2005-09-12  Derek Price  <derek@ximbiot.com>
28801
28802         Return usable errors from canon-host.
28803         * lib/canon-host.h: New file.
28804         * lib/canon-host.c (canon_host): Wrap...
28805         (canon_host_r): ...this new function, which now relies exclusively on
28806         getaddrinfo.
28807         (ch_strerror): New function.
28808         (last_cherror): New global.
28809         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
28810         interface.
28811         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
28812         void *.
28813         (freeaddrinfo): Free ai->ai_canonname when set.
28814
28815 2005-09-12  Derek Price  <derek@ximbiot.com>
28816
28817         Make canon-host require getaddrinfo.
28818         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
28819         AC_LIBSOURCE canon-host.h.  Call...
28820         (gl_PREREQ_CANON_HOST): ...this new function, which requires
28821         gl_GETADDRINFO.
28822         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
28823
28824 2005-09-12  Derek Price  <derek@ximbiot.com>
28825
28826         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
28827         LGPL.
28828         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
28829
28830 2005-09-12  Derek Price  <derek@ximbiot.com>
28831
28832         * lib/gai_strerror.c: Include config.h when available.  Include
28833         getaddrinfo.h before other headers to test interface.
28834         Reported by Larry Jones <lawrence.jones@ugs.com>.
28835
28836 2005-09-12  Derek Price  <derek@ximbiot.com>
28837             Paul Eggert  <eggert@cs.ucla.edu>
28838
28839         * modules/glob (Files): Add glob-libc.h.
28840
28841 2005-09-12  Derek Price  <derek@ximbiot.com>
28842             Paul Eggert  <eggert@cs.ucla.edu>
28843
28844         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
28845         glob_.h, glob-libc.h.
28846         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
28847
28848 2005-09-12  Derek Price  <derek@ximbiot.com>
28849             Paul Eggert  <eggert@cs.ucla.edu>
28850
28851         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
28852         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
28853         protecting things that should be done only in gnulib contexts.
28854         * lib/glob_.h: New file, containing only the glob things needed for
28855         gnulib.
28856         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
28857         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
28858         (glob, globfree, glob_pattern_p): Now defined simply in terms of
28859         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
28860         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
28861         and to respect the namespace rules better.
28862
28863 2005-09-08  Simon Josefsson  <jas@extundo.com>
28864
28865         * modules/socklen: New file.
28866
28867 2005-09-08  Simon Josefsson  <jas@extundo.com>
28868
28869         * m4/socklen.m4: New file.
28870
28871 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28872
28873         * modules/utimens (Files): Add m4/utimbuf.m4, since
28874         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
28875         Reported by Sergey Poznyakoff.
28876
28877 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28878
28879         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
28880         definitions, since that's the preferred style in glibc.
28881         Fix a minor spacing issue, and update copyright notice to match
28882         glibc's.
28883
28884 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
28885
28886         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
28887
28888 2005-09-06  Simon Josefsson  <jas@extundo.com>
28889
28890         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
28891         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
28892
28893 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28894
28895         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
28896         warning.
28897
28898 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
28899
28900         * config/srclist.txt: Add glibc bug 1302.
28901
28902 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
28903
28904         Change bitset word type from unsigned int to unsigned long int,
28905         as this has better performance on typical 64-bit hosts.
28906         Port bitset code to hosts with unusual word sizes.
28907         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
28908         (build_collating_symbol):
28909         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
28910         argument is a bitset.  This is merely a style issue, but it makes
28911         it clearer that an entire array is expected.
28912         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
28913         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
28914         Port to the case where bitset_word is not the same as unsigned int.
28915         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
28916         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
28917         Likewise.
28918         * lib/regexec.c (check_dst_limits_calc_pos_1,
28919         check_subexp_matching_top):
28920         (build_trtable, group_nodes_into_DFAstates):
28921         Likewise.
28922         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
28923         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
28924         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
28925         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
28926         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
28927         * lib/regcomp.c (optimize_subexps, lower_subexp):
28928         Work even if bitset_word has holes in its bitwise representation.
28929         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
28930         * lib/regexec.c (check_dst_limits_calc_pos_1,
28931         check_subexp_matching_top):
28932         Likewise.
28933         * lib/regex_internal.c (re_string_reconstruct):
28934         Don't assume UCHAR_MAX == 255.
28935         * lib/regex_internal.h (bitset_set_all): Likewise.
28936         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
28937         All uses changed.
28938         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
28939         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
28940         All uses changed.
28941         (BITSET_WORD_MAX): New macro.
28942         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
28943         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
28944         (bitset_empty, bitset_copy):
28945         Prefer sizeof (bitset) to multiplying it out ourselves.
28946         (bitset_not_merge): Remove; unused.
28947         (bitset_contain): Return bool, not unsigned int with one bit on.
28948         All callers changed.
28949         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
28950         alignment than re_node_set; do this by defining a new internal
28951         type struct dests_alloc and using it to allocate memory.
28952
28953 2005-09-05  Bruno Haible  <bruno@clisp.org>
28954
28955         * gnulib-tool (func_import): Fix comparison in handling of symbolic
28956         links.
28957
28958 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
28959
28960         * modules/size_max (Makefile.am): Add size_max.h
28961
28962 2005-09-04  Derek Price  <derek@ximbiot.com>
28963
28964         * gnulib-tool (func_import): Fix reversed $symbolic logic.
28965
28966 2005-09-03  Simon Josefsson  <jas@extundo.com>
28967
28968         * gnulib-tool: Fix typo.
28969
28970 2005-09-03  Simon Josefsson  <jas@extundo.com>
28971
28972         * config/srclist.txt: Add glibc bug 1293.
28973
28974 2005-09-03  Derek Price  <derek@ximbiot.com>
28975
28976         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
28977         From Larry Jones <lawrence.jones@ugs.com>.
28978
28979 2005-09-02  Simon Josefsson  <jas@extundo.com>
28980
28981         * modules/socklen: New file.
28982
28983 2005-09-02  Simon Josefsson  <jas@extundo.com>
28984
28985         * modules/havelib: New module.
28986
28987         * modules/gettext, modules/iconv, modules/lock, modules/readline:
28988         Use havelib.
28989
28990 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
28991
28992         Check for arithmetic overflow when calculating sizes, to prevent
28993         some buffer-overflow issues.  These patches are conservative, in the
28994         sense that when I couldn't determine whether an overflow was possible,
28995         I inserted a run-time check.
28996         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
28997         macros.
28998         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
28999         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
29000         (re_xnrealloc, re_x2nrealloc): New inline functions.
29001         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
29002         parse_bracket_exp):
29003         (build_equiv_class, build_charclass): Check for arithmetic overflow
29004         in size expression calculations.
29005         * lib/regex_internal.c (re_string_realloc_buffers):
29006         (build_wcs_upper_buffer, re_node_set_add_intersect):
29007         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
29008         (re_dfa_add_node, register_state): Likewise.
29009         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
29010         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
29011         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
29012         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
29013
29014 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
29015
29016         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
29017         m4/ulonglong.m4.  Problem reported by Martin Lambers.
29018
29019 2005-09-02  Bruno Haible  <bruno@clisp.org>
29020
29021         Support for lib vs. lib64 distinction on biarch platforms.
29022         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
29023         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
29024         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
29025
29026 2005-09-02  Bruno Haible  <bruno@clisp.org>
29027
29028         * gnulib-tool (import): In the other first-use case, provide defaults
29029         as well.
29030
29031 2005-09-02  Bruno Haible  <bruno@clisp.org>
29032
29033         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
29034         patches not yet found in the latest gettext release.
29035
29036 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
29037
29038         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
29039         to avoid a collision with bits/local_lim.h in glibc.
29040         All uses changed.  Problem reported by Dmitry V. Levin in
29041         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
29042
29043         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
29044         bugs in int versus size_t comparisons.
29045         (re_string_context_at): Fix bug where the code assumed that
29046         Idx is signed.
29047
29048         Use bool where appropriate.
29049         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
29050         All callers changed.
29051         (calc_eclosure_iter): Likewise, for ROOT arg.
29052         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
29053         (build_charclass_op): Likewise, for NON_MATCH arg.
29054         * lib/regex_internal.c (re_string_allocate, re_string_construct):
29055         (re_string_construct_common): Likewise, for ICASE arg.
29056         * lib/regexec.c (re_search_2_stub, re_search_stub):
29057         Likewise, for RET_LEN arg.
29058         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
29059         (set_regs): Likewise, for FL_BACKTRACK arg.
29060         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
29061         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
29062         (calc_eclosure_iter, parse_bracket_exp):
29063         Use bool for internal variables that are booleans.
29064         * lib/regexec.c (re_search_internal, check_matching,
29065         proceed_next_node):
29066         (set_regs, build_sifted_states, sift_states_bkref):
29067         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
29068         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
29069         (find_collation_sequence_value):
29070         Likewise.
29071         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
29072         (re_node_set_compare):
29073         Return bool, not int. All callers changed.
29074         * lib/regexec.c (check_halt_node_context, check_dst_limits):
29075         (build_trtable, check_node_accept): Likewise.
29076         * lib/regex_internal.h: Include stdbool.h.
29077
29078         Fix bugs uncovered when converting to bool.
29079         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
29080         failure instead of charging ahead blindly.
29081         * lib/regex_internal.c (register_state): Likewise.
29082         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
29083         for freeing internal storage.
29084         (group_nodes_into_DFA_states): Use unsigned int, not int, for
29085         bitset pieces used as boolean, to avoid undefined behavior
29086         on hosts that do int overflow checking.
29087
29088 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
29089
29090         * config/srclist.txt: Add glibc bugs 1285-1287.
29091
29092 2005-09-01  Jim Meyering  <jim@meyering.net>
29093
29094         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
29095         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
29096         Require gl_STAT_MACROS, too.
29097
29098 2005-09-01  Bruno Haible  <bruno@clisp.org>
29099
29100         * gnulib-tool (import): In the first-use case, provide defaults.
29101
29102 2005-09-01  Bruno Haible  <bruno@clisp.org>
29103
29104         * gnulib-tool (func_import): Remove the .tmp files.
29105
29106 2005-09-01  Bruno Haible  <bruno@clisp.org>
29107
29108         * gnulib-tool (func_import): Fix handling of symbolic links.
29109
29110 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29111
29112         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
29113         old glibc regex code mishandles strings longer than 2**31 bytes.
29114         This patch fixes this when the regex code is used in gnulib
29115         (i.e., outside glibc).
29116
29117         This patch should not affect the use of the regex code inside
29118         glibc.  No doubt this problem also needs to be handled for glibc
29119         as well, but the result will be an incompatible change to the
29120         glibc ABI, and the old ABI will have to be supported too.  That
29121         can be the the subject for another patch.
29122
29123         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
29124         governing whether the rest of this patch is active.  By default,
29125         the macro is disabled and the patch has no effect.
29126         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
29127         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
29128         (struct re_pattern_buffer, re_search, re_search_2, re_match):
29129         (re_match_2, re_set_registers): Use the new types.
29130         * lib/regex_internal.h (Idx, re_hashval_t): New types.
29131         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
29132         New macros.
29133         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
29134         (re_string_context_at, bin_tree_t, re_dfastate_t):
29135         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
29136         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
29137         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
29138         (re_string_char_size_at, re_string_wchar_at):
29139         (re_string_elem_size_at):
29140         Use the new types and macros to port to 64-bit hosts.
29141         Use unsigned types for internal values, so that the code
29142         mostly works even for arrays larger than SSIZE_MAX.
29143         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
29144         (search_duplicated_node, calc_eclosure_iter, fetch_number):
29145         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
29146         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
29147         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
29148         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
29149         (calc_inveclosure, parse_dup_op, build_range_exp):
29150         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
29151         (fetch_number, create_token_tree, mark_opt_subexp):
29152         Likewise.
29153         * lib/regex_internal.c (re_string_construct_common,
29154         create_ci_newstate):
29155         (create_cd_newstate, re_string_allocate, re_string_construct):
29156         (re_string_realloc_buffers, build_wcs_upper_buffer):
29157         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
29158         (re_string_reconstruct, re_string_peek_byte_case):
29159         (re_string_fetch_byte_case, re_string_context_at):
29160         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
29161         (re_node_set_init_copy, re_node_set_add_intersect):
29162         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29163         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29164         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
29165         (re_acquire_state, re_acquire_state_context, register_state):
29166         Likewise.
29167         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
29168         search_cur_bkref_entry):
29169         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
29170         (re_search_internal, re_search_2_stub, re_search_stub)
29171         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
29172         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
29173         (update_cur_sifted_state, check_dst_limits):
29174         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
29175         (check_subexp_limits, sift_states_bkref, merge_state_array):
29176         (check_subexp_matching_top, get_subexp, get_subexp_sub):
29177         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
29178         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
29179         (expand_bkref_cache, check_node_accept_bytes):
29180         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
29181         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
29182         (acquire_init_state_context, check_halt_node_context):
29183         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
29184         (sift_states_backward, clean_state_log_if_needed):
29185         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
29186         (find_recover_state, transit_state_sb, transit_state_mb):
29187         (transit_state_bkref, build_trtable, match_ctx_clean):
29188         Likewise.
29189         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
29190         to work around an assumption that REG_MISSING is negative.
29191
29192         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
29193         (seek_collating_symbol_entry) [defined _LIBC]:
29194         (lookup_collation_sequence_value) [defined _LIBC]:
29195         (build_range_exp, build_collating_symbol) [defined _LIBC]:
29196         Use prototypes rather than old-style function definitions.
29197         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
29198         (transit_state_sb) [0]:
29199         (find_collation_sequence_value) [defined _LIBC]: Likewise.
29200
29201         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
29202         rm_eo.
29203
29204         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
29205         (optimize_subexps, lower_subexp):
29206         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
29207         since the signed shift might overflow.  Use 1u<<31 instead.
29208         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
29209         Likewise.
29210         * lib/regexec.c (check_dst_limits_calc_pos_1,
29211         check_subexp_matching_top): Likewise.
29212
29213         * lib/regcomp.c (optimize_subexps, lower_subexp):
29214         Use CHAR_BIT rather than 8, for clarity.
29215         * lib/regexec.c (check_dst_limits_calc_pos_1):
29216         (check_subexp_matching_top): Likewise.
29217         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
29218         have to worry about portability issues when shifting it left.
29219         Remove no-longer-needed test for table_size > 0.
29220         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
29221         in a word, as the resulting behavior is undefined.
29222         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
29223         in one case, a <= should have been an <, and in another case the
29224         whole test was missing.
29225         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
29226         the standard name CHAR_BIT.
29227         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
29228         this is not true on one's complement and signed-magnitude hosts.
29229
29230         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
29231         next_last_offset.
29232         (struct re_dfa_t): Remove unused member states_alloc.
29233         * lib/regcomp.c (init_dfa): Don't initialize unused members.
29234
29235 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29236
29237         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
29238         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
29239         and large-file glibc and in 32-bit large-file Solaris.
29240
29241 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29242
29243         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
29244         lengths fit in regoff_t; this isn't true if regoff_t is the same
29245         width as size_t.
29246         * lib/regex.c (re_search_internal): 5th arg is LAST_START
29247         (= START + RANGE) instead of RANGE.  This avoids overflow
29248         problems when regoff_t is the same width as size_t.
29249         All callers changed.
29250         (re_search_2_stub): Check for overflow when adding the
29251         sizes of the two strings.
29252         (re_search_stub): Check for overflow when adding START
29253         to RANGE; if it occurs, substitute the extreme value.
29254
29255 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29256
29257         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
29258
29259 2005-08-31  Jim Meyering  <jim@meyering.net>
29260
29261         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
29262         a pointer-to-const.
29263         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
29264         (register_state): Likewise.
29265         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
29266         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
29267         (group_nodes_into_DFAstates): Likewise.
29268
29269 2005-08-31  Jim Meyering  <jim@meyering.net>
29270
29271         * check-module: Add a FIXME comment.
29272
29273 2005-08-31  Eric Blake  <ebb9@byu.net>
29274
29275         * modules/unistd-safer (Files): Add unistd--.h.
29276         * modules/stdio-safer (Files): Add stdio--.h.
29277
29278 2005-08-31  Derek Price  <derek@ximbiot.com>
29279
29280         * lib/getdelim.c (getdelim): Return EOF on EOF.
29281         Reported by Larry Jones <lawrence.jones@ugs.com>.
29282
29283 2005-08-31  Bruno Haible  <bruno@clisp.org>
29284
29285         Avoid unnecessary diffs in the generated lib/Makefile.am.
29286         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
29287         the generated files.
29288         (func_import): Don't set cmd.
29289
29290 2005-08-31  Bruno Haible  <bruno@clisp.org>
29291
29292         * lib/strstr.c: Include <stddef.h>, for NULL.
29293         * lib/strcasestr.c: Likewise.
29294         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
29295
29296 2005-08-31  Bruno Haible  <bruno@clisp.org>
29297
29298         * gnulib-tool: New option --macro-prefix.
29299         (func_import): Use macro_prefix.
29300         (import): Handle option --macro-prefix.
29301
29302 2005-08-31  Bruno Haible  <bruno@clisp.org>
29303
29304         * gnulib-tool (import): Rename most ac_* variables to cached_*.
29305         Also use new variables cached_lgpl, cached_libtool.
29306
29307 2005-08-31  Bruno Haible  <bruno@clisp.org>
29308
29309         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
29310         always instantiating them.
29311
29312 2005-08-31  Bruno Haible  <bruno@clisp.org>
29313
29314         * gnulib-tool (func_import): Read the previous cached settings
29315         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
29316         earlier added by gnulib but are now dropped. Warn when a gnulib file
29317         overwrites a non-gnulib file.
29318
29319 2005-08-31  Bruno Haible  <bruno@clisp.org>
29320
29321         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
29322         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
29323         projects that don't keep autogenerated files in CVS. Put into
29324         actioncmd only the specified modules, not the transitive closure.
29325
29326 2005-08-31  Bruno Haible  <bruno@clisp.org>
29327
29328         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
29329         Create directories that shall be filled.
29330         (import): Don't look for gl_* macros in configure.ac. Recurse across
29331         all directories containing a gnulib-cache.m4 files, if meaningful.
29332
29333 2005-08-31  Bruno Haible  <bruno@clisp.org>
29334
29335         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
29336         (import): Set seen_libtool when we see gl_LIBTOOL.
29337
29338 2005-08-31  Bruno Haible  <bruno@clisp.org>
29339
29340         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
29341         declaration macro definitions from generated gnulib.m4.
29342
29343 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
29344
29345         * lib/iconvme.h: Add prototype for iconv_alloc.
29346
29347 2005-08-29  Simon Josefsson  <jas@extundo.com>
29348
29349         * lib/iconvme.c: Fix errno.
29350
29351 2005-08-29  Bruno Haible  <bruno@clisp.org>
29352
29353         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
29354         that it works when the directory contains spaces.
29355
29356 2005-08-29  Bruno Haible  <bruno@clisp.org>
29357
29358         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
29359
29360 2005-08-29  Bruno Haible  <bruno@clisp.org>
29361
29362         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
29363         Emit more advice.
29364
29365 2005-08-29  Bruno Haible  <bruno@clisp.org>
29366         and Stepan Kasal  <kasal@ucw.cz>
29367
29368         * check-module: If more parameters are given, check each of them
29369         separately; add more exceptions, as noted by Jim Meyering.
29370         (check_module): New procedure.
29371         (%exempt_header): Now contains all exceptions.
29372
29373 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
29374
29375         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
29376
29377 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
29378
29379         * lib/iconvme.c: Split iconv_string into iconv_alloc.
29380
29381 2005-08-28  Bruno Haible  <bruno@clisp.org>
29382
29383         * m4/gnulib-tool.m4: New file.
29384
29385 2005-08-27  Jim Meyering  <jim@meyering.net>
29386
29387         * modules/unistd-safer (Files): Add pipe-safer.c.
29388         * modules/fcntl-safer (Files): Add creat-safer.c.
29389
29390 2005-08-27  Jim Meyering  <jim@meyering.net>
29391
29392         * m4/stdlib-safer.m4: New file.  From coreutils.
29393         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
29394         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
29395         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
29396         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
29397         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
29398
29399 2005-08-27  Jim Meyering  <jim@meyering.net>
29400
29401         * lib/fopen-safer.c: Merge minor changes from coreutils.
29402         * lib/dup-safer.c: Likewise.
29403         * lib/fd-safer.c: Likewise.
29404
29405         Merge from coreutils.
29406         * lib/stdio--.h: New file.
29407         * lib/stdlib--.h: New file.
29408         * lib/mkstemp-safer.c: New file.
29409
29410         GNU tar needs these.
29411         * lib/pipe-safer.c: New file.
29412         * lib/creat-safer.c: New file.
29413         * lib/fcntl--.h (creat): Define to creat_safer.
29414         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
29415         * lib/unistd--.h (pipe): Define to pipe_safer.
29416         * lib/unistd-safer.h: Declare pipe_safer.
29417
29418 2005-08-26  Simon Josefsson  <jas@extundo.com>
29419
29420         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
29421         Haible <bruno@clisp.org>.
29422
29423 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
29424
29425         * lib/regex_internal.h: Remove all references to
29426         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
29427         or better.
29428         (bitset_not, bitset_merge, bitset_not_merge):
29429         (bitset_mask, re_string_allocate, re_string_construct):
29430         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
29431         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
29432         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
29433         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
29434         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29435         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29436         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
29437         (re_acquire_state_context):
29438         Remove unnecessary forward decls.
29439         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
29440         Put __attribute at function definition,
29441         now that the function decl has been removed.
29442         * lib/regex_internal.c (re_string_peek_byte_case):
29443         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
29444         Likewise.
29445
29446 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
29447
29448         * m4/regex.m4: Add AC_PREREQ(2.50).
29449         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
29450
29451 2005-08-25  Simon Josefsson  <jas@extundo.com>
29452
29453         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
29454         __fsetlocking.
29455
29456 2005-08-25  Simon Josefsson  <jas@extundo.com>
29457
29458         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
29459         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
29460         GLIBC specific code.
29461
29462 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29463
29464         Make regex safe for g++.  This fixes one real bug (an "err"
29465         that should have been "*err").  g++ problem reported by
29466         Sam Steingold.
29467         * lib/regex_internal.h (re_calloc): New macro, consistent with
29468         re_malloc etc.  All callers of calloc changed to use re_calloc.
29469         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
29470         not int.  All callers changed.
29471         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
29472         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
29473         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
29474         (find_recover_state): Change "err" to "*err"; this fixes what
29475         appears to be a real bug.
29476         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
29477         versus int.
29478
29479 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29480
29481         * modules/regex (Depends-on): Add malloc, since the code
29482         assumes that !malloc(0) means failure.
29483
29484 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29485
29486         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
29487
29488         alloca modernization/simplification for regex.
29489         * lib/regex.c: Remove portability cruft for alloca.  This no longer
29490         needs to be at the start of the file, and can be moved into
29491         regex_internal.h and simplified.
29492         * lib/regex_internal.h: Include <alloca.h>.
29493         (__libc_use_alloca) [!defined _LIBC]: New macro.
29494         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
29495         now works outside glibc.
29496
29497 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29498
29499         * config/srclist.txt: Add glibc bugs 1241, 1245.
29500
29501 2005-08-25  Jim Meyering  <jim@meyering.net>
29502
29503         * lib/open-safer.c: Include <config.h>.
29504         Otherwise, we'd lose LARGEFILE support in any file using
29505         e.g. "fcntl--.h"
29506
29507 2005-08-25  Bruno Haible  <bruno@clisp.org>
29508
29509         * m4/minmax.m4: Require autoconf 2.52.
29510         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
29511         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
29512         alternatives of translit over the alphabet.
29513         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
29514
29515 2005-08-24  Simon Josefsson  <jas@extundo.com>
29516
29517         * tests/test-getpass.c: New file.
29518
29519 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29520
29521         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
29522         for GNU regex features.
29523
29524 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29525
29526         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
29527         * lib/regex.h (regerror): Likewise.
29528
29529         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
29530         requires this.  (The code never needed it.)
29531
29532         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
29533         All uses of recently-renamed identifiers changed to use the new,
29534         POSIX-compliant names.  The code will build and run just fine
29535         without these changes, but it's better to eat our own dog food
29536         and use the standard-conforming names.
29537
29538         * lib/regex.h: Fix a multitude of POSIX name space violations.
29539         These changes have an effect only for programs that define
29540         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
29541         do not change anything for programs compiled in the normal way.
29542         Also, there is no effect on the ABI.
29543
29544         (_REGEX_SOURCE): New macro.
29545         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
29546         defined and _GNU_SOURCE is not; this fixes a name space violation.
29547
29548         Rename the following macros to obey POSIX requirements.
29549         The old names are still visible as macros if _REGEX_SOURCE is defined.
29550         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
29551         RE_BACKSLASH_ESCAPE_IN_LISTS.
29552         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
29553         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
29554         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
29555         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
29556         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
29557         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
29558         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
29559         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
29560         (REG_INTERVALS): renamed from RE_INTERVALS.
29561         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
29562         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
29563         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
29564         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
29565         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
29566         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
29567         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
29568         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
29569         RE_UNMATCHED_RIGHT_PAREN_ORD.
29570         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
29571         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
29572         (REG_DEBUG): renamed from RE_DEBUG.
29573         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
29574         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
29575         unusual, since we can't clash with the POSIX REG_ICASE.
29576         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
29577         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
29578         (REG_NO_SUB): renamed from RE_NO_SUB.
29579         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
29580         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
29581         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
29582         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
29583         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
29584         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
29585         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
29586         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
29587         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
29588         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
29589         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
29590         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
29591         RE_SYNTAX_POSIX_MINIMAL_BASIC.
29592         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
29593         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
29594         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
29595         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
29596         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
29597         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
29598         (REG_FIXED): Renamed from REGS_FIXED.
29599         (REG_NREGS): Renamed from RE_NREGS.
29600
29601         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
29602         of other REG_* macros, since POSIX says the user is allowed to
29603         #undef these macros selectively.
29604
29605         (reg_errcode_t): Update comment stating what other tables need
29606         to be consistent.
29607
29608         Rename the following enum values to obey POSIX requirements.
29609         The old names are still visible as macros.
29610         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
29611         is not defined, since GNU is supposed to be a superset of POSIX as
29612         much as possible, and since we want reg_errcode_t to be a signed
29613         type for implementation consistency.
29614         (_REG_NOERROR): Renamed from REG_NOERROR.
29615         (_REG_NOMATCH): Renamed from REG_NOMATCH.
29616         (_REG_BADPAT): Renamed from REG_BADPAT.
29617         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
29618         (_REG_ECTYPE): Renamed from REG_ECTYPE.
29619         (_REG_EESCAPE): Renamed from REG_EESCAPE.
29620         (_REG_ESUBREG): Renamed from REG_ESUBREG.
29621         (_REG_EBRACK): Renamed from REG_EBRACK.
29622         (_REG_EPAREN): Renamed from REG_EPAREN.
29623         (_REG_EBRACE): Renamed from REG_EBRACE.
29624         (_REG_BADBR): Renamed from REG_BADBR.
29625         (_REG_ERANGE): Renamed from REG_ERANGE.
29626         (_REG_ESPACE): Renamed from REG_ESPACE.
29627         (_REG_BADRPT): Renamed from REG_BADRPT.
29628         (_REG_EEND): Renamed from REG_EEND.
29629         (_REG_ESIZE): Renamed from REG_ESIZE.
29630         (_REG_ERPAREN): Renamed from REG_ERPAREN.
29631         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
29632         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
29633         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
29634         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
29635
29636         (_REG_RE_NAME, _REG_RM_NAME): New macros.
29637         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
29638         changed.  But support the old name if the new one is not defined
29639         and if _REGEX_SOURCE.
29640
29641         Change the following member names in struct re_pattern_buffer.
29642         The old names are still supported if !_REGEX_SOURCE.
29643         The new names are always supported, regardless of _REGEX_SOURCE.
29644         (re_buffer): Renamed from buffer.
29645         (re_allocated): Renamed from allocated.
29646         (re_used): Renamed from used.
29647         (re_syntax): Renamed from syntax.
29648         (re_fastmap): Renamed from fastmap.
29649         (re_translate): Renamed from translate.
29650         (re_can_be_null): Renamed from can_be_null.
29651         (re_regs_allocated): Renamed from regs_allocated.
29652         (re_fastmap_accurate): Renamed from fastmap_accurate.
29653         (re_no_sub): Renamed from no_sub.
29654         (re_not_bol): Renamed from not_bol.
29655         (re_not_eol): Renamed from not_eol.
29656         (re_newline_anchor): Renamed from newline_anchor.
29657
29658         Change the following member names in struct re_registers.
29659         The old names are still supported if !_REGEX_SOURCE.
29660         The new names are always supported, regardless of _REGEX_SOURCE.
29661         (rm_num_regs): Renamed from num_regs.
29662         (rm_start): Renamed from start.
29663         (rm_end): Renamed from end.
29664
29665         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
29666         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
29667         Prepend __ to parameter names.
29668
29669         Undo yesterday's changes.
29670
29671 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
29672
29673         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
29674         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
29675         lib/regex.c.
29676
29677 2005-08-24  Jim Meyering  <jim@meyering.net>
29678
29679         Sync from coreutils.
29680         * m4/fcntl-safer.m4: New file.
29681
29682         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
29683         and object files for this module.
29684
29685 2005-08-24  Jim Meyering  <jim@meyering.net>
29686
29687         Sync from coreutils.
29688         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
29689
29690 2005-08-24  Jim Meyering  <jim@meyering.net>
29691
29692         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
29693         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
29694
29695 2005-08-24  Jim Meyering  <jim@meyering.net>
29696
29697         * modules/fcntl-safer: New module.
29698         * modules/fts (Depends-on): Add fcntl-safer.
29699         * MODULES.html.sh (File descriptor based Input/Output):
29700         Add fcntl-safer.
29701
29702 2005-08-24  Bruno Haible  <bruno@clisp.org>
29703
29704         Support for unit test modules.
29705         * modules/README: Mention tests modules.
29706         * modules/TEMPLATE-TESTS: New file.
29707         * gnulib-tool: New options --extract-tests-module, --with-tests and
29708         --tests-base (unused for the moment).
29709         (testsbase, inctests): New variables.
29710         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
29711         (func_verify_module): Exclude TEMPLATE-TESTS.
29712         (func_verify_nontests_module, func_verify_tests_module): New functions.
29713         (func_get_dependencies): Add implicit dependency for tests modules.
29714         (func_get_tests_module): New function.
29715         (func_modules_transitive_closure): When --with-tests was specified,
29716         include the unit tests as well, unless explicitly avoided.
29717         (func_emit_lib_Makefile_am): Ignore the tests modules here.
29718         (func_emit_tests_Makefile_am): New function.
29719         (func_create_testdir): When --with-tests was specified, emit a
29720         tests/ directory.
29721         * MODULES.html.sh (Future developments): Update.
29722
29723 2005-08-24  Bruno Haible  <bruno@clisp.org>
29724
29725         * modules/tls-tests: New file.
29726         * tests/test-tls.c: New file, from GNU gettext.
29727
29728 2005-08-24  Bruno Haible  <bruno@clisp.org>
29729
29730         * modules/lock-tests: New file.
29731         * tests/test-lock.c: New file, from GNU gettext.
29732
29733 2005-08-24  Bruno Haible  <bruno@clisp.org>
29734
29735         * lib/lock.h: Add multiple inclusion guard.
29736         * lib/tls.h: Add multiple inclusion guard.
29737
29738 2005-08-24  Bruno Haible  <bruno@clisp.org>
29739
29740         * gnulib-tool: Add support for the --aux-dir option to
29741         --create-testdir, --create-megatestdir, --test, --megatest.
29742         (func_create_testdir, func_create_megatestdir): Optionally emit a
29743         AC_CONFIG_AUX_DIR directive.
29744         (create-testdir, create-megatestdir, test, megatest): Provide a
29745         default value for $auxdir.
29746
29747 2005-08-24  Bruno Haible  <bruno@clisp.org>
29748
29749         * gnulib-tool (import): Use compound statement instead of subshell
29750         where possible.
29751
29752 2005-08-24  Bruno Haible  <bruno@clisp.org>
29753
29754         * gnulib-tool (import): Change --aux-dir default to "build-aux".
29755
29756 2005-08-24  Bruno Haible  <bruno@clisp.org>
29757
29758         * gnulib-tool (func_version): Update.
29759
29760 2005-08-24  Bruno Haible  <bruno@clisp.org>
29761
29762         * gnulib-tool (func_import, func_create_testdir,
29763         func_create_megatestdir): Quote all autoconf macro arguments.
29764
29765 2005-08-24  Bruno Haible  <bruno@clisp.org>
29766
29767         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
29768         option --force, because --force causes the aclocal.m4 of each
29769         subdirectory to be newer than the corresponding config.h.in.
29770
29771 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29772
29773         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
29774         All contents moved to gl_REGEX.
29775         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
29776         assume that it does.
29777
29778 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29779
29780         * lib/regex.h (REG_NOSYS)
29781         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
29782         Define, since POSIX requires it as of 2001.
29783         (_REG_ENOSYS)
29784         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
29785         New private symbol, used to keep the enum signed in all cases.
29786         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
29787         Youngman in
29788         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
29789
29790         * lib/regex_internal.c (re_string_skip_chars, register_state):
29791         (calc_state_hash):
29792         Remove forward decls; no longer needed now that we use prototypes.
29793         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
29794         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
29795         (clean_state_log_if_needed): Likewise.
29796
29797 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
29798
29799         * config/srclist.txt: Add glibc bugs 1231-1233.
29800
29801 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29802
29803         Fix problems reported by Sam Steingold in
29804         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
29805         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
29806         assumed that reg_errcode_t is a signed type, which is not
29807         necessarily true if _XOPEN_SOURCE is not defined.
29808         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
29809         since some compilers warn about it otherwise.
29810
29811 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29812
29813         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
29814         (init_word_char, create_initial_state, duplicate_node_closure):
29815         (fetch_token, peek_token_bracket, build_range_exp):
29816         (build_collating_symbol): Remove forward decls; no longer needed
29817         now that we use prototypes.
29818
29819         * lib/regcomp.c:
29820         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
29821         (re_compile_fastmap_iter, regcomp, regerror, regfree):
29822         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
29823         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
29824         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
29825         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
29826         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
29827         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
29828         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
29829         (build_range_exp, build_collating_symbol, parse_bracket_exp):
29830         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
29831         (build_charclass, build_charclass_op, fetch_number, create_tree):
29832         (create_token_tree, mark_opt_subexp, duplicate_tree):
29833         Use prototypes rather than old-style definitions.
29834
29835         * lib/regex_internal.c:
29836         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
29837         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
29838         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
29839         (re_string_reconstruct, re_string_peek_byte_case):
29840         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
29841         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
29842         (re_node_set_init_copy, re_node_set_add_intersect):
29843         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
29844         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
29845         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
29846         (re_acquire_state, re_acquire_state_context, register_state):
29847         (create_ci_newstate, create_cd_newstate, free_state):
29848         Likewise.
29849         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
29850         re_search_2):
29851         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
29852         (re_search_internal, prune_impossible_nodes):
29853         (acquire_init_state_context, check_matching, static):
29854         (check_halt_node_context, check_halt_state_context, proceed_next_node):
29855         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
29856         (update_regs, sift_states_backward, build_sifted_states):
29857         (clean_state_log_if_needed, merge_state_array):
29858         (update_cur_sifted_state, add_epsilon_src_nodes):
29859         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
29860         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
29861         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
29862         (find_recover_state, check_subexp_matching_top, transit_state_mb):
29863         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
29864         (check_arrival, check_arrival_add_next_nodes):
29865         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
29866         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
29867         (check_node_accept_bytes, check_node_accept, extend_buffers):
29868         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
29869         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
29870         (sift_ctx_init):
29871         Likewise.
29872
29873         * lib/regex_internal.h:
29874         (re_string_allocate, re_string_construct, re_string_reconstruct):
29875         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
29876         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
29877         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
29878         (re_string_context_at, re_string_peek_byte_case):
29879         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
29880         is defined, since we now use prototypes always.
29881
29882         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
29883         C89 or better.  All uses removed.
29884
29885 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
29886
29887         * config/srclist.txt: Add glibc bugs 1220-1227.
29888
29889 2005-08-20  Jim Meyering  <jim@meyering.net>
29890
29891         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
29892         of unused local, dfa.
29893
29894 2005-08-20  Bruno Haible  <bruno@clisp.org>
29895
29896         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
29897
29898 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29899
29900         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
29901         (re_node_set_insert_last, re_dfa_add_node):
29902         Rename local variables to avoid GCC shadowing warnings.
29903
29904 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29905
29906         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
29907         [defined lint]: Suppress bogus uninitialized-variable warnings.
29908
29909         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
29910         and let the caller return REG_ESPACE if out of space.  This
29911         removes an uninitialied-variable warning with GCC 4.0.1, and also
29912         avoids taking the address of a local variable.  All callers
29913         changed.
29914
29915 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29916
29917         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
29918         $LIBCSRC/posix/regexec.c.
29919         Add glibc bug 1217 for regcomp.c.
29920
29921 2005-08-19  Jim Meyering  <jim@meyering.net>
29922
29923         * lib/regexec.c (proceed_next_node): Redo local variables to
29924         avoid GCC shadowing warnings.
29925
29926 2005-08-18  Bruno Haible  <bruno@clisp.org>
29927
29928         * lib/strstr.c (strstr): Fix return value in multibyte case.
29929         * lib/strcasestr.c (strcasestr): Likewise.
29930
29931 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
29932
29933         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
29934
29935 2005-08-17  Jim Meyering  <jim@meyering.net>
29936
29937         Make the %s format (seconds since the epoch) work for a negative
29938         number and when used with a zero-padded field width, e.g. %015s.
29939
29940         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
29941         label so that it precedes the code to set `digits'.  Otherwise,
29942         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
29943         print `00-22'.  Now, it prints `-0022', as it should.
29944
29945 2005-08-17  Bruno Haible  <bruno@clisp.org>
29946
29947         * modules/strstr (Files): Add m4/mbrtowc.m4.
29948         (Depends-on): Add mbuiter.
29949
29950 2005-08-17  Bruno Haible  <bruno@clisp.org>
29951
29952         * modules/strcasestr: New file.
29953         * MODULES.html.sh (String handling, based on ANSI C 89): Add
29954         strcasestr.
29955
29956 2005-08-17  Bruno Haible  <bruno@clisp.org>
29957
29958         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
29959
29960 2005-08-17  Bruno Haible  <bruno@clisp.org>
29961
29962         * modules/mbuiter: New file.
29963         * MODULES.html.sh (Extended multibyte and wide character utilities):
29964         Add mbuiter.
29965
29966 2005-08-17  Bruno Haible  <bruno@clisp.org>
29967
29968         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
29969         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
29970
29971 2005-08-17  Bruno Haible  <bruno@clisp.org>
29972
29973         * m4/strcasestr.m4: New file.
29974
29975 2005-08-17  Bruno Haible  <bruno@clisp.org>
29976
29977         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
29978         * lib/strstr.c: Completely rewritten, with multibyte locale support.
29979
29980 2005-08-17  Bruno Haible  <bruno@clisp.org>
29981
29982         * lib/strcasestr.h: New file.
29983         * lib/strcasestr.c: New file.
29984
29985 2005-08-17  Bruno Haible  <bruno@clisp.org>
29986
29987         * lib/strcasecmp.c: Use mbuiter.h.
29988
29989 2005-08-17  Bruno Haible  <bruno@clisp.org>
29990
29991         * lib/mbuiter.h: New file.
29992
29993 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
29994
29995         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
29996         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
29997         and gl_GETOPT are both invoked via different paths (as happens
29998         with GNU tar CVS because it uses both argp and getopt), the former
29999         wins.
30000
30001 2005-08-16  Bruno Haible  <bruno@clisp.org>
30002
30003         * modules/tls: New file.
30004         * MODULES.html.sh (Multithreading): Add tls.
30005
30006 2005-08-16  Bruno Haible  <bruno@clisp.org>
30007
30008         * modules/strnlen1: New file.
30009         * MODULES.html.sh (String handling): Add strnlen1.
30010
30011 2005-08-16  Bruno Haible  <bruno@clisp.org>
30012
30013         * modules/strcase (Files): Add m4/mbrtowc.m4.
30014         (Depends-on): Add strnlen1, mbchar.
30015
30016 2005-08-16  Bruno Haible  <bruno@clisp.org>
30017
30018         * modules/mbiter: New file.
30019         * MODULES.html.sh (Extended multibyte and wide character utilities):
30020         Add mbiter.
30021
30022 2005-08-16  Bruno Haible  <bruno@clisp.org>
30023
30024         * modules/mbfile: New file.
30025         * MODULES.html.sh (Extended multibyte and wide character utilities):
30026         Add mbfile.
30027
30028 2005-08-16  Bruno Haible  <bruno@clisp.org>
30029
30030         * modules/mbchar: New file.
30031         * MODULES.html.sh (Extended multibyte and wide character utilities):
30032         New section.
30033
30034 2005-08-16  Bruno Haible  <bruno@clisp.org>
30035
30036         * m4/tls.m4: New file, from GNU gettext.
30037
30038 2005-08-16  Bruno Haible  <bruno@clisp.org>
30039
30040         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
30041         always.
30042         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
30043
30044 2005-08-16  Bruno Haible  <bruno@clisp.org>
30045
30046         * m4/mbiter.m4: New file.
30047
30048 2005-08-16  Bruno Haible  <bruno@clisp.org>
30049
30050         * m4/mbfile.m4: New file.
30051
30052 2005-08-16  Bruno Haible  <bruno@clisp.org>
30053
30054         * m4/mbchar.m4: New file.
30055
30056 2005-08-16  Bruno Haible  <bruno@clisp.org>
30057
30058         * lib/tls.h: New file, from GNU gettext.
30059         * lib/tls.c: New file, from GNU gettext.
30060
30061 2005-08-16  Bruno Haible  <bruno@clisp.org>
30062
30063         * lib/strnlen1.h: New file.
30064         * lib/strnlen1.c: New file.
30065
30066 2005-08-16  Bruno Haible  <bruno@clisp.org>
30067
30068         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
30069         (mbi_init): Update.
30070         (mbi_avail, mbi_advance): Let the iteration end before the terminating
30071         NUL byte, not after it.
30072
30073 2005-08-16  Bruno Haible  <bruno@clisp.org>
30074
30075         * lib/strcase.h (strcasecmp): Add note in comments.
30076         * lib/strncasecmp.c: Use code from strcasecmp.c.
30077         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
30078         (strcasecmp): Work correctly in multibyte locales.
30079
30080 2005-08-16  Bruno Haible  <bruno@clisp.org>
30081
30082         * lib/mbiter.h: New file.
30083
30084 2005-08-16  Bruno Haible  <bruno@clisp.org>
30085
30086         * lib/mbfile.h: New file.
30087
30088 2005-08-16  Bruno Haible  <bruno@clisp.org>
30089
30090         * lib/mbchar.h: New file.
30091         * lib/mbchar.c: New file.
30092
30093 2005-08-16  Bruno Haible  <bruno@clisp.org>
30094
30095         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
30096         the valid ones. Makes the comparison operations transitive:
30097         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
30098         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
30099
30100 2005-08-15  Simon Josefsson  <jas@extundo.com>
30101
30102         * modules/ssize_t (License): Change to 'unlimited'.
30103
30104         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
30105
30106 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30107
30108         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
30109         Add comments for each pending glibc patch.
30110
30111 2005-08-15  Bruno Haible  <bruno@clisp.org>
30112
30113         * lib/regex.h (__restrict_arr): Don't define to __restrict if
30114         __cplusplus is defined.
30115
30116 2005-08-14  Jim Meyering  <jim@meyering.net>
30117
30118         Sync from coreutils.
30119
30120         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
30121         Use the hash-table-based cycle-detection code not just when
30122         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
30123         Reported by James Youngman in
30124         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
30125         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
30126         FTS_TIGHT_CYCLE_CHECK.
30127         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
30128         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
30129         once again.
30130         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
30131         * lib/fts.c (fd_safer): Remove decl.
30132         Include fcntl--.h rather than unistd-safer.h
30133         (fts_safe_changedir): Don't call fd_safer; no longer needed
30134         now that we include fcntl--.h.
30135
30136 2005-08-12  Simon Josefsson  <jas@extundo.com>
30137
30138         * modules/getndelim2: Use ssize_t module.
30139         * modules/getnline: Likewise.
30140         * modules/safe-read: Likewise.
30141         * modules/xreadlink: Likewise.
30142
30143         * modules/ssize_t: New file.
30144
30145 2005-08-12  Simon Josefsson  <jas@extundo.com>
30146
30147         * m4/readline.m4: Look for termcap, curses or ncurses if required.
30148
30149 2005-08-12  Simon Josefsson  <jas@extundo.com>
30150
30151         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
30152         ssize_t.
30153
30154 2005-08-12  Simon Josefsson  <jas@extundo.com>
30155
30156         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
30157         readline, getdelim and check_version.
30158         (Support for systems lacking ISO C 99: Sizes of integer types):
30159         Add size_max.
30160
30161 2005-08-12  Bruno Haible  <bruno@clisp.org>
30162
30163         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
30164
30165 2005-08-11  Simon Josefsson  <jas@extundo.com>
30166
30167         * modules/readline: New file.
30168
30169         * modules/strnlen (Files): Add strnlen.h.
30170
30171 2005-08-11  Simon Josefsson  <jas@extundo.com>
30172
30173         * m4/readline.m4: New file.
30174
30175 2005-08-11  Simon Josefsson  <jas@extundo.com>
30176
30177         * lib/readline.h, readline.c: New file.
30178
30179 2005-08-11  Simon Josefsson  <jas@extundo.com>
30180
30181         * doc/gnulib.texi (Initial import, Finishing touches): Mention
30182         gl_AVOID.
30183
30184 2005-08-11  Bruno Haible  <bruno@clisp.org>
30185
30186         * lib/strnlen.h (strnlen): Change parameter name to match comment.
30187
30188 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
30189
30190         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
30191
30192 2005-08-10  Simon Josefsson  <jas@extundo.com>
30193
30194         * tests/test-iconvme.c: New file.
30195
30196 2005-08-10  Simon Josefsson  <jas@extundo.com>
30197
30198         * m4/strnlen.m4: New file.
30199
30200         * m4/strndup.m4: Don't check for strnlen declaration, done in
30201         strnlen.m4.
30202
30203 2005-08-10  Simon Josefsson  <jas@extundo.com>
30204
30205         * lib/strndup.c: Use strnlen.h.
30206
30207         * lib/strnlen.h: New file.
30208
30209 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
30210
30211         * README: Typos.
30212
30213 2005-08-02  Simon Josefsson  <jas@extundo.com>
30214
30215         * modules/readline: New file.
30216
30217 2005-08-02  Simon Josefsson  <jas@extundo.com>
30218
30219         * modules/getdelim: New file.
30220
30221         * modules/getline: Rewrite, don't use getndelim2.
30222
30223 2005-08-02  Simon Josefsson  <jas@extundo.com>
30224
30225         * m4/getline.m4: Separate out getdelim stuff into separate module.
30226
30227         * m4/getdelim.m4: New file.
30228
30229 2005-08-02  Simon Josefsson  <jas@extundo.com>
30230
30231         * lib/getline.h, getline.c: Rewrite.
30232
30233         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
30234
30235 2005-07-31  Bruno Haible  <bruno@clisp.org>
30236
30237         * lib/lock.h (gl_lock_initializer): New macro.
30238         (gl_lock_define_initialized): Use it.
30239         (gl_rwlock_initializer): New macro.
30240         (gl_rwlock_define_initialized): Use it.
30241         (gl_recursive_lock_initializer): New macro.
30242         (gl_recursive_lock_define_initialized): Use it.
30243
30244 2005-07-30  Karl Berry  <karl@gnu.org>
30245
30246         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
30247         Report from Ben Pfaff, regarding getopt.
30248
30249 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
30250
30251         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
30252         normal way.
30253         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
30254         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
30255         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
30256         (gl_GETOPT): Use the new macros.  Most of the implementation
30257         is moved to the new macros.  This is for programs like Emacs
30258         that don't want all the functionality of gl_GETOPT.
30259
30260 2005-07-26  Bruno Haible  <bruno@clisp.org>
30261
30262         * m4/lock.m4: Update from GNU gettext.
30263
30264 2005-07-26  Bruno Haible  <bruno@clisp.org>
30265
30266         * lib/lock.h: Update from GNU gettext.
30267         * lib/lock.c: Update from GNU gettext.
30268
30269 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
30270
30271         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
30272         obsolescent AC_TRY_RUN.  Include the default includes files, for
30273         'exit'.
30274
30275 2005-07-24  Bruno Haible  <bruno@clisp.org>
30276
30277         * modules/visibility: New file.
30278         * MODULES.html.sh (Misc): Add visibility.
30279
30280 2005-07-24  Bruno Haible  <bruno@clisp.org>
30281
30282         * m4/visibility.m4: New file.
30283
30284 2005-07-24  Bruno Haible  <bruno@clisp.org>
30285
30286         * doc/visibility.texi: New file.
30287
30288 2005-07-22  Bruno Haible  <bruno@clisp.org>
30289
30290         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
30291         $(ALLOCA_H), redundant through BUILT_SOURCES.
30292         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
30293         redundant through BUILT_SOURCES.
30294         * modules/byteswap (Makefile.am): Remove explicit dependency on
30295         $(BYTESWAP_H), redundant through BUILT_SOURCES.
30296         * modules/fnmatch (Makefile.am): Remove explicit dependency on
30297         $(FNMATCH_H), redundant through BUILT_SOURCES.
30298         * modules/getopt (Makefile.am): Remove explicit dependency on
30299         $(GETOPT_H), redundant through BUILT_SOURCES.
30300         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
30301         redundant through BUILT_SOURCES.
30302         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
30303         redundant through BUILT_SOURCES.
30304         * modules/stdbool (Makefile.am): Remove explicit dependency on
30305         $(STDBOOL_H), redundant through BUILT_SOURCES.
30306         * modules/stdint (Makefile.am): Remove explicit dependency on
30307         $(STDINT_H), redundant through BUILT_SOURCES.
30308         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
30309         Remove explicit dependency on $(SYSEXITS_H).
30310         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
30311
30312 2005-07-18  Simon Josefsson  <jas@extundo.com>
30313
30314         * lib/check-version.c (check_version): Accept identical versions too.
30315
30316 2005-07-18  Bruno Haible  <bruno@clisp.org>
30317
30318         * modules/lock: New file.
30319         * MODULES.html.sh (Multithreading): New section.
30320
30321 2005-07-18  Bruno Haible  <bruno@clisp.org>
30322
30323         * m4/lock.m4: New file, from GNU gettext.
30324
30325 2005-07-18  Bruno Haible  <bruno@clisp.org>
30326
30327         * lib/lock.h: New file, from GNU gettext.
30328         * lib/lock.c: New file, from GNU gettext.
30329
30330 2005-07-18  Bruno Haible  <bruno@clisp.org>
30331
30332         * lib/lock.h (gl_once_t): New type.
30333         (gl_once_define, gl_once): New macros.
30334         * lib/lock.c (fresh_once): New variable.
30335         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
30336         functions.
30337
30338 2005-07-16  Simon Josefsson  <jas@extundo.com>
30339
30340         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
30341         workaround, suggested by Bruno.
30342
30343 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30344
30345         * modules/xalloc (Depends-on): Add xalloc-die.
30346         * modules/xvasprintf (Depends-on): Add xalloc-die.
30347
30348 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
30349
30350         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
30351         with a minor change.
30352
30353 2005-07-15  Bruno Haible  <bruno@clisp.org>
30354
30355         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
30356         When using lib/poll.c, define poll as rpl_poll.
30357
30358 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
30359
30360         * modules/argp (Depends-on): Remove unlocked-io.
30361
30362 2005-07-14  Derek Price  <derek@ximbiot.com>
30363
30364         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
30365         for glob symlink bug.
30366
30367 2005-07-14  Bruno Haible  <bruno@clisp.org>
30368
30369         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
30370         Instead, test for *_unlocked function declarations directly.
30371
30372 2005-07-11  Simon Josefsson  <jas@extundo.com>
30373
30374         * modules/size_max: New file.
30375
30376         * modules/xsize: Depend on size_max module for size_max.m4.
30377
30378 2005-07-11  Simon Josefsson  <jas@extundo.com>
30379
30380         * lib/size_max.h: New file.
30381
30382 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
30383
30384         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
30385         copyright symbol and the year.
30386         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
30387         (version_etc_va): Use parameterized copyright notice.
30388         Reword to conform to the current GNU coding standards.
30389
30390 2005-07-11  Karl Berry  <karl@gnu.org>
30391
30392         * doc/gnulib.texi (Quoting): new node.
30393         (Initial import): more info, from Patrice.
30394
30395 2005-07-11  Bruno Haible  <bruno@clisp.org>
30396
30397         * gnulib-tool (func_usage): Document option --avoid.
30398         (Command line options): Handle --avoid.
30399         (func_acceptable): New function.
30400         (func_modules_transitive_closure): Use it.
30401
30402 2005-07-11  Bruno Haible  <bruno@clisp.org>
30403
30404         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
30405         Reported by Jim Meyering.
30406
30407 2005-07-10  Bruno Haible  <bruno@clisp.org>
30408
30409         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
30410         Needed when size_t is smaller than 'unsigned int'.
30411         Reported by Paul Eggert.
30412
30413 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30414
30415         * modules/argp (Depends-on): Add unlocked-io
30416
30417 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30418
30419         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
30420         block of defines.
30421
30422 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
30423
30424         * config/srclist.txt: Comment out regcomp.c, since we have a porting
30425         fix now.
30426
30427 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
30428         and Paul Eggert  <eggert@cs.ucla.edu>
30429
30430         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
30431         in wint_t, not wchar_t.  Remove now-unnecessary cast.
30432
30433 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30434
30435         * modules/regex (Files): Add lib/regex_internal.c,
30436         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
30437         (Depends-on): Add extensions.
30438         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
30439
30440 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30441
30442         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
30443         pathconf.
30444         * m4/same.m4 (gl_SAME): Likewise.
30445         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
30446
30447         * m4/regex.m4: Adjust to new libc regex implementation.
30448         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
30449         all the .c and .h parts of (the new) regex.
30450         Quote the m4 stuff better.
30451         Check for RE_ICASE bug of old gnulib.
30452         Check for REG_STARTEND of recent libc.
30453         Rename local variables from jm_* to gl_*.
30454         Quote operand of "test -f".
30455         Say "recent enough" version of libc, not "version 2".
30456         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
30457         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
30458         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
30459         Remove check for btowc, isascii.
30460         Require AM_LANGINFO_CODESET.
30461
30462 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30463
30464         * lib/regex.c, regex.h: Sync from libc.
30465         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
30466         * lib/regexec.c:
30467         New files, synced from libc, except that regex_internal.h
30468         currently has a small porting fix.
30469
30470 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
30471
30472         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
30473         regex_internal.c, regexec.c.
30474         Add regex_internal.h too, but as a comment, since the libc version
30475         is currently broken in gnulib mode.
30476
30477 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
30478
30479         Support programs like Emacs that use gnulib but not gettext.
30480         * MODULES.html.sh (Internationalization functions): Add gettext-h.
30481         * modules/gettext-h: New file.
30482         * modules/gettext (Files): Remove lib/gettext.h.
30483         (Depends-on): Add gettext-h.
30484         (Makefile.am): Remove lib_SOURCES.
30485         * modules/argmatch, modules/c-stack, modules/closeout:
30486         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
30487         * modules/execute, modules/file-type, modules/getaddrinfo:
30488         * modules/getopt, modules/human, modules/javacomp:
30489         * modules/javaexec, modules/mkdir-p, modules/obstack:
30490         * modules/openat, modules/pagealign_alloc, modules/pipe:
30491         * modules/quotearg, modules/regex, modules/rpmatch:
30492         * modules/unicodeio, modules/userspec, modules/version-etc:
30493         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
30494         * modules/xsetenv:
30495         Depend on gettext-h, not gettext.
30496
30497 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
30498
30499         * gnulib-tool (func_import): Add support for 'public domain' license.
30500         * modules/alloca, modules/atexit, modules/memmove:
30501         Now public domain, not GPL.
30502         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
30503         * modules/realloc, modules/strerror, modules/strtod:
30504         Now LGPL, not GPL.
30505
30506 2005-07-05  Bruno Haible  <bruno@clisp.org>
30507
30508         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
30509         autoconf CVS. Needed for mingw.
30510
30511 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30512
30513         Remove the dependency of the strftime module on the tzset module.
30514         * modules/strftime (Depends-on): Remove dependency on tzset.
30515
30516 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30517
30518         Remove the dependency of the strftime module on the tzset module.
30519         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
30520         gl_FUNC_TZSET_CLOBBER.
30521
30522 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
30523
30524         Remove the dependency of the strftime module on the tzset module.
30525         * lib/strftime.c (my_strftime)
30526         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
30527         Copy the input structure, to work around some of the bug with
30528         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
30529         Solaris releases, you should also use the tzset module, but we won't
30530         require it as a dependency any more since we don't want LGPLed code
30531         to depend on GPLed code.
30532
30533 2005-07-02  Jim Meyering  <jim@meyering.net>
30534
30535         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
30536         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
30537         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
30538         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
30539
30540 2005-07-02  Jim Meyering  <jim@meyering.net>
30541
30542         * lib/backupfile.c (backup_args): Change a `0' to NULL.
30543
30544 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
30545
30546         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
30547         declares only 'struct timespec;' (!).
30548
30549 2005-07-01  Jim Meyering  <jim@meyering.net>
30550
30551         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
30552         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
30553         * lib/save-cwd.c, tempname.c:
30554         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
30555         and don't include <sys/file.h>).
30556
30557 2005-06-29  Jim Meyering  <jim@meyering.net>
30558
30559         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
30560         type name.  Use the variable name instead.
30561         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
30562         Likewise.
30563
30564 2005-06-28  Simon Josefsson  <jas@extundo.com>
30565
30566         * modules/check-version (Files): Add check-version.m4.
30567
30568 2005-06-28  Simon Josefsson  <jas@extundo.com>
30569
30570         * m4/check-version.m4: New file, suggested by Jim Meyering
30571         <jim@meyering.net>.
30572
30573 2005-06-28  Simon Josefsson  <jas@extundo.com>
30574
30575         * lib/check-version.h, lib/check-version.c: New files.
30576
30577 2005-06-28  Simon Josefsson  <jas@extundo.com>
30578
30579         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
30580         collision with global variable.  Better indentation.  Don't
30581         increment buffer pointer beyond buffer end.  Based on comments
30582         from Paul Eggert <eggert@cs.ucla.edu>.
30583
30584         * lib/base64.h: Indent.
30585
30586 2005-06-28  Simon Josefsson  <jas@extundo.com>
30587
30588         * doc/gnulib.texi (Library version handling): New section.
30589
30590 2005-06-28  Jim Meyering  <jim@meyering.net>
30591
30592         * check-module (find_included_lib_files): Hard-code another
30593         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
30594         but modules/fts-lgpl (correctly) does not list those files.
30595
30596         * modules/canonicalize (Files): Add lib/pathmax.h.
30597
30598 2005-06-25  Simon Josefsson  <jas@extundo.com>
30599
30600         * modules/check-version: New file.
30601
30602 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
30603
30604         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
30605         initializer of struct addrinfo, as an indication that we don't
30606         care how many members the structure has.
30607
30608 2005-06-24  Derek Price  <derek@ximbiot.com>
30609         and Bruno Haible  <bruno@clisp.org>
30610
30611         Remove stat module & update lstat.
30612         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
30613         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30614         * m4/stat.m4: Remove this file.
30615
30616 2005-06-24  Derek Price  <derek@ximbiot.com>
30617         and Bruno Haible  <bruno@clisp.org>
30618
30619         Remove stat module & update lstat.
30620         * lib/stat.c: Remove this file...
30621         (slash_aware_lstat): ...moving this content and its support...
30622         * lib/lstat.c (rpl_lstat): ...into here.
30623         * lib/lstat.h: New file.
30624
30625 2005-06-24  Derek Price  <derek@ximbiot.com>
30626         and Bruno Haible  <bruno@clisp.org>
30627
30628         Remove stat module & update lstat.
30629         * config/srclist.txt (libc sources): Remove stat.
30630
30631 2005-06-24  Derek Price  <derek@ximbiot.com>
30632         and Bruno Haible  <bruno@clisp.org>
30633
30634         Remove stat module & update lstat.
30635         * MODULES.html.sh (stat): Remove.
30636         * MODULES.html: Regenerated.
30637         * modules/lstat (Description): Correct function name.
30638         (Files): Add "lstat.h".
30639         (Depends-on): Remove stat, add xalloc, stat-macros.
30640         * modules/stat: Remove this file.
30641         (Include): Add "lstat.h", remove <sys/stat.h>.
30642
30643 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
30644
30645         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
30646         (ranged_convert): Don't save conversion in a temporary struct.
30647         This causes a warning with GCC 4.0.0, and anyway in the typical
30648         case it's not worth the extra 100 bytes or so of code.
30649         (ranged_convert, __mktime_internal): When calling a function via a
30650         pointer P, use P () rather than (*P) (), as we now assume C89 or
30651         better.
30652
30653 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30654
30655         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
30656         "who -r" failed to give output.  Problem reported by Tim Waugh.
30657
30658         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
30659         (xcalloc): Use it to avoid needless tests.
30660         Problem reported by Jim Meyering.
30661
30662 2005-06-20  Derek Price  <derek@ximbiot.com>
30663
30664         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
30665         unnecessary for Autoconfs > 2.59c.
30666
30667 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30668
30669         * lib/argp.h (__option_is_short): Check upper limit of
30670         __key. Isprint() requires its argument to have the value
30671         of an unsigned char or EOF.
30672
30673 2005-06-16  Jim Meyering  <jim@meyering.net>
30674
30675         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
30676         when either N or S is zero.
30677
30678 2005-06-16  Derek Price  <derek@ximbiot.com>
30679
30680         * m4/bison.m4: Declare YACC & YFLAGS precious.
30681
30682 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
30683
30684         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
30685         multibyte string or pattern, fall back on unibyte matching.
30686         Problem reported by James Youngman.
30687
30688 2005-06-08  Bruno Haible  <bruno@clisp.org>
30689
30690         * modules/csharpcomp: New file.
30691         * MODULES.html.sh (C#): Add csharpcomp.
30692
30693 2005-06-08  Bruno Haible  <bruno@clisp.org>
30694
30695         * m4/csharpcomp.m4: New file, from GNU gettext.
30696
30697 2005-06-08  Bruno Haible  <bruno@clisp.org>
30698
30699         * lib/csharpcomp.h: New file, from GNU gettext.
30700         * lib/csharpcomp.c: New file, from GNU gettext.
30701         * lib/csharpcomp.sh.in: New file, from GNU gettext.
30702
30703 2005-06-08  Bruno Haible  <bruno@clisp.org>
30704
30705         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
30706         warning on mingw.
30707
30708 2005-06-07  Derek Price  <derek@ximbiot.com>
30709
30710         Sync from CVS.
30711         * lib/glob_.h: Indent nested #ifdef.
30712
30713 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30714
30715         Sync from coreutils.
30716         Use "file name" when talking about file names, instead of "filename"
30717         or "path", as per the GNU coding standards.
30718         * lib/mkdir-p.c: Renamed from makepath.c.
30719         (make_dir_parents): Renamed from make_path.  All callers changed.
30720         * lib/mkdir-p.h: Likewise.  All includers changed.
30721         * lib/filenamecat.c: Renamed from path-concat.c.
30722         (file_name_concat): Renamed from path_concat.  All callers changed.
30723         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
30724         * lib/filenamecat.h: Likewise.  All includers changed.
30725         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
30726         in comments or local variable names.
30727         * lib/basename.c: Likewise.
30728         * lib/canonicalize.c, canonicalize.h: Likewise.
30729         * lib/dirname.c, dirname.h: Likewise.
30730         * lib/euidaccess.c: Likewise.
30731         * lib/exclude.c: Likewise
30732         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
30733         * lib/fsusage.c, fsuage.h: Likewise.
30734         * lib/fts.c, fts_.h: Likewise.
30735         * lib/getcwd.c: Likewise.
30736         * lib/getloadavg.c: Likewise.
30737         * lib/mkstemp.c: Likewise.
30738         * lib/mountlist.c, mountlist.h: Likewise.
30739         * lib/openat.c, openat.h: Likewise.
30740         * lib/readlink-stub.c: Likewise.
30741         * lib/readutmp.c, readutmp.h: Likewise.
30742         * lib/rename.c: Likewise.
30743         * lib/rmdir.c: Likewise.
30744         * lib/same.c: Likewise.
30745         * lib/savedir.c: Likewise.
30746         * lib/stripslash.c: Likewise.
30747         * lib/tempname.c: Likewise.
30748         * lib/xreadlink.c: Likewise.
30749         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
30750         All uses changed.
30751         * lib/exclude.h: Likewise.
30752
30753         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
30754         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30755         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
30756         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30757         * lib/pathmax.h: Include <limits.h> unconditionally, since other
30758         files have been getting away with it for years (MORE/BSD 4.3
30759         is extinct now).
30760         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
30761         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
30762
30763         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
30764         Define to 256, not 255, as per modern POSIX.
30765
30766 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30767
30768         Sync from coreutils.
30769         Use "file name" when talking about file names, instead of "filename"
30770         or "path", as per the GNU coding standards.
30771         * MODULES.html.sh: mkdir-p renamed from makepath.
30772         filenamecat renamed from path-concat.
30773         * modules/filenamecat: Renamed from modules/path-concat.
30774         (Files): filenamecat.h and filenamecat.c renamed from
30775         path-concat.h and path-concat.c.
30776         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
30777         (Include): filenamecat.h, not path-concat.h.
30778         * modules/mkdir-p: Renamed from modules/makepath.
30779         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
30780         makepath.c.
30781         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
30782         (Include): mkdir-p.h, not makepath.h.
30783
30784 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
30785
30786         Sync from coreutils.
30787         * m4/mkdir-p.m4: Renamed from makepath.m4.
30788         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
30789         Rename files from makepath.c to mkdir-p.c, and from
30790         makepath.h to mkdir-p.h.
30791         * m4/filenamecat.m4: Renamed from path-concat.m4.
30792         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
30793         Rename files from path-concat.c to filenamecat.c,
30794         and from path-concat.h to filenamecat.h.
30795         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
30796         "file name" in local variables or comments.
30797         * m4/rename.m4: Likewise.
30798
30799 2005-06-01  Bruno Haible  <bruno@clisp.org>
30800
30801         * modules/csharpexec: New file.
30802         * MODULES.html.sh (C#): New section.
30803
30804 2005-06-01  Bruno Haible  <bruno@clisp.org>
30805
30806         * m4/csharp.m4: New file, from GNU gettext.
30807         * m4/csharpexec.m4: New file, from GNU gettext.
30808
30809 2005-06-01  Bruno Haible  <bruno@clisp.org>
30810
30811         * lib/csharpexec.h: New file, from GNU gettext.
30812         * lib/csharpexec.c: New file, from GNU gettext.
30813         * lib/csharpexec.sh.in: New file, from GNU gettext.
30814
30815 2005-05-31  Derek Price  <derek@ximbiot.com>
30816             Paul Eggert  <eggert@cs.ucla.edu>
30817
30818         Sync from cvs.
30819         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30820
30821 2005-05-31  Derek Price  <derek@ximbiot.com>
30822             Paul Eggert  <eggert@cs.ucla.edu>
30823
30824         Sync from cvs.
30825         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
30826
30827 2005-05-29  Derek Price  <derek@ximbiot.com>
30828
30829         * config/srclist.txt (glob_.h, glob.c): Add these files.
30830
30831 2005-05-29  Derek Price  <derek@ximbiot.com>
30832
30833         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
30834         * modules/glob: New file.
30835         * modules/getlogin_r: Add link to POSIX spec in description.
30836
30837 2005-05-29  Derek Price  <derek@ximbiot.com>
30838             Paul Eggert  <eggert@cs.ucla.edu>
30839
30840         * m4/glob.m4: New file.
30841
30842 2005-05-29  Derek Price  <derek@ximbiot.com>
30843             Paul Eggert  <eggert@cs.ucla.edu>
30844
30845         * lib/glob_.h, lib/glob.c: New files.
30846
30847 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30848
30849         * modules/fts (Files): Remove m4/inttypes-pri.m4.
30850         * modules/fts-lgpl (Depends-on): Remove gettext.
30851
30852 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30853
30854         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
30855         and don't require gt_INTTYPES_PRI.
30856
30857 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
30858
30859         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
30860
30861         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
30862         the configuration hassle isn't worth it.
30863         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
30864         (LONGEST_MODIFIER, PRIuMAX): Remove.
30865
30866 2005-05-27  Bruno Haible  <bruno@clisp.org>
30867
30868         * lib/getlogin_r.h: Remove second include of <stddef.h>.
30869
30870 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
30871
30872         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
30873         _POSIX_PTHREAD_SEMANTICS for Solaris.
30874
30875 2005-05-25  Derek Price  <derek@ximbiot.com>
30876
30877         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
30878
30879 2005-05-25  Derek Price  <derek@ximbiot.com>
30880             Paul Eggert  <eggert@cs.ucla.edu>
30881
30882         * modules/getlogin_r, m4/getlogin_r.m4: New files.
30883         * lib/getlogin_r.c, getlogin_r.h: New files.
30884
30885 2005-05-25  Bruno Haible  <bruno@clisp.org>
30886             Derek Price  <derek@ximbiot.com>
30887
30888         * lib/getlogin_r.h: Simplify API documentation.
30889
30890 2005-05-23  Derek Price  <derek@ximbiot.com>
30891
30892         * modules/minmax (Files): Add m4/minmax.m4.
30893         (configure.ac): Add gl_MINMAX.
30894
30895 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
30896
30897         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
30898         so that unistd-safer.h (GPL'ed code) need not be included.
30899
30900 2005-05-22  Bruno Haible  <bruno@clisp.org>
30901
30902         * m4/minmax.m4: New file.
30903         Based on a patch by Derek Price <derek@ximbiot.com>.
30904
30905 2005-05-22  Bruno Haible  <bruno@clisp.org>
30906
30907         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
30908         (INT64_MIN): Fix definition.
30909         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
30910
30911         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
30912         NEED_SIGNED_INT_TYPES.
30913
30914         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
30915         HAVE_SYSTEM_INTTYPES.
30916
30917 2005-05-22  Bruno Haible  <bruno@clisp.org>
30918
30919         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
30920         Also include <sys/param.h> if it defines MIN, MAX.
30921         Based on a patch by Derek Price <derek@ximbiot.com>.
30922
30923 2005-05-21  Jim Meyering  <jim@meyering.net>
30924
30925         * modules/fts (Files): Add m4/inttypes-pri.m4.
30926         (Depends-on): Add lstat and remove gettext.  Alphabetize.
30927
30928 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30929
30930         New fts module.
30931         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
30932         (setup_dir, free_dir): New functions.
30933         (enter_dir, leave_dir): Define trivial
30934         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
30935         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
30936         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
30937         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
30938         Move to fts-cycle.c.
30939         (fts_open): Use setup_dir.
30940         (fts_close): Use free_dir.
30941         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
30942         This adds a label and some gotos, but the alternatives were messier.
30943         Check for memory allocation failure when entering a dir.
30944         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
30945         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
30946         (FTS): New member fts_cycle, that is a union that contains the
30947         old active_dir_ht and cycle_state.  All uses changed to mention
30948         fts_cycle.ht and fts_cycle.state.
30949         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
30950         fts.c, with the following changes:
30951         (setup_dir, free_dir): New functions.
30952         (enter_dir): Now returns bool.  Return true if successful, false
30953         if memory exhausted.  All callers changed.
30954         Do not bother partly cleaning up on
30955         memory allocation failure; that is free_dir's job.
30956         However, free ad if hash_insert fails, to avoid memory leak.
30957         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
30958         fts->fts_options to see which union member to use.
30959
30960 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30961
30962         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
30963         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
30964
30965 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30966
30967         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
30968
30969 2005-05-20  Jim Meyering  <jim@meyering.net>
30970
30971         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
30972         Now a macro, to pacify GCC.
30973
30974 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30975
30976         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
30977         of -1.
30978
30979 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
30980
30981         * lib/chown.c (rpl_chown): Return -1 on failure.
30982
30983 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
30984
30985         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
30986         Don't check for stddef.h.
30987         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
30988         don't use its results.
30989         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
30990         since we include them unconditionally.  Don't require
30991         AM_STDBOOL_H, since stdbool is a prerequisite.
30992         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
30993         since we assume C89 or better.
30994         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
30995         as we don't use their results.
30996         Don't check for fchdir, memmove, memset, strrchr, as we use
30997         them unconditionally.
30998         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
30999         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
31000
31001 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
31002
31003         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
31004         Include <stddef.h> unconditionally, since we assume C89 now.
31005         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
31006         * lib/fts.c: Include fts_.h first, to check interface.
31007         Do not include intprops.h; no longer needed.
31008         Include cycle-check.h and hash.h, since fts_.h no longer does.
31009         Remove unnecessary casts of closedir to void.
31010         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
31011         decide whether to decrement nlinks.
31012         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
31013         (FTS): Use struct hash_table * instead of Hash_table, so that
31014         we no longer need to include hash.h here.
31015
31016 2005-05-18  Jim Meyering  <jim@meyering.net>
31017
31018         * modules/dirfd (License): Change to LGPL.  Most of the code
31019         is already in the public domain.
31020
31021 2005-05-18  Jim Meyering  <jim@meyering.net>
31022
31023         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
31024         Reported by Yoann Vandoorselaere.
31025
31026 2005-05-17  Jim Meyering  <jim@meyering.net>
31027
31028         * m4/fts.m4: New file, from coreutils.
31029
31030 2005-05-17  Jim Meyering  <jim@meyering.net>
31031
31032         * lib/fts.c, lib/fts_.h: New files, from coreutils.
31033
31034 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
31035
31036         Sync from coreutils.
31037         * m4/unlinkdir.m4: New file.
31038
31039 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
31040
31041         Sync from coreutils.
31042         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
31043         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
31044         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
31045         White space changes only.
31046         * lib/makepath.c (make_path): Port to hosts where leading "//" is
31047         special.
31048         * lib/yesno.c: Include getline.h, not ctype.h.
31049         (yesno): Don't remove leading white space; POSIX doesn't allow it.
31050         Use getline to remove arbitrary restriction on response length.
31051
31052 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
31053
31054         * config/srclist-update: Spell out "Street" in FSF postal
31055         mail address; this is the style the FSF seems to prefer.
31056
31057         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
31058         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
31059         this updates FSF postal mail address.
31060
31061         Sync from coreutils.
31062         * modules/unlinkdir: New file.
31063         * modules/yesno (Depends-on): Add getline.
31064         * MODULES.html.sh (File system functions): Add unlinkdir.
31065
31066 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
31067
31068         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
31069         lib/strsep.h:
31070         Change the initial comment to refer to GPL, not LGPL.
31071         gnulib-tool will change it to LGPL as needed.
31072
31073         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
31074         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
31075         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
31076         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
31077         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
31078         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
31079         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
31080         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
31081         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
31082         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
31083         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
31084         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
31085         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
31086         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
31087         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
31088         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
31089         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
31090         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
31091         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
31092         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
31093         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
31094         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
31095         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
31096         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
31097         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
31098         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
31099         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
31100         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
31101         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
31102         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
31103         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
31104         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
31105         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
31106         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
31107         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
31108         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
31109         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
31110         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
31111         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
31112         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
31113         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
31114         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
31115         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
31116         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
31117         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
31118         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
31119         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
31120         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
31121         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
31122         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
31123         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
31124         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
31125         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
31126         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
31127         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
31128         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
31129         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
31130         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
31131         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
31132         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
31133         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
31134         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
31135         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
31136         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
31137         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
31138         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
31139         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
31140         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
31141         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
31142         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
31143         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
31144         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
31145         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
31146         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
31147         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
31148         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
31149         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
31150         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
31151         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
31152         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
31153         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
31154         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
31155         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
31156         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
31157         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
31158         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
31159         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
31160         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
31161         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
31162         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
31163         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
31164         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
31165         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
31166         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
31167         lib/yesno.c, lib/yesno.h:
31168         Update FSF postal mail address.
31169
31170 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
31171
31172         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
31173         tests/test-memmem.c, tests/test-stpncpy.c:
31174         Update FSF postal mail address.
31175
31176 2005-05-13  Bruno Haible  <bruno@clisp.org>
31177
31178         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
31179         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
31180         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
31181         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
31182         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
31183         Add support for 64-bit integers in the MSVC compiler.
31184
31185 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31186
31187         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
31188
31189 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
31190
31191         * gnulib-tool (func_import): Sort and uniquify recommended includes.
31192
31193 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
31194
31195         * doc/getdate.texi (General date syntax): Don't say that date
31196         date --iso-8601=ns generates acceptable dates; it doesn't yet.
31197         Problem reported by Nic Ferrier.
31198
31199 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31200
31201         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
31202         specified in ai_socktype. Fix invalid ai_protocol
31203         check. ai_protocol is usually set to 0 or depending on
31204         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
31205         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
31206         ai_socktype / ai_protocol in the returned addrinfo structure.
31207
31208 2005-05-10  Simon Josefsson  <jas@extundo.com>
31209
31210         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
31211         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
31212
31213 2005-05-10  Karl Berry  <karl@gnu.org>
31214
31215         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
31216         (from http://www.gnu.org/licenses).
31217         * doc/COPYING.LIB: also rename to COPYING.LESSER.
31218         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
31219         fdl.texi suffices.
31220
31221 2005-05-10  Karl Berry  <karl@gnu.org>
31222
31223         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
31224         (COPYING.DOC): remove.
31225
31226         * config/srclist-update: new FSF address.
31227
31228 2005-05-10  Derek Price  <derek@ximbiot.com>
31229
31230         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
31231         possible.
31232
31233 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31234             Bruno Haible  <bruno@clisp.org>
31235
31236         * modules/inet_ntop: New file.
31237         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31238         inet_ntop.
31239
31240 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31241             Bruno Haible  <bruno@clisp.org>
31242
31243         * m4/inet_ntop.m4: New file.
31244
31245 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31246             Bruno Haible  <bruno@clisp.org>
31247
31248         * lib/inet_ntop.h: New file.
31249         * lib/inet_ntop.c: New file, from glibc with modifications.
31250
31251 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
31252
31253         * modules/time_r (License): Change to LGPL.
31254         * modules/extensions (License): Change to LGPL.  Actually,
31255         the license is more permissive than that, but currently gnulib-tool
31256         doesn't know how to handle more-permissive licenses.
31257
31258         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
31259         Problem reported by Dave Love.
31260
31261 2005-05-08  Jim Meyering  <jim@meyering.net>
31262
31263         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
31264         blank.
31265
31266 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
31267
31268         * modules/argmatch (Depends-on): Add stdbool.
31269         * modules/backupfile (Depends-on): Likewise.
31270         * modules/chdir-long (Depends-on): Likewise.
31271         * modules/closeout (Depends-on): Likewise.
31272         * modules/cycle-check (Depends-on): Likewise.
31273         * modules/dirname (Depends-on): Likewise.
31274         * modules/fnmatch (Depends-on): Likewise.
31275         * modules/fsusage (Depends-on): Likewise.
31276         * modules/fwriteerror (Depends-on): Likewise.
31277         * modules/getcwd (Depends-on): Likewise.
31278         * modules/getloadavg (Depends-on): Likewise.
31279         * modules/hard-locale (Depends-on): Likewise.
31280         * modules/makepath (Depends-on): Likewise.
31281         * modules/mountlist (Depends-on): Likewise.
31282         * modules/nanosleep (Depends-on): Likewise.
31283         * modules/posixtm (Depends-on): Likewise.
31284         * modules/quotearg (Depends-on): Likewise.
31285         * modules/readtokens (Depends-on): Likewise.
31286         * modules/readtokens0 (Depends-on): Likewise.
31287         * modules/readutmp (Depends-on): Likewise.
31288         * modules/save-cwd (Depends-on): Likewise.
31289         * modules/strftime (Depends-on): Likewise.
31290         * modules/userspec (Depends-on): Likewise.
31291         * modules/utimecmp (Depends-on): Likewise.
31292         * modules/xgetcwd (Depends-on): Likewise.
31293         * modules/xnanosleep (Depends-on): Likewise.
31294         * modules/xstrtod (Depends-on): Likewise.
31295         * modules/yesno (Depends-on): Likewise.
31296
31297 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
31298
31299         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
31300         needless checks.
31301
31302 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31303
31304         Merge from coreutils.  Among other things,
31305         add bulletproofing for cases where stdin, stdout, or stderr are closed.
31306         * lib/fd-safer.c: New file.
31307         * lib/fcntl-safer.h, open-safer.c: Remove.
31308         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
31309         * lib/dup-safer.c: Include unistd-safer.h first.
31310         Don't include errno.h.
31311         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
31312         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
31313         * lib/file-type.c: Rely on file-type.h change.
31314         * lib/getloadavg.c: Include unistd-safer.h.
31315         (getloadavg): Use safer open.
31316         * lib/getusershell.c: Include "stdio-safer.h".
31317         (getusershell): Use safer fopen.
31318         * lib/long-options.c (long_options): Use NULL rather than 0.
31319         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
31320         'free'.
31321         * lib/modechange.c: Likewise.
31322         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
31323         (MODE_DONE): New constant.
31324         (struct mode_change): Remove 'next' member.
31325         (make_node_op_equals): New function; like the old one of the
31326         same name, except it allocates an array.
31327         (mode_compile, mode_create_from_ref): Use it.
31328         (mode_compile): Allocate result as an array, not a linked list.
31329         Parse octal string ourself, so that we catch mistakes like "+0".
31330         (mode_adjust): Arg is an array, not a linked list.
31331         * lib/modechange.c: Include stat-macros.h, xalloc.h.
31332         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
31333         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
31334         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
31335         Remove.  This is now stat-macros.h's job.
31336         (talloc): Remove.  All callers replaced by xalloc, so that
31337         our invokers don't have to worry about reporting memory failures.
31338         (make_node_op_equals): Remove.
31339         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31340         New constants.
31341         (struct mode_change): Moved here from modechange.h.
31342         (mode_append_entry): Remove.
31343         (mode_compile): Remove MASKED_OPS arg, since it encouraged
31344         apps to have incorrect behavior.  Use simpler algorithm for head
31345         and tail.  Don't futz with umask; that's now the job of mode_adjust.
31346         Detect more invalid usages rather than having somewhat-random behavior.
31347         Don't insert an "a=" action, as that leads to incorrect behavior.
31348         (mode_compile, mode_create_from_ref): Return NULL on error instead
31349         of an enum, since now there's only one way to have an error.  All
31350         callers changed.
31351         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
31352         at the correct time.  Simplify calculation of "+u" and its ilk.
31353         Don't mishandle "+X".
31354         (mode_free): Remove "register" and localize decls.
31355         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
31356         (struct mode_change): Move to modechange.c; callers don't
31357         need to see this stuff.
31358         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
31359         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
31360         (mode_change, mode_adjust): Reflect the new signatures noted above.
31361         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
31362         that might redefine system include files.
31363         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
31364         (my_usleep): Use NULL rather than (void *) 0.
31365         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
31366         Use siginterrupt to specify that system calls should be interrupted.
31367         (rpl_nanosleep): Move initialization of suspended closer to call of
31368         my_usleep.
31369         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
31370         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
31371         (desirable_utmp_entry): New function.
31372         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
31373         using x2nrealloc, to simplify logic.
31374         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
31375         size calculation.  Do not assume utmp file is a regular file.
31376         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
31377         (READ_UTMP_CHECK_PIDS): New constant.
31378         * lib/save-cwd.c: Include unistd-safer.h.
31379         (save_cwd): Use fd_safer.
31380         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
31381         [!_LIBC] Include "stat-macros.h" instead.
31382         * lib/unistd-safer.h (fd_safer): New decl.
31383
31384 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31385
31386         * modules/getloadavg (Depends-on): Add unistd-safer.
31387         * modules/getusershell (Depends-on): Add stdio-safer.
31388         * modules/lstat (Depends-on): Remove xalloc.
31389         * modules/mkstemp (Depends-on): Add stat-macros.
31390         * modules/modechange (Depends-on): Remove xstrtol.
31391         Add stat-macros, xalloc.
31392         * modules/save-cwd (Depends-on): Add unistd-safer.
31393         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
31394         * modules/unistd-safer (Files): Add lib/fd-safer.c
31395         (Makefile.am): Remove lib_SOURCES.
31396
31397         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
31398         Remove fcntl-safer; unistd-safer supersedes it.
31399
31400 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31401
31402         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
31403         AC_HEADER_STAT.
31404         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
31405         (gl_PREREQ_CHOWN): Remove.
31406         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
31407         it.  Don't require AC_HEADER_STAT.
31408         (gl_PREREQ_LSTAT): Remove.
31409         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
31410         Don't require AC_HEADER_STAT.
31411         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
31412         (gl_PREREQ_RMDIR): Remove.
31413         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
31414         mention stat-macros.h or AC_HEADER_STAT, since we'll make
31415         the stat-macros module a prerequisite.
31416         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
31417         * m4/filemode.m4 (gl_FILEMODE): Likewise.
31418         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
31419         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
31420         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
31421         variable names.
31422         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
31423         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
31424         variable prefixes.
31425         * m4/fcntl-safer.m4: Remove.
31426         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
31427         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
31428         Invoke gl_PREREQ_FD_SAFER.
31429         (gl_PREREQ_FD_SAFER): New macro.
31430         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
31431         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
31432         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
31433         Remove duplicate call to AC_LIBOBJ(readutmp).
31434         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
31435
31436         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
31437         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
31438
31439 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
31440
31441         * MODULES.html.sh (Misc): Add byteswap.
31442
31443 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31444
31445         * modules/getcwd (Depends-on): Add extensions.
31446         * modules/openat (Depends-on): Likewise.
31447
31448 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31449
31450         * modules/byteswap: New file.
31451
31452 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31453
31454         * m4/byteswap.m4: New file.
31455
31456 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
31457
31458         * lib/byteswap_.h: New file.
31459
31460 2005-04-25  Karl Berry  <karl@gnu.org>
31461
31462         * m4/gettext.m4: Update from GNU gettext 0.14.4.
31463
31464 2005-04-25  Albert Chin  <china@thewrittenword.com>
31465
31466         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
31467         Toolkit C bug.
31468
31469 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
31470
31471         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
31472         (func_ln_if_changed) Remove forcibly for no error message
31473         in case file does not exist.
31474
31475 2005-04-19  Simon Josefsson  <jas@extundo.com>
31476
31477         * gnulib-tool (Options): Make --symlink mean --symbolic.
31478
31479 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
31480
31481         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
31482
31483 2005-04-16  Simon Josefsson  <jas@extundo.com>
31484
31485         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
31486
31487 2005-04-15  Simon Josefsson  <jas@extundo.com>
31488
31489         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
31490
31491 2005-04-15  Simon Josefsson  <jas@extundo.com>
31492
31493         * gnulib-tool: Rename --symlink to --symbolic.
31494
31495 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
31496
31497         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
31498         symbolic links to files instead of copying/moving.  Add --aux-dir,
31499         specifying directory relative --dir where auxiliary build tools
31500         are placed.
31501
31502 2005-04-14  Bruno Haible  <bruno@clisp.org>
31503
31504         * modules/allocsa (License): Change to LGPL.
31505         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
31506
31507 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
31508
31509         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
31510         that "UTC +1 second" continues to work.  Problem reported
31511         by Dmitry V. Levin.
31512         (relunit_snumber): New rule.
31513         (relunit): Use it.
31514
31515 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
31516
31517         * lib/getdate.y (universal_time_zone_table): New constant.
31518         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
31519         universal_time_zone_table.
31520         (lookup_zone): Prefer universal_time_zone_table to
31521         local_time_zone_table, so that "GMT" time stamps are allowed in
31522         London during the summer.  Problem reported by Ian Abbott.
31523
31524 2005-04-12  Jim Meyering  <jim@meyering.net>
31525
31526         * lib/human.c (humblock): Set *options even when returning due to
31527         xstrtoumax conversion failure.  Thanks to a used-uninitialized
31528         warning from gcc-4.
31529
31530 2005-04-09  Jim Meyering  <jim@meyering.net>
31531
31532         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
31533         -Wuninitialized: initialize tm0.tm_year.
31534
31535 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
31536
31537         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
31538         count, since there's no maximum.  All uses changed.
31539         Add member dsts_seen.
31540         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
31541         not being INT_MAX.
31542         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
31543         Use pc_rels_seen to decide whther a date is absolute.
31544
31545         * lib/getdate.y (number): Don't overwrite year.
31546         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
31547         check.
31548
31549 2005-04-02  Simon Josefsson  <jas@extundo.com>
31550
31551         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
31552         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
31553
31554 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
31555
31556         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
31557         where no absolute path name can be longer than PATH_MAX.
31558
31559 2005-03-27  Jim Meyering  <jim@meyering.net>
31560
31561         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
31562
31563 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
31564
31565         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
31566         "one's complement" -> "ones' complement" in comment, as per Knuth.
31567         "value of type" -> "type or expression" in comment.
31568         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
31569
31570 2005-03-26  Jim Meyering  <jim@meyering.net>
31571
31572         Comment nits.
31573         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
31574         Correct typos: s/or/of/.
31575
31576 2005-03-26  Jim Meyering  <jim@meyering.net>
31577
31578         * modules/check-include-files: Move to ../ and rename to...
31579         * check-module: ...this.
31580
31581 2005-03-25  Jim Meyering  <jim@meyering.net>
31582
31583         * modules/xvasprintf (Files): Add xalloc.h.
31584
31585 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
31586
31587         * modules/gettext (Files): config/config.rpath ->
31588         build-aux/config.rpath
31589         * modules/iconv (Files): Likewise.
31590         Problem reported by Oskar Liljeblad.
31591
31592 2005-03-23  Jim Meyering  <jim@meyering.net>
31593
31594         * modules/check-include-files: New script to check for
31595         missing dependencies, multiple includes, etc.
31596
31597         * modules/c-strtold (Depends-on): Add xalloc.
31598         * modules/c-strtod (Depends-on): Add xalloc.
31599         * modules/hash (Depends-on): Add xalloc.
31600         (Files): Remove lib/xalloc.h.
31601
31602         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
31603         * modules/userspec (Files): Add lib/inttostr.h.
31604
31605 2005-03-23  Jim Meyering  <jim@meyering.net>
31606
31607         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
31608
31609 2005-03-22  Jim Meyering  <jim@meyering.net>
31610
31611         * modules/stat-macros: New module.
31612         * modules/canonicalize, modules/euidaccess, modules/file-type,
31613         * modules/filemode, modules/lchown, modules/makepath,
31614         * modules/rmdir, modules/stat: Depend on new stat-macros module
31615         rather than listing lib/stat-macros.h manually.
31616         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
31617
31618 2005-03-22  Jim Meyering  <jim@meyering.net>
31619
31620         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
31621
31622 2005-03-22  Bruno Haible  <bruno@clisp.org>
31623
31624         * config/srclist.txt: Replace target directory 'config' with
31625         'build-aux'.
31626         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
31627         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
31628         ../build-aux/.
31629
31630 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
31631
31632         * modules/chdir-long (Depends-on): Add mempcpy.
31633
31634         * modules/acl, modules/backupfile, modules/c-strtod,
31635         modules/c-strtold, modules/canon-host, modules/canonicalize,
31636         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
31637         modules/exclude, modules/exitfail, modules/file-type,
31638         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
31639         modules/getdate, modules/getline, modules/getpagesize,
31640         modules/getpass, modules/getugroups, modules/group-member,
31641         modules/hard-locale, modules/hash, modules/human, modules/idcache,
31642         modules/inttostr, modules/long-options, modules/makepath,
31643         modules/md5, modules/memcasecmp, modules/memcoll,
31644         modules/modechange, modules/mountlist, modules/path-concat,
31645         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
31646         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
31647         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
31648         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
31649         modules/strftime, modules/strndup, modules/strverscmp,
31650         modules/timespec, modules/unlocked-io, modules/userspec,
31651         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
31652         modules/yesno:
31653         Remove lib_SOURCES line from Makefile.am section, as this is now
31654         done automatically by the corresponding Autoconf macro.
31655
31656 2005-03-21  Jim Meyering  <jim@meyering.net>
31657
31658         Changes imported from coreutils.
31659
31660         * lib/cycle-check.c: Don't include xalloc.h.
31661
31662         * lib/path-concat.c: Don't include assert.h.
31663         (path_concat): Remove assertion that would have triggered
31664         for ABASE starting with more than one slash.
31665         Reported by Andreas Schwab.
31666
31667         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
31668         properly when ABASE is an absolute file name.
31669         Correct the description of this function.
31670         Include <assert.h>.
31671         Add an assertion and a test driver.
31672         This fixes a bug introduced on 2004-07-02.
31673         Andreas Schwab reported the resulting failure of cp --parents:
31674         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
31675
31676 2005-03-21  Jim Meyering  <jim@meyering.net>
31677
31678         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
31679         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
31680
31681 2005-03-21  Jim Meyering  <jim@meyering.net>
31682         and  Paul Eggert  <eggert@cs.ucla.edu>
31683
31684         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
31685         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
31686         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
31687         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
31688         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
31689         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
31690         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
31691         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
31692         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
31693         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
31694         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
31695         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
31696         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
31697         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
31698         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
31699         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
31700         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
31701         for these modules.
31702
31703 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
31704
31705         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
31706         (which shouldn't happen), generate nothing instead of returning 0
31707         immediately, so that nstrftime (NULL, ...) doesn't return 0.
31708
31709 2005-03-16  Bruno Haible  <bruno@clisp.org>
31710
31711         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
31712         HAVE_LONGLONG_64BIT.
31713
31714 2005-03-16  Bruno Haible  <bruno@clisp.org>
31715
31716         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
31717         HAVE_LONGLONG_64BIT.
31718
31719 2005-03-16  Bruno Haible  <bruno@clisp.org>
31720
31721         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
31722         HAVE_LONGLONG_64BIT.
31723
31724 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31725
31726         * lib/strftime.c (my_strftime): Prepend space to format so that we can
31727         reliably distinguish strftime failure from empty output on POSIX
31728         hosts.
31729
31730 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
31731
31732         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
31733         (iconv_string): Don't guess a size-zero buffer, as that might cause
31734         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
31735         result would be 'too large', where 'too large' is (heuristically)
31736         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
31737         overflow concerns.  This will prevent some unwanted malloc failures
31738         when the inputs are very large.
31739
31740 2005-03-15  Karl Berry  <karl@gnu.org>
31741
31742         * config/srclist.txt (config.rpath): from gettext.
31743         * config/config.rpath: update.
31744
31745 2005-03-15  Bruno Haible  <bruno@clisp.org>
31746
31747         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
31748         to 'negate'.
31749
31750         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
31751         variable.
31752
31753         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
31754         results.
31755
31756 2005-03-14  Simon Josefsson  <jas@extundo.com>
31757
31758         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
31759         <fx@gnu.org>.
31760
31761 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
31762
31763         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
31764         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
31765         intprops.h.
31766         * lib/strtol.c: Likewise.
31767
31768 2005-03-14  Jim Meyering  <jim@meyering.net>
31769
31770         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
31771         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
31772         to be nonzero so that we (and caller) can detect the difference
31773         between a valid zero-length expansion and an error return, even
31774         when the underlying strftime fails before writing anything into
31775         that location.
31776
31777 2005-03-14  Bruno Haible  <bruno@clisp.org>
31778
31779         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
31780         Update from GNU gettext 0.14.3.
31781
31782 2005-03-10  Jim Meyering  <jim@meyering.net>
31783
31784         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
31785
31786 2005-03-10  Jim Meyering  <jim@meyering.net>
31787
31788         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
31789         so that this module works on systems without fchdir.
31790
31791 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
31792
31793         Factor int-properties macros into a single file, except for
31794         glibc-related files.
31795         * lib/intprops.h: New file.
31796         * lib/getloadavg.c: Include it instead of limits.h.
31797         (INT_STRLEN_BOUND): Remove.
31798         * lib/human.c: Include intprops.h.
31799         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
31800         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
31801         302/1000.
31802         * lib/inttostr.h: Include intprops.h instead of limits.h.
31803         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
31804         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
31805         for consistency with intprops.h.
31806         (time_t_is_integer, twos_complement_arithmetic): Use them.
31807         * lib/sig2str.h: Include <signal.h>, intprops.h.
31808         (INT_STRLEN_BOUND): Remove.
31809         * lib/strftime.c (TYPE_SIGNED): Remove.
31810         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
31811         * lib/strtol.c: Adjust comments to match intprops.h.
31812         * lib/userspec.c: Include intprops.h.
31813         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
31814         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
31815         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
31816         instead of rolling our own expressions.
31817         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
31818
31819         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
31820         instead of int.
31821         (my_strftime): Do not mishandle years close to INT_MAX, by doing
31822         the right thing even if adding 1900 would overflow.  Similarly
31823         for tm_mon + 1 and tm_yday + 1.
31824         Make %Y always equivalent to %C%y, and similarly for %G and %g.
31825         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
31826         (DO_SIGNED_NUMBER): New macro.
31827         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
31828
31829 2005-03-07  Bruno Haible  <bruno@clisp.org>
31830
31831         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
31832
31833 2005-03-07  Bruno Haible  <bruno@clisp.org>
31834
31835         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
31836
31837 2005-03-04  Derek R. Price  <derek@ximbiot.com>
31838
31839         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
31840         (func_import): Only replace files via --import when they have actually
31841         changed.
31842
31843 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31844
31845         * m4/mmap-anon.m4: New file.
31846         * m4/pagealign_alloc.m4: New file.
31847
31848 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31849             Bruno Haible  <bruno@clisp.org>
31850
31851         * modules/pagealign_alloc: New file.
31852         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
31853
31854 2005-03-03  Derek R. Price  <derek@ximbiot.com>
31855             Bruno Haible  <bruno@clisp.org>
31856
31857         * lib/pagealign_alloc.h: New file.
31858         * lib/pagealign_alloc.c: New file.
31859
31860 2005-03-03  Bruno Haible  <bruno@clisp.org>
31861
31862         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
31863         Use an all-permissive copyright notice, recommended by RMS.
31864
31865 2005-03-02  Bruno Haible  <bruno@clisp.org>
31866
31867         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
31868         of AIX, the replacement has to be done only after <string.h> is
31869         included, therefore not in config.h. stpncpy.h does the replacement,
31870         and stpncpy.c uses it.
31871
31872 2005-03-02  Bruno Haible  <bruno@clisp.org>
31873
31874         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
31875         stpncpy.c uses it.
31876
31877 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31878
31879         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
31880         The workaround isn't strictly needed for POSIX conformance, and
31881         it's too much of a pain to configure and maintain.  We'll ask
31882         people to fix their kernels instead.
31883         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
31884         (NANOSLEEP_BUG_WORKAROUND): Remove.
31885         (xnanosleep): Remove the workaround.
31886
31887 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31888
31889         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
31890         Reported by Derek Price.
31891         (Include): Add "timespec.h".
31892
31893         * modules/xnanosleep (Depends-on): Remove gethrxtime.
31894
31895 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31896
31897         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
31898         to detect nanosleep bug.
31899
31900 2005-03-01  Bruno Haible  <bruno@clisp.org>
31901
31902         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
31903
31904 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
31905
31906         * modules/gethrxtime: New file.
31907         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
31908         (Depends-on): Add gethrxtime.
31909         (configure.ac): Add gl_XNANOSLEEP.
31910         (Makefile.am): Remove lib_SOURCES line.
31911
31912 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31913
31914         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
31915         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
31916
31917 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31918
31919         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
31920         * lib/timespec.h (gettime): Return void, since it always
31921         succeeds now.  All uses changed.
31922         * lib/gettime.c (gettime) Likewise.
31923         [HAVE_NANOTIME]: Prefer nanotime.
31924         Assume gettimeofday succeeds, as POSIX requires.
31925         Assime time () succeeds, since other code already does.
31926         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
31927         (timespec_subtract): Remove.
31928         (NANOSLEEP_BUG_WORKAROUND): New constant.
31929         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
31930         things considerably.  Use it only on GNU/Linux hosts, since the
31931         workaround shouldn't be needed elsewhere.
31932
31933 2005-02-24  Bruno Haible  <bruno@clisp.org>
31934
31935         * modules/gettext (Files): Add m4/glibc2.m4.
31936
31937 2005-02-24  Bruno Haible  <bruno@clisp.org>
31938
31939         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
31940         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
31941         * m4/progtest.m4:
31942         Update from GNU gettext 0.14.2.
31943         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
31944
31945 2005-02-24  Bruno Haible  <bruno@clisp.org>
31946
31947         * lib/localcharset.c: Update from GNU gettext 0.14.2.
31948         * lib/config.charset: Update from GNU gettext 0.14.2.
31949
31950 2005-02-24  Bruno Haible  <bruno@clisp.org>
31951
31952         * lib/gettext.h: Update from GNU gettext 0.14.2.
31953
31954 2005-02-23  Simon Josefsson  <jas@extundo.com>
31955
31956         * m4/iconvme.m4: New file.
31957
31958 2005-02-23  Jim Meyering  <jim@meyering.net>
31959
31960         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
31961         change.
31962         Thanks to Bruno Haible for catching it.
31963
31964 2005-02-22  Simon Josefsson  <jas@extundo.com>
31965
31966         * modules/iconvme: New file.
31967
31968         * MODULES.html.sh: Add iconvme.
31969
31970 2005-02-22  Simon Josefsson  <jas@extundo.com>
31971
31972         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
31973
31974 2005-02-22  Simon Josefsson  <jas@extundo.com>
31975
31976         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
31977
31978 2005-02-22  Jim Meyering  <jim@meyering.net>
31979
31980         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
31981         s/ifndef/ifdef/.
31982
31983 2005-02-20  Neil Conway  <neilc@samurai.com>
31984
31985         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
31986         returned by OSX/Darwin if the specified buffer is not large
31987         enough for the hostname.
31988
31989 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31990
31991         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
31992         pass it to _help, otherwise the latter coredumps trying to
31993         dereference state.root_argp.
31994
31995 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31996
31997         * modules/chdir-long (Depends-on): Add memrchr.
31998         * modules/memrchr (Files): Add lib/memrchr.h.
31999         (Include): "memrchr.h".
32000
32001 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32002
32003         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
32004
32005 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32006
32007         * lib/memrchr.h: New file.
32008         * lib/chdir-long.c: Include it.
32009         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
32010         Don't bother including stddef.h.
32011
32012 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32013
32014         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
32015         inclusion.
32016         Include <sys/types.h>, for dev_t.
32017         (ME_DUMMY, ME_REMOTE): Move from here....
32018         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
32019         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
32020         Dmitry V. Levin.
32021         Include mountlist.h first, to test the interface.
32022
32023 2005-01-29  Bruno Haible  <bruno@clisp.org>
32024
32025         * lib/progname.c (program_name): Initialize.
32026         Needed when linking statically on MacOS X.
32027
32028 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32029
32030         Sync from coreutils.
32031         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
32032         (Depends-on): Add c-strtod.
32033         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
32034
32035 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32036
32037         Sync from coreutils.
32038         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
32039
32040         Remove files that are specific to coreutils.
32041         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
32042
32043 2005-01-28  Bruno Haible  <bruno@clisp.org>
32044
32045         * modules/javacomp: New file.
32046         * MODULES.html.sh (Java): Add javacomp.
32047
32048 2005-01-28  Bruno Haible  <bruno@clisp.org>
32049
32050         * m4/javacomp.m4: New file, from GNU gettext.
32051
32052 2005-01-28  Bruno Haible  <bruno@clisp.org>
32053
32054         * lib/javacomp.sh.in: New file, from GNU gettext.
32055         * lib/javacomp.h: New file, from GNU gettext.
32056         * lib/javacomp.c: New file, from GNU gettext.
32057
32058 2005-01-26  Simon Josefsson  <jas@extundo.com>
32059
32060         * lib/gai_strerror.c: Use GPL in header.
32061
32062 2005-01-26  Bruno Haible  <bruno@clisp.org>
32063
32064         * modules/javaexec: New file.
32065         * MODULES.html.sh (Java): Add javaexec.
32066
32067 2005-01-26  Bruno Haible  <bruno@clisp.org>
32068
32069         * m4/javaexec.m4: New file, from GNU gettext.
32070
32071 2005-01-26  Bruno Haible  <bruno@clisp.org>
32072
32073         * lib/javaexec.sh.in: New file, from GNU gettext.
32074         * lib/javaexec.h: New file, from GNU gettext.
32075         * lib/javaexec.c: New file, from GNU gettext.
32076
32077 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32078
32079         * modules/lchown (Depends-on): Remove lchown.h
32080
32081 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32082
32083         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
32084         must be defined if the header file was not found, in order
32085         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
32086
32087 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32088
32089         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
32090         initializers for struct pentry_state.
32091         (__argp_error): Check return value of __asprintf
32092         (__argp_failure): Translate error message
32093
32094         * lib/argp-parse.c: Removed braces around the expansion of N_()
32095
32096 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32097
32098         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
32099         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
32100         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
32101         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
32102         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
32103         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
32104         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
32105         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
32106         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
32107         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
32108         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
32109         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
32110         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
32111         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
32112         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
32113         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
32114         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
32115         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
32116         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
32117         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
32118         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
32119         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
32120         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
32121         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
32122         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
32123         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
32124         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
32125         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
32126         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
32127         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
32128         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
32129         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
32130         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
32131         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
32132         xstrtol.m4, xstrtoumax.m4, yesno.m4:
32133         Use an all-permissive copyright notice, recommended by RMS.
32134
32135 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
32136
32137         * modules/chdir-long (Depends-on): Remove mempcpy.
32138
32139 2005-01-21  Jim Meyering  <jim@meyering.net>
32140
32141         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
32142         same value as for Solaris 9.
32143
32144         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
32145         component length.  This included changing the parameter to be
32146         of type `char *' rather than `char const *'.
32147         * lib/chdir-long.h (chdir_long): Update prototype.
32148
32149         * lib/openat.c (fdopendir, fstatat): New functions.
32150         * lib/openat.h: Include headers required for use of DIR and struct
32151         stat.
32152         [AT_SYMLINK_NOFOLLOW]: Define.
32153         (fdopendir, fstatat): Add prototypes.
32154
32155 2005-01-21  Bruno Haible  <bruno@clisp.org>
32156
32157         * modules/classpath: New file.
32158         * MODULES.html.sh (Java): Add classpath.
32159
32160 2005-01-21  Bruno Haible  <bruno@clisp.org>
32161
32162         * lib/classpath.h: New file, from GNU gettext.
32163         * lib/classpath.c: New file, from GNU gettext.
32164
32165 2005-01-20  Simon Josefsson  <jas@extundo.com>
32166
32167         * modules/version-etc-fsf: New file.
32168
32169 2005-01-20  Simon Josefsson  <jas@extundo.com>
32170
32171         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
32172         * lib/version-etc.c: Remove version_etc_copyright.
32173         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
32174         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
32175
32176 2005-01-20  Simon Josefsson  <jas@extundo.com>
32177
32178         * lib/base64.h (isbase64): Add.
32179
32180         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
32181         using a unsigned prototype, don't inline.
32182         (base64_decode): Use it.
32183
32184 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32185
32186         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
32187         it.
32188
32189 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32190
32191         * lib/save-cwd.c (save_cwd): Remove code to support the case
32192         where fchdir is missing or flaky.
32193
32194 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
32195
32196         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
32197
32198 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32199
32200         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
32201         AC_LIBSOURCES now does this.
32202         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
32203         with new ullong_max module.
32204
32205 2005-01-19  Bruno Haible  <bruno@clisp.org>
32206
32207         * modules/sh-quote: New file.
32208         * MODULES.html.sh (Executing programs): Add sh-quote.
32209
32210 2005-01-19  Bruno Haible  <bruno@clisp.org>
32211
32212         * lib/sh-quote.h: New file, from GNU gettext.
32213         * lib/sh-quote.c: New file, from GNU gettext.
32214
32215 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32216
32217         Merge from coreutils.
32218         * m4/ullong_max.m4: New file.
32219         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
32220         (gl_MACROS): Assume localeconv exists.
32221
32222 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32223
32224         Merge changes from coreutils, as described below in several
32225         changelogs dated today.
32226
32227         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
32228         (O_DIRECTORY): Remove; not needed here, since "." must be
32229         a directory.  All uses removed.
32230         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
32231         universal on Suns, and we also need to test for IRIX.
32232         Revamp code to use 'if' rather than '#if'.
32233         Avoid unnecessary comparison of cwd->desc to 0.
32234
32235         * lib/utimens.c (futimens): Robustify the previous patch, by checking
32236         for known valid error numbers rather than observed invalid ones.
32237
32238 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
32239
32240         * modules/ullong_max: New file.
32241
32242         * modules/chdir-long, modules/openat: New files.
32243         * modules/save-cwd (Depends-on): Depend on chdir-long.
32244         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
32245
32246 2005-01-18  Jim Meyering  <jim@meyering.net>
32247
32248         Merge from coreutils.
32249         * m4/chdir-long.m4, m4/openat.m4: New files.
32250         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
32251         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
32252         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
32253         is sane and DOES follow symlinks.  Besides, testing 20 different
32254         systems found no broken chown implementations.
32255         Prompted by a change in rsync's copy of this macro.
32256         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
32257
32258         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
32259
32260         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
32261         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
32262         NULL-means-set-to-current-time semantics.
32263         Remove temporary file immediately, rather than waiting
32264         for configure's at-exit trap code to do it.
32265
32266 2005-01-18  Jim Meyering  <jim@meyering.net>
32267
32268         * lib/version-etc.c (version_etc_copyright): Update copyright date.
32269
32270         * lib/utimens.c (futimens): Account for the fact that futimes
32271         can also fail with errno == ENOSYS or errno == ENOENT.
32272         Patch from Dmitry V. Levin.
32273
32274         Change the name of the robust chdir function from chdir to chdir_long.
32275         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
32276         (restore_cwd): Use chdir_long, not chdir.
32277         * lib/chdir-long.c: Renamed from chdir.c.
32278         * lib/chdir-long.h: Renamed from chdir.h.
32279         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
32280         Hurd.
32281
32282 2005-01-18  Bruno Haible  <bruno@clisp.org>
32283
32284         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
32285         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
32286         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
32287         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
32288         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
32289         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
32290         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
32291         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
32292         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
32293         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
32294         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
32295         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
32296         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
32297         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
32298         Use an all-permissive copyright notice, recommended by RMS.
32299
32300 2005-01-18  Bob Proulx  <bob@proulx.com>
32301
32302         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
32303         simplify offsetof() macro construct to avoid compile failure with
32304         native HP-UX 11.0 ANSI C compiler.
32305
32306 2005-01-17  Bruno Haible  <bruno@clisp.org>
32307
32308         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
32309         redundant because stpncpy.m4 takes care of it.
32310
32311 2005-01-17  Bruno Haible  <bruno@clisp.org>
32312
32313         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
32314
32315 2005-01-17  Bruno Haible  <bruno@clisp.org>
32316
32317         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
32318         used.
32319
32320 2005-01-17  Bruno Haible  <bruno@clisp.org>
32321
32322         * lib/fwriteerror.h (fwriteerror): Change specification to include
32323         fclose.
32324         * lib/fwriteerror.c: Include <stdbool.h>.
32325         (fwriteerror): At the end, close the file stream. Record whether
32326         stdout was already closed.
32327
32328 2005-01-17  Bruno Haible  <bruno@clisp.org>
32329
32330         * lib/execute.c (environ): Declare if needed.
32331         * lib/pipe.c (environ): Likewise.
32332         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
32333
32334 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32335
32336         * modules/argp: Depend on vsnprintf
32337
32338 2005-01-10  Jim Meyering  <jim@meyering.net>
32339
32340         * modules/closeout (Depends-on): Add atexit.
32341
32342 2005-01-06  Bruno Haible  <bruno@clisp.org>
32343
32344         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
32345
32346 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
32347
32348         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
32349         definitions to be after all include files, to avoid collisions.
32350         Problem reported by Bob Proulx.
32351
32352 2005-01-04  Jim Meyering  <jim@meyering.net>
32353
32354         Changes imported from coreutils.
32355         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
32356         as the mkstemp template, use a temporary directory and an
32357         8.3-friendly template to avoid trouble on systems like DJGPP.
32358         Reported by Juan M. Guerrero via Stepan Kasal.
32359         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
32360         close. Remove the temporary directory right away, rather than waiting
32361         for configure's at-exit trap code to do it.
32362         Suggestion from Stepan Kasal.
32363
32364 2005-01-01  Simon Josefsson  <jas@extundo.com>
32365
32366         * gnulib-tool: Print #include directives when --import'ing.
32367
32368 2004-12-28  Simon Josefsson  <jas@extundo.com>
32369
32370         * tests/test-base64.c: Include required header files.  Remove
32371         unused variables.
32372
32373 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32374
32375         * modules/error (Depends-on): Remove gettext.
32376
32377 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
32378
32379         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
32380         not needed.  This removes a dependency on the gettext module.
32381         [defined _LIBC]: Do not include <libintl.h>; not needed.
32382
32383 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32384
32385         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
32386         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
32387
32388 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
32389
32390         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
32391         HAVE_DECL_STRTOLD.
32392
32393 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32394
32395         * modules/getdate (Depends-on): Remove alloca-opt.
32396
32397 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32398
32399         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
32400
32401 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
32402
32403         * lib/argp-parse.c: Include <stddef.h>.
32404         (alignof, alignto): New macros.
32405         (parser_init): Don't assume that void * is aligned sufficiently
32406         for struct option.
32407
32408         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
32409         need to extend the stack.
32410         (YYINITDEPTH): New macro, so that the initial stack isn't overly
32411         large.
32412
32413 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32414
32415         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
32416
32417 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32418
32419         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
32420         (2004-10-24) change.  Apparently this was a false alarm.
32421
32422         * modules/getdate: Depend on alloca-opt, not alloca.
32423
32424 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
32425
32426         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
32427         Remove now-obsolete comment about AIX.
32428         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
32429         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
32430         (YYMAXDEPTH): New macro.
32431
32432 2004-12-18  Simon Josefsson  <jas@extundo.com>
32433
32434         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
32435
32436 2004-12-18  Bruno Haible  <bruno@clisp.org>
32437
32438         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
32439
32440 2004-12-18  Bruno Haible  <bruno@clisp.org>
32441
32442         * lib/fatal-signal.c (fatal_signals): Make non-const.
32443         (init_fatal_signals): New function.
32444         (uninstall_handlers, install_handlers): Ignore signals that were set to
32445         SIG_IGN.
32446         (at_fatal_signal): Call init_fatal_signals.
32447         (init_fatal_signal_set): Likewise. Ignore signals that were set to
32448         SIG_IGN.
32449         Reported by Paul Eggert.
32450
32451 2004-12-18  Bruno Haible  <bruno@clisp.org>
32452
32453         * doc/alloca.texi: New file.
32454         * doc/alloca-opt.texi: New file.
32455
32456 2004-12-17  Jim Meyering  <jim@meyering.net>
32457
32458         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
32459         Otherwise, install-sh could exit with improper exit status when
32460         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
32461
32462 2004-12-16  Simon Josefsson  <jas@extundo.com>
32463
32464         * tests/test-base64.c: Add license.
32465
32466 2004-12-15  Stepan Kasal  <address@hidden>
32467
32468         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
32469
32470 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
32471
32472         * modules/getcwd (Files): Add m4/d-ino.m4.
32473         Suggested by Mark D. Baushke.
32474
32475 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32476
32477         * lib/getdate.y (textint): New member "negative".
32478         (time_zone_hhmm): New function.
32479         Expect 14 shift-reduce conflicts, not 13.
32480         (o_colon_minutes): New rule.
32481         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
32482         (yylex): Set the "negative" member of signed numbers.
32483
32484 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
32485
32486         * doc/getdate.texi (Time of day items, Time zone items):
32487         Describe new formats +00:00, UTC+00:00.
32488
32489 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
32490
32491         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
32492         spurious "-l"s.  Problem reported by Stepan Kasal.
32493
32494 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
32495
32496         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
32497         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
32498
32499 2004-12-04  Simon Josefsson  <jas@extundo.com>
32500
32501         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
32502         Vandoorselaere <yoann@prelude-ids.org>.
32503
32504 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32505
32506         Changes imported from coreutils.
32507         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
32508         exist.
32509         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
32510
32511 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32512
32513         Changes imported from coreutils.
32514         * lib/hard-locale.c: Assume <locale.h> exists.
32515         Include "strdup.h".
32516         (GLIBC_VERSION): New macro.
32517         (hard_locale): Assume setlocale exists.
32518         Rewrite to avoid #ifdef.
32519         Use strdup rather than malloc + strcpy.
32520         * lib/human.c: Assume <locale.h> exists.
32521         (human_readable): Assume localeconv exists.
32522
32523 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
32524
32525         * modules/hard-locale (Depends-on): Add strdup.
32526
32527 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32528
32529         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
32530         convert T2, not T.  (Imported from libc.)
32531
32532 2004-11-30  Simon Josefsson  <jas@extundo.com>
32533
32534         * modules/restrict (License): Change to LGPL.
32535
32536 2004-11-30  Simon Josefsson  <jas@extundo.com>
32537
32538         * m4/restrict.m4: Add copyright and copying conditions.
32539
32540 2004-11-30  Simon Josefsson  <jas@extundo.com>
32541
32542         * m4/base64.m4: New file.
32543
32544 2004-11-30  Simon Josefsson  <jas@extundo.com>
32545
32546         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
32547         base64.
32548
32549         * tests/test-base64.c: New file.
32550
32551         * modules/base64: New file.
32552
32553 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32554
32555         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
32556         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
32557
32558         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
32559
32560 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
32561
32562         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
32563         (__getcwd.c): Don't restore errno; glibc doesn't.
32564         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
32565         first, falling back to our code only if its results look suspicious.
32566         Ensure that the resulting buffer is only as large as necessary.
32567
32568         * lib/readutmp.c: Include readutmp.h first.
32569         Include <errno.h>, since readutmp.h no longer does that.
32570         * lib/readutmp.h: Don't include <errno.h>,
32571         <sys/param.h>, <time.h>; not needed to establish interface.
32572         (errno): Remove decl.
32573         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
32574         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
32575         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
32576
32577 2004-11-28  Simon Josefsson  <jas@extundo.com>
32578
32579         * lib/base64.h, base64.c: New file.
32580
32581 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
32582
32583         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
32584
32585 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
32586
32587         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
32588         (Depends-on): Remove pathmax, same.  Add mempcpy.
32589         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
32590         (Makefile.am): Append getcwd.h to lib_SOURCES.
32591         (Include): Add getcwd.h.
32592         (Maintainer): Change from Jim Meyering to "all, glibc",
32593         since getdate now uses intended-for-glibc code.
32594         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
32595         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
32596
32597 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32598
32599         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
32600         HP's ANSI C compiler.
32601         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
32602         Declaring int functions causes warnings on some modern systems and
32603         shouldn't be needed to compile on ancient ones.
32604         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
32605         defined.
32606
32607         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
32608         with the following changes.
32609         (__set_errno): Parenthesize properly.
32610         Include <stdbool.h>.
32611         (MIN, MAX, MATCHING_INO): New macros.
32612         (__getcwd): Define with prototype, not K&R form.
32613         Use heuristics to allocate default buffer on stack if possible.
32614         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
32615         behavior, and to avoid the PATH_MAX limit when computing
32616         ../../../../...
32617         Use MATCHING_INO to compare inode number to file.
32618         Check for arithmetic overflow in size calculations.
32619         Fix bug in reallocation of dot array that caused getcwd to fail
32620         on directories nested deeper than 75.
32621         Be more careful about saving errno on error.
32622         Do not use realloc; use only free+malloc, as this is a bit
32623         more flexible and avoids a needless copy operation.
32624         Do not inspect st_dev and st_ino for symbolic links; POSIX
32625         doesn't specify the latter.
32626         Check for closedir errors.
32627         Avoid needless casts.
32628         Use "#ifdef weak_alias" around weak_alias, to be like other
32629         glibc code.
32630         The following changes to getcwd.c have effect only when used in
32631         gnulib; they have no effect inside glibc proper.
32632         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
32633         as alloca isn't used.
32634         (alloca, __alloca): Likewise.
32635         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
32636         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32637         unconditionally, as gnulib assumes C89 or better.
32638         Do not include <sys/param.h>.
32639         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
32640         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
32641         better.
32642         (NULL) [!defined NULL]: Remove; we assume C89 or better.
32643         Include <dirent.h> in a way that is compatible with modern Autoconf.
32644         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
32645         New macros, if not already defined.
32646         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
32647         Use "_LIBC", not "defined _LIBC", for consistency.
32648         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
32649         a mempcpy module.
32650         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
32651         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
32652         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
32653         credit only to Jim Meyering and adjust the copyright dates.
32654         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
32655         <stdlib.h>, <unistd.h>, "pathmax.h".
32656         Instead, include "xgetcwd.h" (first) and "getcwd.h".
32657         (INITIAL_BUFFER_SIZE): Remove.
32658         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
32659
32660 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
32661
32662         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
32663         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
32664         Use the _ONCE methods, for efficiency.
32665         Check for fcntl.h.  In test program, include <errno.h>
32666         and <fcntl.h> if available.  Remove old K&R cruft from
32667         test program.  Check for common errors in GNU/Linux,
32668         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
32669         don't do AC_LIBOBJ, as that's getcwd.m4's job.
32670         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
32671         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
32672         name accordingly.
32673         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
32674         accommodate new getcwd.c.
32675         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
32676         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
32677         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
32678         that's all we need now.
32679
32680 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32681
32682         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
32683         argp-parse.c depends on getopt internals, that means we should
32684         always use our getopt, to be on the safe side.
32685         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
32686         order not to spoil the result of an eventual previous invocation
32687         of gl_GETOPT_SUBSTITUTE.
32688
32689 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32690
32691         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
32692         redefinition warnings. To avoid them, include the defines
32693         in `#if !defined __need_getopt ... #endif'. The only place
32694         where __getopt_argv_const is used is in definitions
32695         of getopt_long and getopt_long_only below, which are as well
32696         protected by `#ifndef __need_getopt'.
32697         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
32698         __need_getopt after including <stdio.h> and <unistd.h> These
32699         headers might have defined it.
32700
32701 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32702
32703         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
32704
32705 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
32706
32707         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
32708         (futimens): New function, which uses futimes if available.
32709         (futimens, utimens): Support timespec==NULL, with same semantics
32710         as utime and utimens.
32711         * lib/utimens.h (futimens): New decl.
32712
32713 2004-11-23  Jim Meyering  <jim@meyering.net>
32714
32715         * lib/getopt_.h: Remove trailing blanks.
32716
32717 2004-11-23  Jim Meyering  <jim@meyering.net>
32718
32719         * lib/__fpending.c: Add comment.
32720
32721 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
32722
32723         * modules/canonicalize (Depends-on): Add xreadlink.
32724         Problem reported by James Youngman.
32725
32726 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
32727
32728         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
32729         New macros.
32730         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
32731         optopt): Use them instead of invoking ## directly; otherwise, the
32732         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
32733
32734 2004-11-19  Bruno Haible  <bruno@clisp.org>
32735
32736         * lib/strtok_r.c: Move comments from here...
32737         * lib/strtok_r.h: ... to here.
32738
32739 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32740
32741         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
32742         implementations that mishandle size_t overflow.
32743
32744 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
32745
32746         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
32747         might fail.  Problem reported by Yoann Vandoorselaere.
32748         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
32749         implementations that mishandle size_t overflow.
32750
32751 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32752
32753         * modules/canon-host (Depends-on): Add strdup.
32754
32755 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32756
32757         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
32758
32759 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32760
32761         * lib/canon-host.c: Include "strdup.h".
32762         (canon_host): Use getaddrinfo if available, so that IPv6 works.
32763         Use strdup instead of malloc/strcpy to duplicate strings.
32764
32765         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
32766         (human_space_before_unit): New constant.
32767         * lib/human.c (human_readable): Support it.
32768
32769         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
32770         (xgetcwd): Set errno correctly when failing.
32771         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
32772         the failure is actually due to a PATH_MAX problem.
32773
32774         Further getopt changes to make it more likely that glibc will
32775         buy the changes back.
32776         * lib/getopt.c (POSIXLY_CORRECT): New constant.
32777         (getopt): Use it, so to preserve glibc semantic
32778         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
32779         when compiling for libc.
32780         * lib/getopt_.h (__getopt_argv_const): Bring it back.
32781         (getopt_long, getopt_long_only): Use it.
32782
32783         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32784         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
32785         (getopt): Argv is now char * const *, as per standard.
32786         (_getopt_internal_r, _getopt_internal): Argv is now char **,
32787         not char *__getopt_argv_const *.
32788         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32789         _getopt_long_only_r): Likewise.
32790         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
32791         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32792         _getopt_long_r, _getopt_long_only_r): Likewise.
32793         * lib/getopt_.h (__getopt_argv_const): Remove.
32794         (getopt): Argv is now char * const *, as per standard.
32795
32796         * lib/getdate.y (tORDINAL): New token.
32797         (day, relunit): Allow it for relative times.
32798         (relative_time_table): Use tORDINAL for ordinals.
32799
32800 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
32801
32802         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
32803         Document that "second" isn't allowed as an ordinal number.
32804
32805 2004-11-16  Jim Meyering  <jim@meyering.net>
32806
32807         * modules/closeout (Depends-on): Add fpending.
32808
32809 2004-11-15  Jim Meyering  <jim@meyering.net>
32810
32811         * lib/closeout.c: Include "__fpending.h" once again.
32812         Include <stdbool.h>.
32813         (close_stdout): Don't fail just because stdout was closed initially,
32814         since some programs don't write to stdout in the normal course of
32815         operation (other than --version and --help), and we don't want this
32816         function to make e.g. `touch file >&-' fail.
32817         But do fail if it was closed and someone has tried to write to it.
32818         E.g., `printf foo >&-' must fail.
32819
32820 2004-11-13  Jim Meyering  <jim@meyering.net>
32821
32822         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
32823
32824 2004-11-12  Simon Josefsson  <jas@extundo.com>
32825
32826         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
32827         small doc fix is still pending.
32828
32829 2004-11-11  Simon Josefsson  <jas@extundo.com>
32830
32831         * modules/strtok_r: New file.
32832
32833         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32834         strtok_r.
32835
32836 2004-11-11  Simon Josefsson  <jas@extundo.com>
32837
32838         * m4/strtok_r.m4: New file.
32839
32840         * m4/getopt.m4: Replace opterr.
32841
32842 2004-11-11  Simon Josefsson  <jas@extundo.com>
32843
32844         * lib/strtok_r.h, strtok_r.c: New file.
32845
32846 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32847
32848         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
32849         of replacing opterr, getopt, etc.  This should handle the
32850         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
32851
32852 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
32853
32854         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
32855         we can stop lying to compilers about the constness of argv when we
32856         are compiled outside glibc.
32857         (getopt, getopt_long, getopt_long_only): Use it.
32858         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
32859         _getopt_internal, getopt): Likewise.
32860         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
32861         _getopt_long_only_r): Likewise.
32862         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
32863         _getopt_long_r, _getopt_long_only_r): Likewise.
32864
32865         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
32866         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
32867         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
32868         the other external symbols.
32869         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
32870         declaration, since the above renaming now works around collisions.
32871
32872 2004-11-11  Jim Meyering  <jim@meyering.net>
32873
32874         * lib/linebreak.c: Remove trailing blanks.
32875         * lib/alloca_.h: Likewise.
32876         * lib/acosl.c: Likewise.
32877         * lib/euidaccess.c: Likewise.
32878         * lib/allocsa.h: Likewise.
32879
32880 2004-11-10  Simon Josefsson  <jas@extundo.com>
32881
32882         * m4/getaddrinfo.m4: New file.
32883
32884 2004-11-10  Simon Josefsson  <jas@extundo.com>
32885
32886         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
32887
32888 2004-11-10  Simon Josefsson  <jas@extundo.com>
32889
32890         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32891         getaddrinfo.
32892
32893         * modules/getaddrinfo: New file.
32894
32895 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32896
32897         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
32898
32899 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
32900
32901         * lib/mktime.c (SHR): New macro, which is a portable
32902         substitute for >> that should work even on Crays.
32903         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
32904         Problem reported by Mark D. Baushke in
32905         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
32906         * lib/getdate.y (SHR): Likewise.
32907         (tm_diff): Use it.
32908         * lib/strftime.c (SHR): Likewise.
32909         (tm_diff): Use it.
32910         * lib/quotearg.c (struct quoting_options): Use unsigned int for
32911         quote_these_too, so that right shifts are well defined.  All uses
32912         changed.
32913
32914 2004-11-10  Jim Meyering  <jim@meyering.net>
32915
32916         Ensure that no close failure goes unreported.
32917         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
32918         return early when it seems there's nothing to flush.
32919         Don't include __fpending.h.
32920
32921 2004-11-10  Jim Meyering  <jim@meyering.net>
32922
32923         * modules/closeout (Depends-on): Remove fpending.
32924
32925 2004-11-10  Jim Meyering  <jim@meyering.net>
32926
32927         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
32928
32929 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32930
32931         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
32932         gl_FUNC_STRFTIME.
32933         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
32934         and AC_REQUIRE when possible, to avoid duplicate checks.
32935         Check for <wchar.h>.
32936
32937 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32938
32939         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
32940
32941 2004-11-09  Bruno Haible  <bruno@clisp.org>
32942
32943         * m4/sockpfaf.m4: New file.
32944
32945 2004-11-05  Bruno Haible  <bruno@clisp.org>
32946
32947         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
32948         Reported by Mark D. Baushke <mdb@cvshome.org>.
32949
32950 2004-11-04  Bruno Haible  <bruno@clisp.org>
32951
32952         2004-09-11  Bruno Haible  <bruno@clisp.org>
32953                 * allocsa.valgrind: New file.
32954         2004-02-06  Bruno Haible  <bruno@clisp.org>
32955                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
32956                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
32957                 Reported by Christopher Seip <chris.seip@hp.com>.
32958
32959 2004-11-04  Bruno Haible  <bruno@clisp.org>
32960
32961         * modules/allocsa (Files): Add lib/allocsa.valgrind.
32962         (Makefile.am): Distribute it.
32963
32964 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
32965
32966         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
32967         with errno == ERANGE if the buffer is too small.
32968         Problem reported by Mark D. Baushke.
32969
32970 2004-11-03  Albert Chin  <china@thewrittenword.com>
32971             Paul Eggert  <eggert@cs.ucla.edu>
32972
32973         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
32974         equivalent, substitute $ac_type for equivalent type rather than
32975         blindly using uint32_t *always* which won't work if uint32_t is not
32976         available.  Define _UINT32_T to work around typedef of uint32_t if
32977         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
32978         2.5.1.
32979
32980 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32981
32982         * m4/jm-macros.m4: Sync from coreutils.
32983         (gl_MACROS): Check for mbrlen, for pathchk.
32984         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
32985
32986 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32987
32988         * lib/xreadlink.c (MAXSIZE): New macro.
32989         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
32990         size does not exceed MAXSIZE.  Avoid cast.
32991         As suggested by Mark D. Baushke in
32992         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
32993         if readlink fails with buffer size just under MAXSIZE, try again
32994         with MAXSIZE.
32995
32996 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
32997
32998         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
32999
33000 2004-11-02  Derek R. Price  <derek@ximbiot.com>
33001         and  Paul Eggert  <eggert@cs.ucla.edu>
33002
33003         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
33004         (get_date): Overparenthesize to avoid GCC warning.
33005
33006 2004-11-02  Bruno Haible  <bruno@clisp.org>
33007
33008         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
33009         returns void.
33010
33011 2004-11-02  Bruno Haible  <bruno@clisp.org>
33012
33013         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
33014         function returns void.
33015
33016 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
33017
33018         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
33019         fflush_unlocked, flockfile, funlockfile, funlockfile,
33020         fputs_unlocked, putc_unlocked.
33021
33022 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
33023
33024         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
33025         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
33026         already declared.
33027
33028 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
33029
33030         * modules/getdate (Files): Add doc/getdate.texi.
33031         (Depends-on): Add setenv, xalloc.
33032
33033 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
33034
33035         * lib/getdate.y: Add support for TZ="foo" within a date string.
33036         Fix some bugs near time_t boundaries.  Reject dates with
33037         out-of-range components, e.g., "Sept 31".
33038         Include <stdlib.h>, "setenv.h", "xalloc.h".
33039         (ISDIGIT_LOCALE): Remove; unused.
33040         Note that the TZ and time functions used here are not reentrant.
33041         (mktime_ok, get_tz): New functions.
33042         (TZBUFSIZE): New constant.
33043         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
33044         This requires that we sometimes generate our own TZ="XXX..." setting.
33045
33046 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
33047
33048         * doc/getdate.texi: New file, from coreutils with modifications for
33049         the new TZ parsing.
33050
33051 2004-10-27  Derek R. Price  <derek@ximbiot.com>
33052
33053         * lib/mktime.c (not_equal_tm): Remove redundant check.
33054
33055 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
33056
33057         * modules/regex (lib_SOURCES): Add regex.c.
33058         Reported by James Youngman in
33059         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
33060
33061 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
33062
33063         * lib/getdate.y: Use Bison 1.875 features, and some minor
33064         code cleanups.  This change does not affect semantics.
33065         Don't include <stdlib.h>; no longer needed.
33066         Don't include unlocked-io.h; only the "#if TEST" code uses
33067         stdio, and performance isn't crucial there.
33068         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
33069         Bison 1.875 features as described below.
33070         All uses of "PC." replaced by "pc->".
33071         (YYSTYPE): Add a forward declaration.
33072         (yylex, yyerror): Use full prototypes in forward decls.
33073         Use "%pure-parser" rather than obsolescent "%pure_parser".
33074         Use %parse-param and %lex-param instead of obsolescent
33075         YYPARSE_PARAM and YYLEX_PARAM.
33076         (meridian_table, month_and_day_table, time_units_table,
33077         relative_time_table, time_zone_table, military_table,
33078         lookup_zone, lookup_word, get_date):
33079         Use NULL instead of 0 where appropriate.
33080         (to_hour): Avoid abort (), to avoid a dependency on
33081         stdlib.h.
33082         (yyerror, yylex): Now accepts parser_control * arg.
33083         (main) [TEST]: Use '\0' rather than 0 for char.
33084
33085 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
33086
33087         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
33088
33089 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
33090
33091         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
33092         It's now the caller's responsibility to handle the case where
33093         !HAVE_GETPAGESIZE && !defined getpagesize.
33094
33095         * lib/mktime.c (leapyear): Arg is long int, not int.
33096
33097 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
33098
33099         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
33100
33101 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
33102
33103         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
33104         missing.  Problem reported by James Youngman.
33105
33106 2004-10-16  Simon Josefsson  <jas@extundo.com>
33107
33108         * gnulib-tool: Fix comments.  Fix parse problem.
33109         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
33110
33111 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
33112
33113         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
33114         implementation of getopt_long.  Problem reported by Alexander Taler in:
33115         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
33116
33117 2004-10-15  Bruno Haible  <bruno@clisp.org>
33118
33119         * gnulib-tool: Untabify. Initialize supplied_libname.
33120         (func_usage): More homogenous output.
33121         (func_modules_transitive_closure, func_modules_to_filelist,
33122         func_emit_lib_Makefile_am): New functions.
33123         (func_import): New function, extracted from big case statement. Use
33124         func_get_license, func_modules_transitive_closure,
33125         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
33126         opt_lgpl. Don't use test -a, as it's not portable.
33127         (func_create_testdir): Use func_modules_transitive_closure,
33128         func_modules_to_filelist, func_emit_lib_Makefile_am.
33129
33130 2004-10-15  Bruno Haible  <bruno@clisp.org>
33131
33132         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
33133
33134 2004-10-15  Bruno Haible  <bruno@clisp.org>
33135
33136         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
33137         the portions belonging to each module.
33138         Suggested by Derek Robert Price <derek@ximbiot.com>.
33139
33140 2004-10-12  Simon Josefsson  <jas@extundo.com>
33141
33142         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
33143         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
33144         to real functions.
33145
33146 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33147
33148         * modules/vsnprintf: New file.
33149
33150 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33151
33152         * m4/vsnprintf.m4: New file.
33153
33154 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33155
33156         * lib/vsnprintf.h: New file.
33157         * lib/vsnprintf.c: New file.
33158
33159 2004-10-11  Bruno Haible  <bruno@clisp.org>
33160
33161         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
33162         vsnprintf.
33163
33164 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
33165
33166         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
33167
33168 2004-10-07  Bruno Haible  <bruno@clisp.org>
33169
33170         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
33171         fits into the provided buffer.
33172
33173 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
33174
33175         * lib/diacrit.c, diacrit.h: Add GPL notice.
33176
33177         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
33178         notice.
33179         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
33180         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
33181         This avoids a potential constant-folding bug.
33182
33183 2004-10-05  Bruno Haible  <bruno@clisp.org>
33184
33185         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
33186         for the declaration of strsep.
33187
33188 2004-10-05  Bruno Haible  <bruno@clisp.org>
33189
33190         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
33191
33192 2004-10-04  Simon Josefsson  <jas@extundo.com>
33193
33194         * modules/memmem: New file.
33195         * tests/test-memmem.c: New file.
33196         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
33197
33198 2004-10-04  Simon Josefsson  <jas@extundo.com>
33199
33200         * m4/memmem.m4: New file.
33201
33202 2004-10-04  Simon Josefsson  <jas@extundo.com>
33203
33204         * lib/memmem.h: New file.
33205         * lib/memmem.c: New file, taken from glibc.
33206
33207 2004-10-04  Simon Josefsson  <jas@extundo.com>
33208
33209         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
33210         '#ifdef USE_UNLOCKED_IO'.
33211
33212 2004-10-04  Simon Josefsson  <jas@extundo.com>
33213
33214         * config/srclist.txt: Add memmem from glibc.
33215
33216 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33217
33218         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
33219
33220         * modules/argmatch, modules/argp, modules/closeout, modules/error,
33221         modules/exclude, modules/getdate, modules/getline,
33222         modules/getndelim2, modules/getpass, modules/getpass-gnu,
33223         modules/getusershell, modules/linebuffer, modules/md5,
33224         modules/mountlist, modules/posixtm, modules/readtokens,
33225         modules/readutmp, modules/regex, modules/sha1,
33226         modules/version-etc, modules/yesno:
33227         Remove dependency on unlocked-io.
33228
33229 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33230
33231         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
33232
33233         * m4/unlocked-io.m4: Add copyright notice.
33234         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
33235
33236 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33237
33238         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
33239         * lib/xmalloc.c (xmemdup): Likewise.
33240         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
33241         XFREE): Remove these long-obsolescent macros.
33242         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
33243         * lib/xstrdup.c: Remove.
33244
33245         * lib/regex.c (re_comp): Cast gettext return value to char *,
33246         Problem reported by Martin Neitzel via Mark D. Baushke.
33247
33248 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
33249
33250         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
33251         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
33252         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
33253         regex.c, sha1.c, version-etc.c, yesno.c:
33254         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
33255         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
33256         the includer's responsibility.
33257
33258         Sync from coreutils.
33259
33260         * lib/modechange.c (mode_compile): Don't decrement a pointer that
33261         points to the start of a string, as the C Standard says the
33262         resulting behavior is undefined.
33263
33264         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
33265         simple -> simple_backups, numbered_existing ->
33266         numbered_existing_backups, numbered -> numbered_backups
33267         to avoid shadowing problems.  All uses changed.
33268         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
33269         * lib/backupfile.c (check_extension, numbered_backup):
33270         Rename locals to avoid shadowing 'basename'.
33271         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
33272         once.
33273
33274         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
33275         * lib/.cvsignore: Add getopt.h.
33276
33277 2004-10-04  Bruno Haible  <bruno@clisp.org>
33278
33279         * modules/README: New file.
33280         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
33281         not a module.
33282
33283 2004-10-02  Jim Meyering  <jim@meyering.net>
33284
33285         * lib/dirfd.h, getpagesize.h: Add copyright notice.
33286
33287 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33288
33289         * modules/strsep: New file.
33290
33291 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33292
33293         * m4/strsep.m4: New file.
33294
33295 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
33296
33297         * lib/strsep.h: New file.
33298         * lib/strsep.c: New file.
33299
33300 2004-10-01  Simon Josefsson  <jas@extundo.com>
33301
33302         * lib/snprintf.c (snprintf): Handle size==0.
33303
33304 2004-10-01  Simon Josefsson  <jas@extundo.com>
33305             Bruno Haible  <bruno@clisp.org>
33306
33307         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
33308         (snprintf): Declare 'args'.
33309
33310 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
33311
33312         * lib/snprintf.c: Remove comments as to why each header is needed.
33313
33314 2004-10-01  Bruno Haible  <bruno@clisp.org>
33315
33316         * MODULES.html.sh: Add strsep.
33317
33318 2004-09-30  Simon Josefsson  <jas@extundo.com>
33319
33320         * modules/snprintf: New file.
33321
33322 2004-09-30  Simon Josefsson  <jas@extundo.com>
33323
33324         * m4/snprintf.m4: New file.
33325
33326 2004-09-30  Simon Josefsson  <jas@extundo.com>
33327
33328         * lib/snprintf.h, lib/snprintf.c: New files.
33329
33330 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
33331
33332         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
33333         (hol_entry_help): Never translate an empty string.
33334         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
33335         * lib/argp.h (OPTION_NO_TRANS): New option.
33336
33337 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33338
33339         * modules/argp (Maintainer): Replace Simon Josefsson
33340         by Sergey Poznyakoff.
33341
33342 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33343
33344         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
33345         changes merged back into glibc.
33346
33347 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
33348
33349         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
33350
33351 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
33352
33353         * lib/xvasprintf.c: Include xalloc.h.
33354         (xvasprintf): Use xalloc_die, not xmalloc_die.
33355
33356 2004-09-29  Bruno Haible  <bruno@clisp.org>
33357
33358         * modules/alloca-opt: New file, derived from modules/alloca.
33359         * modules/allocsa: Depend on alloca-opt instead of alloca.
33360         * modules/setenv: Likewise.
33361         * modules/vasnprintf: Likewise.
33362         * MODULES.html.sh: Add alloca-opt.
33363
33364 2004-09-28  Simon Josefsson  <jas@extundo.com>
33365
33366         * gnulib-tool: New parameter --lgpl, to asseert that modules are
33367         LGPL, and to replace license template from GPL to LGPL.
33368
33369 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33370
33371         * modules/dummy: Change license to LGPL.
33372
33373 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
33374
33375         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
33376
33377 2004-09-24  Simon Josefsson  <jas@extundo.com>
33378
33379         * modules/minmax (License): Change from GPL to LGPL.
33380
33381 2004-09-23  Simon Josefsson  <jas@extundo.com>
33382
33383         * gnulib-tool (--import): Typo.
33384
33385 2004-09-23  Simon Josefsson  <jas@extundo.com>
33386
33387         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
33388
33389 2004-09-22  Bruno Haible  <bruno@clisp.org>
33390
33391         * modules/*: Add 'License' field.
33392         * gnulib-tool: Accept --extract-license option.
33393         (func_get_license): New function.
33394
33395 2004-09-21  Bruno Haible  <bruno@clisp.org>
33396
33397         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
33398         Reported by Simon Josefsson.
33399
33400 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33401
33402         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
33403         gl_AC_TYPE_LONG_LONG.
33404
33405 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
33406
33407         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
33408
33409 2004-09-18  Simon Josefsson  <jas@extundo.com>
33410         and  Paul Eggert  <eggert@cs.ucla.edu>
33411
33412         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
33413         calls with autoreconf.  Define GL_LIB.
33414
33415 2004-09-14  Karl Berry  <karl@gnu.org>
33416
33417         * config/srclist.txt: unsync setenv.c, sigh.
33418
33419 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33420
33421         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
33422         Problem reported by Bruno Haible in:
33423         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
33424
33425 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
33426
33427         * config/srclist.txt: Comment out argp-pvh.c.
33428
33429 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
33430
33431         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
33432         in case some system header has #define'd it.  Problem reported by
33433         Soeren D. Schulze in
33434         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
33435
33436 2004-09-09  Karl Berry  <karl@gnu.org>
33437
33438         * regex.[ch]: delete from the root.  These were supposed to be
33439                 synced with emacs cvs, but this has not happened for about
33440                 a year, and anyway nothing else uses emacs regex.[ch].
33441                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
33442                 lib/regex[.ch] is untouched.
33443
33444 2004-09-09  Bruno Haible  <bruno@clisp.org>
33445
33446         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
33447
33448 2004-09-09  Bruno Haible  <bruno@clisp.org>
33449
33450         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
33451         modifications.
33452         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
33453
33454 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33455
33456         * modules/xvasprintf: New file.
33457         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
33458
33459 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
33460
33461         * lib/xvasprintf.h: New file.
33462         * lib/xvasprintf.c: New file.
33463         * lib/xasprintf.c: New file.
33464
33465 2004-09-08  Bruno Haible  <bruno@clisp.org>
33466
33467         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
33468
33469 2004-09-08  Bruno Haible  <bruno@clisp.org>
33470
33471         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
33472         length is > INT_MAX.
33473         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
33474         more.
33475
33476 2004-09-08  Bruno Haible  <bruno@clisp.org>
33477
33478         * lib/stdint_.h: New file, taken from GNU clisp.
33479
33480 2004-09-08  Bruno Haible  <bruno@clisp.org>
33481             Oskar Liljeblad  <oskar@osk.mine.nu>
33482
33483         * modules/stdint: New file.
33484         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
33485
33486 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33487
33488         Import from coreutils.
33489         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
33490         strings on unbounded length.  alloca's performance benefits aren't
33491         that important here.
33492         (V_STRDUP): Remove.
33493         (parse_with_separator): New function, with most of the internals
33494         of the old parse_user_spec.  Allow user to omit both user and group,
33495         for compatibility with FreeBSD.
33496         Clone only the user name, not the entire spec.
33497         Do not set *uid, *gid unless entirely successful.
33498         Avoid memory leak in some failing cases.
33499         Fix regression for USER.GROUP reported by Dmitry V. Levin in
33500         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
33501         (parse_user_spec): Rewrite to use parse_with_separator.
33502
33503 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33504
33505         * modules/userspec: Don't depend on alloca.
33506
33507 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
33508
33509         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
33510
33511 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
33512
33513         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
33514         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
33515         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
33516
33517 2004-08-16  Simon Josefsson  <jas@extundo.com>
33518
33519         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
33520         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
33521         Add --dry-run for --import.
33522         Let user provided command line parameters override configure.ac
33523         settings.
33524
33525 2004-08-12  Simon Josefsson  <jas@extundo.com>
33526
33527         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
33528         as discussed with Paul Eggert in threads rooted at
33529         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
33530         and
33531         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
33532         Before, the test was empty, and relied on ELIDE_CODE in source
33533         code.)
33534         (gl_PREREQ_GETOPT): New macro.
33535         (gl_GETOPT): Use them.
33536
33537 2004-08-12  Simon Josefsson  <jas@extundo.com>
33538
33539         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
33540         * lib/getopt_.h: Renamed from getopt.h.
33541
33542 2004-08-12  Simon Josefsson  <jas@extundo.com>
33543
33544         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
33545         Change default library name from libfoo to libgnu.
33546         Now, if you have a configure.ac that says:
33547                 gl_SOURCE_BASE(gl)
33548                 gl_M4_BASE(gl/m4)
33549                 gl_MODULES(error getopt etcetera)
33550                 gl_INIT
33551         you can import all you need by running:
33552                 ../gnulib/gnulib-tool --import
33553
33554         * modules/getopt (Files): Rename getopt.h to getopt_.h.
33555         (Makefile.am): Rewrite, use logic from argz.
33556         (Include): Use <getopt.h> instead of "getopt.h".
33557
33558 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33559
33560         * modules/argp (Files): Add m4/unlocked-io.m4.
33561         (Depends-on): Add extensions.
33562
33563 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33564
33565         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
33566         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
33567         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
33568         Check for program_invocation_name, program_invocation_short_name,
33569         flockfile, funlockfile, features.h, _getopt_long_only_r.
33570
33571 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33572
33573         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
33574         its complicated substitute.
33575         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
33576         and program_invocation_name.
33577         (__argp_basename) [!_LIBC]: Remove; the only use was
33578         replaced by its body.
33579         (__argp_short_program_name): Change condition from
33580         !defined __argp_short_program_name to
33581         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
33582         to match argp-namefrob.h.
33583         (__argp_failure): Don't assume strerror_r returns char *.
33584         * lib/argp-parse.c (N_): Define unconditionally.
33585         (argp_default_options): Fill out initializers with 0 to avoid
33586         gcc warnings.
33587
33588 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
33589
33590         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
33591         getopt1.c.
33592
33593 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33594
33595         Merge from coreutils.
33596
33597         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
33598
33599         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
33600         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
33601
33602 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33603
33604         Merge from coreutils.
33605
33606         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
33607         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
33608         for Reliant Unix 5.43.
33609
33610         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
33611         (union fooround): Use uintmax_t, not long int.
33612         The rest is a merge from libc:
33613         [defined _LIBC]: Include <shlib-compat.h>.
33614         (_obstack) [defined _LIBC]: Remove after 2.3.4.
33615
33616         * lib/settime.c (settime): Recode to avoid warning with
33617         Sun Forte C 6U2.
33618
33619         * lib/strverscmp.c: Convert to UTF-8.
33620
33621 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
33622
33623         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
33624         m4/uintmax_t.m4.
33625
33626 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33627
33628         * modules/xalloc-die: New file.
33629         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
33630
33631         * modules/md5 (Files): Add m4/uint32_t.m4.
33632         * modules/sha1: Renamed from modules/sha.
33633         (Files):
33634         Rename lib/sha.h to lib/sha1.h.
33635         Rename lib/sha.c to lib/sha1.c.
33636         Rename m4/sha.m4 to m4/sha1.m4.
33637         (lib_SOURCES): Likewise.
33638         (configure.ac): Rename gl_SHA to gl_SHA1.
33639         (Include): sha.h -> sha1.h.
33640
33641 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33642
33643         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
33644         * m4/sha1.m4: Renamed from sha.m4.
33645         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
33646
33647 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
33648
33649         * lib/obstack.h (obstack_empty_p):
33650         Don't assume that chunk->contents is suitably aligned.
33651         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
33652         Likewise. Problem reported by Benno in
33653         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
33654
33655         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
33656         readable.  This could be improved further but it'd take some work.
33657
33658 2004-08-08  Simon Josefsson  <jas@extundo.com>
33659
33660         * modules/xgethostname (Depends-on): Remove exit and error (not
33661         used).
33662
33663         * modules/getpass-gnu: Add getpass.h.
33664         (Depends-on): Add stdbool.
33665         * modules/getpass: Add getpass.h.
33666
33667 2004-08-08  Simon Josefsson  <jas@extundo.com>
33668
33669         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
33670         Check getpass declaration.
33671
33672 2004-08-08  Simon Josefsson  <jas@extundo.com>
33673
33674         * lib/xgethostname.c: Don't include error.h (not used).
33675
33676         * lib/getpass.h: Add.
33677         * lib/getpass.c: Include getpass.h first.
33678
33679 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
33680
33681         * lib/xalloc-die.c: New file.
33682         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
33683         All uses removed.
33684         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
33685         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
33686         xalloc-die.c.
33687         (_, N_, xalloc_die): Move to xalloc-die.c.
33688         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
33689         so that we needn't mess with xalloc_msg_memory_exhausted.
33690
33691         * lib/sha1.h: Renamed from sha.h.
33692         (SHA1_H): Renamed from _SHA_H.
33693         (sha1_ctx): Renamed from sha_ctx.
33694         (sha1_init_ctx): Renamed from sha_init_ctx.
33695         (sha1_process_block): Renamed from sha_process_block.
33696         (sha1_process_bytes): Renamed from sha_process_bytes.
33697         (sha1_finish_ctx): Renamed from sha_finish_ctx.
33698         (sha1_read_ctx): Renamed from sha_read_ctx.
33699         (sha1_stream): Renamed from sha_stream.
33700         (sha1_buffer): Renamed from sha_buffer.
33701         * lib/sha1.c: Likewise; renamed from sha.c.
33702         Do not include <sys/types.h>.
33703         Include <stddef.h> rather than <stdlib.h>.
33704
33705 2004-08-08  Bruno Haible  <bruno@clisp.org>
33706
33707         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
33708         FILESYSTEM_PREFIX_LEN.
33709         * lib/progreloc.c: Likewise.
33710         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
33711
33712 2004-08-06  Simon Josefsson  <jas@extundo.com>
33713
33714         * modules/progname (Depends-on): Don't depend on stdbool.
33715
33716 2004-08-06  Simon Josefsson  <jas@extundo.com>
33717
33718         * modules/getsubopt: New file.
33719         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
33720         getsubopt.
33721
33722 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33723
33724         More merge from coreutils.
33725
33726         * m4/utimens.m4, m4/utimecmp.m4: New files.
33727         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
33728         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
33729         prereq.m4, sha.m4: Import changes from coreutils.
33730
33731 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33732
33733         More merge from coreutils.
33734         * modules/raise, modules/readtokens0, modules/utimens:
33735         * modules/utimecmp, module/xnanosleep: New files.
33736         * modules/strftime: Add lib/strftime.h.
33737         Change include from <time.h> to "strftime.h".
33738         * modules/yesno: Add lib/yesno.h.
33739         * modules/backupfile: Remove lib/addext.c.
33740         * modules/euidaccess: Add stat-macros.h.
33741         * modules/canonicalize, modules/euidaccess,
33742         modules/filemode, modules/lchown, modules/makepath,
33743         modules/rmdir, modules/stat: Likewise.
33744
33745 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33746
33747         Merge from tar.
33748         * lib/argp-help.c (make_hol, hol_append): Don't assume that
33749         SIZE_MAX is a valid preprocessor constant.
33750         (__argp_basename): Change from "#ifndef _LIBC"
33751         to "#ifndef __argp_short_program_name", so that
33752         we don't compile these functions for tar.
33753
33754         More merges from coreutils.
33755         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
33756         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
33757         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
33758         * lib/addext.c: Remove; no longer needed.
33759         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
33760         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
33761         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
33762         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
33763         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
33764         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
33765         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
33766         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
33767         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
33768         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
33769         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
33770         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
33771         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
33772         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
33773         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
33774         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
33775         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
33776         Import changes from coreutils.
33777
33778 2004-08-05  Simon Josefsson  <jas@extundo.com>
33779
33780         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
33781
33782 2004-08-05  Simon Josefsson  <jas@extundo.com>
33783
33784         * m4/getsubopt.m4: New file.
33785
33786 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33787
33788         Merge from coreutils.
33789
33790         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
33791         * m4/getcwd-path-max.m4: New files.
33792
33793         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
33794         FILESYSTEM_PREFIX_LEN ->
33795         FILE_SYSTEM_PREFIX_LEN.
33796         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
33797         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
33798         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
33799         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
33800
33801         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
33802         prerequisite modules now handle the DOS stuff.
33803         Don't check for unistd.h.
33804
33805 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33806
33807         Merge from coreutils.
33808
33809         * lib/.gdb-history: Remove; this doesn't belong here.
33810
33811         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
33812         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
33813         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
33814         * lib/getcwd.c: New files.
33815
33816         * lib/dirname.h: Include <stdbool.h>.
33817         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
33818         for consistency with POSIX terminology.  All uses changed.
33819         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
33820         (strip_trailing_slashes): Use bool for booleans.
33821         * lib/stripslash.c (strip_trailing_slashes): Likewise.
33822
33823         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
33824         sometimes returns a positive errno value even when it succeeds.
33825         (print_errno_message) [!LIBC]: Fall back on strerror if
33826         __strerror_r fails.
33827
33828         * lib/path-concat.c (mempcpy): Don't define if a system header defines
33829         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
33830         (longest_relative_suffix): New function.
33831         (path_concat): Use it.  Assume first argument is not NULL.
33832         Port to DOS.  Omit redundant separators.
33833         Report an error instead of returning NULL.
33834         Use mempcpy instead of memcpy.
33835         (xpath_concat): Remove: not declared or used.
33836
33837         * lib/same.h: Include <stdbool.h>
33838         (same_name): Return bool, not int.
33839         * lib/same.c (same_name): Likewise.
33840         (errno): Don't declare; we assume C89 or better now.
33841
33842         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
33843         if not already defined.
33844
33845         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
33846         * lib/dup-safer.c (errno): Likewise.
33847
33848 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
33849
33850         Merge from coreutils.
33851         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
33852         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
33853         * modules/path-concat: Don't depend on strdup.
33854
33855 2004-08-03  Simon Josefsson  <jas@extundo.com>
33856
33857         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
33858         * lib/progname.h: Don't include stdbool.h.
33859
33860 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33861
33862         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
33863         * MODULES.html.sh (func_all_modules): Remove fatal.
33864
33865 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33866
33867         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
33868
33869 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
33870
33871         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
33872         working.
33873
33874 2004-08-02  Simon Josefsson  <jas@extundo.com>
33875
33876         * lib/getsubopt.h: New file, with comments from Bruno Haible.
33877         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
33878         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
33879
33880 2004-08-01  Simon Josefsson  <jas@extundo.com>
33881
33882         * lib/xgetdomainname.c: Include stdlib.h, for free().
33883
33884 2004-07-19  Bruno Haible  <bruno@clisp.org>
33885
33886         * MODULES.html.sh (func_all_modules): Add dummy.
33887
33888 2004-07-16  Simon Josefsson  <jas@extundo.com>
33889
33890         * modules/dummy: New file.
33891
33892 2004-07-16  Simon Josefsson  <jas@extundo.com>
33893
33894         * lib/dummy.c: New file.
33895
33896 2004-07-16  Bruno Haible  <bruno@clisp.org>
33897
33898         * lib/backupfile.h: Add extern "C" for C++.
33899         * lib/closeout.h: Likewise.
33900         * lib/copy-file.h: Likewise.
33901         * lib/findprog.h: Likewise.
33902         * lib/full-write.h: Likewise.
33903         * lib/pathname.h: Likewise.
33904         * lib/progname.h: Likewise.
33905         * lib/stpcpy.h: Likewise.
33906         * lib/stpncpy.h: Likewise.
33907         * lib/strcase.h: Likewise.
33908         * lib/strstr.h: Likewise.
33909         * lib/xalloc.h: Likewise.
33910
33911         * lib/mbswidth.h: Add extern "C" for C++.
33912         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
33913
33914 2004-07-13  Robert Millan  <robertmh@gnu.org>
33915
33916         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
33917
33918 2004-07-09  Simon Josefsson  <jas@extundo.com>
33919
33920         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
33921         failed without this.)
33922
33923 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33924
33925         * modules/chown (Files): Add lib/fchown-stub.c, since
33926         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
33927
33928 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33929
33930         * lib/fchown-stub.c: New file.
33931
33932 2004-06-24  Jim Meyering  <jim@meyering.net>
33933
33934         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
33935
33936 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33937
33938         * modules/argz: Omit "#include".
33939
33940         * MODULES.html.sh (func_all_modules): Add calloc, to match
33941         2004-06-01 addition of calloc module.
33942
33943 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33944
33945         * m4/argz.m4: New file, which is autoupdated from libtool.
33946
33947 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33948
33949         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
33950         libtool.
33951
33952 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33953
33954         * config/srclist-update: Don't insist on "USA." before the
33955         close-comment, as libtool omits the period and puts the */ on a
33956         separate line.
33957         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
33958         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
33959
33960 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
33961
33962         * modules/argz: New file.
33963         * MODULES.html.sh (func_all_modules): Add argz.
33964
33965 2004-06-12  Jim Meyering  <jim@meyering.net>
33966         and  Paul Eggert  <eggert@cs.ucla.edu>
33967
33968         * modules/hash (Files): Add lib/xalloc.h.
33969         * modules/pipe (Depends-on): Add wait-process.
33970         * modules/stat (Depends-on): Add xalloc.
33971         * modules/userspec (Files): Add lib/userspec.h.
33972         * modules/xstrto
33973
33974         Upgrade from gettext-0.13.
33975         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
33976         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
33977         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
33978
33979 2004-06-10  Jim Meyering  <jim@meyering.net>
33980
33981         * lib/calloc.c: New file.
33982
33983 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
33984
33985         * lib/getdate.y (yylex): Allow space between sign and number.
33986         Problem reported by Dan Jacobson.
33987
33988 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
33989
33990         Merge from coreutils CVS.
33991
33992         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
33993         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
33994         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
33995         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
33996         xstrtol.m4: Fix copyright date and/or serial number.
33997
33998         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
33999         See if we need an fchown replacement.
34000         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
34001         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
34002         and use the replacement function if we detect either defect.
34003
34004         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
34005         gl_UTIMECMP.
34006
34007 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
34008         and  Jim Meyering  <jim@meyering.net>
34009
34010         Merge from coreutils CVS.
34011
34012         * lib/stat-macros.h: New file, with contents from file-type.h
34013         and coreutils' system.h.
34014         * lib/file-type.c: Include "stat-macros.h".
34015         * lib/file-type.h (file_type): Move all macro definitions to new file,
34016         stat-macros.h.
34017
34018         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
34019         Wrap old code with this conditional.
34020         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
34021         function that does not dereference symlinks.
34022         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
34023
34024         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
34025         dependency problems.
34026         (xreadlink): Accept new arg SIZE, for efficiency.
34027         All decls and uses changed.
34028         * lib/xreadlink.h: Include <stddef.h>, for size_t.
34029
34030         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
34031         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
34032
34033         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
34034         sysexits.h.
34035
34036 2004-06-01  Jim Meyering  <jim@meyering.net>
34037
34038         * m4/calloc.m4: New file.
34039
34040 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
34041
34042         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
34043         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
34044         Also, fix a typo in a diagnostic.
34045
34046 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
34047
34048         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
34049         or AC_FUNC_REALLOC.
34050
34051 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
34052
34053         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
34054         macros to be defined.
34055         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
34056         the allocator returns NULL because the requested size is zero.
34057
34058 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
34059
34060         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
34061         var.  Add comment explaining why libc still defines it.  This
34062         merges the following patch from glibc:
34063         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
34064
34065 2004-05-20  Andreas Schwab  <schwab@suse.de>
34066
34067         * m4/free.m4: Replace free if it not known to work, not the other
34068         way round.
34069
34070 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
34071
34072         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
34073         present in glibc since revision 1.1 of this file.
34074         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
34075         obstack_alignment_mask, obstack_alloc, obstack_base,
34076         obstack_blank, obstack_blank_fast, obstack_chunk_size,
34077         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
34078         obstack_grow0, obstack_init, obstack_int_grow,
34079         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
34080         obstack_next_free, obstack_object_size, obstack_ptr_grow,
34081         obstack_ptr_grow_fast, obstack_room): Remove declarations of
34082         nonexistent functions.
34083
34084 2004-05-18  Karl Berry  <karl@gnu.org>
34085
34086         * config/srclist.txt: break link for vasnprintf.c.
34087
34088 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34089
34090         Port obstack to the AS/400, where pointers are 16 bytes wide and
34091         you cannot cast an integer to a valid pointer.  This patch is
34092         currently waiting to be integrated into glibc; see
34093         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
34094
34095         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
34096         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
34097         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
34098         (struct obstack): temp member is now a union of a pointer and
34099         an integer, instead of an integer.  All integer uses changed.
34100         This does not affect the physical layout of struct obstack,
34101         except on hosts (like the AS/400) where the size or alignment of
34102         void * is greater than that of ptrdiff_t.
34103         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
34104         __STDC__)]: Store temporary in pointer member of union, not
34105         integer member.
34106         * lib/obstack.c: Include <stddef.h>, for offsetof.
34107         (struct fooalign): Remove; it doesn't need a name.
34108         (union fooround): Change double to long double, and add void *.
34109         (DEFAULT_ALIGNMENT): Use offsetof to compute.
34110         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
34111         not a macro.  Hence the values are always int; so remove all
34112         casts-to-int in uses.
34113
34114 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
34115
34116         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
34117         we can get this patch merged into glibc.
34118
34119 2004-05-17  Derek R. Price  <derek@ximbiot.com>
34120             Paul Eggert  <eggert@cs.ucla.edu>
34121
34122         * m4/argp: Depend on alloca.
34123
34124 2004-05-17  Derek R. Price  <derek@ximbiot.com>
34125             Paul Eggert  <eggert@cs.ucla.edu>
34126
34127         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
34128         freecoding.
34129
34130 2004-05-17  Bruno Haible  <bruno@clisp.org>
34131
34132         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
34133         precision that consists of a '.' followed by an empty digit string.
34134         Patch by Tor Lillqvist <tml@iki.fi>.
34135
34136 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34137
34138         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
34139         for backward compatibility with older code.  We need our own
34140         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
34141         it under some other name, and our alloca.h will define it.
34142
34143 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
34144             Derek Price  <derek@ximbiot.com>
34145
34146         * lib/alloca.c: Include <alloca.h>, to get our interface.
34147         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
34148         include <alloca.h> first.  Use C89 prototype for alloca; this
34149         requires including <stddef.h> for size_t.  Use extern "C" if C++.
34150         Use #elif for simplicity, since we can assume C89 now.
34151         Don't try to source the system alloca.h since it will not be found
34152         and to prevent recursively including its replacement.
34153         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
34154         * lib/regex.c: Likewise.
34155
34156 2004-05-16  Derek Price  <derek@ximbiot.com>
34157             Paul Eggert  <eggert@cs.ucla.edu>
34158
34159         getline cleanup.  This changes the getndelim2 API: both order of
34160         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
34161         no delimiter).
34162
34163         * lib/getline.c: Don't include stddef.h or stdio.h, since our
34164         interface does that.
34165         (getline): Always use getdelim, so that we don't have two
34166         copies of this code.
34167         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
34168         if available.
34169         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
34170         (GETNDELIM2_MAXIMUM): New macro.
34171         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
34172         instead of the old practice of delim2==0.  All callers changed.
34173         Return -1 on overflow, instead of returning junk.
34174         Do not set *linesize unless allocation succeeds.
34175         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
34176         that we include sys/types.h.
34177         * lib/getnline.h: Likewise.
34178         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
34179         (getndelim2): Reorder arguments.
34180         * lib/getnline.c (getnline, getndelim):
34181         Don't discard the NMAX argument.
34182         (getnline): Invoke getndelim, to avoid code duplication.
34183         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
34184         of (size_t) -1 by callers of the getnline family.
34185
34186 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
34187
34188         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
34189         Check for gettimeofday.
34190         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
34191         Check for settimeofday, stime.
34192
34193 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
34194
34195         * lib/nanosleep.c (suspended): Change its type from int to
34196         sig_atomic_t volatile.
34197         (first_call): Make it private to rpl_nanosleep, and have it
34198         be zero initially as that's a bit faster.
34199         (my_usleep): Round up fractional times instead of truncating them,
34200         as this is the usual meaning for 'sleep'.
34201
34202         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
34203         doesn't work.
34204         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
34205         (ENOSYS): Define if not defined.
34206         (settime): Fall back on stime if it exists and settimeofday fails.
34207         But don't bother with fallbacks if a method fails with errno == EPERM.
34208
34209 2004-05-11  Jim Meyering  <jim@meyering.net>
34210
34211         Prior to this change, the save_cwd caller required read access to the
34212         current directory on most systems (ones with the fchdir function).
34213
34214         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
34215         fails, try write-only, and finally, resort to using xgetcwd.
34216
34217 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
34218
34219         * lib/obstack.c, obstack.h: Import changes from libc.
34220
34221 2004-04-28  Bruno Haible  <bruno@clisp.org>
34222
34223         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
34224         also implicitly appends .exe to executables.
34225         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
34226         accepts Windows pathnames.
34227         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34228         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34229         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
34230         Treat Cygwin like Windows, since it now accepts Windows pathnames.
34231         Reported by Derek Robert Price <derek@ximbiot.com>.
34232
34233 2004-04-21  Karl Berry  <karl@gnu.org>
34234
34235         * config/srclist.txt (localcharset.c): break sync.
34236
34237 2004-04-20  Paul Eggert  <eggert@twinsun.com>
34238
34239         * m4/host-os.m4: Add a copyright notice.
34240
34241 2004-04-20  Jim Meyering  <jim@meyering.net>
34242
34243         Change UTILS_ to gl_ in AC_DEFINE'd names.
34244         Change utils_- and jm_-prefixed variables, too.
34245         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
34246         UTILS_FUNC_MKDIR_TRAILING_SLASH.
34247         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
34248
34249         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
34250         Don't emit trailing blanks.
34251         Also rename jm_-prefixed variables to have gl_ prefix.
34252
34253         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
34254         Also rename jm_-prefixed variables to have gl_ prefix.
34255
34256         * m4/jm-macros.m4: Reflect the renamings.
34257         * m4/prereq.m4: Likewise.
34258
34259 2004-04-20  Jim Meyering  <jim@meyering.net>
34260
34261         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
34262         memory.
34263
34264 2004-04-20  Jim Meyering  <jim@meyering.net>
34265             Bruno Haible  <bruno@clisp.org>
34266
34267         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
34268         memory when realloc fails.
34269
34270 2004-04-19  Jim Meyering  <jim@meyering.net>
34271
34272         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
34273         now that readutmp.c may call `free (0)'.
34274
34275 2004-04-19  Bruno Haible  <bruno@clisp.org>
34276
34277         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
34278         * m4/inttypes_h.m4: Likewise.
34279         * m4/stdint_h.m4: Likewise.
34280         * m4/intmax_t.m4: Likewise.
34281         * m4/uintmax_t.m4: Likewise.
34282
34283 2004-04-18  Jim Meyering  <jim@meyering.net>
34284
34285         * m4/prereq.m4: Don't forbid jm_ prefix.
34286
34287         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
34288         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
34289         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
34290         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
34291         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
34292         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
34293         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
34294         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
34295         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
34296         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
34297         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
34298         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
34299         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
34300         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
34301         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
34302         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
34303         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
34304         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
34305         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
34306
34307 2004-04-18  Jim Meyering  <jim@meyering.net>
34308
34309         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
34310         failure, don't leak memory and do call END_UTMP_ENT.
34311
34312 2004-04-16  Jim Meyering  <jim@meyering.net>
34313
34314         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
34315         coreutils' stat program.
34316         (gl_PREREQ): Don't require jm_PREREQ_STAT.
34317
34318 2004-04-11  Paul Eggert  <eggert@twinsun.com>
34319
34320         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
34321         C89.
34322         (CHAR_BIT): Remove, since we assume C89.
34323         Include <stdint.h> if available, as per current Autoconf CVS advice.
34324
34325 2004-03-31  Jim Meyering  <jim@meyering.net>
34326
34327         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
34328         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
34329         * m4/xalloc.m4: Likewise.
34330
34331 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34332
34333         Merge from coreutils.
34334
34335         * m4/inttostr.m4: New file.
34336         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
34337         Require AM_STDBOOL_H and gl_TIMESPEC instead.
34338         Require gl_CLOCK_TIME.
34339         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
34340
34341 2004-03-30  Paul Eggert  <eggert@twinsun.com>
34342
34343         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
34344         not bool, to be more consistent with Unix conventions.
34345         Suggested by Bruno Haible.
34346
34347         Merge from coreutils.
34348
34349         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
34350         * lib/umaxtostr.c: New files.
34351
34352         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
34353         the usual <time.h> dance.
34354         (get_date): Change signature to support fractional time stamps.
34355         All callers changed.
34356         * lib/getdate.y: Include "getdate.h" first, as we can now
34357         assume C89 and don't need to worry about 'const'.
34358         Similarly, include "unlocked-io.h" near start, not in middle.
34359         Include <limits.h>.
34360         (textint.value): Use long int rather than int.
34361         (textint.digits): Use size_t rather than int.
34362         (BILLION, LOG10_BILLION): New constants.
34363         (parser_control): New member rel_ns.  Members day_ordinal,
34364         time_zone, month, day, hour, minutes, rel_year, rel_month,
34365         rel_day, rel_hour, rel_minutes, rel_seconds
34366         are now long int, not int.  Member seconds is now struct timespec,
34367         not int.  New member timespec_seen.  Members dates_seen, days_seen,
34368         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
34369         not int.
34370         (%union.intval): Now long int, not int.
34371         New member timespec.
34372         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
34373         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
34374         (spec): Now is a timespec or an item list.
34375         (timespec, items): New nonterminals.
34376         (time, rel, relunit, number, get_date):
34377         Add support for fractional seconds.
34378         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
34379         (gmtime, localtime, mktime): Remove decls; not needed with C89.
34380         (to_hour): First arg is now long int, not int.
34381         (to_year): Returns long int, not int.
34382         Don't treat year -70 like 70.
34383         (tm_diff): Returns long int, not int.
34384         (lookup_word): Use bool instead of int when appropriate.
34385         (yylex): Use size_t for count, not int.
34386         Detect overflow when parsing large integer constants.
34387         Add support for fractions.
34388         (get_date): Make pointers 'const' if possible.
34389         Use more-portable code to detect integer overflow.
34390         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
34391         Don't use ctime; it's not reliable if the year has >4 digits.
34392
34393         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
34394         This is for compatibility with BSD.
34395
34396         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
34397         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
34398         From coreutils' system.h.
34399
34400         * lib/userspec.c: Don't include "posixver.h".
34401         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
34402         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
34403         compatible extension.  Simplify code by removing a boolean int
34404         that was always nonzero if a string was nonnull.
34405
34406 2004-03-30  Jim Meyering  <jim@meyering.net>
34407
34408         Merge from coreutils.
34409
34410         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
34411         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
34412         on some systems one must include <grp.h> before it.
34413         Reported by Christian Krackowizer.
34414
34415 2004-03-30  Jim Meyering  <jim@meyering.net>
34416
34417         Merge from coreutils.
34418
34419         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
34420
34421         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
34422         an empty input stream.
34423
34424         * lib/readtokens.c: Include <stdbool.h>.
34425         (readtoken): Use `size_t' rather than int/long.
34426         All callers adjusted.
34427         Use `bool' rather than `int' where appropriate.
34428         Use memset rather than an explicit loop.
34429         Use x2nrealloc rather than xrealloc.
34430         Allow the use of `\0' as a delimiter.
34431         (readtokens): Likewise.
34432         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
34433
34434 2004-03-30  Jim Meyering  <jim@meyering.net>
34435
34436         * m4/realloc.m4: Remove file, since now it does no more than
34437         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
34438         the `configure.ac' section of module/realloc.
34439         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
34440
34441 2004-03-30  Bruno Haible  <bruno@clisp.org>
34442
34443         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
34444         nonnull.
34445
34446 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34447
34448         Merge changes to getloadavg.c from coreutils and Emacs.
34449
34450         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
34451         Define to an expression, not to the empty string.
34452         Include cloexec.h and xalloc.h.
34453         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
34454         Use set_cloexec_flag rather than rolling our own.
34455         * lib/cloexec.c, lib/cloexec.h: New files.
34456
34457 2004-03-29  Paul Eggert  <eggert@twinsun.com>
34458
34459         * m4/cloexec.m4: New file.
34460
34461 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34462
34463         * lib/getopt.h: Sync with libc CVS.
34464
34465 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34466             Bruno Haible  <bruno@clisp.org>
34467
34468         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
34469         mbswidth.
34470
34471 2004-03-18  Paul Eggert  <eggert@twinsun.com>
34472             Bruno Haible  <bruno@clisp.org>
34473
34474         * lib/mbswidth.h: Include <wchar.h> only if
34475         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
34476         <wchar.h>.
34477         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
34478
34479 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34480
34481         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
34482         Sync with libc CVS.
34483         * lib/getopt_int.h: New file, also synced from libc.
34484
34485 2004-03-09  Paul Eggert  <eggert@twinsun.com>
34486
34487         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
34488         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
34489         Bring back getopt.c, getopt.h, getopt1.c.
34490
34491 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34492
34493         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
34494         All uses changed.  Check for sa_sigaction member; this fixes
34495         a bug first reported by Jason Andrade in
34496         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34497
34498 2004-03-07  Paul Eggert  <eggert@twinsun.com>
34499
34500         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
34501         '#if' expressions.  Unlike the code it replaces, it does not
34502         depend on (defined _SC_PAGESIZE).  However, it does depend on
34503         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
34504         first reported by Jason Andrade in
34505         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
34506
34507 2004-02-25  Simon Josefsson  <jas@extundo.com>
34508
34509         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
34510
34511 2004-02-25  Simon Josefsson  <jas@extundo.com>
34512
34513         * lib/strdup.h: New file.
34514         * lib/strdup.c: Include it.
34515         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
34516         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
34517
34518 2004-02-23  Karl Berry  <karl@gnu.org>
34519
34520         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
34521         (from fencepost.gnu.org:/gd/gnuorg).
34522
34523 2004-02-23  Karl Berry  <karl@gnu.org>
34524
34525         * config/srclistvars.sh (GNUORG) [karl]: redefine.
34526         * config/srclist.txt: add maintain/standards documents.
34527
34528 2004-02-18  Bruno Haible  <bruno@clisp.org>
34529
34530         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
34531         Reported by Derek Robert Price <derek@ximbiot.com>.
34532
34533 2004-02-16  Karl Berry  <karl@gnu.org>
34534
34535         * config/mkinstalldirs, install-sh: update from automake.
34536
34537 2004-02-06  Karl Berry  <karl@gnu.org>
34538
34539         * m4/po.m4: update from gettext 0.14.1.
34540
34541 2004-02-06  Karl Berry  <karl@gnu.org>
34542
34543         * lib/config.charset: update from gettext 0.14.1.
34544
34545 2004-02-05  Paul Eggert  <eggert@twinsun.com>
34546
34547         Add comments and code, prompted by suggestions from Bruno Haible
34548         for sh-quote.
34549         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
34550         describing the enum quoting_style values.
34551         * lib/quotearg.c (quotearg_alloc): New function.
34552         (quotearg_buffer_restyled): Treat lone { and } as special.
34553         Treat = as special.  Work around bug with older shells
34554         that "see" a '\' that is really the 2nd byte of a multibyte char.
34555         Quote empty string with shell_quoting_style.
34556
34557 2004-02-03  Bruno Haible  <bruno@clisp.org>
34558
34559         * m4/pipe.m4: New file, from GNU gettext.
34560
34561 2004-02-03  Bruno Haible  <bruno@clisp.org>
34562
34563         * lib/pipe.h: New file, from GNU gettext.
34564         * lib/pipe.c: New file, from GNU gettext.
34565
34566 2004-01-27  Bruno Haible  <bruno@clisp.org>
34567
34568         * m4/execute.m4: New file, from GNU gettext.
34569
34570 2004-01-27  Bruno Haible  <bruno@clisp.org>
34571
34572         * lib/execute.h: New file, from GNU gettext.
34573         * lib/execute.c: New file, from GNU gettext.
34574         * lib/w32spawn.h: New file, from GNU gettext.
34575
34576 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34577
34578         Merge from diffutils.
34579
34580         * lib/file-type.c (file_type): Add typed memory objects.
34581         * lib/file-type.h (S_TYPEISTMO): New macro.
34582
34583         * lib/c-stack.h (c_stack_action): Remove argv argument.
34584         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
34585         (die): Don't calculate message unless segv_action returns.
34586         (get_stack_location, min_address_from_argv, max_address_from_argv,
34587         volatile stack_base, volatile_stack_size): Remove.
34588         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
34589         that every segmentation violation is a stack overflow.  (Ouch!)
34590         See Debian bug 136249 (still outstanding) for more info about why
34591         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
34592
34593 2004-01-24  Paul Eggert  <eggert@twinsun.com>
34594
34595         Exit-status fix from coreutils.
34596
34597         Use exit_failure consistently in place of EXIT_FAILURE,
34598         so that program exit statuses are consistent on failure.
34599
34600         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
34601         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
34602         * lib/argmatch.h: Comment fix to match the above.
34603         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
34604         Now a macro referring to exit_failure, instead of a separate
34605         variable.  Include "exitfail.h" to get it.
34606         * lib/xstrtol.h: Include "exitfail.h".
34607         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
34608
34609         * lib/long-options.c (parse_long_options): Use prototype
34610         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
34611         for clarity.
34612
34613 2004-01-21  Jim Meyering  <jim@meyering.net>
34614
34615         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
34616         so as not to conflict with a different-sized __mktime_internal
34617         function in GNU libc.
34618         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
34619         Problem building statically-linked `ls' reported by Michael Brunnbauer.
34620
34621 2004-01-20  Karl Berry  <karl@gnu.org>
34622
34623         * config/config.guess: update from config.
34624
34625         * config/srclistvars.sh: GNUWWWLICENSES for karl.
34626
34627 2004-01-20  Bruno Haible  <bruno@clisp.org>
34628
34629         Safer stack allocation.
34630         * lib/setenv.c: Include allocsa.h.
34631         (alloca): Remove fallback definition.
34632         (freea): Remove macro.
34633         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
34634         instead of freea.
34635
34636 2004-01-20  Bruno Haible  <bruno@clisp.org>
34637
34638         * m4/eealloc.m4: New file, from GNU gettext.
34639
34640 2004-01-20  Bruno Haible  <bruno@clisp.org>
34641
34642         * m4/allocsa.m4: New file, from GNU gettext.
34643
34644 2004-01-20  Bruno Haible  <bruno@clisp.org>
34645
34646         * lib/xallocsa.h: New file, from GNU gettext.
34647         * lib/xallocsa.c: New file, from GNU gettext.
34648
34649 2004-01-20  Bruno Haible  <bruno@clisp.org>
34650
34651         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
34652
34653 2004-01-20  Bruno Haible  <bruno@clisp.org>
34654
34655         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
34656         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
34657         specially.
34658
34659 2004-01-20  Bruno Haible  <bruno@clisp.org>
34660
34661         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
34662         patch.
34663
34664 2004-01-20  Bruno Haible  <bruno@clisp.org>
34665
34666         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
34667
34668 2004-01-20  Bruno Haible  <bruno@clisp.org>
34669
34670         * lib/eealloc.h: New file.
34671
34672 2004-01-20  Bruno Haible  <bruno@clisp.org>
34673
34674         * lib/binary-io.h: Avoid warnings on Cygwin.
34675
34676 2004-01-20  Bruno Haible  <bruno@clisp.org>
34677
34678         * lib/allocsa.h: New file, from GNU gettext.
34679         * lib/allocsa.c: New file, from GNU gettext.
34680
34681 2004-01-18  Karl Berry  <karl@gnu.org>
34682
34683         * doc/gpl.texi, doc/lgpl.texi: new files.
34684
34685 2004-01-18  Karl Berry  <karl@gnu.org>
34686
34687         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
34688         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
34689
34690 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34691
34692         Merge from coreutils.
34693
34694         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
34695         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
34696         (gl_DEFAULT_POSIX2_VERSION): Move
34697         the documentation from 'configure' into 'config.hin',
34698         so that 'configure --help' isn't burdened by it and
34699         we don't have to worry about its formatting there.
34700         Reword the documentation so that it's more succinct
34701         and can be run together into a single paragraph.
34702         * m4/same.m4 (gl_SAME): Check for pathconf.
34703
34704 2004-01-15  Paul Eggert  <eggert@twinsun.com>
34705
34706         Merge from coreutils.
34707
34708         * lib/posixver.c: Include posixver.h.
34709
34710         * lib/same.c: Include <stdbool.h>, <limits.h>.
34711         (_POSIX_NAME_MAX): Define if not defined.
34712         (MIN): New macro.
34713         (same_name): If file names are silently truncated, report
34714         that the file names are the same if they are the same after
34715         the silent truncation.
34716
34717         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
34718         conversion function.
34719         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
34720         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
34721         longer needed.
34722
34723 2004-01-15  Jim Meyering  <jim@meyering.net>
34724
34725         Merge from coreutils.
34726
34727         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
34728         if no library is required.
34729         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
34730         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
34731         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
34732         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
34733         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
34734         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
34735         value, $ac_cv_search_crypt, if it's "none required".
34736         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
34737         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
34738         not gl_FUNC_GETLOADAVG.
34739         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
34740         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
34741
34742 2004-01-15  Jim Meyering  <jim@meyering.net>
34743
34744         Merge from coreutils.
34745
34746         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
34747         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
34748         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
34749
34750         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
34751         optional configure-time default.
34752
34753         * lib/version-etc.c (version_etc_copyright): Update copyright date.
34754
34755         * lib/xreadlink.c (xreadlink): Correct outdated comment.
34756
34757 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
34758
34759         Merge from coreutils.
34760
34761         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
34762         value, $ac_cv_search_nanosleep, if it's "none required".
34763
34764 2004-01-14  Paul Eggert  <eggert@twinsun.com>
34765
34766         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
34767         with like-named macro in fnmatch.c.
34768         (EXT): Use an internal constant instead.
34769
34770         Merge fnmatch patches from glibc.
34771         * lib/fnmatch.c (mbsinit): Remove define.
34772         Add libc_hidden_ver (__fnmatch, fnmatch).
34773         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
34774         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
34775
34776 2004-01-14  Karl Berry  <karl@gnu.org>
34777
34778         * config/install-sh: update from automake.
34779
34780 2004-01-13  Karl Berry  <karl@gnu.org>
34781
34782         * config/install-sh: update from automake.
34783
34784 2004-01-09  Karl Berry  <karl@gnu.org>
34785
34786         * config/install-sh: update from automake.
34787
34788 2004-01-05  Karl Berry  <karl@gnu.org>
34789
34790         * config/config.{sub,guess}: update from config.
34791
34792 2003-12-31  Karl Berry  <karl@gnu.org>
34793
34794         * config/depcomp: update from automake.
34795
34796 2003-12-14  Karl Berry  <karl@gnu.org>
34797
34798         * lib/config.charset: update from gettext-runtime.
34799
34800 2003-12-03  Paul Eggert  <eggert@twinsun.com>
34801
34802         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
34803         Bug reported by Alfred M. Szmidt.
34804
34805 2003-12-03  Bruno Haible  <bruno@clisp.org>
34806
34807         * m4/gettext.m4: Upgrade from gettext-0.13.
34808         * m4/po.m4: Upgrade from gettext-0.13.
34809         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
34810         * m4/intmax.m4: New file, from gettext-0.13.
34811         * m4/printf-posix.m4: New file, from gettext-0.13.
34812
34813 2003-11-29  Karl Berry  <karl@gnu.org>
34814
34815         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
34816
34817 2003-11-25  Paul Eggert  <eggert@twinsun.com>
34818             Bruno Haible  <bruno@clisp.org>
34819
34820         * lib/printf-parse.h: Don't include sys/types.h.
34821         (ARG_NONE): New macro.
34822         (char_directive): Change type of *arg_index fields to size_t.
34823         * lib/printf-parse.c: Don't include sys/types.h.
34824         (SSIZE_MAX): Remove macro.
34825         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
34826         Remove unnecessary overflow check.
34827         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
34828         fields.
34829
34830 2003-11-25  Bruno Haible  <bruno@clisp.org>
34831
34832         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
34833
34834 2003-11-25  Bruno Haible  <bruno@clisp.org>
34835
34836         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
34837         gt_TYPE_SSIZE_T.
34838
34839 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34840
34841         * modules/alloca: Remove dependency on xalloc.
34842
34843 2003-11-24  Paul Eggert  <eggert@twinsun.com>
34844
34845         * lib/alloca.c: Remove dependency on xalloc module.
34846         (xalloc_die): Remove.
34847         (memory_full) [!defined emacs]: New macro.
34848         [!defined emacs]: Don't include xalloc.h.
34849         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
34850         address arithmetic overflows.  Change datatypes a bit to avoid
34851         unnecessary casts.
34852
34853 2003-11-22  Jim Meyering  <jim@meyering.net>
34854
34855         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
34856         s/size/size_t/.
34857
34858 2003-11-21  Karl Berry  <karl@gnu.org>
34859
34860         * config/config.{sub,guess}: update from config.
34861
34862 2003-11-18  Karl Berry  <karl@gnu.org>
34863
34864         * config/config.{sub,guess}: update from config.
34865
34866         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
34867
34868 2003-11-17  Paul Eggert  <eggert@twinsun.com>
34869
34870         * README: Mention that S+T cannot overflow if S is the size of
34871         an existing object and T is sufficiently small.
34872
34873 2003-11-17  Jim Meyering  <jim@meyering.net>
34874
34875         On systems without utime and without a utimes function capable of
34876         dealing with a NULL struct utimbuf* argument, this utime replacement
34877         could -- in unusual circumstances -- leak a file descriptor.
34878         * lib/utime.c: Include <unistd.h> and <errno.h>.
34879         (utime_null): Be sure to close `fd' and to preserve errno.
34880         Reported by Geoff Collyer via Arnold Robbins.
34881
34882 2003-11-17  Bruno Haible  <bruno@clisp.org>
34883
34884         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
34885         (Depends-on): Add xsize.
34886
34887 2003-11-17  Bruno Haible  <bruno@clisp.org>
34888
34889         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
34890
34891 2003-11-17  Bruno Haible  <bruno@clisp.org>
34892
34893         * lib/vasnprintf.c (alloca): Remove fallback definition.
34894         (freea): Remove definition.
34895         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
34896         Reported by Paul Eggert.
34897
34898 2003-11-16  Paul Eggert  <eggert@twinsun.com>
34899             Bruno Haible  <bruno@clisp.org>
34900
34901         Protect against address arithmetic overflow.
34902         * lib/printf-args.h: Include stddef.h.
34903         (arguments): Change type of field 'count' to size_t.
34904         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
34905         'unsigned int' where appropriate.
34906         * lib/printf-parse.h: Include sys/types.h.
34907         (char_directive): Change type of *arg_index fields to ssize_t.
34908         (char_directives): Change type of fields 'count', max_*_length to
34909         size_t.
34910         * lib/printf-parse.c: Include sys/types.h and xsize.h.
34911         (SSIZE_MAX): Define fallback value.
34912         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
34913         instead of 'int' where appropriate. Check a_allocated, d_allocated
34914         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
34915         * lib/vasnprintf.c: Include xsize.h.
34916         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
34917         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
34918         overflow. Avoid wraparound when converting a width or precision from
34919         decimal to binary.
34920
34921 2003-11-16  Bruno Haible  <bruno@clisp.org>
34922
34923         Update from GNU gettext.
34924         * lib/printf-parse.c: Generalize to it can be compiled for wide
34925         strings.
34926         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
34927         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
34928         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
34929         SNPRINTF): New macros.
34930         Don't include <alloca.h> if the file is used inside libintl.
34931         (local_wcslen): New function, for Solaris 2.5.1.
34932         (VASNPRINTF): Use it instead of wcslen.
34933
34934 2003-11-16  Bruno Haible  <bruno@clisp.org>
34935
34936         * lib/xsize.h (xmax): New function.
34937         (xsum, xsum3, xsum4): Declare as "pure" functions.
34938
34939 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34940
34941         * modules/xalloc (Files): Undo latest change, since xalloc.h
34942         no longer needs SIZE_MAX or PTRDIFF_MAX.
34943
34944 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34945
34946         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
34947         gl_PTRDIFF_MAX.
34948
34949 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34950
34951         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
34952         "return", to pacify some unknown compiler.  Problem reported
34953         by Joerg Schilling.
34954
34955 2003-11-12  Paul Eggert  <eggert@twinsun.com>
34956
34957         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
34958         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
34959         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
34960         heuristic is just as accurate as far as we know, and it removes a
34961         dependency on size_max.m4 and ptrdiff_max.m4.
34962
34963 2003-11-11  Bruno Haible  <bruno@clisp.org>
34964
34965         * modules/xsize (Files): Add m4/size_max.m4.
34966         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
34967
34968 2003-11-11  Bruno Haible  <bruno@clisp.org>
34969
34970         * m4/size_max.m4: New file.
34971         * m4/ptrdiff_max.m4: New file.
34972         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
34973         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
34974         (gl_XALLOC): Invoke it.
34975
34976 2003-11-11  Bruno Haible  <bruno@clisp.org>
34977
34978         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
34979         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
34980         defined.
34981
34982 2003-11-10  Paul Eggert  <eggert@twinsun.com>
34983
34984         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
34985         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
34986         rejected some allocations of exactly SIZE_MAX - 2 bytes.
34987         From Bruno Haible.
34988         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
34989         not (size_t) -1, since it's defined here.
34990
34991 2003-11-09  Karl Berry  <karl@gnu.org>
34992
34993         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
34994
34995 2003-11-06  Paul Eggert  <eggert@twinsun.com>
34996
34997         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
34998         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
34999         Reject sizes of exactly SIZE_MAX bytes.
35000         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
35001         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
35002
35003 2003-11-05  Bruno Haible  <bruno@clisp.org>
35004
35005         * lib/xsize.h: Include limits.h, to avoid a possible collision with
35006         SIZE_MAX defined in <limits.h> on Solaris.
35007
35008 2003-11-04  Jim Meyering  <jim@meyering.net>
35009
35010         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
35011         variable names, rather than @VAR@.
35012         * modules/poll: Likewise.
35013
35014 2003-11-04  Bruno Haible  <bruno@clisp.org>
35015
35016         * modules/xsize: New file.
35017         * modules/linebreak: Depend on xsize.
35018         * MODULES.html.sh (func_all_modules): Add xsize.
35019
35020 2003-11-04  Bruno Haible  <bruno@clisp.org>
35021
35022         * m4/xsize.m4: New file.
35023
35024 2003-11-04  Bruno Haible  <bruno@clisp.org>
35025
35026         * lib/xsize.h: New file.
35027         * lib/linebreak.c: Include xsize.h.
35028         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
35029         argument for overflow.
35030         Suggested by Paul Eggert.
35031
35032 2003-11-03  Karl Berry  <karl@gnu.org>
35033
35034         * config/config.{guess,sub}: update from config.
35035
35036 2003-11-03  Jim Meyering  <jim@meyering.net>
35037
35038         * modules/userspec (lib_SOURCES): Add userspec.h.
35039         (Include): Add "userspec.h".
35040         Improve description.
35041
35042 2003-11-03  Jim Meyering  <jim@meyering.net>
35043
35044         * lib/userspec.c: Include "userspec.h".
35045         * lib/userspec.h: New file.
35046
35047 2003-11-03  Bruno Haible  <bruno@clisp.org>
35048
35049         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
35050
35051 2003-11-03  Bruno Haible  <bruno@clisp.org>
35052
35053         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
35054         available, to avoid (extremely rare) race condition.
35055         Suggested by Paul Eggert.
35056
35057 2003-11-02  Karl Berry  <karl@gnu.org>
35058
35059         * config/srclist.txt (vasprintf.c): sync broken, sigh.
35060
35061 2003-10-31  Paul Eggert  <eggert@twinsun.com>
35062
35063         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
35064         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
35065         (read_filesystem_list): Set and use me_type_malloced.
35066         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
35067         whatever the type happens to be), for brevity and consistency.
35068         Check for size calculation overflow on Alphas running OSF/1.
35069
35070 2003-10-31  Jim Meyering  <jim@meyering.net>
35071
35072         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
35073
35074         * lib/linebuffer.c: Include <string.h> for declaration of memset.
35075
35076 2003-10-30  Paul Eggert  <eggert@twinsun.com>
35077             Bruno Haible  <bruno@clisp.org>
35078
35079         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
35080         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
35081
35082 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
35083
35084         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
35085         netbsd*-gnu*.  Suggested by Robert Millan.
35086
35087 2003-10-29  Paul Eggert  <eggert@twinsun.com>
35088
35089         * modules/group-member: Depend on stdbool.
35090
35091 2003-10-29  Paul Eggert  <eggert@twinsun.com>
35092
35093         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
35094
35095 2003-10-29  Paul Eggert  <eggert@twinsun.com>
35096
35097         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
35098         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
35099         after the 'gnu' in these cases.  This fixes some bugs in the
35100         previous change, and is based on suggestions by Robert Millan.
35101
35102 2003-10-29  Paul Eggert  <eggert@twinsun.com>
35103
35104         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
35105         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
35106         no longer needed.
35107         * lib/quotearg.c (quotearg_n_options): Use it.
35108         * lib/group-member.c: Include <stdbool.h>.
35109         (free_group_info): Arg is now const *; don't free arg.
35110         (get_group_info): Now returns bool and accepts struct group_info *,
35111         rather than returning a malloc'ed struct group_info *.
35112         All uses changed.  Check for overflow in internal size calculation.
35113
35114         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
35115         rather than xmalloc/xrealloc.
35116         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
35117         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
35118         conformance bug: the old code used a pointer after freeing the
35119         storage that it addressed.
35120         * lib/hash.c (hash_initialize): Simplify the code by using
35121         xalloc_oversized rather than doing it by hand.
35122         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
35123         the buffer preserved.  Use free and xmalloc instead.
35124         * lib/quotearg.c (quotearg_n_options): Likewise.
35125         Use a simpler test for size overflow.  Don't use xalloc_oversized
35126         because unsigned int might be wider than size_t (!); this suggests
35127         that we should switch from unsigned int to size_t for slot numbers.
35128
35129 2003-10-28  Paul Eggert  <eggert@twinsun.com>
35130
35131         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
35132         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
35133         NetBSD kernels.  Requested by Richard Stallman.
35134
35135 2003-10-27  Paul Eggert  <eggert@twinsun.com>
35136
35137         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
35138         to allocate the returned structure.  Do not allocate a subarray,
35139         as x2nrealloc will do that.
35140         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
35141         instead of xnrealloc.
35142         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
35143
35144 2003-10-27  Bruno Haible  <bruno@clisp.org>
35145
35146         * lib/stdbool_.h: Better support for BeOS.
35147
35148 2003-10-26  Paul Eggert  <eggert@twinsun.com>
35149
35150         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
35151         now uses inline.
35152
35153 2003-10-26  Paul Eggert  <eggert@twinsun.com>
35154
35155         * lib/xalloc.h (xalloc_oversized): New static inline function, for
35156         callers that want to do their own size-overflow checking.  Include
35157         <stdbool.h>, since xalloc_oversized returns bool.
35158         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
35159         to use xalloc_oversized.
35160
35161         Add two functions x2realloc, x2nrealloc, for programs that grow
35162         arrays dynamically by doubling their sizes.
35163         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
35164         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
35165         New functions.
35166
35167         Port to C99 semantics for 'inline' of external functions.
35168         Bug reported by Bruno Haible.
35169         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
35170         with the old contents of xnmalloc.
35171         (xnmalloc, xmalloc): Use it.
35172         (xnrealloc_inline): New static inline function,
35173         with the old contents of xnrealloc.
35174         (xnrealloc, xrealloc): Use it.
35175
35176         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
35177         that.
35178
35179 2003-10-26  Karl Berry  <karl@gnu.org>
35180
35181         * config/srclist.txt (COPYING.DOC): no longer available from
35182         /gd/gnuorg; don't know where the ultimate source is.
35183
35184 2003-10-25  Paul Eggert  <eggert@twinsun.com>
35185
35186         Fix several address-calculation bugs in the hash modules,
35187         plus some minor code cleanup.
35188
35189         * lib/hash.h: Include <stdbool.h>, for bool.
35190         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
35191         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
35192         hash_get_n_entries, hash_get_max_bucket_length,
35193         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
35194         hash_rehash): Use size_t rather than unsigned.
35195         * lib/hash.c (struct hash_table, hash_get_n_buckets,
35196         hash_get_n_buckets_used, hash_get_n_entries,
35197         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
35198         hash_get_entries, hash_do_for_each, hash_string, is_prime,
35199         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
35200         Likewise.
35201         (SIZE_MAX): Define if not defined.
35202         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
35203         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
35204         hash_print):
35205         Use const * when possible.
35206         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
35207         (check_tuning): Fix bug: if tuning parameters were very close to
35208         0 or 1, rounding errors could have caused subscript violations.
35209         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
35210         (hash_initialize): Add 'fail:' label
35211         to free table and return NULL, and use it to simplify code.
35212         Use calloc rather than clearing the storage ourself.
35213         (hash_initialize, hash_rehash): Check for arithmetic overflow in
35214         buffer size calculations.
35215         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
35216         Include <stddef.h>, for size_t.
35217         * lib/hash-pjw.c (hash_pjw): Likewise.
35218         Switch to method described by Bruno Haible.
35219         Include <limits.h>, for CHAR_BIT.
35220         (SIZE_BITS): New macro.
35221
35222 2003-10-23  Paul Eggert  <eggert@twinsun.com>
35223
35224         * m4/getline.m4 (AM_FUNC_GETLINE):
35225         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
35226         hosts.  Problem reported by Derek Robert Price in
35227         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
35228         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
35229         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
35230
35231 2003-10-21  Paul Eggert  <eggert@twinsun.com>
35232
35233         * lib/getndelim2.c (getndelim2): When size calculation overflows,
35234         ceiling the allocation at NMAX bytes rather than silently
35235         discarding input bytes before NMAX is reached.  This makes
35236         a difference only if NMAX exceeds SIZE_MAX / 2.
35237
35238         * lib/obstack.c: Merge from glibc.
35239         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
35240         Add libc_hidden_def (_obstack_newchunk).
35241         (_obstack_free) [! defined _LIBC]: Remove.
35242         [defined _LIBC]: Make a strong alias from obstack_free, rather than
35243         a clone of the function body.
35244         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
35245         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
35246
35247         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
35248         glibc.
35249         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
35250         arg to memcpy.
35251
35252         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
35253         (obstack_ptr_grow_fast, obstack_int_grow_fast):
35254         Don't use lvalue casts, as GCC plans to remove support for them
35255         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
35256         was also present in the non-GCC version, indicating that this
35257         code had always been buggy and had never been widely used.
35258         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
35259         Use the fast variant of each macro, rather than copying the
35260         definiens of the fast variant; that way, we'll be more likely to
35261         catch future bugs in the fast variants.
35262
35263 2003-10-20  Bruno Haible  <bruno@clisp.org>
35264
35265         * modules/wait-process: New file.
35266         * MODULES.html.sh (func_all_modules): Add wait-process.
35267
35268 2003-10-20  Bruno Haible  <bruno@clisp.org>
35269
35270         * m4/wait-process.m4: New file.
35271
35272 2003-10-20  Bruno Haible  <bruno@clisp.org>
35273
35274         * lib/wait-process.h: New file, from GNU gettext.
35275         * lib/wait-process.c: New file, from GNU gettext.
35276
35277 2003-10-19  Jim Meyering  <jim@meyering.net>
35278
35279         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
35280         HPUX 10.20.
35281
35282 2003-10-18  Karl Berry  <karl@gnu.org>
35283
35284         * config/config.guess: update from config.
35285
35286 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35287
35288         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
35289         (getgroups): First arg is int, not size_t.
35290         Don't let 'free' mangle errno.
35291
35292 2003-10-16  Paul Eggert  <eggert@twinsun.com>
35293
35294         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
35295
35296 2003-10-16  Karl Berry  <karl@gnu.org>
35297
35298         * config/config.{guess,sub}: update from config.
35299
35300 2003-10-16  Jim Meyering  <jim@meyering.net>
35301
35302         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
35303         memcpy.
35304
35305 2003-10-15  Paul Eggert  <eggert@twinsun.com>
35306
35307         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
35308         (SIZE_MAX): Remove.
35309         (new_exclude, add_exclude_file): Initial size no longer needs to
35310         be a power of 2.
35311         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
35312         our own address arithmetic overflow checking.
35313
35314         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
35315         (fnmatch): Do not alloca more than 2000 wide characters;
35316         instead, use malloc for large buffers.
35317         Check for address arithmetic overflow, and return -1
35318         with errno set to ENOMEM in that case.
35319         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
35320         (NEW_PATTERN): Do not alloca more than 8000 bytes;
35321         instead, return -1.  Check for address arithmetic overflow.
35322
35323 2003-10-14  Paul Eggert  <eggert@twinsun.com>
35324
35325         Handle invalid suffixes and overflow independently, so that
35326         callers can treat them independently as needed.  Fix some bugs in
35327         suffix handling, e.g., "100k@" was not diagnosed as an invalid
35328         suffix for a human-readable blocksize.  The major caller-visible
35329         change is the addition of a new
35330         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
35331         that both overflow and suffix chars were found.
35332
35333         * lib/human.c (humblock): Don't check separately for invalid suffix
35334         char; that is xstrtoumax's job (now that its bug is fixed).
35335         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
35336         INTMAX_MAX]: New macros.
35337         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
35338         TYPE_MAXIMUM): New macros.
35339         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
35340         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
35341         if overflow occurs, as it's what __strtol does and it's more useful
35342         in practice.
35343         (__xstrtol): If __strtol reports some error other than ERANGE,
35344         reflect it to the caller as LONGINT_INVALID.  If it reports
35345         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
35346         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
35347         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
35348         value.
35349         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
35350         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
35351         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
35352         [defined UINTMAX_MAX]: New macros.
35353
35354 2003-10-14  Bruno Haible  <bruno@clisp.org>
35355
35356         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
35357
35358 2003-10-14  Bruno Haible  <bruno@clisp.org>
35359
35360         * m4/sig_atomic_t: New file, from GNU gettext.
35361         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
35362
35363 2003-10-14  Bruno Haible  <bruno@clisp.org>
35364
35365         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
35366         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
35367         Also use volatile where needed.
35368
35369 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35370
35371         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
35372         Change maintainer from Bruno Haible to 'all'.
35373
35374 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35375
35376         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
35377
35378 2003-10-12  Paul Eggert  <eggert@twinsun.com>
35379
35380         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
35381         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
35382         and define in terms of the other primitives.
35383         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
35384         (SIZE_MAX): Define if not already defined.
35385         (array_size_overflow): New function.
35386         (xalloc_die): Abort instead of exiting if 'error' returns.
35387         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
35388         (xmalloc, xrealloc): Use them.
35389         (xcalloc): Check for address arithmetic overflow.
35390         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
35391         a bit faster than strcpy.
35392
35393 2003-10-10  Simon Josefsson  <jas@extundo.com>
35394
35395         * modules/argp (Depends-on): Add restrict and strcase.
35396
35397 2003-10-10  Simon Josefsson  <jas@extundo.com>
35398
35399         * m4/argp.m4: Add AC_C_INLINE.
35400
35401 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35402
35403         Merge getpass from libc, plus a few fixes.
35404
35405         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
35406         Include <stdbool.h>.
35407         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
35408         __fsetlocking to empty.
35409         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
35410         do include <bits/libc-lock.h>.
35411         Do not include <fcntl.h>; not needed.
35412         [_LIBC]: Include <wchar.h>.
35413         (NOTCANCEL_MODE): New macro.
35414         (flockfile, funlockfile) [_LIBC]: New macros.
35415         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
35416         [!_LIBC]: New macros.
35417         (call_fclose): New function.
35418         (getpass): Use it.  Save tty stream separately; this simplifies the
35419         code and makes it more reliable if stdin happens to equal stdout.
35420         Invoke __fsetlocking on tty.
35421         Handle thread cancellation if needed.
35422         Namespace cleanup (use __tcgetattr, __getline).
35423         Use bool for Booleans.
35424         [USE_IN_LIBIO]: Handle wide streams.
35425         [!_LIBC]: Unconditionally do the fseek, since we don't know what
35426         stream might go where.
35427
35428         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
35429         doesn't have to include <stdio.h> before us.
35430         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
35431         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
35432         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
35433         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
35434         if not declared, so that we can use getpass.c code from libc without
35435         rewriting it.
35436         (flockfile, ftrylockfile, funlockfile): New macros.
35437
35438 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35439
35440         * modules/getpass: Depend on stdbool.
35441
35442 2003-10-08  Paul Eggert  <eggert@twinsun.com>
35443
35444         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
35445
35446 2003-10-07  Karl Berry  <karl@gnu.org>
35447
35448         * config/config.{guess,sub}: update from config.
35449
35450 2003-10-06  Jim Meyering  <jim@meyering.net>
35451             Bruno Haible  <bruno@clisp.org>
35452
35453         This lets translators provide better translations for the
35454         "Written by ..." part of --version output.
35455         * lib/version-etc.h: Include stdarg.h.
35456         (version_etc_copyright): Declare as readonly.
35457         (version_etc): Make this function variadic with a NULL-terminated list
35458         of author name strings.
35459         (version_etc_va): New declaration.
35460         * lib/version-etc.c: Include stdarg.h, stdlib.h.
35461         (version_etc_copyright): Declare as readonly.
35462         (version_etc_va): New function. Provide a different translatable string
35463         for each possible number of authors < 10. Abbreviate when there are 10
35464         authors or more.
35465         (version_etc): Make this function variadic. Call version_etc_va.
35466         Suggestion from Gary V. Vaughan.
35467
35468         * lib/long-options.h (parse_long_options): Change prototype: the
35469         authors string is moved to the end and becomes variadic.
35470         * lib/long-options.c: Include stdarg.h.
35471         (parse_long_options): Make this function variadic, too.
35472         Call version_etc_va, not version_etc.
35473
35474 2003-10-06  Bruno Haible  <bruno@clisp.org>
35475
35476         * modules/version-etc-2: Remove file.
35477         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
35478
35479 2003-10-06  Bruno Haible  <bruno@clisp.org>
35480
35481         * modules/fatal-signal: New file.
35482         * MODULES.html.sh (func_all_modules): Add fatal-signal.
35483
35484 2003-10-06  Bruno Haible  <bruno@clisp.org>
35485
35486         * m4/fatal-signal.m4: New file.
35487         * m4/signalblocking.m4: New file, from GNU gettext.
35488
35489 2003-10-06  Bruno Haible  <bruno@clisp.org>
35490
35491         * lib/version-etc-2.h: Remove file.
35492         * lib/version-etc-2.c: Remove file.
35493
35494 2003-10-06  Bruno Haible  <bruno@clisp.org>
35495
35496         * lib/fatal-signal.h: New file, from GNU gettext.
35497         * lib/fatal-signal.c: New file, from GNU gettext.
35498
35499 2003-10-05  Paul Eggert  <eggert@twinsun.com>
35500
35501         * README: Rework advice for preventing empty .o files.
35502         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
35503         not <sys/types.h>.
35504
35505 2003-10-04  Karl Berry  <karl@gnu.org>
35506
35507         * lib/argp*: update from libc.
35508
35509 2003-10-04  Karl Berry  <karl@gnu.org>
35510
35511         * config/config.{guess,sub}: update from config.
35512
35513 2003-10-02  Bruno Haible  <bruno@clisp.org>
35514
35515         * modules/lchown (Include): Add lchown.h.
35516         * modules/time_r (Include): Use "..." syntax.
35517         * modules/xgetdomainname (Include): Add xgetdomainname.h.
35518
35519 2003-10-01  Simon Josefsson  <jas@extundo.com>
35520
35521         * MODULES.html.sh (func_all_modules): Move gethostname from section
35522         'based on' to section 'lacking' POSIX:2001.
35523
35524 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
35525
35526         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
35527         to output mode on the same stream.
35528
35529 2003-09-29  Paul Eggert  <eggert@twinsun.com>
35530
35531         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
35532         Fix arg typo in previous patch.
35533
35534 2003-09-28  Jim Meyering  <jim@meyering.net>
35535
35536         * lib/error.c: Correct cpp indentation.
35537
35538 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35539
35540         * modules/free: New file.
35541
35542 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35543
35544         * m4/free.m4: New file.
35545
35546 2003-09-27  Paul Eggert  <eggert@twinsun.com>
35547
35548         * lib/minmax.h (MIN, MAX)
35549         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
35550         Omit the special code that used __typeof__, since we worry that
35551         it could be more trouble than it's worth.  See:
35552         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
35553         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
35554
35555         * lib/free.c: New file.
35556
35557 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
35558
35559         Trivial fixes to Makefile.am parts of module listings.
35560         * modules/strstr: Append strstr.h to lib_SOURCES.
35561         * modules/strcase: Likewise, for strcase.h.
35562
35563 2003-09-27  Karl Berry  <karl@gnu.org>
35564
35565         * config/mkinstalldirs: update from automake.
35566
35567 2003-09-26  Paul Eggert  <eggert@twinsun.com>
35568
35569         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
35570         (error_tail): Do not loop, reallocating temporary buffer, since
35571         the output cannot contain more wide characters than the input
35572         contains bytes, the size must be big enough already.  This avoids
35573         one potential size overflow calculation.  Check for size overflow
35574         when calculating temporary buffer size.  Free temporary buffer
35575         when done, if it was allocated with malloc; this plugs a memory
35576         leak.  Remove casts from void * to pointers, that are no longer
35577         needed now that we're assuming C89 or better.
35578
35579         Merge error changes from glibc.
35580
35581         * lib/error.c, error.h: Update copyright notice header to match glibc.
35582         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
35583         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
35584         Disable cancellation while printing error.
35585         * lib/error.h: Prepend __ to parameter names.
35586
35587 2003-09-26  Jim Meyering  <jim@meyering.net>
35588
35589         * lib/error.c (error_tail): Move some declarations
35590         into inner scope where the local variables are used.
35591
35592 2003-09-26  Bruno Haible  <bruno@clisp.org>
35593
35594         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
35595         stpncpy().
35596         Don't define stpncpy through config.h; it's now done through stpncpy.h.
35597
35598 2003-09-26  Bruno Haible  <bruno@clisp.org>
35599
35600         * lib/stpncpy.h (gnu_stpncpy): New declaration.
35601         (stpncpy): Define as alias for gnu_stpncpy.
35602         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
35603
35604 2003-09-25  Simon Josefsson  <jas@extundo.com>
35605
35606         * lib/xgetdomainname.h: New file.
35607         * lib/xgetdomainname.c: New file.
35608
35609 2003-09-25  Simon Josefsson  <jas@extundo.com>
35610             Bruno Haible  <bruno@clisp.org>
35611
35612         * modules/getdomainname: New file.
35613         * modules/xgetdomainname: New file.
35614         * MODULES.html.sh (func_all_modules): Add getdomainname,
35615         xgetdomainname.
35616
35617 2003-09-25  Simon Josefsson  <jas@extundo.com>
35618             Bruno Haible  <bruno@clisp.org>
35619
35620         * m4/getdomainname.m4: New file.
35621
35622 2003-09-25  Simon Josefsson  <jas@extundo.com>
35623             Bruno Haible  <bruno@clisp.org>
35624
35625         * lib/getdomainname.h: New file.
35626         * lib/getdomainname.c: New file.
35627
35628 2003-09-25  Karl Berry  <karl@gnu.org>
35629
35630         * lib/argp-fmtstream.c, argp-help.c: update from libc.
35631
35632 2003-09-25  Karl Berry  <karl@gnu.org>
35633
35634         * config/install-sh: update from automake.
35635
35636 2003-09-25  Bruno Haible  <bruno@clisp.org>
35637
35638         * modules/version-etc-2: New file, from modules/version-etc with
35639         modifications.
35640         * MODULES.html.sh (func_all_modules): Add version-etc-2.
35641
35642 2003-09-25  Bruno Haible  <bruno@clisp.org>
35643
35644         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
35645         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
35646
35647 2003-09-24  Simon Josefsson  <jas@extundo.com>
35648
35649         * modules/xgethostname: Add xgethostname.h.
35650
35651 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35652
35653         * lib/linebuffer.c (freebuffer): Don't free the argument, just
35654         the buffer associated with the argument.  Bug reported by
35655         Simon Josefsson.
35656
35657 2003-09-24  Paul Eggert  <eggert@twinsun.com>
35658
35659         * README: Document assumptions that 'int' is at least 32 bits
35660         wide, that integer arithmetic is 2's complement without overflow,
35661         that there are no holes in integer values, that adding sizes of
35662         two nonoverlapping objects can't overflow, and that all-bits-zero
35663         yields scalar zero.  Fix spelling and capitalization typos.
35664
35665 2003-09-19  Karl Berry  <karl@gnu.org>
35666
35667         * lib/argp.h: update from libc.
35668
35669 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35670
35671         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
35672         to avoid spurious warnings like "AC_RUN_IFELSE was called before
35673         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
35674
35675 2003-09-17  Paul Eggert  <eggert@twinsun.com>
35676
35677         * gnulib-tool: Use "test -h", not "test -L", for portability
35678         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
35679         (tags_regexp): Remove, since \| doesn't conform to POSIX.
35680         (sed_extract_prog): Issue s commands one-by-one, rather than
35681         using \| in one s command.
35682
35683 2003-09-16  Paul Eggert  <eggert@twinsun.com>
35684
35685         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
35686         input error, instead of returning NULL the next time we are called
35687         (and therefore losing track of errno).
35688
35689 2003-09-16  Bruno Haible  <bruno@clisp.org>
35690
35691         * gnulib-tool (func_create_testdir): Warn about duplicated
35692         dependencies.
35693
35694 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35695
35696         * modules/argmatch, modules/fatal, modules/obstack,
35697         modules/xalloc, modules/xgethostname: Sort dependencies by
35698         importance, not alphabetically.
35699
35700 2003-09-15  Paul Eggert  <eggert@twinsun.com>
35701
35702         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
35703         fails, so that the caller gets the proper errno.
35704
35705         * lib/readutmp.c (read_utmp): Likewise.
35706         Check for fstat error.  Close stream and free storage
35707         when failing.
35708
35709 2003-09-14  Karl Berry  <karl@gnu.org>
35710
35711         * config/srclist.txt (strdup.c): disable for c89 changes.
35712
35713 2003-09-14  Jim Meyering  <jim@meyering.net>
35714
35715         * lib/getloadavg.c: Correct cpp indentation.
35716         * lib/strdup.c: Likewise.
35717         * lib/vasnprintf.c: Likewise.
35718
35719 2003-09-14  Bruno Haible  <bruno@clisp.org>
35720
35721         * modules/fwriteerror: New file.
35722         * MODULES.html.sh (func_all_modules): Add fwriteerror.
35723
35724 2003-09-14  Bruno Haible  <bruno@clisp.org>
35725
35726         * lib/fwriteerror.h: New file.
35727         * lib/fwriteerror.c: New file.
35728
35729 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35730
35731         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
35732         modules/xgethostname, modules/xalloc: Depend on exit.
35733
35734 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35735
35736         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
35737
35738         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
35739         and AC_MINIX, too, so that their extensions are available.
35740
35741         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
35742         This macro has been superseded by gl_BACKUPFILE.
35743
35744         More patches to assume C89 or better.
35745
35746         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
35747
35748         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
35749         unconditionally.
35750         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
35751         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
35752         Include <string.h>, <stdlib.h> unconditionally.
35753         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
35754         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
35755         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
35756         headers or for string.h.
35757         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
35758         or strtoul.
35759
35760         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
35761         headers.
35762         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
35763         * m4/userspec.m4 (gl_USERSPEC): Likewise.
35764         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
35765         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
35766         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35767         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
35768         memcpy, memset.
35769         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
35770         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
35771         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
35772         strtol.
35773         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
35774         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
35775         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
35776         strtoul.
35777
35778 2003-09-12  Paul Eggert  <eggert@twinsun.com>
35779
35780         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
35781         * lib/obstack.c [!defined _LIBC]: Likewise.
35782         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
35783         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
35784         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
35785
35786         More changes to assume C89 or better.
35787
35788         * lib/error.c (error_tail): Assume vprintf.
35789
35790         * lib/argmatch.c (getenv): Remove decl.
35791         * lib/progreloc.c (get_full_program_name): Define via prototype.
35792         * lib/setenv.c (clearenv): Likewise.
35793         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
35794         needed.
35795         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
35796         (malloc, memcpy): Remove decls.
35797         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
35798         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
35799         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35800         (memcpy): Remove macro.
35801         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
35802         (__P): Remove.  All uses removed.
35803         (PTR): Remove.  All uses changed to void *.
35804         (CHAR_BIT, NULL): Remove.
35805         (spaces, zeros, memset_space, memset_zero)
35806         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
35807         Remove.
35808         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
35809         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
35810         Define with prototype.
35811         Remove now-unnecessary prototype decl.
35812         (extra_args_spec): Assume ANSI C.  All uses changed.
35813         (extra_args_spec_iso): Remove.
35814         (my_strftime, emacs_strftimeu): Define via prototype.
35815         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
35816         unconditionally.
35817         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
35818         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
35819         (strtoul, strtol): Remove decls.
35820         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
35821         LONG_MAX): Remove.
35822         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
35823         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
35824         (LOCALE_PARAM_PROTO): New macro.
35825         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
35826         (INTERNAL (strtol), strtol): Define with a prototype.
35827         (PARAMS): Remove.  All uses removed.
35828         * lib/tempname.c: Include <string.h> unconditionally.
35829         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
35830         * lib/xgethostname.c (main): Define with a prototype.
35831         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
35832         Include <stdlib.h> unconditionally.
35833         (calloc, malloc, realloc, free): Remove decls.
35834         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
35835         Include <stdlib.h> unconditionally.  Sort include file names.
35836         (strtod): Remove.
35837         (xstrtod): Define with a prototype.
35838         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
35839         (strtol, strtoul): Remove decls.
35840
35841 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35842
35843         More patches to assume C89 or better.
35844         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
35845         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
35846         string.h, memchr, STDC_HEADERS.
35847
35848 2003-09-11  Paul Eggert  <eggert@twinsun.com>
35849
35850         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
35851         Include <stdlib.h>, <string.h> unconditionally.
35852         Remove now-unnecessary cast to char *.
35853         * lib/strnlen.c: Include <string.h> unconditionally.
35854         * lib/yesno.c (yesno): Define with a prototype.
35855
35856 2003-09-11  Bruno Haible  <bruno@clisp.org>
35857
35858         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
35859
35860 2003-09-10  Jim Meyering  <jim@meyering.net>
35861
35862         * lib/error.c: Correct indentation of cpp directives.
35863
35864 2003-09-10  Bruno Haible  <bruno@clisp.org>
35865
35866         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
35867         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
35868         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
35869         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
35870         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
35871         <stdlib.h> and <string.h> checks.
35872         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
35873         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
35874
35875 2003-09-10  Bruno Haible  <bruno@clisp.org>
35876
35877         * lib/strcspn.c: Include <string.h> unconditionally.
35878         * lib/strpbrk.c: Include <string.h> unconditionally.
35879         * lib/strstr.c: Include <string.h> unconditionally.
35880         * lib/unicodeio.c: Include <string.h> unconditionally.
35881         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
35882         * lib/unsetenv.c: Likewise.
35883         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
35884         * lib/yesno.c: Include <stdlib.h> unconditionally.
35885         (rpmatch): Add prototype.
35886
35887 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35888
35889         More patches to assume C89 or better.
35890         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
35891         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
35892         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
35893         or for string.h.
35894         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
35895         stdlib.h.
35896         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
35897         C headers.
35898         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
35899         string.h.
35900         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
35901         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
35902         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
35903         or for string.h.
35904         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
35905         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
35906         C headers.
35907         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
35908         memcpy.
35909         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
35910         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
35911         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
35912         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
35913         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
35914         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
35915         string.h, free.
35916         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
35917         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
35918         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
35919         C headers, or for string.h.
35920         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
35921         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
35922         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
35923         headers, memory.h, stdlib.h, string.h, strings.h.
35924         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
35925         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
35926         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
35927         strchr.
35928         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
35929         headers, memory.h, string.h.
35930         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
35931         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
35932         free.
35933         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
35934         headers.
35935         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
35936         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
35937         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
35938         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
35939         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
35940
35941 2003-09-09  Paul Eggert  <eggert@twinsun.com>
35942
35943         More K&R removal.
35944
35945         * lib/acosl.c (main): Use a prototype.
35946         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
35947         tanl.c: Likewise.
35948
35949         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
35950
35951         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
35952         (getopt, etopt_long, getopt_long_only, _getopt_internal)
35953         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
35954         with a prototype.
35955         * lib/getopt.c (const): Remove macro.
35956         Include <string.h> unconditionally.
35957         (my_index): Remove; all uses changed to strchr.
35958         (strlen): Remove decl.
35959         (exchange): Remove forward decl; no longer needed.
35960         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
35961         Define with prototype.
35962         * lib/getopt1.c (const): Remove macro.
35963         (getopt_long, getopt_long_only, main): Define with prototype.
35964
35965         * lib/getugroups.c: Include <string.h> unconditionally.
35966
35967         * lib/getusershell.c: Include <stdlib.h> unconditionally.
35968         (getusershell, setusershell, endusershell, readname, main):
35969         Define with prototypes.
35970
35971         * lib/group-member.c: Include group-member.h first.
35972         Include <stdlib.h> unconditionally.
35973
35974         * lib/hard-locale.c: Include hard-locale.h first.
35975         Include <stdlib.h>, <string.h> unconditionally.
35976
35977         * lib/hash.c (free, malloc): Remove decls.
35978         Include <stdlib.h> unconditionally.
35979
35980         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
35981         (getenv): Do not declare.
35982
35983         * lib/idcache.c: Include <string.h> unconditionally.
35984
35985         * lib/long-options.c: Include long-options.h first, to test interface.
35986         Include <stdlib.h> unconditionally.
35987
35988         * lib/makepath.c: Include makepath.h first, to test interface.
35989         Include <stdlib.h> and <string.h> unconditionally.
35990
35991         * lib/linebuffer.c: Include <stdlib.h>.
35992         (free): Remove decl.
35993
35994         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
35995         stddef.h. rpl_malloc returns void *, not char *.
35996         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
35997         prototype.
35998
35999         * lib/md5.h: Include <limits.h> unconditionally.
36000         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
36001         (__P): Remove; all uses removed.
36002         * lib/md5.c: Include "md5.h" first.
36003         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
36004         md5_buffer, md5_process_bytes, md5_process_block):
36005         Define with prototypes.
36006         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
36007         * lib/sha.c: Include "sha.h" first.
36008         Include <stdlib.h>, <string.h> unconditionally.
36009
36010         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
36011         * lib/memcmp.c (__ptr_t): Likewise.
36012         * lib/memrchr.c (__ptr_t): Likewise.
36013         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
36014         Include <string.h> unconditionally.
36015         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
36016         * lib/memchr.c: Include <stdlib.h> unconditionally.
36017         * lib/memchr.c (LONG_MAX): Remove.
36018         * lib/memrchr.c (LONG_MAX): Likewise.
36019         * lib/memchr.c (__memchr): Define via a prototype.
36020         * lib/memrchr.c (__memrchr): Likewise.
36021         * lib/memcmp.c (__P): Remove, and remove all uses.
36022         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
36023         Remove forward decls; no longer needed.
36024         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
36025         Use types required by C89 in prototype.
36026
36027         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
36028         * lib/savedir.c: Likewise.
36029         * lib/mkdir.c (free): Remove decl.
36030         * lib/rmdir.c (rmdir): Define with a prototype.
36031         * lib/savedir.c: Include savedir.h first, to test interface.
36032
36033         * lib/mktime.c (STDC_HEADERS): Remove.
36034         Include <stdlib.h>, <string.h> unconditionally.
36035
36036         * lib/modechange.c: Include <stdlib.h> unconditionally.
36037         (malloc): Remove decl.
36038
36039         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
36040         (free): Remove decl.
36041
36042         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
36043         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
36044         (This type really should be intptr_t, but that's a C99ism.)
36045         (_obstack_memcpy): Remove: all uses changed to memcpy.
36046         Include <string.h> unconditionally.
36047         (struct obstack): Assume __STDC__ for types of members
36048         chunkfun, freefun, extra_arg.
36049         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
36050         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
36051         obstack_begin, obstack_specify_allocation,
36052         obstack_specify_allocation_with_arg, obstack_chunkfun,
36053         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
36054         Remove unprototyped decls and the macros that use them.
36055         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
36056         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
36057         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
36058         (defined __STDC__ && __STDC__)]:
36059         Remove nonprototyped code.
36060         Include <stdlib.h> unconditionally.
36061         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
36062         _obstack_allocated_p, _obstack_free, obstack_free,
36063         _obstack_memory_used, print_and_abort):
36064         Define using prototypes.
36065         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
36066         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
36067         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
36068         obstack_next_free, obstack_object_size, obstack_room) [0]:
36069         Remove unused, unprototyped code.
36070
36071         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
36072
36073         * lib/physmem.c (physmem_total, physmem_available, main): Define
36074         with prototypes.
36075
36076         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
36077         (main): Define with a prototype.
36078
36079         * lib/posixver.c (getenv): Remove decl.
36080
36081         * lib/putenv.c (malloc): Returns void *, not char *.
36082         Include <string.h> unconditionally.
36083         (strchr, memcpy, NULL): Do not define.
36084
36085         * lib/readtokens.c: Include readtokens.h first, to test interface.
36086         Include <stdlib.h>, <string.h> unconditionally.
36087         (init_tokenbuffer): Define with a prototype.
36088
36089         * lib/regex.c (PARAMS): Remove.  All uses removed.
36090         All uses of _RE_ARGS removed, too.
36091         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
36092         unconditionally.
36093         (bzero): Assume memset exists.
36094         (memcmp, memcpy, NULL): Remove.
36095         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
36096         char, or assignments to local vars of type signed char.
36097         (init_syntax_once, PREFIX(extract_number_and_incr),
36098         PREFIX(print_partial_compiled_pattern),
36099         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
36100         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
36101         PREFIX(regex_grow_registers), PREFIX(regex_compile),
36102         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
36103         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
36104         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
36105         wcs_compile_range, byte_compile_range, truncate_wchar,
36106         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
36107         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
36108         count_mbs_length, wcs_re_match_2_internal,
36109         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
36110         PREFIX(alt_match_null_string_p),
36111         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
36112         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
36113         regfree, PREFIX(extract_number)): Define with prototype.  Remove
36114         now-unnecessary declaration, if any.
36115         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
36116         regcomp, regexec):
36117         Remove now-unnecessary casts among pointer types.
36118         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
36119
36120         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
36121         (free): Remove decl.
36122
36123         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
36124
36125         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
36126         (free): Remove decl.
36127
36128         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
36129         * lib/xgetcwd.c: Likewise.
36130
36131         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
36132         (free): Remove decl.
36133
36134         * lib/strchrnul.c (strchrnul): Define with a prototype.
36135         Fix bug: c_in was not converted to char before searching.
36136
36137         The following changes are not K&R related:
36138
36139         * lib/group-member.h: Include <sys/types.h>, so that this file is
36140         self-contained.
36141         * lib/makepath.h: Likewise.
36142
36143         * lib/getusershell.c (readname, default_index, line_size, readname):
36144         Use size_t, not int, for sizes.
36145         (readname): If the size overflows, report an error instead of
36146         looping forever.
36147
36148 2003-09-09  Paul Eggert  <eggert@twinsun.com>
36149
36150         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
36151         libc.
36152
36153 2003-09-09  Paul Eggert  <eggert@twinsun.com>
36154
36155         * README: New section: portability guidelines.
36156
36157 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
36158
36159         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
36160         C89 spec.
36161
36162 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
36163
36164         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
36165
36166 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36167
36168         Assume C89 or better; remove K&R cruft.
36169         A few of these changes were first proposed by Derek Robert Price
36170         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
36171
36172         * lib/addext.c: Include <string.h> unconditionally.
36173         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
36174         Don't declare getenv or malloc.
36175
36176         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
36177         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
36178         (NULL): Remove.
36179         (find_stack_direction, alloca): Use prototypes.
36180
36181         * lib/atexit.c (atexit): Define using a prototype.
36182
36183         * lib/basename.c, dirname.c, stripslash.c:
36184         Include <string.h> unconditionally.
36185
36186         * lib/bcopy.c: Include <stddef.h>.
36187         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
36188
36189         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
36190
36191         * lib/error.h (error, error_at_line, error_print_progname)
36192         [! (defined (__STDC__) && __STDC__)]: Remove decls.
36193         * lib/error.c: Include error.h first, to check interface.
36194         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
36195         (VA_START): Remove; all uses changeed to va_start.
36196         (exit, strerror): Remove decls.
36197         (error_print_progname): Prototype uncondionally.
36198         Don't include <errno.h>; no longer needed.
36199         (private_strerror): Remove.
36200         (error_tail): Always define.
36201         (error, error_at_line): Assume C89 or better; always use prototypes.
36202         * lib/fatal.c: Include "fatal.h" first, to test interface.
36203         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
36204         (VA_START): Remove; all uses changed to va_start.
36205         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
36206         this case.
36207         (exit): Remove decl.
36208         (fatal): Prototype unconditionally.  Assume va_start works.
36209         Abort at end, to pacify gcc.
36210
36211         * lib/euidaccess.c (main): Define with a prototype.
36212
36213         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
36214
36215         * lib/exitfail.c: Include <stdlib.h> unconditionally.
36216
36217         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
36218         prototypes.
36219         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
36220         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
36221         (getenv): Remove decl.
36222         (fnmatch): Define using a prototype.
36223         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
36224         (FCT): Define using a prototype.
36225
36226         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
36227
36228         * lib/gethostname.c: Include <stddef.h>.
36229         (gethostname): Define with prototype.  Length is size_t, not int.
36230
36231 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36232
36233         Assume C89 or better; remove K&R cruft.
36234         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
36235         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
36236         string.h, getenv, malloc.
36237         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
36238         headers.
36239         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
36240         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
36241         do not check for strerror.
36242         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
36243         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
36244         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
36245         do not check for doprnt or vprintf.
36246         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
36247         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
36248
36249 2003-09-08  Paul Eggert  <eggert@twinsun.com>
36250
36251         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
36252         getversion.c should have been removed then, but was accidentally
36253         preserved.
36254
36255         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
36256         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
36257
36258 2003-09-08  Karl Berry  <karl@gnu.org>
36259
36260         * config/config.sub, config.guess, srclistvars.sh: update from savannah
36261                 config, forget about prep.
36262
36263         * config/depcomp, missing: update from automake.
36264
36265 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36266
36267         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
36268         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36269
36270 2003-09-07  Paul Eggert  <eggert@twinsun.com>
36271
36272         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
36273         copy_tm_result.  Bug reported by Simon Josefsson in
36274         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
36275
36276 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36277
36278         * m4/time_r.m4: New file.
36279         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
36280         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
36281         is. Check for timegm declaration.
36282         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
36283         Do not check for gmtime_r.
36284         Replace mktime if __mktime_internal does not exist and if mktime
36285         hasn't been replaced already.
36286
36287 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36288
36289         * lib/time_r.c, lib/time_r.h: New files.
36290
36291         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
36292         __localtime_r.
36293         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
36294         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
36295
36296         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
36297         __gmtime_r.
36298         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
36299         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
36300         Include <time_r.h>.
36301
36302         * lib/timegm.c: Switch to glibc implementation, with the following
36303         changes:
36304         [defined HAVE_CONFIG_H]: Include <config.h>.
36305         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
36306         (__mktime_internal) [!defined _LIBC]: New decl.
36307         (__gmtime_r) [!defined _LIBC]: New macro and function.
36308         (timegm): Use a prototype, since gnulib assumes C89.
36309         Do not bother declaring tmp to be const, as it's not really usefu.
36310         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
36311         (timegm): Declare only if HAVE_DECL_TIMEGM.
36312
36313 2003-09-06  Paul Eggert  <eggert@twinsun.com>
36314
36315         * MODULES.html.sh (func_all_modules): Add time_r.
36316         * modules/time_r: New file.
36317         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
36318         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
36319
36320 2003-09-03  Paul Eggert  <eggert@twinsun.com>
36321
36322         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
36323         Bug reported by Lute Kamstra in
36324         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
36325
36326         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
36327         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
36328         course with correspondingly smaller numbers for tomorrow and
36329         yesterday.  From Tadayoshi Funaba.  Originally installed into
36330         sh-utils on 1999-08-07, but the patch got lost (I guess during the
36331         coreutils merge?).
36332
36333 2003-08-31  Simon Josefsson  <jas@extundo.com>
36334
36335         * modules/timegm: New file.
36336         * MODULES.html.sh (func_all_modules): Add timegm.
36337
36338 2003-08-31  Simon Josefsson  <jas@extundo.com>
36339
36340         * m4/timegm.m4: New file.
36341
36342 2003-08-31  Simon Josefsson  <jas@extundo.com>
36343
36344         * lib/timegm.h: New file.
36345         * lib/timegm.c: New file.  Based on
36346         wget-1.8.2/src/http.c:mktime_from_utc.
36347
36348 2003-08-31  Karl Berry  <karl@gnu.org>
36349
36350         * lib/argp.h: update from libc.
36351
36352 2003-08-28  Bruno Haible  <bruno@clisp.org>
36353
36354         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
36355         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
36356         followed by '#define fnmatch fnmatch_posix' gives an error.
36357
36358 2003-08-28  Bruno Haible  <bruno@clisp.org>
36359
36360         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
36361         warning on QNX, which defines O_BINARY to 000000.
36362
36363 2003-08-27  Jim Meyering  <jim@meyering.net>
36364
36365         * m4/mkstemp.m4: Require that the system mkstemp be able to create
36366         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
36367         would fail after 32.  Reported by Danny Levinson.  Details here:
36368         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
36369
36370 2003-08-24  Bruno Haible  <bruno@clisp.org>
36371
36372         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
36373         MSVC7 <stdio.h> is included later.
36374
36375 2003-08-22  Simon Josefsson  <jas@extundo.com>
36376
36377         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
36378
36379 2003-08-20  Karl Berry  <karl@gnu.org>
36380
36381         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
36382
36383 2003-08-20  Bruno Haible  <bruno@clisp.org>
36384
36385         * modules/progname: New file.
36386         * MODULES.html.sh (func_all_modules): Add progname.
36387
36388 2003-08-20  Bruno Haible  <bruno@clisp.org>
36389
36390         * lib/progname.h: New file, from GNU gettext.
36391         * lib/progname.c: New file, from GNU gettext.
36392         * lib/progreloc.c: New file, from GNU gettext.
36393
36394 2003-08-19  Jim Meyering  <jim@meyering.net>
36395
36396         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
36397         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
36398
36399 2003-08-19  Bruno Haible  <bruno@clisp.org>
36400
36401         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
36402         more.
36403
36404 2003-08-19  Bruno Haible  <bruno@clisp.org>
36405
36406         * lib/xstrdup.c: Assume <string.h> exists.
36407
36408 2003-08-18  Paul Eggert  <eggert@twinsun.com>
36409
36410         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
36411         in makefile rules.
36412
36413 2003-08-18  Jim Meyering  <jim@meyering.net>
36414
36415         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
36416         * m4/lib-ld.m4: Likewise.
36417
36418 2003-08-18  Jim Meyering  <jim@meyering.net>
36419
36420         * lib/setenv.h: Indent nested cpp directive.
36421         * lib/vasnprintf.c: Remove trailing blanks.
36422
36423 2003-08-17  Simon Josefsson  <jas@extundo.com>
36424
36425         * modules/xstrndup: New file.
36426         * MODULES.html.sh (func_all_modules): Add xstrndup.
36427
36428 2003-08-17  Simon Josefsson  <jas@extundo.com>
36429
36430         * modules/argp: Fix autoconf macro name. Add more dependencies.
36431
36432 2003-08-17  Simon Josefsson  <jas@extundo.com>
36433
36434         * m4/xstrndup.m4: New file.
36435
36436 2003-08-17  Simon Josefsson  <jas@extundo.com>
36437
36438         * m4/argp.m4: New file.
36439
36440 2003-08-17  Simon Josefsson  <jas@extundo.com>
36441             Bruno Haible  <bruno@clisp.org>
36442
36443         * lib/xstrndup.h: New file.
36444         * lib/xstrndup.c: New file.
36445
36446 2003-08-17  Bruno Haible  <bruno@clisp.org>
36447
36448         * modules/strndup (Files, Include): Add lib/strndup.h.
36449
36450 2003-08-17  Bruno Haible  <bruno@clisp.org>
36451
36452         * modules/euidaccess (Files): Add lib/euidaccess.h.
36453
36454 2003-08-17  Bruno Haible  <bruno@clisp.org>
36455
36456         * lib/strndup.h: New file.
36457
36458 2003-08-17  Bruno Haible  <bruno@clisp.org>
36459
36460         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
36461         like AC_GNU_SOURCE.
36462         * modules/extensions (configure.ac): Comment out the invocation of
36463         gl_USE_SYSTEM_EXTENSIONS.
36464
36465 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36466
36467         Merges from coreutils, etc.
36468         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
36469         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
36470         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
36471         fixing a typo.
36472         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
36473         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
36474
36475 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36476
36477         Document merge from coreutils.
36478         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
36479         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
36480         * modules/utime: Add m4/utimes-null.m4.
36481
36482 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36483
36484         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
36485         space, undoing this 2003-08-12 change:
36486         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36487
36488 2003-08-16  Paul Eggert  <eggert@twinsun.com>
36489
36490         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
36491         strtoul.c from libc, undoing this 2003-08-12 change:
36492         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
36493
36494 2003-08-16  Jim Meyering  <jim@meyering.net>
36495
36496         Merges from coreutils.
36497         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
36498         prefix.  Adjust cache variables similarly.  Create 500 rather than
36499         just 300 files, to exercise bug on Darwin6.5, too.
36500         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
36501         $missing_dir.
36502         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
36503         AM_SYS_POSIX_TERMIOS.
36504         Reported by mkc@mathdogs.com.
36505         Also change use of $am_cv_sys_posix_termios
36506         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
36507         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
36508         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
36509         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
36510         in /proc/mounts until it finds one with matching device number.  This
36511         is unnecessary when the FILE argument *is* a mount point.  No stat call
36512         is necessary in that case.  So, disable the statvfs-testing code on
36513         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
36514         as RedHat bug# 84846.
36515         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36516         to 1MB, so as not to render systems with no stack size limit (e.g.,
36517         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36518         Include <unistd.h>.  On some systems,
36519         it is required for the definition of _SC_PAGESIZE.
36520
36521 2003-08-16  Jim Meyering  <jim@meyering.net>
36522
36523         Merge from coreutils.
36524         * lib/xstrtoimax.c: #else #if -> #elif.
36525         * lib/xstrtoumax.c: Likewise.
36526
36527 2003-08-16  Jim Meyering  <jim@meyering.net>
36528
36529         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
36530         * m4/utimes.m4: Removed.
36531         * m4/utimes-null.m4: Renamed from utimes.m4.
36532
36533         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
36534         to 1MB, so as not to render systems with no stack size limit (e.g.,
36535         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
36536         Include <unistd.h>.  On some systems,
36537         it is required for the definition of _SC_PAGESIZE.
36538
36539 2003-08-16  Jim Meyering  <jim@meyering.net>
36540         and Paul Eggert  <eggert@cs.ucla.edu>
36541
36542         Merges from coreutils, etc.
36543
36544         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
36545         using the latest version from cvs.  This avoids problems with #line
36546         directives using a vendor (Sun) compiler.
36547         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
36548         Don't set GETGROUPS_LIB here; now it's
36549         done via getgroups.m4's wrapper function.
36550         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
36551         rather than just in sh-util/configure.in, so that the
36552         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
36553         same.
36554         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
36555         AC_FUNC_GETLOADAVG where to find getloadavg.c.
36556         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
36557         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
36558         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
36559         Remove code that is now done by the newly-required macros.
36560         Append $(EXEEXT) to DF_PROG.
36561         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
36562         Do not invoke or require the following here,
36563         since prereq.m4 or some gnulib .m4 now does this for us:
36564         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
36565         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
36566         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
36567         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
36568         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
36569         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
36570         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
36571         AC_FUNC_OBSTACK.
36572         Do not replace the following functions, as this is now the job
36573         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
36574         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
36575         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
36576         atexit getpass, strdup, getpagesize.
36577         Replace 'raise'.
36578         Do not check for the following functions, as this is now the job
36579         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
36580         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
36581         setregid.
36582         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
36583         Check for sys/sysctl.h.
36584         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
36585         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
36586         of checking for ssize_t ourselves.
36587
36588         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
36589         Require every macro that gnulib/modules/* suggests for us.
36590         (jm_PREREQ_ADDEXT): New macro.
36591         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
36592         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
36593
36594         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
36595         (gl_PHYSMEM): Use it.
36596         Also check for `table' function.
36597         Check for new headers and functions.
36598         Add check for sys/sysmp.h.
36599         With suggestions from Kaveh Ghazi.
36600         Ignore headers that are present but cannot be compiled.  This
36601         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
36602         C 5.4.
36603
36604 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36605
36606         Document merge from coreutils.
36607         * modules/userspec: Depend on posixver.
36608         * modules/strftime: Depend on tzset.
36609
36610 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36611
36612         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
36613         rather than tab, after '#' in shell-script copyright notices.
36614         Suggested by Bruno Haible.
36615
36616 2003-08-15  Paul Eggert  <eggert@twinsun.com>
36617
36618         * config/srclist-update: Use three spaces, rather than tab, after '#'
36619         in shell-script copyright notices.  Suggested by Bruno Haible.
36620         Remove unnecessary parenthesization in regular expression.
36621
36622 2003-08-15  Jim Meyering  <jim@meyering.net>
36623
36624         Merge from coreutils.
36625         * lib/xgethostname.c: Include <stdlib.h>.
36626         (xghostname): Don't exit for anything other than memory-related
36627         failure; just return NULL.
36628         * lib/userspec.c: Include "posixver.h".
36629         (parse_user_spec): Accept `.' as a separator only
36630         in pre-POSIX-200112 mode.
36631         * lib/strtoimax.c: Use #elif rather than #else #if.
36632         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
36633         Remove function, now that we can rely on a working tzset function.
36634         [!_LIBC]: Ensure that the required autoconf test has been run.
36635         [!defined _NL_CURRENT && HAVE_STRFTIME]:
36636         Use underlying_strftime for %r.
36637         * lib/sha.c: Merge in some clean-up and optimization changes from
36638         glibc.
36639         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
36640         Ensure that it is a multiple of 64.
36641         Rearrange loop exit tests so as to avoid performing an
36642         additional fread after encountering an error or EOF.
36643         * lib/realloc.c: Update copyright date.
36644
36645 2003-08-15  Jim Meyering  <jim@meyering.net>
36646         and Paul Eggert  <eggert@twinsun.com>
36647
36648         Merge from coreutils.
36649         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
36650         member but strut utmpx does not.  Needed for AIX 4.3.3.
36651         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
36652
36653 2003-08-15  Jim Meyering  <jim@meyering.net>
36654         and Paul Eggert  <eggert@cs.ucla.edu>
36655
36656         Merges from coreutils, etc.
36657         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
36658         Require gl_FUNC_TZSET_CLOBBER.
36659         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
36660         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
36661         members.
36662
36663 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36664
36665         Help the merge from coreutils.
36666         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
36667         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
36668         * m4/tzset.m4: Use it too.
36669
36670 2003-08-14  Paul Eggert  <eggert@twinsun.com>
36671
36672         * modules/tzset: New file.
36673
36674 2003-08-14  Jim Meyering  <jim@meyering.net>
36675
36676         Merges from coreutils.
36677         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
36678         variable names, rather than @FNMATCH_H@.
36679         * modules/alloca: Likewise for $(ALLOCA_H).
36680
36681         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
36682         the three copies of the literal target, `fnmatch.h'.
36683         * modules/alloca (alloca.h): Likewise.
36684
36685 2003-08-14  Jim Meyering  <jim@meyering.net>
36686
36687         Merge from coreutils.
36688         * m4/tzset.m4: New file.
36689         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
36690         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
36691         otherwise, AIX 5.1 systems would end up using the latter.
36692         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
36693         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
36694         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
36695         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
36696
36697 2003-08-14  Jim Meyering  <jim@meyering.net>
36698
36699         Merge from coreutils.
36700         * lib/obstack.h: Whitespace changes.
36701         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
36702         and xcalloc return values.
36703         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
36704         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
36705         hang on OSF/1 5.1 for DIR on both local and remote file systems.
36706         Reported by (and fix confirmed by) Nelson H. F. Beebe.
36707         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
36708         error from mntctl.
36709         Use mntctl's return value to drive the entry-processing loop, since
36710         we can't rely on the value of the vmt_length member in the last
36711         entry.  On some systems doing so could result in exhausting
36712         virtual memory.  Based in part on a patch from Mike Jetzer.
36713
36714 2003-08-14  Jim Meyering  <jim@meyering.net>
36715         and Paul Eggert  <eggert@twinsun.com>
36716
36717         Merges from coreutils, plus other fixes.
36718         * lib/physmem.c: Merge in portability changes from gcc/libiberty
36719         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
36720         for credits and details.  Thanks to Kaveh Ghazi for helping
36721         to keep these files in sync.
36722         (ARRAY_SIZE): Define it.
36723         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
36724         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
36725         (memcasecmp): Don't assume size_t fits in unsigned int.
36726         Remove casts and duplicate code.
36727         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
36728         (memcpy): Remove definition.
36729         Merge in some clean-up and optimization changes from glibc.
36730         [BLOCKSIZE]: Move definition to top of file.
36731         Ensure that it is a multiple of 64.
36732         Rearrange loop exit tests so as to avoid performing an
36733         additional fread after encountering an error or EOF.
36734         * lib/md5.h (md5_uintptr): Define.
36735         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
36736         return to the initial working directory.  Preserve errno
36737         for caller.
36738         * lib/idcache.c: Include "xalloc.h".
36739         (xmalloc, xrealloc): Remove decls.
36740         (getuser): Remove casts no longer required in C89.
36741         * lib/human.c: Include stdio.h, for sprintf.
36742         * lib/group-member.c: Include "xalloc.h".
36743         (xmalloc, xrealloc): Remove decls.
36744         (get_group_info): Remove casts no longer required in C89.
36745         * lib/getusershell.c (readname): Remove casts no longer required in
36746         C89.
36747         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
36748         * lib/getline.c: Whitespace fix, from coreutils.
36749
36750 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36751
36752         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
36753         Check for isascii.
36754
36755         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36756         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36757         Undo previous (whitespace-only) change.
36758
36759 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36760
36761         * lib/exclude.c: Include <ctype.h>
36762         (IN_CTYPE_DOMAIN): New macro.
36763         (is_space): New fn.
36764         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
36765         and empty lines.
36766
36767         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36768         Undo previous (whitespace-only) change.
36769
36770 2003-08-13  Paul Eggert  <eggert@twinsun.com>
36771
36772         * config/srclist-update: Change update back to the old behavior,
36773         leaving whitespace alone.  Use one 'sed' command rather than a
36774         pipeline.
36775         (fixlicense): Now a variable, not a function.
36776         (remove_trailing_blanks): Remove.
36777         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
36778         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36779         Undo previous (whitespace-only) change.
36780
36781 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36782
36783         Merge from coreutils.
36784         * modules/euidaccess: Add lib_SOURCES, include for new
36785         file euidaccess.h
36786
36787 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36788
36789         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
36790         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
36791         Normalize leading white space and remove trailing white space.
36792
36793         Merge from coreutils
36794         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
36795
36796         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
36797         0.12.1.  These files are now being upgraded automatically by
36798         ../config/srclist-update.
36799
36800 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36801
36802         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
36803         Normalize leading white space and remove trailing white space.
36804         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
36805         notice, as per ../config/srclist-update.
36806
36807         Merge from coreutils.
36808         * lib/euidaccess.h: New file.
36809         * lib/euidaccess.c: Include it.
36810         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
36811         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
36812         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
36813
36814 2003-08-12  Paul Eggert  <eggert@twinsun.com>
36815
36816         * config/srclist-update: Add copyright notice.
36817         (remove_id_lines, remove_trailing_blanks): New constants.
36818         (fixfile): Use them to normalize spacing a bit in copied files.
36819         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
36820         Normalize leading white space and remove trailing white space.
36821
36822         * config/texinfo.tex: Sync with texinfo.
36823
36824         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
36825         strtoul.c from libc, to merge coreutils whitespace changes.
36826
36827         * config/srclist.txt: Get the following m4 files from gettext:
36828         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
36829         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
36830         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
36831         wint_t.m4.
36832
36833 2003-08-12  Karl Berry  <karl@gnu.org>
36834
36835         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
36836         been made.
36837
36838 2003-08-11  Paul Eggert  <eggert@twinsun.com>
36839
36840         * modules/gnu-source, m4/gnu-source.m4:
36841         Remove; we're assuming Autoconf 2.54 or later now.
36842         Suggested by Bruno Haible.
36843         * MODULES.html.sh (func_all_modules): Remove gnu-source.
36844
36845 2003-08-11  Bruno Haible  <bruno@clisp.org>
36846
36847         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
36848
36849 2003-08-11  Bruno Haible  <bruno@clisp.org>
36850
36851         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
36852         (vasnprintf): Use it instead of wcslen.
36853
36854 2003-08-11  Bruno Haible  <bruno@clisp.org>
36855
36856         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
36857         value to ensure that _Bool promotes to int. Use #define for _Bool when
36858         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
36859
36860 2003-08-10  Karl Berry  <karl@gnu.org>
36861
36862         * lib/regex.h: update from libc (whitespace fix).
36863
36864 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36865
36866         Merge some files from coreutils.  These changes were
36867         originally made by Jim Meyering.
36868         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
36869         many older Unixes require this.
36870         * lib/alloca.c (alloca): Remove cast to argument of free;
36871         no longer needed in C89.
36872         * lib/alloca_.h, regex.h: Fix white space to match
36873         what GNU indent does.
36874
36875 2003-08-09  Paul Eggert  <eggert@twinsun.com>
36876
36877         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
36878         apparently Emacs's Unicode mode got confused before my 2003-08-05
36879         checkin.
36880
36881 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36882
36883         * m4/extensions.m4: New file.
36884         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
36885         Require gl_USE_SYSTEM_EXTENSIONS.
36886         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
36887         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
36888
36889 2003-08-08  Paul Eggert  <eggert@twinsun.com>
36890
36891         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
36892         * modules/extensions, modules/gnu-source: New files.
36893         * modules/timespec, modules/unlocked-io: Depend on extensions.
36894
36895 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36896
36897         * modules/restrict: New file.
36898         * MODULES.html.sh (func_all_modules): Add restrict.
36899         * modules/regex: Depend on restrict.
36900
36901 2003-08-07  Paul Eggert  <eggert@twinsun.com>
36902
36903         * m4/restrict.m4: New file.
36904         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
36905
36906 2003-08-07  Bruno Haible  <bruno@clisp.org>
36907
36908         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
36909         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
36910
36911 2003-08-07  Bruno Haible  <bruno@clisp.org>
36912
36913         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
36914         makes the module 'getndelim2' compatible with the module 'getline'.
36915
36916 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36917
36918         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
36919         byte with "\201" to avoid glitches when editing that source file
36920         with multi-gnome-terminal.
36921
36922 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36923
36924         * lib/bumpalloc.h: Remove.
36925
36926 2003-08-05  Paul Eggert  <eggert@twinsun.com>
36927
36928         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
36929         * modules/bumpalloc: Remove.
36930
36931 2003-08-04  Paul Eggert  <eggert@twinsun.com>
36932
36933         * lib/getloadavg.c: Change copyright notice and spacing to conform to
36934         GNU coding style.
36935
36936         Merge from coreutils.
36937         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
36938         1. From glibc.
36939         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
36940         from Karl Berry, implemented by Jim Meyering.
36941         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
36942         from Dmitry V. Levin.
36943         Remove anachronistic cast of xrealloc.
36944         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
36945         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
36946         type. Otherwise, it wouldn't compile with at least /bin/cc on
36947         ymp-cray-unicos9.0.2.X.
36948         Combine two mostly-identical uses of alloca into one.
36949         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
36950
36951 2003-08-04  Dave Love  <d.love@dl.ac.uk>
36952
36953         [From Emacs.]
36954
36955         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
36956         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
36957         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
36958         obsolete NLIST_NAME_UNION.
36959         [__GNU__]: Undef BSD and FSCALE.
36960         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
36961
36962 2003-08-03  Paul Eggert  <eggert@twinsun.com>
36963
36964         * lib/stdbool_.h (_Bool): Make it signed char, instead of
36965         an enum type, so that it's guaranteed to promote to int.  See:
36966         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
36967
36968 2003-08-03  Karl Berry  <karl@gnu.org>
36969
36970         * config/depcomp: update from automake.
36971
36972 2003-07-31  Paul Eggert  <eggert@twinsun.com>
36973
36974         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
36975         (strerror): Don't assume that a printable int fits in 14 bytes.
36976
36977 2003-07-31  Bruno Haible  <bruno@clisp.org>
36978
36979         * modules/getpass-gnu: New file.
36980         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
36981
36982 2003-07-31  Bruno Haible  <bruno@clisp.org>
36983
36984         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
36985
36986 2003-07-24  Karl Berry  <karl@gnu.org>
36987
36988         * config/missing: update from automake.
36989
36990 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
36991             Bruno Haible  <bruno@clisp.org>
36992
36993         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
36994         * lib/getline.c (getline, getdelim): Likewise.
36995         Remove _GNU_SOURCE define; now it's defined in config.h through
36996         m4/getline.m4.
36997
36998 2003-07-23  Karl Berry  <karl@gnu.org>
36999
37000         * config/config.sub: update from prep.
37001
37002 2003-07-22  Paul Eggert  <eggert@twinsun.com>
37003
37004         * modules/xalloc (Depends-on): Add exitfail.
37005         * modules/xmemcoll: Likewise.
37006
37007 2003-07-22  Paul Eggert  <eggert@twinsun.com>
37008
37009         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
37010         over-parenthesization in macros.
37011
37012         Sync with coreutils.
37013
37014         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
37015         required by C99.
37016
37017         Use `exit_failure' for xalloc and xmemcoll instead of their own
37018         private exit-failure variables.
37019         * lib/xalloc.h (xalloc_exit_failure): Remove.
37020         * lib/xmalloc.c: Likewise.  Include exitfail.h.
37021         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
37022         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
37023         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
37024         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
37025
37026 2003-07-20  Jim Meyering  <jim@meyering.net>
37027
37028         * modules/closeout (Depends-on): Add exitfail.
37029         Suggestion from Bruno Haible.
37030
37031 2003-07-19  Karl Berry  <karl@gnu.org>
37032
37033         * config/config.sub: update from prep.
37034
37035 2003-07-18  Paul Eggert  <eggert@twinsun.com>
37036
37037         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
37038         Remove.
37039         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
37040         to test that it can stand by itself.  Include "exitfail.h".
37041         Clients should set exit_failure instead.
37042         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
37043
37044 2003-07-18  Bruno Haible  <bruno@clisp.org>
37045
37046         * modules/getndelim2: New file.
37047         * modules/getline: Share files with module getndelim2.
37048         * modules/getnline: Depend on getndelim2 instead of sharing files with
37049         it. Add getnline.c to lib_SOURCES.
37050         * MODULES.html.sh (func_all_modules): Add getndelim2.
37051
37052 2003-07-18  Bruno Haible  <bruno@clisp.org>
37053
37054         * m4/getndelim2.m4: New file.
37055         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
37056         invoke gl_PREREQ_GETNDELIM2.
37057         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
37058         gl_PREREQ_GETNDELIM2.
37059         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
37060         gl_GETNDELIM2.
37061
37062 2003-07-18  Bruno Haible  <bruno@clisp.org>
37063
37064         * lib/getndelim2.h: New file.
37065         * lib/getndelim2.c: Make into a module of its own. Include config.h,
37066         getndelim2.h.
37067         (getndelim2): Make non-static. Change return type to ssize_t.
37068         * lib/getline.h: Change argument names.
37069         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
37070         * lib/getnline.c: Include getndelim2.h.
37071
37072 2003-07-18  Andreas Schwab  <schwab@suse.de>
37073
37074         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
37075
37076 2003-07-17  Karl Berry  <karl@gnu.org>
37077
37078         * config/config.sub: update from prep.
37079
37080 2003-07-17  Bruno Haible  <bruno@clisp.org>
37081
37082         * modules/getnline: New file.
37083         * modules/getline: Add lib/getndelim2.c to source file list.
37084         * MODULES.html.sh (func_all_modules): Add getnline.
37085
37086 2003-07-17  Bruno Haible  <bruno@clisp.org>
37087
37088         * m4/getnline.m4: New file.
37089
37090 2003-07-17  Bruno Haible  <bruno@clisp.org>
37091
37092         * m4/Makefile.am.in: Remove file.
37093         * m4/Makefile.am: Remove file.
37094         * m4/Makefile.in: Remove file.
37095
37096 2003-07-17  Bruno Haible  <bruno@clisp.org>
37097
37098         * lib/getnline.h: New file.
37099         * lib/getnline.c: New file.
37100         * lib/getndelim2.c: New file, extracted from getline.c.
37101         (getndelim2): Renamed from getdelim2, with added nmax argument.
37102         * lib/getline.c: Include getndelim2.c.
37103         (getdelim2): Moved out to getndelim2.c.
37104         (getline, getdelim): Update.
37105
37106 2003-07-17  Bruno Haible  <bruno@clisp.org>
37107
37108         * lib/Makefile.am: Remove file.
37109         * lib/Makefile.in: Remove file.
37110
37111 2003-07-17  Bruno Haible  <bruno@clisp.org>
37112
37113         * configure.in: Remove file.
37114         * Makefile.in: Remove file.
37115
37116 2003-07-17  Bruno Haible  <bruno@clisp.org>
37117
37118         * MODULES.html.sh: Put the </BODY> right before </HTML>.
37119
37120 2003-07-16  Karl Berry  <karl@gnu.org>
37121
37122         * config/srclist-update: was running fixlicense twice, which caused
37123                 texinfo.tex to be nullified for some reason.  Simplify,
37124                 $gplsrc is no longer needed as far as I can see?
37125
37126 2003-07-16  Jim Meyering  <jim@meyering.net>
37127
37128         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
37129
37130 2003-07-15  Paul Eggert  <eggert@twinsun.com>
37131
37132         * config/srclist.txt: Get the following files from gettext-runtime/intl
37133         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
37134         ref-del.sin.  From Bruno Haible.
37135         * config/srclist-update (fixfile): Change grep pattern again, since the
37136         previous fix didn't work (there was another trailing $).  Use
37137         '[$]' to escape the $s.
37138
37139 2003-07-15  Karl Berry  <karl@gnu.org>
37140
37141         * lib/vasnprintf.c: update from gettext.
37142
37143 2003-07-15  Karl Berry  <karl@gnu.org>
37144
37145         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
37146         gets expanded when surrounded by '$'.
37147
37148 2003-07-15  Jim Meyering  <jim@meyering.net>
37149
37150         * modules/save-cwd: Don't depend on error.  From Derek Price.
37151
37152 2003-07-15  Jim Meyering  <jim@meyering.net>
37153
37154         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
37155
37156 2003-07-14  Simon Josefsson  <jas@extundo.com>
37157
37158         * modules/mempcpy: New file.
37159         * MODULES.html.sh (func_all_modules): Add mempcpy.
37160
37161 2003-07-14  Simon Josefsson  <jas@extundo.com>
37162
37163         * m4/mempcpy.m4: New file.
37164
37165 2003-07-14  Simon Josefsson  <jas@extundo.com>
37166
37167         * lib/mempcpy.h: New file.
37168         * lib/mempcpy.c: New file.
37169
37170 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37171
37172         * modules/getdate, modules/posixtm: Depend on mktime.
37173
37174 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37175
37176         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
37177         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
37178         unicodeio.c, unicodeio.h, unlocked-io.h:
37179         Switch from LGPL to GPL.
37180
37181 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37182
37183         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
37184         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
37185         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
37186         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
37187         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
37188         updated automatically by ../config/srclist-update.  This changes
37189         their license from LPGL to GPL.
37190
37191 2003-07-14  Paul Eggert  <eggert@twinsun.com>
37192
37193         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
37194         assumed to refer to the root of the most recent stable gettext version.
37195         * config/srclistvars.sh: Add defaults for eggert.
37196         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
37197         Match "This program" as well as "The program".  This is needed
37198         for gettext.
37199
37200 2003-07-14  Jim Meyering  <jim@meyering.net>
37201
37202         Don't emit diagnostics.  Let callers do that.
37203         * lib/save-cwd.c: Don't include "error.h".
37204         (save_cwd): Don't call error.  Ensure that errno is valid
37205         when returning nonzero.
37206
37207         * lib/save-cwd.h (restore_cwd): Update prototype.
37208         * lib/save-cwd.c (restore_cwd): Remove two parameters.
37209         Simplify.  Don't call error upon failure.  Let callers do that.
37210         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
37211         when auditing is enabled.  But don't bother updating the #if.
37212
37213 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
37214
37215         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
37216         it breaks C++ compilation.
37217         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
37218
37219 2003-07-10  Simon Josefsson  <jas@extundo.com>
37220
37221         * modules/strchrnul (Makefile.am): Add strchrnul.h.
37222
37223 2003-07-10  Jim Meyering  <jim@meyering.net>
37224
37225         * m4/clock_time.m4: Remove trailing blank.
37226         * m4/intmax_t.m4: Likewise.
37227
37228 2003-07-10  Jim Meyering  <jim@meyering.net>
37229
37230         * lib/vasnprintf.c: Remove trailing blanks.
37231         Make cpp indentation consistent.
37232
37233 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37234
37235         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
37236         posixver.c, strftime.c, strnlen.c, strverscmp.c:
37237         Switch from LGPL to GPL.
37238
37239 2003-07-09  Paul Eggert  <eggert@twinsun.com>
37240
37241         * config/srclist.txt: Sort sublists.  Add
37242         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
37243         that differ from gnulib for one reason or another; we'd like this list
37244         to be smaller but for now let's document what we have.
37245
37246 2003-07-08  Paul Eggert  <eggert@twinsun.com>
37247
37248         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
37249         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
37250         and sweeter "eval x=$x".
37251         * config/srclist.txt: Get lib/argp* from glibc.
37252
37253 2003-07-07  Paul Eggert  <eggert@twinsun.com>
37254
37255         * lib/mktime.c: Fix some boundary cases and remove need for floating
37256         point.
37257
37258         Issue a compile-time diagnostic if time_t is floating point, or if
37259         two's complement arithmetic is not in effect, or if arithmetic
37260         right shift does not propagate the sign.  These assumptions were
37261         all in the original code but they weren't checked.
37262
37263         (TIME_T_MIDPOINT, verify): New macros.
37264         (__isleap): Remove; it has integer overflow problems.
37265         (leapyear): New function, without those problems.
37266         (ydhms_tm_diff): Remove; splitting into two parts.
37267         (ydhms_diff): New function, containing the arithmetic part of
37268         the old ydhms_tm_diff function.  Issue a compile-time
37269         diagnostic if we are not using C99 integer division.
37270         Avoid casts when possible.
37271         (guess_time_tm): New function, containing the checking part of
37272         the old ydhms_tm_diff function.  Return the new value, rather than
37273         the difference between it and the old.  Accept a new argument T
37274         so that *T specifies the old value.  Check for overflow in the result.
37275
37276         (__mktime_internal): Use a time_t offset, not a long int offset.
37277         This undoes the 2003-06-04 change, which is no longer needed now
37278         that we have better overflow checking.
37279         (localtime_offset): Likewise.
37280
37281         (__mktime_internal): Avoid harmful overflow on hosts where time_t
37282         and long are 64-bit but int is only 32-bit.
37283         (ydhms_diff): Use long int to store year1 and yday1.
37284         Issue a compile-time diagnostic if long int is not wide enough.
37285
37286         (__mktime_internal): Use long int to store adjusted year and yday.
37287         Use plain C rather than preprocessor commands, if that doesn't
37288         affect efficiency.
37289         Check for overflow (and try to repair) after each probe
37290         rather than checking only at the very end.  This avoids some bugs
37291         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
37292         does not equal GMT offset at maximum time).
37293         Use integer to check for overflow rather than floating point; this
37294         is more portable to non-IEEE hosts, and is a tad faster.
37295         When we detect that we are oscillating between two values,
37296         don't check whether tm_isdst has the requested value, since
37297         we already know the answer.  When tm_isdst has the wrong value,
37298         use a different heuristic to find the right one, based on the
37299         extreme values actually observed in practice in tz2003a,
37300         rather than the (overly optimistic) "previous 3 calendar quarters".
37301
37302         (not_equal_tm, print_tm, check_result): Use "const T" rather than
37303         "T const" to accommodate glibc style.
37304         (check_result): Use less-confusing report format.  "long" -> "long int.
37305         (main): Likewise.
37306         Don't loop if the iteration overflows time_t.
37307         Allow a negative step in the iteration.
37308
37309 2003-07-06  Karl Berry  <karl@gnu.org>
37310
37311         * config/depcomp: update from automake.
37312         * config/config.sub: update from prep.
37313
37314 2003-07-03  Karl Berry  <karl@gnu.org>
37315
37316         * config/config.guess: update from prep.
37317
37318 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37319
37320         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
37321         xreadlink.c now includes it unconditionally.
37322
37323 2003-07-01  Paul Eggert  <eggert@twinsun.com>
37324
37325         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
37326         having it depend on HAVE_SYS_TYPES_H.
37327
37328 2003-07-01  Bruno Haible  <bruno@clisp.org>
37329
37330         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
37331         <sys/types.h> should be sufficient.
37332         Reported by Paul Eggert.
37333
37334 2003-06-26  Karl Berry  <karl@gnu.org>
37335
37336         * config/depcomp: update from automake.
37337
37338 2003-06-26  Bruno Haible  <bruno@clisp.org>
37339
37340         * modules/human: Depend on module stdbool.
37341
37342 2003-06-25  Bruno Haible  <bruno@clisp.org>
37343
37344         * modules/readlink: New file.
37345         * modules/xreadlink: Depend on it.
37346         * MODULES.html.sh (func_all_modules): Add readlink.
37347
37348 2003-06-25  Bruno Haible  <bruno@clisp.org>
37349
37350         * m4/readlink.m4: New file.
37351
37352 2003-06-25  Bruno Haible  <bruno@clisp.org>
37353
37354         * lib/readlink.c: New file.
37355
37356 2003-06-22  Karl Berry  <karl@gnu.org>
37357
37358         * config/srclist.txt: update mkinstalldirs from automake.
37359         * config/mkinstalldirs: update.
37360
37361 2003-06-22  Bruno Haible  <bruno@clisp.org>
37362
37363         Portability to mingw32.
37364         * m4/ssize_t.m4: New file, from GNU gettext.
37365         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
37366         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
37367
37368 2003-06-22  Bruno Haible  <bruno@clisp.org>
37369
37370         * modules/safe-read: Add m4/ssize_t.m4.
37371         * modules/xreadlink: Add m4/ssize_t.m4.
37372
37373 2003-06-20  Bruno Haible  <bruno@clisp.org>
37374
37375         Assume C89, so PARAMS isn't needed.
37376         * lib/unicodeio.h (PARAMS): Remove.
37377         * lib/unicodeio.c: Don't use PARAMS.
37378
37379 2003-06-18  Karl Berry  <karl@gnu.org>
37380
37381         * config/config.{guess,sub}: update from prep.
37382
37383 2003-06-18  Jim Meyering  <jim@meyering.net>
37384
37385         Merge changes from coreutils.
37386         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
37387         Remove explicit declarations of xmalloc and realloc.
37388         Include xalloc.h.
37389         (read_utmp): Remove anachronistic cast of xmalloc.
37390
37391 2003-06-17  Paul Eggert  <eggert@twinsun.com>
37392
37393         Assume C89, so PARAMS isn't needed.
37394         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
37395         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
37396         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
37397         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
37398         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
37399         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
37400         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
37401         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
37402         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
37403         lib/xstrtod.h, lib/xstrtol.h: Likewise.
37404         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
37405         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
37406         no longer needed. Anyway, config.h should always be included before any
37407         other file.
37408
37409 2003-06-11  Simon Josefsson  <jas@extundo.com>
37410
37411         * modules/sysexits: New file.
37412         * MODULES.html.sh (func_all_modules): Add sysexits.
37413
37414 2003-06-11  Simon Josefsson  <jas@extundo.com>
37415
37416         * lib/sysexit_.h: New file.
37417
37418 2003-06-11  Derek Price  <derek@ximbiot.com>
37419
37420         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
37421         necessary.
37422
37423 2003-06-11  Bruno Haible  <bruno@clisp.org>
37424
37425         * m4/sysexits.m4: New file.
37426
37427 2003-06-10  Simon Josefsson  <jas@extundo.com>
37428
37429         * lib/argp.h: New file, from glibc.
37430         * lib/argp-ba.c: New file, from glibc.
37431         * lib/argp-eexst.c: New file, from glibc.
37432         * lib/argp-fmtstream.c: New file, from glibc.
37433         * lib/argp-fmtstream.h: New file, from glibc.
37434         * lib/argp-fs-xinl.c: New file, from glibc.
37435         * lib/argp-help.c: New file, from glibc.
37436         * lib/argp-namefrob.h: New file, from glibc.
37437         * lib/argp-parse.c: New file, from glibc.
37438         * lib/argp-pv.c: New file, from glibc.
37439         * lib/argp-pvh.c: New file, from glibc.
37440         * lib/argp-xinl.c: New file, from glibc.
37441
37442 2003-06-10  Simon Josefsson  <jas@extundo.com>
37443
37444         * modules/strchrnul: New file.
37445
37446 2003-06-10  Simon Josefsson  <jas@extundo.com>
37447
37448         * modules/argp: New file.
37449
37450 2003-06-10  Simon Josefsson  <jas@extundo.com>
37451
37452         * m4/strchrnul.m4: New file.
37453
37454 2003-06-10  Simon Josefsson  <jas@extundo.com>
37455
37456         * lib/strchrnul.h: New file.
37457         * lib/strchrnul.c: New file.
37458
37459 2003-06-10  Bruno Haible  <bruno@clisp.org>
37460
37461         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
37462
37463 2003-06-07  Karl Berry  <karl@gnu.org>
37464
37465         * config/config.{guess,sub}: update from prep.
37466
37467 2003-06-07  Jim Meyering  <jim@meyering.net>
37468
37469         * modules/strtod: Use $(...) notation, not @...@ for
37470         AC_REPLACE'd variables.
37471         * modules/localcharset: Likewise.
37472
37473 2003-06-07  Jim Meyering  <jim@meyering.net>
37474
37475         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
37476         in place of my name in the copyright comment.
37477         Remove definition and uses of __P.
37478
37479         From coreutils.
37480         * lib/stat.c: Don't declare xmalloc explicitly.
37481         Instead, include "xalloc.h".
37482         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
37483         xrealloc, and xcalloc return values.
37484         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
37485         Improve comment.
37486         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
37487
37488 2003-06-07  Bruno Haible  <bruno@clisp.org>
37489
37490         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
37491         avoid AC_CONFIG_LINKS.
37492         * modules/fnmatch (Makefile.am): Use explicit creation rule for
37493         fnmatch.h, to avoid AC_CONFIG_LINKS.
37494         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
37495
37496 2003-06-07  Bruno Haible  <bruno@clisp.org>
37497
37498         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
37499         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
37500         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37501         directory.
37502         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
37503         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
37504         directory.
37505
37506 2003-06-06  Jim Meyering  <jim@meyering.net>
37507
37508         Merge from coreutils.
37509         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
37510         Consolidate declarations and initializations of *_base* locals.
37511
37512         Merge from coreutils.
37513         This avoids a core dump on systems without GNU putenv,
37514         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
37515         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
37516         (unsetenv): New static function, from GNU libc.
37517         (rpl_putenv): Use it.
37518
37519         * lib/modechange.c: Remove trailing blanks.
37520
37521         Merge from coreutils.
37522         * lib/fsusage.c: Remove declaration of statfs.
37523         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
37524
37525         * lib/posixtm.c: Include <stdbool.h> unconditionally.
37526
37527 2003-06-06  Jim Meyering  <jim@meyering.net>
37528
37529         * lib/stdbool_.h: Renamed from stdbool.h.in.
37530
37531 2003-06-06  Jim Meyering  <jim@meyering.net>
37532             Bruno Haible  <bruno@clisp.org>
37533
37534         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
37535         Adjust Makefile.am snippet not to redirect directly to target.
37536         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
37537
37538 2003-06-05  Paul Eggert  <eggert@twinsun.com>
37539
37540         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
37541         mismatch, look in future quarters as well as past.  This fixes a
37542         bug when processing fall-backwards gaps immediately after a long
37543         period of daylight-saving time.
37544
37545         * lib/mktime.c: Assume freestanding C89 or better.
37546         (HAVE_LIMITS_H): Remove.  Assume it's 1.
37547         (__P): Remove; not used.
37548         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
37549         (mktime, not_equal_tm, print_tm, check_result,
37550         main): Use prototypes.  Use const * where appropriate.
37551         (main): Fix typo in testing code that uncovered by above changes.
37552         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
37553
37554 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37555
37556         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
37557         locale.h, localeconv.  This merges changes from coreutils.
37558
37559         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
37560         It can be removed after the next Autoconf is released.
37561         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
37562         needed.
37563
37564 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37565
37566         * lib/mktime.c: Fix Debian bug 177940
37567         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
37568         (localtime_offset): Now long int, not time_t, because we want it
37569         to be guaranteed to be signed.  All uses changed.
37570         (__mktime_internal): If overflow would occur when adding offset,
37571         don't add it.
37572
37573         Merge 'human' changes from coreutils.  Rewrite to support
37574         locale-specific notations like thousands separators.
37575         * lib/human.c: Simplify authorship notice.
37576         Include human.h immediately after config.h.
37577         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
37578         <limits.h>: Do not include, since human.h does.
37579         (SIZE_MAX, UINTMAX_MAX): New macros.
37580         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
37581         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
37582         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
37583         (power_letter): Renamed from suffixes.
37584         (generate_suffix_backwards): Remove.
37585         (adjust_value): Now takes int style (because of human.h changes)
37586         and long double value (for greater precision on some platforms).
37587         (group_number): New function.
37588         (human_readable): Use it.  Use integer options, not enum.
37589         Put the options before the sizes in the arg list.
37590         Support all the new options.
37591         The old human_readable function has been removed;
37592         use inttostr.h instead.
37593         (human_readable, default_block_size, humblock):
37594         Use uintmax_t, not int, for block sizes.
37595         (human_readable_inexact, block_size_types): Remove.
37596         (block_size_opts): New constant.
37597         (human_options): Renamed from human_block_size, with new signature
37598         that allows block sizes up to UINTMAX_MAX.  All callers changed.
37599         * lib/human.h: Add copyright and authorship notice.
37600         Include <limits.h> and <stdbool.h> unconditionally.
37601         (PARAMS): Remove.  All uses removed.
37602         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
37603         (enum human_inexact_style): Remove tag; now a nameless enum.
37604         (human_floor, human_ceiling, human_round_to_even): Now have
37605         values 2, 0, 1 rather than -1, 1, 0.
37606         (human_group_digits, human_suppress_point_zero, human_autoscale,
37607         human_base_1024, human_SI, human_B): New constants.
37608         (human_readable_inexact, human_block_size): Remove.
37609         (human_readable): Size args are now uintmax_t, not int.
37610         (human_options): New decl.
37611
37612         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
37613         unnecessary now that we assume C89 or better.  This change
37614         imported from coreutils.
37615
37616         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37617         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
37618         in the 2003-05-30 sync from glibc.
37619
37620         .h files should stand alone, but we shouldn't include <sys/types.h>
37621         if we can get away with just <stddef.h>.
37622
37623         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
37624         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
37625         rather than <sys/types.h>, as we merely need size_t.
37626         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
37627         to get size_t.
37628         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
37629         Include <stdio.h>, to get FILE.
37630         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
37631         memcasecmp.h has included <stddef.h> and all we need is size_t.
37632         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
37633         our interface, instead of including <sys/types.h>
37634
37635 2003-06-04  Paul Eggert  <eggert@twinsun.com>
37636
37637         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
37638         now, as glibc mktime is buggy on non-glibc systems.
37639
37640 2003-06-03  Karl Berry  <karl@gnu.org>
37641
37642         * config/config.sub: update from prep.
37643
37644 2003-06-02  Paul Eggert  <eggert@twinsun.com>
37645
37646         [from coreutils]
37647         Fix some minor time-related bugs with POSIX time arguments.
37648         Some valid time stamps were being rejected (notably -1, and
37649         time stamps before 1900 on 64-bit hosts).  And some invalid
37650         time stamps were being accepted, e.g. September 31.
37651
37652         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
37653         that we can return (time_t) -1 successfully.
37654         * lib/posixtm.c: Likewise.
37655         [HAVE_STDBOOL_H]: Include <stdbool.h>.
37656         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
37657         (t): Remove static var.
37658         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
37659         of static var.  All uses changed.
37660         (year): Do not reject years before 1900; they can occur with
37661         64-bit time_t.
37662         (posix_time_parse): Do not check for out-of-range components;
37663         that is now the caller's responsibility, since our checks were
37664         only approximations.
37665         (posixtime): Use mktime to check for out-of-range components,
37666         since it knows them exactly.
37667         If mktime returns (time_t) -1, check whether an error actually occurred
37668         by invoking localtime on -1.
37669         (main) [TEST_POSIXTIME]: Check for input data errors, and report
37670         posixtime failures better.
37671         Improve the test data (in comments only).
37672
37673 2003-06-02  Karl Berry  <karl@gnu.org>
37674
37675         * config/mkinstalldirs (version): new variable.
37676         (--version): new option.
37677         (usage): improve message.
37678
37679 2003-05-30  Karl Berry  <karl@gnu.org>
37680
37681         * lib/mktime.c: update from libc.
37682
37683 2003-05-30  Bruno Haible  <bruno@clisp.org>
37684
37685         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
37686         * config/config.rpath: Upgrade to gettext-0.12.1.
37687
37688 2003-05-30  Bruno Haible  <bruno@clisp.org>
37689
37690         * m4/gettext.m4: Upgrade to gettext-0.12.1.
37691         * m4/nls.m4: New file, from gettext-0.12.1.
37692         * m4/po.m4: New file, from gettext-0.12.1.
37693         * m4/progtest.m4: Upgrade to gettext-0.12.1.
37694
37695 2003-05-30  Bruno Haible  <bruno@clisp.org>
37696
37697         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
37698         * lib/localcharset.h: Likewise.
37699         * lib/localcharset.c: Likewise.
37700
37701 2003-05-29  Karl Berry  <karl@gnu.org>
37702
37703         * config/config.rpath: update from gettext.
37704
37705 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37706
37707         Assume the headers required for C89 freestanding compilers.
37708         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
37709         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
37710         * m4/human.m4 (gl_HUMAN): Likewise.
37711         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
37712         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
37713         * m4/userspec.m4 (gl_USERSPEC): Likewise.
37714         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
37715         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
37716         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
37717
37718 2003-05-28  Paul Eggert  <eggert@twinsun.com>
37719
37720         Assume the headers required for C89 freestanding compilers.
37721         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
37722         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
37723         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
37724         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
37725         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
37726         define, since <limits.h> is guaranteed to do that.
37727         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
37728         * lib/exclude.c: Include <stdbool.h> unconditionally.
37729         * lib/tempname.c: Include <stddef.h> unconditionally.
37730         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
37731         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
37732         <stddef.h> does that.
37733         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
37734         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
37735         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
37736         needed.
37737         * lib/xstrtol.c: Likewise.
37738         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
37739         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
37740
37741         * lib/addext.c (addext): Use assignment rather than cast, to avoid
37742         warnings on some platforms.
37743
37744         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
37745         arbitrarily.
37746
37747 2003-05-26  Jim Meyering  <jim@meyering.net>
37748
37749         Merge in a change from coreutils:
37750         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
37751         that is guaranteed to be `no'.  Use `no_such_member' to indicate
37752         that condition, rather than `-1' which is slightly misleading.
37753         Change the name of the cache variable to have the gl_ prefix.
37754         Prompted by a patch from Richard Dawe for DJGPP.
37755
37756 2003-05-24  Karl Berry  <karl@gnu.org>
37757
37758         * config/config.guess: update from prep.
37759
37760 2003-05-22  Karl Berry  <karl@gnu.org>
37761
37762         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
37763
37764 2003-05-20  Karl Berry  <karl@gnu.org>
37765
37766         * config/config.guess: update from prep.
37767
37768 2003-05-18  Karl Berry  <karl@gnu.org>
37769
37770         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
37771         might actually be set by the user.
37772
37773         * config/depcomp, install-sh, mdate-sh: update from automake.
37774
37775 2003-05-17  Bruno Haible  <bruno@clisp.org>
37776
37777         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
37778         invalid expansion for AC_EGREP_CPP.
37779         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
37780         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
37781         Suggested by Akim Demaille <akim@epita.fr> in
37782         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
37783
37784 2003-05-12  Jim Meyering  <jim@meyering.net>
37785
37786         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
37787         the space-padded-by-default conversion specifiers, %e, %k, %l.
37788
37789 2003-05-12  Bruno Haible  <bruno@clisp.org>
37790
37791         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
37792         the string is longer than 4 KB.
37793
37794 2003-05-11  Karl Berry  <karl@gnu.org>
37795
37796         * config/config.{guess,sub}: update from prep.
37797
37798 2003-05-09  Bruno Haible  <bruno@clisp.org>
37799
37800         * modules/error: Add m4/strerror_r.m4 to file list.
37801
37802 2003-05-03  Bruno Haible  <bruno@clisp.org>
37803
37804         Upgrade to Unicode-4.0.
37805         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
37806         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
37807         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
37808         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
37809         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
37810         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
37811         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
37812         Change width of U+E0100..U+E01EF from 1 to 0.
37813
37814 2003-04-25  Jim Meyering  <jim@meyering.net>
37815
37816         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
37817         of type size_t, not int.
37818
37819 2003-04-25  Bruno Haible  <bruno@clisp.org>
37820
37821         * lib/copy-file.c: Include <stddef.h>, for size_t.
37822
37823 2003-04-21  Paul Eggert  <eggert@twinsun.com>
37824
37825         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
37826         code which expansion is under static control.  Patch imported from
37827         Akim Demaille's patch to Bison; see
37828         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
37829
37830 2003-04-14  Bruno Haible  <bruno@clisp.org>
37831
37832         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
37833
37834 2003-04-11  Jim Meyering  <jim@meyering.net>
37835
37836         Merge changes from Coreutils.
37837
37838         2003-03-22  Jim Meyering  <jim@meyering.net>
37839
37840         * lib/strftime.c (widen): Cast alloca return value to proper type.
37841
37842         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
37843
37844         From GNU libc.
37845         * lib/strftime.c (my_strftime): Handle very large width
37846         specifications for numeric values correctly.  Improve checks for
37847         overflow.
37848
37849         2003-01-19  Jim Meyering  <jim@meyering.net>
37850
37851         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
37852         definitions.
37853         (nl_get_alt_digit) [! defined my_strftime]: Define.
37854         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
37855         _nl_get_alt_digit and _nl_get_walt_digit.
37856
37857         * lib/strftime.c (my_strftime): Merge in locale-related changes from
37858         libc. These changes have no effect outside of _LIBC.
37859
37860 2003-04-10  Bruno Haible  <bruno@clisp.org>
37861
37862         * modules/findprog: New file.
37863         * MODULES.html.sh (func_all_modules): Add it.
37864
37865 2003-04-10  Bruno Haible  <bruno@clisp.org>
37866
37867         * m4/findprog.m4: New file.
37868         * m4/eaccess.m4: New file.
37869
37870 2003-04-10  Bruno Haible  <bruno@clisp.org>
37871
37872         * lib/findprog.h: New file, from GNU gettext.
37873         * lib/findprog.c: New file, from GNU gettext.
37874
37875 2003-04-05  Jim Meyering  <jim@meyering.net>
37876
37877         Merge changes from Coreutils.
37878
37879         * lib/exclude.h (PARAMS): Remove definition and uses.
37880         * lib/exclude.c: Remove uses of `PARAMS'.
37881
37882         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
37883         Add test-cases for DOS filenames. Declare program_name.
37884         (main): Set up program_name.  Patch by Rich Dawe.
37885
37886         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
37887         error from mntctl.
37888         Use mntctl's return value to drive the entry-processing loop, since
37889         we can't rely on the value of the vmt_length member in the last
37890         entry.  On some systems doing so could result in exhausting
37891         virtual memory.  Based in part on a patch from Mike Jetzer.
37892
37893 2003-04-04  Bruno Haible  <bruno@clisp.org>
37894
37895         * modules/linebreak: New file.
37896         * MODULES.html.sh (func_all_modules): Add it.
37897
37898 2003-04-04  Bruno Haible  <bruno@clisp.org>
37899
37900         * m4/linebreak.m4: New file.
37901
37902 2003-04-04  Bruno Haible  <bruno@clisp.org>
37903
37904         * lib/linebreak.h: New file, from GNU gettext.
37905         * lib/linebreak.c: New file, from GNU gettext with slight
37906         modifications.
37907         * lib/lbrkprop.h: New file, from GNU gettext.
37908
37909 2003-04-03  Bruno Haible  <bruno@clisp.org>
37910
37911         * modules/utf8-ucs4: New file.
37912         * modules/utf16-ucs4: New file.
37913         * modules/ucs4-utf8: New file.
37914         * modules/ucs4-utf16: New file.
37915         * MODULES.html.sh (func_all_modules): Add them.
37916
37917 2003-04-03  Bruno Haible  <bruno@clisp.org>
37918
37919         * m4/utf-ucs4.m4: New file.
37920         * m4/ucs4-utf.m4: New file.
37921
37922 2003-04-03  Bruno Haible  <bruno@clisp.org>
37923
37924         * lib/utf8-ucs4.h: New file, from GNU gettext.
37925         * lib/utf16-ucs4.h: New file, from GNU gettext.
37926         * lib/ucs4-utf8.h: New file, from GNU gettext.
37927         * lib/ucs4-utf16.h: New file, from GNU gettext.
37928
37929 2003-04-02  Bruno Haible  <bruno@clisp.org>
37930
37931         * modules/binary-io: New file.
37932         * MODULES.html.sh (func_all_modules): Add it.
37933
37934 2003-04-02  Bruno Haible  <bruno@clisp.org>
37935
37936         * lib/binary-io.h: New file, from GNU gettext.
37937
37938 2003-04-01  Bruno Haible  <bruno@clisp.org>
37939
37940         * modules/pathname: New file.
37941         * MODULES.html.sh (func_all_modules): Add it.
37942
37943 2003-04-01  Bruno Haible  <bruno@clisp.org>
37944
37945         * lib/pathname.h: New file, from GNU gettext.
37946         * lib/concatpath.c: New file, from GNU gettext.
37947
37948 2003-03-30  Bruno Haible  <bruno@clisp.org>
37949
37950         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
37951
37952 2003-03-30  Bruno Haible  <bruno@clisp.org>
37953
37954         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
37955         function chown() doesn't exist.
37956
37957 2003-03-28  Bruno Haible  <bruno@clisp.org>
37958
37959         * modules/copy-file: New file.
37960         * MODULES.html.sh (func_all_modules): Add it.
37961
37962 2003-03-28  Bruno Haible  <bruno@clisp.org>
37963
37964         * m4/copy-file.m4: New file.
37965
37966 2003-03-28  Bruno Haible  <bruno@clisp.org>
37967
37968         * lib/copy-file.h: New file, from GNU gettext.
37969         * lib/copy-file.c: New file, from GNU gettext.
37970
37971 2003-03-18  Jim Meyering  <jim@meyering.net>
37972
37973         * lib/quote.c (quote_n): Fix typo in comment.
37974
37975 2003-03-18  Bruno Haible  <bruno@clisp.org>
37976
37977         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
37978         checking.
37979         * m4/onceonly_2_57.m4: Likewise.
37980
37981 2003-03-17  Bruno Haible  <bruno@clisp.org>
37982
37983         * m4/onceonly.m4: Require autoconf 2.54 or newer.
37984         (m4_quote): Remove macro.
37985         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
37986
37987 2003-03-14  Jim Meyering  <jim@meyering.net>
37988
37989         Merge changes from Coreutils.
37990         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
37991         to be const, in order to avoid warnings.
37992         (obstack_room): Likewise.
37993         (obstack_empty_p): Likewise.
37994
37995 2003-03-14  Bruno Haible  <bruno@clisp.org>
37996
37997         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
37998         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
37999
38000 2003-03-13  Paul Eggert  <eggert@twinsun.com>
38001
38002         Merge changes from Bison.
38003         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
38004         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
38005         when compiling Bison 1.875's `bitset bset = obstack_alloc
38006         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
38007         * lib/hash.c: Include <stdbool.h> unconditionally.
38008
38009 2003-03-13  Paul Eggert  <eggert@twinsun.com>
38010
38011         * m4/onceonly.m4 (m4_quote): New macro.
38012         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
38013         Quote AC_FOREACH variable-expansions properly.
38014
38015 2003-03-13  Paul Eggert  <eggert@twinsun.com>
38016
38017         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
38018
38019 2003-03-09  Paul Eggert  <eggert@twinsun.com>
38020
38021         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
38022         Reported by Bruce Becker; see:
38023         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
38024
38025 2003-03-03  Paul Eggert  <eggert@twinsun.com>
38026             Bruno Haible  <bruno@clisp.org>
38027
38028         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
38029         Reported by John Hughes, see
38030         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
38031
38032 2003-02-20  Bruno Haible  <bruno@clisp.org>
38033
38034         * MODULES.html.sh (func_all_modules): Add poll.
38035
38036 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
38037
38038         * modules/poll: New file.
38039
38040 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
38041
38042         * lib/poll_.h: New file.
38043         * lib/poll.c: New file.
38044
38045 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
38046
38047         * m4/poll.m4: New file.
38048
38049 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
38050
38051         * modules/mathl: New file.
38052
38053 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
38054
38055         * lib/mathl.h: New file.
38056         * lib/acosl.c: New file.
38057         * lib/asinl.c: New file.
38058         * lib/atanl.c: New file.
38059         * lib/ceill.c: New file.
38060         * lib/cosl.c: New file.
38061         * lib/expl.c: New file.
38062         * lib/floorl.c: New file.
38063         * lib/frexpl.c: New file.
38064         * lib/ldexpl.c: New file.
38065         * lib/logl.c: New file.
38066         * lib/sincosl.c: New file.
38067         * lib/sinl.c: New file.
38068         * lib/sqrtl.c: New file.
38069         * lib/tanl.c: New file.
38070         * lib/trigl.c: New file.
38071         * lib/trigl.h: New file.
38072
38073 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
38074
38075         * m4/mathl.m4: New file.
38076
38077 2003-02-18  Bruno Haible  <bruno@clisp.org>
38078
38079         * MODULES.html.sh (func_all_modules): Add mathl.
38080
38081 2003-02-17  Bruno Haible  <bruno@clisp.org>
38082
38083         * modules/mkdtemp: New module.
38084         * MODULES.html.sh (func_all_modules): Add it.
38085
38086 2003-02-17  Bruno Haible  <bruno@clisp.org>
38087
38088         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
38089
38090 2003-02-17  Bruno Haible  <bruno@clisp.org>
38091
38092         * lib/mkdtemp.h: New file, from GNU gettext.
38093         * lib/mkdtemp.c: New file, from GNU gettext.
38094
38095 2003-02-02  Jim Meyering  <jim@meyering.net>
38096
38097         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
38098         e.g. glibc-2.2.93.
38099
38100 2003-01-31  Bruno Haible  <bruno@clisp.org>
38101
38102         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
38103         'rpl_rename'.
38104         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
38105         'rpl_strnlen'.
38106         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
38107         'rpl_strtod'.
38108         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
38109         'rpl_utime'.
38110
38111 2003-01-31  Bruno Haible  <bruno@clisp.org>
38112
38113         * lib/rename.c: #undef rename before defining rpl_rename.
38114         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
38115
38116 2003-01-30  Bruno Haible  <bruno@clisp.org>
38117
38118         * modules/vasnprintf, modules/vasprintf: New modules.
38119         * MODULES.html.sh (func_all_modules): Add them.
38120
38121 2003-01-30  Bruno Haible  <bruno@clisp.org>
38122
38123         * m4/signed.m4: New file, from GNU gettext.
38124         * m4/longdouble.m4: New file, from GNU gettext.
38125         * m4/wchar_t.m4: New file, from GNU gettext.
38126         * m4/wint_t.m4: New file, from GNU gettext.
38127         * m4/vasnprintf.m4: New file.
38128         * m4/vasprintf.m4: New file.
38129
38130 2003-01-30  Bruno Haible  <bruno@clisp.org>
38131
38132         * lib/printf-args.h: New file, from GNU gettext.
38133         * lib/printf-args.c: New file, from GNU gettext.
38134         * lib/printf-parse.h: New file, from GNU gettext.
38135         * lib/printf-parse.c: New file, from GNU gettext.
38136         * lib/vasnprintf.h: New file, from GNU gettext.
38137         * lib/vasnprintf.c: New file, from GNU gettext.
38138         * lib/asnprintf.c: New file, from GNU gettext.
38139         * lib/vasprintf.h: New file, from GNU gettext with modifications.
38140         * lib/vasprintf.c: New file, from GNU gettext.
38141         * lib/asprintf.c: New file, from GNU gettext.
38142
38143 2003-01-29  Bruno Haible  <bruno@clisp.org>
38144
38145         * modules/stpncpy: New module.
38146         * MODULES.html.sh (func_all_modules): Add it.
38147
38148 2003-01-29  Bruno Haible  <bruno@clisp.org>
38149
38150         * m4/stpncpy.m4: New file.
38151
38152 2003-01-29  Bruno Haible  <bruno@clisp.org>
38153
38154         * lib/stpncpy.h: New file, from GNU gettext with modifications.
38155         * lib/stpncpy.c: New file, from GNU gettext with modifications.
38156
38157 2003-01-28  Bruno Haible  <bruno@clisp.org>
38158
38159         * modules/c-ctype: New module.
38160         * MODULES.html.sh (func_all_modules): Add it.
38161
38162 2003-01-28  Bruno Haible  <bruno@clisp.org>
38163
38164         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
38165         Paul Eggert.
38166         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
38167         Paul Eggert.
38168
38169 2003-01-27  Bruno Haible  <bruno@clisp.org>
38170
38171         * modules/xsetenv: New module.
38172         * MODULES.html.sh (func_all_modules): Add it.
38173
38174 2003-01-27  Bruno Haible  <bruno@clisp.org>
38175
38176         * lib/xsetenv.h: New file, from GNU gettext.
38177         * lib/xsetenv.c: New file, from GNU gettext.
38178
38179 2003-01-23  Jim Meyering  <jim@meyering.net>
38180
38181         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
38182         from working on systems without dirfd (at least Irix and OSF1/Tru64).
38183
38184 2003-01-23  Bruno Haible  <bruno@clisp.org>
38185
38186         * modules/minmax: New module.
38187         * MODULES.html.sh (func_all_modules): Add it.
38188
38189 2003-01-23  Bruno Haible  <bruno@clisp.org>
38190
38191         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
38192         Eggert.
38193
38194 2003-01-22  Bruno Haible  <bruno@clisp.org>
38195
38196         * modules/exit: New module.
38197         * MODULES.html.sh (func_all_modules): Add it.
38198
38199 2003-01-22  Bruno Haible  <bruno@clisp.org>
38200
38201         * lib/exit.h: New file, from GNU gettext.
38202
38203 2003-01-19  Bruno Haible  <bruno@clisp.org>
38204
38205         * gnulib-tool: Recognize option --extract-maintainer.
38206         (func_get_maintainer): New function.
38207         * modules/*: Add Maintainer entry.
38208
38209 2003-01-16  Jim Meyering  <jim@meyering.net>
38210
38211         * m4/regex.m4: The `regex' struct is both input and output.
38212         Initialize it before each use.  Patch by Tim Waugh.
38213
38214 2003-01-16  Bruno Haible  <bruno@clisp.org>
38215
38216         * MODULES.html.sh: Add a table of contents. Add the module name as
38217         leftmost column. Add hyperlinks.
38218
38219 2003-01-15  Bruno Haible  <bruno@clisp.org>
38220
38221         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
38222
38223 2003-01-15  Bruno Haible  <bruno@clisp.org>
38224
38225         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
38226         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
38227         suffix.
38228
38229 2003-01-15  Bruno Haible  <bruno@clisp.org>
38230
38231         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
38232
38233 2003-01-15  Bruno Haible  <bruno@clisp.org>
38234
38235         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
38236         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
38237
38238 2003-01-14  Jim Meyering  <jim@meyering.net>
38239
38240         * lib/same.c (same_name): Tweak a comment.
38241
38242 2003-01-14  Bruno Haible  <bruno@clisp.org>
38243
38244         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
38245         when a string comparison is sufficient.
38246
38247 2003-01-14  Bruno Haible  <bruno@clisp.org>
38248
38249         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
38250         'unsigned int'.
38251
38252 2003-01-14  Bruno Haible  <bruno@clisp.org>
38253
38254         * lib/hash-pjw.c: Add comment about low quality of this function.
38255
38256 2003-01-13  Bruno Haible  <bruno@clisp.org>
38257
38258         * modules/stpcpy: Distribute lib/stpcpy.h.
38259         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
38260
38261 2003-01-13  Bruno Haible  <bruno@clisp.org>
38262
38263         * modules/*: Add a description.
38264         * modules/strpbrk: Fix Makefile.am snippet.
38265         * modules/strtoimax: Fix dependencies.
38266         * modules/strtoumax: Likewise.
38267
38268 2003-01-13  Bruno Haible  <bruno@clisp.org>
38269
38270         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
38271         * modules/alloca (Makefile.am): All object files depend on alloca.h.
38272         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
38273
38274 2003-01-13  Bruno Haible  <bruno@clisp.org>
38275
38276         * gnulib-tool (func_create_testdir): Store config/* files in the main
38277         directory.
38278         * config.rpath: Move to ...
38279         * config/config.rpath: ... here.
38280         * modules/gettext: Contains config/config.rpath, not config.rpath.
38281         * modules/iconv: Likewise.
38282
38283 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38284
38285         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38286         to avoid collisions with libcurses and libreadline.
38287
38288         * m4/getstr.m4: Remove.
38289         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
38290
38291 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38292
38293         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38294         to avoid collisions with libcurses and libreadline.
38295
38296         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
38297         * lib/getstr.h, getstr.c: Remove.
38298         * lib/getline.c: Include "getline.h", to check interface.
38299         Move body of old getstr.c here: this defines MIN_CHUNK and
38300         declares getdelim2, which is renamed from getstr.
38301         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
38302
38303         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
38304         All uses changed.
38305         * lib/linebuffer.h: Likewise.
38306         (readline): Remove backward-compatibility macro.
38307
38308 2003-01-12  Paul Eggert  <eggert@twinsun.com>
38309
38310         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
38311         to avoid collisions with libcurses and libreadline.
38312         * getstr: Remove.
38313         * MODULES.html.sh: Remove getstr.
38314         * modules/getline: Depend on unlocked-io, not getstr.
38315
38316 2003-01-12  Jim Meyering  <jim@meyering.net>
38317
38318         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
38319
38320 2003-01-10  Bruno Haible  <bruno@clisp.org>
38321
38322         * modules/alloca: Change Makefile.am requirements. Simplify Include
38323         requirements. Add lib/alloca_.h to file list.
38324
38325 2003-01-10  Bruno Haible  <bruno@clisp.org>
38326
38327         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
38328
38329 2003-01-10  Bruno Haible  <bruno@clisp.org>
38330
38331         * lib/alloca_.h: New file.
38332         * lib/getdate.y: Unconditionally include alloca.h.
38333         * lib/makepath.c: Likewise.
38334         * lib/setenv.c: Likewise.
38335         * lib/userspec.c: Likewise.
38336
38337 2003-01-09  Karl Berry  <karl@gnu.org>
38338
38339         * MODULES.html.sh: include `dirname $0` in PATH, to find
38340         gnulib-tool.
38341
38342 2003-01-09  Bruno Haible  <bruno@clisp.org>
38343
38344         * modules/stdbool: Change configure.ac, Makefile.am requirements.
38345         Simplify Include requirements. Add lib/stdbool.h.in to file list.
38346
38347 2003-01-09  Bruno Haible  <bruno@clisp.org>
38348
38349         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
38350
38351 2003-01-09  Bruno Haible  <bruno@clisp.org>
38352
38353         * lib/stdbool.h.in: New file.
38354
38355 2003-01-09  Bruno Haible  <bruno@clisp.org>
38356
38357         * gnulib-tool (func_all_modules): Ignore files ending in ~.
38358         * MODULES.html.sh: Likewise.
38359
38360 2003-01-08  Jim Meyering  <jim@meyering.net>
38361
38362         * lib/full-write.c: Undefine and define-away `const' after inclusion
38363         of errno.h, not before.  Suggestion from Bruno Haible.
38364
38365 2003-01-08  Bruno Haible  <bruno@clisp.org>
38366
38367         * modules/full-read: Depend on full-write.
38368
38369 2003-01-08  Bruno Haible  <bruno@clisp.org>
38370
38371         * lib/safe-read.c: Include specification header first, to ensure its
38372         selfcontainedness.
38373         * lib/full-write.c: Likewise.
38374
38375 2003-01-07  Jim Meyering  <jim@meyering.net>
38376
38377         * lib/full-write.c: Rework so that it may serve to define full_read,
38378         too.
38379         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
38380
38381 2003-01-07  Bruno Haible  <bruno@clisp.org>
38382
38383         * lib/strtoimax.c: Include <stdint.h> as an alternative to
38384         <inttypes.h>.
38385         * lib/xstrtol.h: Likewise.
38386         * lib/xstrtoimax.c: Likewise.
38387         * lib/xstrtoumax.c: Likewise.
38388         * lib/human.h: Likewise.
38389
38390         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
38391         on systems that have <inttypes.h> but not <stdint.h>.
38392
38393 2003-01-07  Bruno Haible  <bruno@clisp.org>
38394
38395         * MODULES.html.sh: Add copyright notice.
38396         (missed_files): Omit CVS directory entries.
38397         (func_module): Make it work with sed-3.02.
38398         * MODULES.txt: Remove file.
38399
38400 2003-01-06  Jim Meyering  <jim@meyering.net>
38401
38402         * lib/version-etc.c: Update year in translatable copyright string.
38403
38404 2003-01-03  Karl Berry  <karl@gnu.org>
38405
38406         * config/config.{guess,sub}: update from prep.
38407
38408 2003-01-02  Karl Berry  <karl@gnu.org>
38409
38410         * doc/COPYING.DOC: belatedly updated to 1.2.
38411
38412 2003-01-01  Karl Berry  <karl@gnu.org>
38413
38414         * gnulib-tool (func_verify_module): report module name $module in
38415         error message, not $1.
38416         * gnulib-tool (create-testdir): don't complain if destdir couldn't
38417         be created, only if it doesn't exist.
38418         * gnulib-tool (last_checkin_date): don't expand the $Date here.
38419
38420 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38421
38422         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
38423
38424 2002-12-31  Paul Eggert  <eggert@twinsun.com>
38425
38426         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
38427         memcmp if strcoll doesn't work.
38428
38429 2002-12-31  Bruno Haible  <bruno@clisp.org>
38430
38431         * lib/utime.c (utime_null): No need to call ftruncate if the file was
38432         nonempty.
38433
38434 2002-12-31  Bruno Haible  <bruno@clisp.org>
38435
38436         * lib/memcoll.c (STRCOLL): New macro.
38437         (memcoll): Use it.
38438
38439 2002-12-31  Bruno Haible  <bruno@clisp.org>
38440
38441         * lib/localcharset.h: New file.
38442         * lib/localcharset.c: Include it.
38443         * lib/unicodeio.c: Likewise.
38444
38445 2002-12-31  Bruno Haible  <bruno@clisp.org>
38446
38447         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
38448         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
38449
38450 2002-12-31  Bruno Haible  <bruno@clisp.org>
38451
38452         * lib/getline.h: Include <stddef.h>, for size_t.
38453
38454         * lib/unicodeio.h: Include <stddef.h>, for size_t.
38455         * lib/unicodeio.c: Don't include <stddef.h>.
38456
38457 2002-12-31  Bruno Haible  <bruno@clisp.org>
38458
38459         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
38460         HAVE_TM_ZONE.
38461
38462 2002-12-24  Karl Berry  <karl@gnu.org>
38463
38464         * config/config.guess: update from prep.
38465
38466 2002-12-24  Bruno Haible  <bruno@clisp.org>
38467
38468         General infrasructure.
38469         * m4/README: Rewritten.
38470         * m4/onceonly.m4: New file.
38471         * m4/onceonly_2_57.m4: New file.
38472
38473         Module atexit.
38474         * m4/atexit.m4: New file.
38475
38476         Module strtod.
38477         * m4/strtod.m4: New file.
38478
38479         Module strtol.
38480         * m4/strtol.m4: New file.
38481
38482         Module strtoul.
38483         * m4/strtoul.m4: New file.
38484
38485         Module memchr.
38486         * m4/memchr.m4: New file.
38487
38488         Module memcmp.
38489         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
38490         (jm_FUNC_MEMCMP): Invoke it.
38491
38492         Module memcpy.
38493         * m4/memcpy.m4: New file.
38494
38495         Module memmove.
38496         * m4/memmove.m4: New file.
38497
38498         Module memset.
38499         * m4/memset.m4: New file.
38500
38501         Module strcspn.
38502         * m4/strcspn.m4: New file.
38503
38504         Module strpbrk.
38505         * m4/strpbrk.m4: New file.
38506
38507         Module strstr.
38508         * m4/strstr.m4: New file.
38509
38510         Module strerror.
38511         * m4/strerror.m4: New file.
38512
38513         Module mktime.
38514         * m4/mktime.m4: Renamed from jm-mktime.m4.
38515         (gl_PREREQ_MKTIME): New macro.
38516         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
38517
38518         Module malloc.
38519         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
38520         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
38521         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
38522
38523         Module realloc.
38524         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
38525         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
38526         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
38527
38528         Module strftime.
38529         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
38530         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
38531         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
38532         gl_TM_GMTOFF.
38533         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
38534
38535         Module xalloc.
38536         * m4/xalloc.m4: New file.
38537
38538         Module alloca.
38539         * m4/alloca.m4: New file.
38540
38541         Module putenv.
38542         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
38543         (jm_FUNC_PUTENV): Invoke it.
38544
38545         Module setenv.
38546         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
38547         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
38548         when invoked twice.
38549         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
38550         gt_FUNC_SETENV.
38551
38552         Module memrchr.
38553         * m4/memrchr.m4: New file.
38554
38555         Module stpcpy.
38556         * m4/stpcpy.m4: New file.
38557
38558         Module strcase.
38559         * m4/strcase.m4: New file.
38560
38561         Module strdup.
38562         * m4/strdup.m4: New file.
38563
38564         Module strnlen.
38565         * m4/strnlen.m4: New file.
38566
38567         Module strndup.
38568         * m4/strndup.m4: New file.
38569
38570         Module xstrtod.
38571         * m4/xstrtod.m4: New file.
38572
38573         Module xstrtol.
38574         * m4/xstrtol.m4: New file.
38575
38576         Module getdate.
38577         * m4/getdate.m4: New file.
38578
38579         Module unlocked-io.
38580         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
38581         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
38582         * m4/jm-glibc-io.m4n: Remove file.
38583
38584         Module long-options.
38585         * m4/long-options.m4: New file.
38586
38587         Module md5.
38588         * m4/md5.m4: New file.
38589
38590         Module sha.
38591         * m4/sha.m4: New file.
38592
38593         Module getstr.
38594         * m4/getstr.m4: New file.
38595
38596         Module getline.
38597         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
38598         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
38599         <sys/types.h>, for size_t. Use the function name gnu_getline, not
38600         simply getline. Infoke gl_PREREQ_GETLINE.
38601
38602         Module obstack.
38603         * m4/obstack.m4: New file.
38604
38605         Module hash.
38606         * m4/hash.m4: New file.
38607
38608         Module readtokens.
38609         * m4/readtokens.m4: New file.
38610
38611         Module strverscmp.
38612         * m4/strverscmp.m4: New file.
38613
38614         Module stdbool.
38615         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
38616         OSF/1.
38617
38618         Module strtoll.
38619         * m4/strtoll.m4: New file.
38620
38621         Module strtoull.
38622         * m4/strtoull.m4: New file.
38623
38624         Module strtoimax.
38625         * m4/strtoimax.m4: New file.
38626
38627         Module strtoumax.
38628         * m4/strtoumax.m4: New file.
38629
38630         Module xstrtoimax.
38631         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
38632         jm_AC_PREREQ_XSTRTOIMAX.
38633         Moved the strtol prerequisites to strtol.m4.
38634         Moved the strtoll prerequisites to strtoll.m4.
38635         Moved the strtoimax prerequisites to strtoimax.m4.
38636
38637         Module xstrtoumax.
38638         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
38639         jm_AC_PREREQ_XSTRTOUMAX.
38640         Moved the strtoul prerequisites to strtoul.m4.
38641         Moved the strtoull prerequisites to strtoull.m4.
38642         Moved the strtoumax prerequisites to strtoumax.m4.
38643
38644         Module chown.
38645         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
38646         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
38647
38648         Module dup2.
38649         * m4/dup2.m4: New file.
38650
38651         Module ftruncate.
38652         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
38653         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
38654
38655         Module getgroups.
38656         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
38657         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
38658
38659         Module gettimeofday.
38660         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
38661         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
38662         gl_PREREQ_GETTIMEOFDAY.
38663
38664         Module mkdir.
38665         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
38666         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
38667
38668         Module mkstemp.
38669         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
38670         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
38671         jm_AC_TYPE_UINTMAX_T.
38672         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
38673
38674         Module stat.
38675         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
38676         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
38677
38678         Module lstat.
38679         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
38680         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
38681
38682         Module timespec.
38683         * m4/timespec.m4 (gl_TIMESPEC): New macro.
38684         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
38685         * m4/st_mtim.m4: Indentation.
38686
38687         Module nanosleep.
38688         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
38689         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
38690         gl_PREREQ_NANOSLEEP.
38691
38692         Module regex.
38693         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
38694         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
38695         (gl_REGEX): New macro.
38696
38697         Module rename.
38698         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
38699         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
38700
38701         Module rmdir.
38702         * m4/rmdir.m4: New file.
38703
38704         Module utime.
38705         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
38706         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
38707         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
38708
38709         Module dirname.
38710         * m4/dirname.m4: New file.
38711
38712         Module getopt.
38713         * m4/getopt.m4: New file.
38714
38715         Module unistd-safer.
38716         * m4/unistd-safer.m4: New file.
38717
38718         Module fnmatch.
38719         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
38720         declaration.
38721         (gl_PREREQ_FNMATCH_EXTRA): New macro.
38722         (gl_FUNC_FNMATCH_POSIX): New macro.
38723         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
38724         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
38725         simply fnmatch.
38726
38727         Module exclude.
38728         * m4/exclude.m4: New file.
38729
38730         Module human.
38731         * m4/human.m4: New file.
38732
38733         Module acl.
38734         * m4/acl.m4: Nop.
38735
38736         Module backupfile.
38737         * m4/backupfile.m4: New file.
38738         * m4/d-ino.m4: Indentation.
38739
38740         Module fsusage.
38741         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
38742         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
38743         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
38744
38745         Module dirfd.
38746         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
38747         requirements.
38748
38749         Module euidaccess.
38750         * m4/euidaccess.m4: New file.
38751
38752         Module file-type.
38753         * m4/file-type.m4: New file.
38754
38755         Module fileblocks.
38756         * m4/fileblocks.m4: New file.
38757
38758         Module filemode.
38759         * m4/filemode.m4: New file.
38760
38761         Module isdir.
38762         * m4/isdir.m4: New file.
38763
38764         Module lchown.
38765         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
38766         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
38767
38768         Module makepath.
38769         * m4/makepath.m4: New file.
38770
38771         Module modechange.
38772         * m4/modechange.m4: New file.
38773
38774         Module mountlist.
38775         * m4/mountlist.m4: New file.
38776         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
38777         Indentation.
38778
38779         Module path-concat.
38780         * m4/path-concat.m4: New file.
38781
38782         Module pathmax.
38783         * m4/pathmax.m4: New file.
38784
38785         Module same.
38786         * m4/same.m4: New file.
38787
38788         Module save-cwd.
38789         * m4/save-cwd.m4: New file.
38790
38791         Module savedir.
38792         * m4/savedir.m4: New file.
38793
38794         Module xgetcwd.
38795         * m4/xgetcwd.m4: New file.
38796         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
38797
38798         Module xreadlink.
38799         * m4/xreadlink.m4: New file.
38800
38801         Module safe-read.
38802         * m4/safe-read.m4: New file.
38803
38804         Module safe-write.
38805         * m4/safe-write.m4: New file.
38806
38807         Module closeout.
38808         * m4/closeout.m4: New file.
38809
38810         Module stdio-safer.
38811         * m4/stdio-safer.m4: New file.
38812
38813         Module getpass.
38814         * m4/getpass.m4: New file.
38815
38816         Module getugroups.
38817         * m4/getugroups.m4: New file.
38818
38819         Module group-member.
38820         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
38821         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
38822
38823         Module idcache.
38824         * m4/idcache.m4: New file.
38825
38826         Module userspec.
38827         * m4/userspec.m4: New file.
38828
38829         Module gettime.
38830         * m4/clock_time.m4: New file.
38831         * m4/gettime.m4: New file.
38832
38833         Module settime.
38834         * m4/settime.m4: New file.
38835
38836         Module posixtm.
38837         * m4/posixtm.m4: New file.
38838
38839         Module gethostname.
38840         * m4/gethostname.m4: New file.
38841
38842         Module canon-host.
38843         * m4/canon-host.m4: New file.
38844
38845         Module gettext.
38846         * m4/codeset.m4: New file, from gettext-0.11.5.
38847         * m4/gettext.m4: New file, from gettext-0.11.5.
38848         * m4/glibc21.m4: New file, from gettext-0.11.5.
38849         * m4/iconv.m4: New file, from gettext-0.11.5.
38850         * m4/intdiv0.m4: New file, from gettext-0.11.5.
38851         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
38852         * m4/inttypes.m4: New file, from gettext-0.11.5.
38853         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
38854         * m4/isc-posix.m4: New file, from gettext-0.11.5.
38855         * m4/lcmessage.m4: New file, from gettext-0.11.5.
38856         * m4/lib-ld.m4: New file, from gettext-0.11.5.
38857         * m4/lib-link.m4: New file, from gettext-0.11.5.
38858         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
38859         * m4/progtest.m4: New file, from gettext-0.11.5.
38860         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
38861         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
38862         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
38863
38864         Module localcharset.
38865         * m4/localcharset.m4: New file.
38866
38867         Module hard-locale.
38868         * m4/hard-locale.m4: New file.
38869
38870         Module mbswidth.
38871         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
38872         onceonly macros.
38873         * m4/mbrtowc.m4: Add comment.
38874
38875         Module memcasecmp.
38876         * m4/memcasecmp.m4: New file.
38877
38878         Module memcoll.
38879         * m4/memcoll.m4: New file.
38880
38881         Module unicodeio.
38882         * m4/unicodeio.m4: New file.
38883
38884         Module rpmatch.
38885         * m4/rpmatch.m4: New file.
38886
38887         Module yesno.
38888         * m4/yesno.m4: New file.
38889
38890         Module exitfail.
38891         * m4/exitfail.m4: New file.
38892
38893         Module c-stack.
38894         * m4/c-stack.m4 (gl_C_STACK): New macro.
38895         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
38896
38897         Module error.
38898         * m4/error.m4 (gl_ERROR): New macro.
38899         (jm_PREREQ_ERROR): Use onceonly macros.
38900
38901         Module fatal.
38902         * m4/fatal.m4: New file.
38903
38904         Module getloadavg.
38905         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
38906         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
38907
38908         Module getpagesize.
38909         * m4/getpagesize.m4: New file.
38910
38911         Module getusershell.
38912         * m4/getusershell.m4: New file.
38913
38914         Module physmem.
38915         * m4/physmem.m4: New file.
38916
38917         Module posixver.
38918         * m4/posixver.m4: New file.
38919
38920         Module quotearg.
38921         * m4/quotearg.m4: New file.
38922
38923         Module quote.
38924         * m4/quote.m4: New file.
38925
38926         Module readutmp.
38927         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
38928
38929         Module sig2str.
38930         * m4/sig2str.m4: New file.
38931
38932         Other.
38933         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
38934         ulonglong.m4.
38935         * m4/intmax_t.m4: New file.
38936         * m4/d-type.m4: Indentation.
38937         * m4/jm-macros.m4: Update.
38938         * m4/prereq.m4 (jm_PREREQ): Update.
38939         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
38940         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
38941         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
38942         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
38943         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
38944         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
38945         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
38946         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
38947         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
38948         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
38949         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
38950         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
38951         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
38952         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
38953         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
38954         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
38955         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
38956         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
38957         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
38958
38959 2002-12-24  Bruno Haible  <bruno@clisp.org>
38960
38961         * MODULES.txt: Update according to m4/ changes.
38962
38963         Module gettext.
38964         * config.rpath: New file, from gettext-0.11.5.
38965
38966         * modules/*: New module descriptions.
38967         * gnulib-tool: New file.
38968         * MODULES.html.sh: New file.
38969
38970 2002-12-21  Karl Berry  <karl@gnu.org>
38971
38972         * doc/fdl.texi: update to version 1.2.
38973
38974 2002-12-19  Karl Berry  <karl@gnu.org>
38975
38976         * config/config.guess: update from prep.
38977
38978 2002-12-18  Bruno Haible  <bruno@clisp.org>
38979
38980         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
38981         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
38982
38983 2002-12-17  Bruno Haible  <bruno@clisp.org>
38984
38985         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
38986         stdlib.h, string.h.
38987
38988 2002-12-17  Bruno Haible  <bruno@clisp.org>
38989
38990         * lib/canon-host.c (strdup): Remove unused declaration.
38991
38992         * lib/fsusage.c: Include full_read.h.
38993         (get_fs_usage): Use full_read instead of safe_read.
38994
38995         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
38996
38997 2002-12-12  Karl Berry  <karl@gnu.org>
38998
38999         * config/config.guess: update from prep.
39000
39001 2002-12-11  Bruno Haible  <bruno@clisp.org>
39002
39003         * m4/setenv.m4: New file, from gettext-0.11.5.
39004
39005 2002-12-11  Bruno Haible  <bruno@clisp.org>
39006
39007         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
39008         not unsetenv().
39009         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
39010         modifications:
39011
39012         2002-12-11  Bruno Haible  <bruno@clisp.org>
39013
39014                 * setenv.c (alloca): Fall back to malloc.
39015                 (freea): New macro.
39016                 (setenv): Use freea() to free memory allocated with alloca().
39017
39018         2002-11-13  Bruno Haible  <bruno@clisp.org>
39019
39020                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
39021                 function declarations.
39022                 * unsetenv.c (unsetenv): Likewise.
39023
39024         2002-03-04  Bruno Haible  <bruno@clisp.org>
39025
39026                 Portability to AIX 4.3.3.
39027                 * unsetenv.c: New file, extracted from setenv.c.
39028                 * setenv.c: Move the unsetenv() function to unsetenv.c.
39029
39030         2001-12-20  Bruno Haible  <bruno@clisp.org>
39031
39032                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
39033                 use malloc instead. For SunOS 4.
39034
39035         2001-12-11  Bruno Haible  <bruno@clisp.org>
39036
39037                 * setenv.c: Declare alloca.
39038                 (compar_fn_t): New typedef.
39039                 (KNOWN_VALUE, STORE_VALUE): Use it.
39040
39041         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
39042         setenv.h.
39043
39044 2002-12-10  Paul Eggert  <eggert@twinsun.com>
39045
39046         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
39047         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
39048         Choose values that are less likely to collide with system fnmatch
39049         options.
39050         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
39051         defined (e.g., a pure POSIX system).
39052         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
39053         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
39054
39055 2002-12-06  Paul Eggert  <eggert@twinsun.com>
39056
39057         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
39058         a pain in practice to deal with generated m4 files.  This change
39059         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
39060
39061         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
39062         and jm-glibc-io.m4, as they are no longer a special case.
39063         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
39064         kludge and the auto-generation stuff.  Check only whether the
39065         functions are declared, not whether they exist, since older hosts
39066         that don't declare the functions can't use the optimization anyway.
39067
39068 2002-12-06  Jim Meyering  <jim@meyering.net>
39069
39070         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
39071
39072         Merge in changes from libc's misc/error.c, in preparation
39073         for the merge of gnulib's changes back into libc.
39074
39075         * lib/error.c (_): Define only if not already defined.
39076         Move definition to follow all #include directives.
39077         Include unlocked-io.h only if !_LIBC.
39078         [_LIBC]: Include <libio/libioP.h>.
39079         [USE_IN_LIBIO]: Include <libio/iolibio.h>
39080         (fflush): Tweak definition to use INTUSE.
39081         (putc): Define.
39082
39083 2002-12-05  Paul Eggert  <eggert@twinsun.com>
39084
39085         * lib/alloca.c [defined emacs]: Include "lisp.h".
39086         (xalloc_die) [defined emacs]: New macro.
39087         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
39088         [! defined emacs]: Include <xalloc.h>.
39089         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
39090         (pointer): Typedef to POINTER_TYPE *.
39091         (malloc): Remove decl; we now always use xmalloc.
39092         (alloca): Use old-style definition, since Emacs needs this.
39093         Check for arithmetic overflow when computing combined size.
39094
39095 2002-12-04  Paul Eggert  <eggert@twinsun.com>
39096
39097         Do not generate unlocked-io.h automatically, since it's easier to
39098         maintain it by hand.
39099
39100         * lib/unlocked-io.h: New file, from GNU diffutils,
39101         but with proper copyright notice and attribution.
39102         * lib/gen-uio: Remove.
39103         * lib/Makefile.am: Add copyright notice.
39104         (libfetish_a_SOURCES): Add unlocked-io.h.
39105         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
39106         (DISTCLEANFILES, io_functions): Remove macros.
39107         (EXTRA_DIST): Remove gen_uio.
39108         (unlocked-io.h): Remove rule.
39109
39110 2002-12-04  Jim Meyering  <jim@meyering.net>
39111
39112         Reflect the fact that stat.c and lstat.c are no longer generated.
39113         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
39114         (DISTCLEANFILES): Likewise.
39115         (EXTRA_DIST): Likewise.
39116         (all_local): Don't depend on stat.c or lstat.c.
39117         (stat.c, lstat.c): Remove rules.
39118         (EXTRA_DIST): Remove xstat.in.
39119
39120         * lib/xstat.in: Remove file.  Contents moved into stat.c.
39121         * lib/stat.c: New file.  Contents mostly from xstat.in.
39122         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
39123         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
39124
39125         * lib/safe-read.c: Rework so that it may serve to define safe_write,
39126         too.
39127         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
39128
39129 2002-12-03  Jim Meyering  <jim@meyering.net>
39130
39131         * lib/safe-read.c, safe-write.c: Change variable names and comments,
39132         but not semantics, to minimize the differences between these two files.
39133         (safe_read): Change comment to mention SAFE_READ_ERROR.
39134
39135         * lib/safe-read.c (IS_EINTR): Define.
39136         (safe_read): Use IS_EINTR in place of in-function cpp directives.
39137
39138 2002-12-02  Jim Meyering  <jim@meyering.net>
39139
39140         * lib/safe-read.c (EINTR): Define.
39141         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
39142         (INT_MAX): Provide fallback.
39143         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
39144
39145         * lib/safe-read.h (SAFE_READ_ERROR): Define.
39146
39147 2002-12-02  Bruno Haible  <bruno@clisp.org>
39148
39149         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
39150         Define, taken from safe-read.c.
39151         (INT_MAX): Provide fallback.
39152         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
39153         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
39154
39155         * lib/safe-read.c (EINTR): Remove definition.
39156         (safe_read): Don't use EINTR if it is absent.
39157
39158 2002-12-01  Jim Meyering  <jim@meyering.net>
39159
39160         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
39161         zero.
39162         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
39163
39164 2002-11-27  Paul Eggert  <eggert@twinsun.com>
39165
39166         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
39167         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
39168         with `if (! (value < limit)) abort ();', for readability.
39169
39170 2002-11-26  Karl Berry  <karl@gnu.org>
39171
39172         * lib/strdup.c: copy from libc again, with jim's ok.
39173         * lib/.cppi-disable: re-add strdup.c
39174
39175 2002-11-25  Karl Berry  <karl@gnu.org>
39176
39177         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
39178         instead of "strtol.c".
39179
39180 2002-11-25  Karl Berry  <karl@gnu.org>
39181
39182         * config/install-sh: update from automake for variable quoting, $0 in
39183         error msgs, etc.
39184
39185         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
39186         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
39187         entry.
39188
39189 2002-11-25  Jim Meyering  <jim@meyering.net>
39190
39191         * lib/mktime.c: Sync from libc, now that it has the latest fix.
39192
39193 2002-11-24  Karl Berry  <karl@gnu.org>
39194
39195         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
39196         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
39197
39198 2002-11-24  Jim Meyering  <jim@meyering.net>
39199
39200         Update from coreutils:
39201
39202         * lib/mktime.c: Merge in changes from libc.
39203
39204         Avoid a link-time failure on some Linux systems.
39205         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
39206         (otherwise).
39207         (__mon_yday): Declare with the STATIC attribute.
39208         (__mktime_internal): Likewise.
39209         Based on a report from Greg Schafer.
39210
39211 2002-11-23  Jim Meyering  <jim@meyering.net>
39212
39213         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
39214         Use `unsigned', not `int', as type of index.
39215
39216         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
39217
39218         * lib/fsusage.c: Remove unneeded parentheses around operands of
39219         `defined'.
39220
39221 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39222
39223         * lib/quotearg.h: Allow multiple inclusion by surrounding with
39224         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
39225         so that we can be included first.
39226         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
39227         * lib/quotearg.c: Include quotearg.h immediately after config.h.
39228         No need to include stddef.h or sys/types.h any more.
39229         Surround local include files with "", not "<>".
39230         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
39231         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
39232         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
39233         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
39234         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
39235         (ISPRINT): Remove; no longer needed now that we assume C89.
39236
39237         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
39238         Preserve errno.
39239
39240         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
39241         quotearg_char): Use SIZE_MAX rather than
39242         (size_t) -1 when we are talking about "infinity".
39243
39244         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
39245
39246 2002-11-22  Paul Eggert  <eggert@twinsun.com>
39247
39248         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
39249         hint that one should use `if (! x) abort ();' rather than `assert
39250         (x);', and anyway it's one less thing to worry about configuring.
39251         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
39252         hash_rehash, hash_insert): Use abort rather than assert.
39253
39254 2002-11-22  Bruno Haible  <bruno@clisp.org>
39255
39256         * lib/safe-read.h: Assume C89. Add comments.
39257         (safe_read): Change return type to size_t.
39258         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
39259         byte counts > SSIZE_MAX correctly.
39260         * lib/safe-write.h: New file.
39261         * lib/safe-write.c: New file.
39262         * lib/full-read.h: New file.
39263         * lib/full-read.c: New file.
39264         * lib/full-write.h: Assume C89. Add comments.
39265         * lib/full-write.c: Include safe-write.h.
39266         (full_write): Rewritten to use safe_write.
39267         Suggested by Jim Meyering and Paul Eggert.
39268
39269 2002-11-21  Jim Meyering  <jim@meyering.net>
39270
39271         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
39272
39273         Merge in changes from the coreutils.
39274
39275         2002-09-25  Paul Eggert  <eggert@twinsun.com>
39276         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
39277         <stdint.h>.
39278         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
39279         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
39280         int.  Work more efficiently if X is the same width as uintmax_t.
39281         Do not compare X to -1, to avoid bogus compiler warning.
39282         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
39283         Don't assume that f_frsize and f_bsize are the same type.
39284
39285         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
39286         warning on FreeBSD.
39287
39288         * lib/makepath.c (make_path): Restore umask *before* creating the final
39289         component.
39290         (make_path): Minor reformatting.
39291
39292         * lib/xmalloc.c: Adjust to work with new autoconf macros,
39293         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
39294         HAVE_MALLOC/HAVE_REALLOC.
39295
39296         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
39297         dummy ones.  At least on GNU/Linux systems, `auto' means something
39298         else.
39299         From Michael Stone.
39300
39301 2002-11-21  Bruno Haible  <bruno@clisp.org>
39302
39303         Remove case insensitive option matching.
39304         * lib/argmatch.h (argcasematch): Remove declaration.
39305         (ARGCASEMATCH): Remove macro.
39306         (__xargmatch_internal): Remove case_sensitive argument.
39307         (XARGMATCH): Update.
39308         (XARGCASEMATCH): Remove macro.
39309         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
39310         case_sensitive argument.
39311         (argcasematch): Remove function.
39312         (__xargmatch_internal): Remove case_sensitive argument.
39313         (main): Use XARGMATCH instead of XARGCASEMATCH.
39314
39315         * lib/xmalloc.c: Change compile-time error message. Add comment about
39316         required autoconf version.
39317
39318 2002-11-20  Paul Eggert  <eggert@twinsun.com>
39319
39320         Merge argmatch cleanups from Bison.  Assume C89.
39321
39322         * lib/argmatch.c: Include config.h here, not in argmatch.h.
39323         Include stdlib.h, for EXIT_FAILURE.
39324         Always include <string.h>, since we assume C89.
39325         (EXIT_FAILURE): Remove pre-C89 bug workaround.
39326         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
39327         Include <stddef.h> instead, since it's all we need for size_t.
39328         (PARAMS): Remove.  All uses removed.
39329         (ARRAY_CARDINALITY): Do not bother to #undef.
39330         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
39331         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39332         Remove unnecessary parentheses.
39333         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
39334         Insert necessary parentheses.
39335         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
39336         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
39337
39338 2002-11-19  Bruno Haible  <bruno@clisp.org>
39339
39340         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
39341         * lib/mbswidth.h: Include <stddef.h>, for size_t.
39342
39343         * lib/mbswidth.h (PARAMS): Remove macro.
39344         (mbswidth, mbsnwidth): Use ANSI C function declarations.
39345         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
39346
39347         * lib/gcd.h (PARAMS): Remove macro.
39348         (gcd): Use ANSI C function declarations.
39349         * lib/gcd.c (gcd): Likewise.
39350
39351 2002-11-15  Bruno Haible  <bruno@clisp.org>
39352
39353         * lib/strcspn.c: Include <stddef.h>.
39354         (strcspn): Use ANSI C function declaration. Change return type to
39355         size_t. Use NULL.
39356         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
39357         (strpbrk): Use NULL.
39358         * lib/strpbrk.h (PARAMS): Remove macro.
39359         (strpbrk): Use ANSI C function declaration.
39360         * lib/strstr.c: Don't include <sys/types.h>.
39361         * lib/strstr.h (PARAMS): Remove macro.
39362         (strstr): Use ANSI C function declarations.
39363
39364 2002-11-14  Karl Berry  <karl@gnu.org>
39365
39366         * config/mkinstalldirs: `do' on separate line, instead of
39367         `for var; do'.
39368
39369 2002-11-06  Bruno Haible  <bruno@clisp.org>
39370
39371         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
39372         * lib/gcd.c (gcd): Likewise.
39373
39374 2002-11-05  Bruno Haible  <bruno@clisp.org>
39375
39376         * lib/gcd.h: New file, from gettext-0.11.5.
39377         * lib/gcd.c: New file, from gettext-0.11.5.
39378
39379 2002-11-05  Bruno Haible  <bruno@clisp.org>
39380
39381         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39382         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39383         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39384         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
39385
39386         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
39387         <libintl.h>.
39388         * lib/makepath.c: Include gettext.h instead of <locale.h> and
39389         <libintl.h>.
39390
39391         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
39392         * lib/human.c: Include gettext.h instead of <libintl.h>.
39393         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
39394         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
39395         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
39396         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
39397         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
39398         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
39399         (textdomain): Remove definition.
39400         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
39401
39402         * lib/long-options.c: Remove include of <libintl.h> and definition of
39403         _.
39404         * lib/same.c: Remove include of <libintl.h> and definition of _.
39405
39406 2002-11-04  Owen Taylor  <otaylor@redhat.com>
39407
39408         * lib/config.charset: A few additions for Solaris.
39409
39410 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39411
39412         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
39413         * lib/localcharset.c (locale_charset): Declare as extern "C".
39414
39415 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
39416
39417         * lib/config.charset: msdos in uk_UA uses CP1125.
39418
39419 2002-11-04  Bruno Haible  <bruno@clisp.org>
39420
39421         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
39422         * lib/strcase.h: New file, from GNU gettext-0.11.5.
39423         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
39424         * lib/strstr.h: New file, from GNU gettext-0.11.5.
39425         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
39426
39427 2002-11-04  Bruno Haible  <bruno@clisp.org>
39428
39429         * lib/localcharset.c (locale_charset): Don't return an empty string.
39430
39431 2002-11-04  Bruno Haible  <bruno@clisp.org>
39432
39433         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
39434         aliases.
39435
39436 2002-11-04  Bruno Haible  <bruno@clisp.org>
39437
39438         * lib/config.charset: Update for newest glibc. Add canonical names
39439         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
39440
39441 2002-11-04  Bruno Haible  <bruno@clisp.org>
39442
39443         * lib/config.charset: Add support for NetBSD.
39444
39445 2002-11-04  Bruno Haible  <bruno@clisp.org>
39446
39447         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
39448
39449 2002-11-01  Bruno Haible  <bruno@clisp.org>
39450
39451         * configure.in: Add AC_CONFIG_AUX_DIR call.
39452         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
39453         test/Makefile.
39454         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
39455
39456 2002-09-28  Karl Berry  <karl@gnu.org>
39457
39458         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
39459         installed automake until the next release, since changes have been
39460         made.
39461
39462 2002-09-25  Karl Berry  <karl@gnu.org>
39463
39464         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
39465         * lib/getopt*: copy from libc/posix.
39466         * lib/gettext.h: copy from gettext.
39467         * lib/.cppi-disable: add strdup.c, gettext.h.
39468
39469 2002-09-25  Karl Berry  <karl@gnu.org>
39470
39471         * config/srclist.txt: enable gettext.h check.
39472         * config/config.{guess,sub}: update from prep.
39473         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
39474                 from automake 1.6.3.
39475         See srclist*.
39476
39477 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
39478
39479         * regex.c (PATFETCH): Remove the translating fetch.
39480         (PATFETCH_RAW): Rename to PATFETCH.
39481         (set_image_of_range): New fun.
39482         (SET_RANGE_TABLE_WORK_AREA): Use it.
39483         (regex_compile): Don't translate the pattern chars so eagerly.
39484         Only do it when inserting an `exactn' bytecode or when handling
39485         a char-range.
39486         (mutually_exclusive_p): Avoid empty statement.
39487
39488 2002-07-06  Jim Meyering  <meyering@lucent.com>
39489
39490         * m4/README: Don't mention Makefile.am.in.
39491         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
39492
39493 2002-07-01  Jim Meyering  <meyering@lucent.com>
39494
39495         * lib/c-stack.c: Include sys/time.h.
39496         From Volker Borchert.
39497
39498 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39499
39500         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
39501
39502 2002-06-26  Paul Eggert  <eggert@twinsun.com>
39503
39504         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
39505         New macro.  Use it uniformly instead of
39506         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
39507         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
39508         reported by Vin Shelton.
39509
39510 2002-06-22  Paul Eggert  <eggert@twinsun.com>
39511
39512         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
39513         Do not assume SA_SIGINFO behavior.
39514         Bug reported by Jim Meyering on NetBSD 1.5.2.
39515
39516 2002-06-22  Jim Meyering  <meyering@lucent.com>
39517
39518         * m4/c-stack.m4: New file, from diffutils-2.8.2.
39519         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
39520
39521         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
39522         now that configure.ac uses AC_GNU_SOURCE.
39523         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
39524         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
39525
39526         Update to latest tools.  Suggestions from Paul Eggert.
39527         * m4/stdbool.m4: New file, from diffutils-2.8.2.
39528         * m4/gnu-source.m4: Update from diffutils-2.8.2.
39529         * m4/fnmatch.m4: Likewise.
39530         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
39531         to AC_HEADER_STDBOOL
39532
39533 2002-06-22  Jim Meyering  <meyering@lucent.com>
39534
39535         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
39536         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
39537
39538 2002-06-22  Jim Meyering  <meyering@lucent.com>
39539
39540         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
39541
39542         * lib/exitfail.c, exitfail.h: Likewise.
39543         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
39544
39545         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
39546         of fnmatch.h.
39547         (EXTRA_DIST): Add fnmatch_loop.c.
39548         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
39549
39550         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
39551         * lib/fnmatch.c: Update from diffutils-2.8.2.
39552         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
39553         * lib/fnmatch.h: Remove file.
39554
39555 2002-06-21  Jim Meyering  <meyering@lucent.com>
39556
39557         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
39558         * m4/mbrtowc.m4: Likewise.
39559
39560         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
39561         * m4/mbswidth.m4: Reflect name change:
39562         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
39563         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
39564
39565         * m4/lib-link.m4: Update from gettext-0.11.2.
39566         * m4/gettext.m4: Likewise.
39567
39568         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
39569         From Alfred M. Szmidt.
39570
39571 2002-06-18  Paul Eggert  <eggert@twinsun.com>
39572
39573         * lib/file-type.h: Report an error if neither S_ISREG nor
39574         S_IFREG is defined, instead of using a test specific to glibc
39575         2.2.  This should be safe, since POSIX requires S_ISREG and
39576         Unix Version 7 had S_IFREG.  We don't need to check for
39577         <sys/types.h> since we don't use any symbols that it defines.
39578
39579 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
39580
39581         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
39582         $@-t, so that each temporary file name is unique and valid in the first
39583         8 characters, for operation under DOS.
39584
39585 2002-06-15  Paul Eggert  <eggert@twinsun.com>
39586
39587         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
39588
39589 2002-06-15  Jim Meyering  <meyering@lucent.com>
39590
39591         Work even with DJGPP 2.03, which lacks support for symlinks.
39592         From Richard Dawe.
39593         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
39594         is defined.
39595         * lib/lchown.c (S_ISLNK): Likewise.
39596
39597 2002-06-15  Jim Meyering  <meyering@lucent.com>
39598
39599         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
39600         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
39601         have been included before this file.
39602
39603 2002-06-14  Jim Meyering  <meyering@lucent.com>
39604
39605         * lib/file-type.h: Use the version from diffutils-2.8.2.
39606         * lib/file-type.c: Likewise.
39607
39608 2002-06-07  Jim Meyering  <meyering@lucent.com>
39609
39610         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
39611         They're needed at least for NetBSD 1.5.2.
39612         ($statxfs_includes): Include those same headers.
39613         ($statxfs_includes): Include sys/vfs.h if available.
39614         ($statxfs_includes): Likewise for sys/statvfs.h.
39615         Check for the following members in both structs statfs and statvfs:
39616         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
39617
39618 2002-06-01  Jim Meyering  <meyering@lucent.com>
39619
39620         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
39621         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
39622
39623 2002-05-28  Jim Meyering  <meyering@lucent.com>
39624
39625         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
39626         Reported by Volker Borchert.
39627
39628 2002-05-27  Jim Meyering  <meyering@lucent.com>
39629
39630         Fix a problem seen only on nonconforming systems whereby ls.c's
39631         use of localtime, and then of gettimeofday would cause trouble:
39632         the localtime call used to initialize rpl_gettimeofday's save
39633         mechanism would clobber ls's current local time information so
39634         that in any long listing the first file would always be listed
39635         with date 1970-01-01.  Analysis by Volker Borchert.
39636
39637         * lib/gettimeofday.c (localtime): Undefine.
39638         (rpl_localtime): New function.
39639
39640 2002-05-27  Jim Meyering  <meyering@lucent.com>
39641
39642         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
39643         localtime.
39644
39645         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
39646         use the replacement function; it wouldn't resolve at link time.
39647         Reported by Volker Borchert.
39648
39649 2002-05-22  Jim Meyering  <meyering@lucent.com>
39650
39651         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
39652         file-type.h.
39653         * lib/file-type.h: New file.
39654         * lib/file-type.c (file_type): New file/function.  Extracted from
39655         diffutils.
39656
39657 2002-04-30  Jim Meyering  <meyering@lucent.com>
39658
39659         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
39660
39661 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39662
39663         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
39664
39665 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39666
39667         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
39668         Do not check for alloca.h (no longer used) or stdbool.h (was never
39669         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
39670
39671 2002-04-29  Paul Eggert  <eggert@twinsun.com>
39672
39673         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
39674
39675 2002-04-29  Jim Meyering  <meyering@lucent.com>
39676
39677         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
39678         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
39679         Use AC_FUNC_STRNLEN here instead.
39680
39681         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
39682         With autoconf-2.53a, it's part of AC_PROG_CC.
39683
39684 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39685
39686         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
39687         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
39688
39689 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39690
39691         * lib/sig2str.h, lib/sig2str.c: New files.
39692         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
39693
39694 2002-04-28  Paul Eggert  <eggert@twinsun.com>
39695
39696         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
39697         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
39698         of 127, since 64 is the largest conceivable number for ancient
39699         nonstandard hosts.
39700         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
39701
39702 2002-04-28  Jim Meyering  <meyering@lucent.com>
39703
39704         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
39705
39706 2002-04-24  Jim Meyering  <meyering@lucent.com>
39707
39708         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
39709         (jm_PREREQ): Use it.
39710
39711         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
39712         mach/mach.h fcntl.h.
39713         Check for this function: setlocale.
39714
39715 2002-04-24  Jim Meyering  <meyering@lucent.com>
39716
39717         * lib/gettext.h: New file, from Gettext.
39718         * lib/Makefile.am (INCLUDES): Remove -I../intl.
39719         (libfetish_a_SOURCES): Add gettext.h.
39720
39721 2002-04-16  Jim Meyering  <meyering@lucent.com>
39722
39723         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
39724         ut_pid, ut_id, ut_exit.
39725
39726 2002-04-16  Jim Meyering  <meyering@lucent.com>
39727
39728         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
39729         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
39730         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
39731
39732 2002-04-12  Jim Meyering  <meyering@lucent.com>
39733
39734         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
39735         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
39736         existence of the getmntinfo function.  Needed for Darwin 5.3.
39737
39738         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
39739         This is necessary at least on Darwin 5.3.
39740
39741         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
39742         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
39743         strnlen.o in the library, and that makes some versions of ranlib
39744         object.
39745
39746 2002-04-12  Jim Meyering  <meyering@lucent.com>
39747
39748         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
39749
39750 2002-04-09  Jim Meyering  <meyering@lucent.com>
39751
39752         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
39753         to be more precise.  Rather than saying we're checking whether the
39754         function `works', say what we're testing.
39755         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
39756         Reported by Bruno Haible.
39757
39758 2002-03-10  Jim Meyering  <meyering@lucent.com>
39759
39760         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
39761         Suggestion from Santiago Vila.
39762
39763 2002-03-08  Jim Meyering  <meyering@lucent.com>
39764
39765         * lib/rename.c: Mention that this wrapper is needed also on
39766         mips-dec-ultrix4.4 systems.
39767
39768 2002-03-02  Jim Meyering  <meyering@lucent.com>
39769
39770         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
39771         not HAVE_CLOCK_SETTIME.
39772
39773 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39774
39775         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
39776         Check for clock_settime.
39777
39778 2002-02-27  Paul Eggert  <eggert@twinsun.com>
39779
39780         * lib/nanosleep.h: Rename to....
39781         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
39782
39783         * lib/gettime.c: New file.
39784         * lib/settime.c: New file.
39785         * lib/stime.c: Remove.
39786
39787         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
39788         timespec.h.  Remove nanosleep.h.
39789
39790 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39791
39792         * m4/acl.m4: New file.
39793         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
39794         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
39795
39796 2002-02-25  Paul Eggert  <eggert@twinsun.com>
39797
39798         * lib/acl.c, lib/acl.h: New files.
39799         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
39800
39801 2002-02-24  Jim Meyering  <meyering@lucent.com>
39802
39803         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
39804         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
39805         cause trouble.  Reported by Nelson Beebe.
39806
39807 2002-02-23  Paul Eggert  <eggert@twinsun.com>
39808
39809         * lib/path-concat.c (xpath_concat): Reorder code to pacify
39810         compilers that don't know that xalloc_die never returns.
39811
39812 2002-02-20  Jim Meyering  <meyering@lucent.com>
39813
39814         * lib/getdate.c: Regenerate using bison-1.33.
39815
39816 2002-02-17  Jim Meyering  <meyering@lucent.com>
39817
39818         * config/config.guess (main): Don't use `head -1'; it's no longer
39819         portable. Use `sed 1q' instead.
39820
39821 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
39822
39823         * m4/codeset.m4: Upgrade to gettext-0.11.
39824         * m4/gettext.m4: Upgrade to gettext-0.11.
39825         * m4/glibc21.m4: Upgrade to gettext-0.11.
39826         * m4/iconv.m4: Upgrade to gettext-0.11.
39827         * m4/isc-posix.m4: Upgrade to gettext-0.11.
39828         * m4/lcmessage.m4: Upgrade to gettext-0.11.
39829         * m4/lib-ld.m4: New file, from gettext-0.11.
39830         * m4/lib-link.m4: New file, from gettext-0.11.
39831         * m4/lib-prefix.m4: New file, from gettext-0.11.
39832         * m4/progtest.m4: Upgrade to gettext-0.11.
39833
39834 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39835
39836         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
39837         (jm_PREREQ): Use it.
39838
39839 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39840
39841         * lib/posixver.c, lib/posixver.h: New files.
39842         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39843
39844 2002-02-02  Paul Eggert  <eggert@twinsun.com>
39845             Bruno Haible  <bruno@clisp.org>
39846
39847         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
39848         (fwrite_success_callback): New declaration.
39849         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
39850         print_unicode_char. Call failure callback instead of error.
39851         (fwrite_success_callback): New function.
39852         (exit_failure_callback): New function.
39853         (fallback_failure_callback): New function.
39854         (print_unicode_char): Call unicode_to_mb.
39855
39856 2002-01-26  Jim Meyering  <meyering@lucent.com>
39857
39858         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
39859         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
39860
39861 2002-01-26  Jim Meyering  <meyering@lucent.com>
39862
39863         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
39864
39865 2002-01-22  Paul Eggert  <eggert@twinsun.com>
39866
39867         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
39868
39869 2002-01-22  Jim Meyering  <meyering@lucent.com>
39870
39871         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
39872         Otherwise, some versions of automake would omit the rule that makes
39873         Makefile from Makefile.in.
39874
39875 2002-01-21  Paul Eggert  <eggert@twinsun.com>
39876
39877         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
39878         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
39879         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
39880         (memcoll): Set errno to zero if there is no error.
39881
39882         * lib/quotearg.c (quotearg_buffer_restyled):
39883         Fix bug with quoting buffers containing NUL when backslashing escapes.
39884         This bug was exposed by the other changes in this patch.
39885         (quotearg_n_options): New arg ARGSIZE.
39886         All callers changed.
39887         (quoting_options_from_style): New function.
39888         (quotearg_n_style): Use it.
39889         (quotearg_n_style_mem): New function.
39890
39891         * lib/quotearg.h (quotearg_n_style_mem): New function.
39892
39893 2002-01-19  Jim Meyering  <meyering@lucent.com>
39894
39895         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
39896         Remove useless quotes: DF_PROG="df".
39897         * m4/strnlen.m4: New file.
39898
39899 2002-01-16  Paul Eggert  <eggert@twinsun.com>
39900
39901         * lib/backupfile.c (ISDIGIT): Comment fix.
39902         * lib/getdate.y (ISDIGIT): Likewise.
39903         * lib/posixtm.c (ISDIGIT, year): Likewise.
39904         * lib/strverscmp.c (ISDIGIT): Likewise.
39905         * lib/userspec.c (ISDIGIT): Likewise.
39906
39907 2002-01-16  Jim Meyering  <meyering@lucent.com>
39908
39909         * lib/getdate.y: Add three semicolons, each just before a closing
39910         brace. Bison (as of version 1.31) no longer papers over that mistake.
39911
39912 2002-01-05  Jim Meyering  <meyering@lucent.com>
39913
39914         * lib/version-etc.c (version_etc_copyright): Update copyright year.
39915
39916 2001-12-19  Paul Eggert  <eggert@twinsun.com>
39917
39918         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
39919         not silently exit merely because the output buffer happens to
39920         have nothing pending.
39921
39922 2001-12-18  Paul Eggert  <eggert@twinsun.com>
39923
39924         See the big note in ../ChangeLog.
39925         * lib/human.c (suffixes): Prefer K to k for 1024.
39926         (generate_suffix_backwards): New function.
39927         (human_readable_inexact): Use it.
39928         * lib/xstrtol.c (__xstrtol): If there is no number but there
39929         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
39930         Accept 'K' as well as 'k'.
39931
39932 2001-12-15  Jim Meyering  <meyering@lucent.com>
39933
39934         * lib/regex.h (__restrict_arr): Update from libc.
39935
39936         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
39937         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
39938         (STREQ): Define.
39939
39940 2001-12-14  Jim Meyering  <meyering@lucent.com>
39941
39942         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
39943         Suggestion from Bruno Haible.
39944
39945 2001-12-10  Jim Meyering  <meyering@lucent.com>
39946
39947         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
39948         xrealloc, Instead, include "xalloc.h".
39949         (initbuffer): Don't cast xmalloc return value to char*.
39950         (readline): Reword comment.
39951         Don't cast xrealloc return value to char*
39952         Return NULL, not 0.
39953
39954 2001-12-09  Jim Meyering  <meyering@lucent.com>
39955
39956         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
39957         about `signed and unsigned type in conditional expression'.
39958         * lib/posixtm.c (posix_time_parse): Likewise.
39959
39960         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
39961
39962         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
39963         to avoid a pedantic warning.
39964
39965         * lib/getstr.c: Don't include assert.h.
39966         (getstr): Remove warning-evoking assertions.
39967         Return -1 if offset parameter is out of bounds.
39968         Change the type of a local from int to size_t.
39969
39970         * lib/strftime.c (my_strftime_localtime_r): Include this function
39971         definition in the `#if ! HAVE_TM_GMTOFF' block.
39972
39973         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
39974         Include xalloc.h instead.
39975
39976 2001-12-02  Jim Meyering  <meyering@lucent.com>
39977
39978         * lib/tempname.c: Don't declare getenv, thus reverting the change of
39979         2001-11-18.  It's no longer necessary, now that stdlib.h is always
39980         included.
39981
39982         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
39983         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
39984
39985 2001-11-30  Akim Demaille  <akim@epita.fr>
39986
39987         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
39988         before being defined.
39989
39990 2001-11-27  Paul Eggert  <eggert@twinsun.com>
39991
39992         * lib/quotearg.h (quotearg_n, quotearg_n_style):
39993         First arg is int, not unsigned.
39994         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
39995         (SIZE_MAX, UINT_MAX): New macros.
39996         (quotearg_n_options): Abort if N is negative.
39997         Avoid overflow check on hosts where size_t is 64 bits and int
39998         is 32 bits, as overflow is impossible there.
39999         Fix off-by-one typo that caused unnecessary reallocation.
40000
40001 2001-11-27  Jim Meyering  <meyering@lucent.com>
40002
40003         * lib/tempname.c: Merge with version from libc.
40004         * lib/regex.c: Likewise.
40005
40006         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
40007         systems for which STDC_HEADERS is 0, it was not included, resulting in
40008         a warning about an integer-to-pointer conversion problem with getenv.
40009         Reported by Volker Borchert.
40010
40011 2001-11-26  Jim Meyering  <meyering@lucent.com>
40012
40013         * lib/gtod.h: Remove file.
40014         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
40015         * lib/gettimeofday.c: Don't include gtod.h.
40016         (GTOD_init): Remove function.
40017         (rpl_gettimeofday): Do its job here instead, rather than aborting.
40018         Suggestion from Volker Borchert.
40019
40020 2001-11-23  Jim Meyering  <meyering@lucent.com>
40021
40022         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
40023         it.
40024         * lib/hash.c (struct hash_table): Define it here instead.
40025
40026 2001-11-22  Jim Meyering  <meyering@lucent.com>
40027
40028         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
40029
40030 2001-11-20  Jim Meyering  <meyering@lucent.com>
40031
40032         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
40033         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
40034
40035 2001-11-19  Jim Meyering  <meyering@lucent.com>
40036
40037         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
40038         directory.  Use "conftestXXXXXX" as the template.
40039         Suggestion from Paul Eggert.
40040
40041         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
40042         immediately, so the test doesn't mistakenly hit the max-open-files
40043         limit.
40044
40045 2001-11-18  Paul Eggert  <eggert@twinsun.com>
40046
40047         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
40048         (TEMPORARIES): New macro.
40049         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
40050         removes an artificial limitation (e.g. HP-UX 10.20, where
40051         TMP_MAX is 17576).
40052
40053 2001-11-18  Jim Meyering  <meyering@lucent.com>
40054
40055         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
40056
40057 2001-11-18  Jim Meyering  <meyering@lucent.com>
40058
40059         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
40060         on SunOS 4.
40061
40062         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
40063         files will be created before anything else.
40064
40065 2001-11-17  Paul Eggert  <eggert@twinsun.com>
40066
40067         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
40068         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
40069
40070 2001-11-17  Jim Meyering  <meyering@lucent.com>
40071
40072         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
40073         Prompted by a report from Bob Proulx.
40074
40075         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
40076         Instead, require UTILS_FUNC_MKSTEMP.
40077
40078 2001-11-17  Jim Meyering  <meyering@lucent.com>
40079
40080         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
40081         Now, that's done as part of AC_FUNC_STRTOD.
40082
40083 2001-11-17  Jim Meyering  <meyering@lucent.com>
40084
40085         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
40086         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
40087         rather than group writable.  Patch by Juan F. Codagnone.
40088
40089         * lib/readtokens.c: Remove explicit declarations of xmalloc and
40090         xrealloc, Instead, include "xalloc.h".
40091
40092         * lib/mountlist.c: Include unlocked-io.h after all system headers.
40093         Remove explicit declarations of xmalloc, xrealloc,
40094         and xstrdup.  Instead, include "xalloc.h".
40095
40096         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
40097         unlocked-io.h.
40098         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
40099         Likewise.
40100         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
40101
40102         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
40103         Reported by Padraig Brady.
40104
40105         * lib/mkstemp.c: #undef mkstemp.
40106         Include config.h.
40107         (rpl_mkstemp): Rename from mkstemp.
40108         Protoize.
40109
40110 2001-11-16  Jim Meyering  <meyering@lucent.com>
40111
40112         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
40113         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
40114         determine the amount of total physical memory, use pstat_getstatic.
40115         HPUX-11 doesn't define _SC_PHYS_PAGES.
40116         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
40117         If sysconf couldn't be used to determine the amount of available
40118         physical memory, use both pstat_getstatic and pstat_getdynamic.
40119         Based on a patch from Bob Proulx.
40120
40121 2001-11-10  Jim Meyering  <meyering@lucent.com>
40122
40123         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
40124         (jm_PREREQ): Use it.
40125
40126 2001-11-09  Jim Meyering  <meyering@lucent.com>
40127
40128         * m4/jm-macros.m4: Require autoconf-2.52f.
40129         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
40130         Use these AC_-prefixed names, not the AM_-prefixed ones.
40131
40132         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
40133
40134 2001-11-05  Jim Meyering  <meyering@lucent.com>
40135
40136         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
40137
40138 2001-11-04  Jim Meyering  <meyering@lucent.com>
40139
40140         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
40141         $DEFS.
40142
40143 2001-11-03  Jim Meyering  <meyering@lucent.com>
40144
40145         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
40146         of AC_DEFUN.
40147
40148         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
40149         know the name of the variable in the macro definition.
40150
40151 2001-11-03  Jim Meyering  <meyering@lucent.com>
40152
40153         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
40154         in argmatch_to_argument call.
40155
40156         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
40157         argument.
40158
40159         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
40160         e.g., a fault due to an attempt to free a NULL pointer.
40161
40162 2001-11-01  Jim Meyering  <meyering@lucent.com>
40163
40164         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
40165         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
40166
40167 2001-11-01  Jim Meyering  <meyering@lucent.com>
40168
40169         * lib/dirfd.c, lib/dirfd.h: New files.
40170         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
40171
40172         * lib/hash.c (hash_print) [TESTING]: Clean up.
40173
40174 2001-10-22  Paul Eggert  <eggert@twinsun.com>
40175
40176         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
40177         to avoid a warning if -Wall.
40178
40179 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
40180
40181         * README: New file
40182         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
40183         (per RMS's instructions, this is now the canonical source)
40184         * lgpl/, gpl/: New directories.
40185
40186 2001-10-21  Paul Eggert  <eggert@twinsun.com>
40187
40188         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
40189
40190 2001-10-21  Jim Meyering  <meyering@lucent.com>
40191
40192         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
40193         this code would end up calling gettext even in packages built
40194         with --disable-nls.
40195         * lib/getopt.c (_): Likewise.
40196         * lib/regex.c (_): Likewise.
40197
40198 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40199
40200         * m4/error.m4 (jm_PREREQ_ERROR):
40201         Do not invoke AC_CHECK_FUNCS with strerror_r, as
40202         AC_FUNC_STRERROR_R does that.
40203         Check for strerror declaration.
40204
40205         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
40206         are supposed to have them these days.
40207         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
40208         Merge changes from latest Autoconf CVS.
40209         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
40210         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
40211         POSIX decided to standardize on the int flavor of strerror_r.
40212
40213 2001-10-20  Paul Eggert  <eggert@twinsun.com>
40214
40215         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
40216         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
40217         Use strerror_r that is only a macro, even if it is not a function.
40218         (strerror): Check for HAVE_DECL_STRERROR before declaring.
40219         (private_strerror): Use prototypes, not old-style function definition.
40220         (print_errno_message): New function.
40221         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
40222         char*-flavored one.
40223         (error_tail, error, error_at_line): Use it.
40224
40225 2001-10-11  Jim Meyering  <meyering@lucent.com>
40226
40227         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
40228         and quote_n (1, ... to avoid clobbering a buffer.
40229
40230 2001-10-05  Jim Meyering  <meyering@lucent.com>
40231
40232         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
40233         hash-pjw.h.
40234         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
40235         * lib/hash-pjw.h: New file.
40236
40237 2001-09-30  Jim Meyering  <meyering@lucent.com>
40238
40239         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
40240         `struct fsstat' has the `f_fstypename' member.
40241         Use that to define FS_TYPE, which is now used to make
40242         the getfsstat link test tighter.
40243
40244 2001-09-30  Jim Meyering  <meyering@lucent.com>
40245
40246         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
40247         Include <sys/ucred.h>, for Apple Darwin.
40248         Include sys/mount.h and sys/fs_types.h only if available.
40249         (FS_TYPE): Define.
40250         (read_filesystem_list): Use FS_TYPE.
40251
40252 2001-09-29  Paul Eggert  <eggert@twinsun.com>
40253
40254         * lib/exclude.c (excluded_filename): 0 -> false, since it's
40255         a boolean context.
40256
40257 2001-09-29  Jim Meyering  <meyering@lucent.com>
40258
40259         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40260         [one-argument getmntent function]): Include stdio.h before mntent.h.
40261         SunOS 4.1.x needs it for the declaration of `FILE'.
40262         Patch by Volker Borchert.
40263
40264         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
40265         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
40266         sys/fs_types.h, and make the link-test for getfsstat guard #include
40267         directives with appropriate #if HAVE_*_H tests so that we can
40268         detect getfsstat on Apple Darwin1.3.7 systems.
40269         Reported by Nelson Beebe.
40270         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
40271
40272 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40273
40274         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40275         #defines strtoimax.  Also treat the other strto* functions
40276         like strtoimax.
40277
40278         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40279         Check for strtoul and strtoumax,
40280         as those declarations are made even in the signed case.
40281         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
40282         Likewise, for strtol and strtoimax.
40283
40284 2001-09-28  Paul Eggert  <eggert@twinsun.com>
40285
40286         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
40287         #defines strtoimax.  Also treat the other strto* functions
40288         like strtoimax.
40289
40290         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
40291         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
40292         (strtoimax, strtoumax): Do not declare if already defined as a macro.
40293
40294 2001-09-26  Jim Meyering  <meyering@lucent.com>
40295
40296         Most macros in unlocked-io.h had the wrong number of arguments.
40297         * lib/gen-uio: New script.
40298         (USE_UNLOCKED_IO): Define to 1 if not already defined.
40299         * lib/unlocked-io.hin: Remove file.
40300         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
40301         rather than trying to embed it here.
40302         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
40303         Reported by Padraig Brady.
40304
40305 2001-09-25  Volker Borchert  <bt@teknon.de>
40306
40307         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
40308         `result'.
40309
40310 2001-09-24  Jim Meyering  <meyering@lucent.com>
40311
40312         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
40313
40314 2001-09-23  Jim Meyering  <meyering@lucent.com>
40315
40316         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
40317         instead of the mere test for existence of mntent.h.  The latter
40318         would get a false-positive on AIX 3.4 systems.
40319         In the outer getmntent if-block, don't die if neither of the getmntent
40320         tests succeeds.  Instead, just fall through and continue with the
40321         remaining tests.
40322
40323 2001-09-23  Jim Meyering  <meyering@lucent.com>
40324
40325         * lib/mountlist.c: Remove useless parentheses in #if directives.
40326         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
40327         the deprecated MOUNTED symbol is no longer defined in mntent.h.
40328
40329 2001-09-22  Jim Meyering  <meyering@lucent.com>
40330
40331         * m4/gettext.m4: New file.  From gettext.
40332         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
40333         * m4/progtest.m4: Likewise
40334         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
40335         * m4/glibc21.m4: Likewise.
40336
40337         * m4/libintl.m4: Remove.  No longer used.
40338
40339 2001-09-22  Jim Meyering  <meyering@lucent.com>
40340
40341         * lib/localcharset.c: Update from latest gettext.
40342         * lib/config.charset: Likewise.
40343
40344 2001-09-20  Jim Meyering  <meyering@lucent.com>
40345
40346         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
40347         strtoimax.
40348         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
40349         strtoumax.
40350
40351 2001-09-20  Jim Meyering  <meyering@lucent.com>
40352
40353         * lib/xstrtol.c (strtoimax): Guard declaration with
40354         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
40355         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
40356         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
40357         (strtoumax): Likewise, for completeness (it wasn't necessary).
40358
40359 2001-09-17  Paul Eggert  <eggert@twinsun.com>
40360
40361         * lib/strtoimax.c (HAVE_LONG_LONG):
40362         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
40363         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
40364         to work around bug in IBM C compiler.
40365
40366 2001-09-17  Jim Meyering  <meyering@lucent.com>
40367
40368         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
40369         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
40370         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
40371         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
40372         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
40373         whenever the right hand side need not be expanded by the shell.
40374
40375 2001-09-16  Paul Eggert  <eggert@twinsun.com>
40376
40377         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
40378         library.  It's not correct, as some older glibcs are buggy.
40379         fnmatch wasn't fixed until glibc 2.2.
40380
40381         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
40382         special shell magic here.
40383
40384 2001-09-16  Jim Meyering  <meyering@lucent.com>
40385
40386         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
40387         * m4/jm-macros.m4: Require it.
40388
40389 2001-09-16  Jim Meyering  <meyering@lucent.com>
40390
40391         * lib/mkdir.c: New file.
40392
40393 2001-09-15  Jim Meyering  <meyering@lucent.com>
40394
40395         * m4/jm-macros.m4: Check for help2man.
40396
40397 2001-09-11  Jim Meyering  <meyering@lucent.com>
40398
40399         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
40400         The body, by Paul Eggert, was moved here from configure.in.
40401         * m4/jm-macros.m4: Require UTILS_HOST_OS.
40402
40403 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40404
40405         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
40406         (jm_PREREQ): Use it.
40407
40408 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40409
40410         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
40411         Use ssize_t, not int, to store result of readlink.
40412         Check for ssize_t overflow as well as size_t overflow,
40413         as POSIX says the result of readlink is implementation-defined
40414         when ssize_t overflows.
40415         Remove unnecessary cast to char*.
40416         Use free+malloc instead of realloc, as the storage doesn't need
40417         to be preserved and it's clearer and can be more efficient that way.
40418         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
40419         * lib/xreadlink.h (xreadlink): Update prototype.
40420
40421 2001-09-04  Paul Eggert  <eggert@twinsun.com>
40422
40423         * lib/xgetcwd.c: Revert some of the previous change; intead,
40424         fix the HAVE_GETCWD_NULL code to behave more like the
40425         !HAVE_GETCWD_NULL code used to.
40426
40427         Include "xalloc.h".
40428         (xgetcwd): Do not return NULL when memory is exhausted; instead,
40429         invoke xalloc_die.
40430
40431 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40432
40433         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
40434         sys/param.h, as pathmax.h includes them.
40435
40436 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40437
40438         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
40439         (jm_PREREQ_XGETCWD): New macro.
40440
40441         * m4/getcwd.m4: New file.
40442
40443 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40444
40445         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
40446         like the HAVE_GETCWD_NULL code.
40447         Include pathmax.h if not HAVE_GETCWD.
40448         Do not include xalloc.h.
40449         (INITIAL_BUFFER_SIZE): New symbol.
40450         Do not use xmalloc / xrealloc, since the caller is responsible for
40451         handling errors.  Preserve errno around `free' during failure.
40452         Do not overrun buffer when using getwd.
40453
40454 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40455
40456         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
40457         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
40458         getcwd (NULL, 0).
40459
40460 2001-09-03  Paul Eggert  <eggert@twinsun.com>
40461
40462         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
40463         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
40464         spotted by Jim Meyering.
40465
40466 2001-09-03  Jim Meyering  <meyering@lucent.com>
40467
40468         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
40469         failure.
40470
40471 2001-09-02  Jim Meyering  <meyering@lucent.com>
40472
40473         * lib/error.c: Update from GNU libc.
40474
40475 2001-09-01  Jim Meyering  <meyering@lucent.com>
40476
40477         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
40478         Used by df.
40479
40480 2001-09-01  Jim Meyering  <meyering@lucent.com>
40481
40482         * lib/xreadlink.c: New file.
40483         * lib/xreadlink.h: New file.
40484         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
40485         xreadlink.h.
40486
40487         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
40488         doesn't conflict with sparc Solaris 7's definition in
40489         /usr/include/sys/int_types.h.
40490
40491         * lib/exclude.c: Use `""', not `<>' to #include non-system header
40492         files.
40493         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
40494         and strncasecmp as r-values.  Unixware didn't have declarations.
40495
40496 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40497
40498         * lib/xstrtol.h: Add copyright notice.
40499         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
40500         LONGINT_INVALID_SUFFIX_CHAR.
40501
40502 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40503
40504         * lib/xstrtol.c (strtoimax): New decl.
40505
40506 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40507
40508         * lib/xgetcwd.c: Don't include pathmax.h.
40509         Include stdlib.h and unistd.h if available.
40510         Include xalloc.h.
40511         (xmalloc, xstrdup, free): Remove decls.
40512         (xgetcwd): Don't assume sizes fit in unsigned.
40513         Check for overflow when computing sizes.
40514         Simplify reallocation code.
40515
40516 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40517
40518         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
40519         a directory's st_size can have an arbitrary value, so the old
40520         usage could waste an arbitrary amount of memory.  All uses
40521         changed.
40522         * lib/savedir.h: Update prototype.
40523
40524 2001-08-31  Paul Eggert  <eggert@twinsun.com>
40525
40526         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
40527
40528         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
40529         old strtoimax.c.
40530
40531         Also, make the following further changes to make this file's
40532         configuration more similar to that of strtol.c:
40533         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
40534         (strtoumax, uintmax_t, strtoull, strtol): Remove.
40535         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
40536         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
40537         changed to signed values.
40538
40539         And make the following changes as well:
40540         Fix copyright notice, as 1999 was missing.
40541         (verify): New macro.
40542         (strtoimax): Check sizes at compile-time, not run-time.
40543         Prefer strtol to strtoll if both work.
40544         (main): Remove; it was not that useful and was a pain to maintain.
40545
40546         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
40547
40548 2001-08-31  Jim Meyering  <meyering@lucent.com>
40549
40550         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
40551         Use an initial, malloc'd, buffer of length 128 rather than
40552         a statically allocated one of length 1024.
40553
40554 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40555
40556         Simplify code, partly by assuming autoconf 2.52 semantics.
40557
40558         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
40559
40560         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
40561         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
40562         All uses removed.
40563         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
40564         Move AC_REQUIRE to next-to-top level, to avoid confusion.
40565         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
40566         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
40567         jm_AC_HEADER_INTTYPES_H.
40568         * m4/jm-macros.m4 (jm_MACROS): Likewise.
40569
40570         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
40571
40572         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
40573         Quote first arg of AC_DEFUN.
40574         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
40575         since they are needed to parse the include file even if we need
40576         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
40577         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
40578         but with opposite signedness.
40579
40580 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40581
40582         Merge 'exclude' changes from tar 1.13.22.
40583         This fixes one or two unlikely storage allocation overflow bugs,
40584         but doesn't change user-visible behavior otherwise.
40585
40586 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40587
40588         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
40589         (jm_PREREQ_EXCLUDE): New macro.
40590
40591 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40592
40593         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
40594         tm to be declared.
40595
40596 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40597
40598         * lib/hash.c: Remove '2001' from copyright notice.
40599
40600 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40601
40602         * lib/full-write.h: New file.
40603         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
40604         * lib/full-write.c: Correct credits, as cccp.c no longer
40605         exists and anyway it was so heavily changed from the old cccp
40606         code as to be unrecognizable.  Include full-write.h.
40607         (full_write) Return size_t, with short writes meaning failure.
40608         All callers changed.  This fixes a bug with large buffers
40609         on 64-bit hosts.
40610         * lib/utime.c: Include full-write.h.
40611
40612 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40613
40614         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
40615         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
40616         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
40617         Include if available.
40618         (<xalloc.h>): Include
40619         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
40620         (verify): New macro.  Use it to verify that EXCLUDE macros do not
40621         collide with FNM macros.
40622         (struct patopts): New struct.
40623         (struct exclude): Use it, as exclude patterns now come with options.
40624         (new_exclude): Support above changes.
40625         (new_exclude, add_exclude_file):
40626         Initial size must now be a power of two to simplify overflow checking.
40627         (free_exclude, fnmatch_no_wildcards): New function.
40628         (excluded_filename): No longer requires options arg, as the options
40629         are determined by add_exclude.  Now returns bool, not int.
40630         (excluded_filename, add_exclude):
40631         Add support for the fancy new exclusion options.
40632         (add_exclude, add_exclude_file): Now takes int options arg.
40633         Check for arithmetic overflow when computing sizes.
40634         (add_exclude_file): xrealloc might modify errno, so don't
40635         realloc until after errno might be used.
40636
40637         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
40638         New macros.
40639         (free_exclude): New decl.
40640         (add_exclude, add_exclude_file): Now takes int options arg.
40641         (excluded_filename): No longer requires options arg, as the options
40642         are determined by add_exclude.  Now returns bool, not int.
40643
40644 2001-08-30  Paul Eggert  <eggert@twinsun.com>
40645
40646         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
40647
40648 2001-08-27  Jim Meyering  <meyering@lucent.com>
40649
40650         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
40651
40652         * lib/version-etc.c (N_): Remove definition.
40653         Revert most of last change.
40654         Instead, simply don't mark the `Copyright...' string for translation.
40655         Based on advice from Paul Eggert.
40656
40657         * lib/strtoxmax.c: Tweak comment.
40658
40659 2001-08-26  Jim Meyering  <meyering@lucent.com>
40660
40661         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
40662
40663         * m4/xstrtoimax.m4: New file.
40664         * m4/xstrtoumax.m4: Add comments explaining why we
40665         AC_REPLACE_FUNCS(strtol).
40666
40667 2001-08-26  Jim Meyering  <meyering@lucent.com>
40668
40669         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
40670         of copyright with `%s' so translators don't get an untranslated
40671         message in 2002.
40672         (COPYRIGHT_YEAR): Define.
40673         (version_etc): Use fprintf rather than fputs.
40674         Suggestion from Ulrich Drepper.
40675
40676         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
40677
40678         * lib/strtoll.c: New file, from GNU libc.
40679         * lib/xstrtoimax.c: New file.
40680
40681         * lib/xstrtol.h: Add xstrtoimax.
40682         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
40683         * lib/strtoimax.c: New file.  Likewise, but first define
40684         STRTOUXMAX_SIGNED.
40685
40686         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
40687         ...
40688         * lib/strtoxmax.c: ... then renamed to this.
40689
40690 2001-08-18  Paul Eggert  <eggert@twinsun.com>
40691
40692         * m4/inttypes.m4: Add AC_PREREQ(2.13).
40693         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
40694         (jm_AC_TYPE_INTMAX_T): New macro.
40695         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
40696
40697         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
40698
40699         * m4/longlong.m4: Renamed from ulonglong.m4.
40700         * m4/inttypes.m4: Renamed from inttypes_h.m4.
40701         * m4/uintmax_t.m4: Removed.
40702
40703 2001-08-13  Paul Eggert  <eggert@twinsun.com>
40704
40705         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
40706         Port to Solaris 8, where 'sed' requires a space after the 'r'
40707         command, and where sh dislikes "$/".  Clean up the spacing a bit.
40708         Redirect output to $tmp just once.
40709
40710 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
40711
40712         * lib/addext.c (<errno.h>): Include.
40713         (errno): Declare if not defined.
40714         (addext): Work correctly when pathconf returns -1 and leaves
40715         errno alone because there is no limit.  Also, work even if
40716         pathconf returns a value greater than SIZE_MAX.
40717
40718 2001-08-12  Jim Meyering  <meyering@lucent.com>
40719
40720         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
40721         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
40722         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
40723         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
40724         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
40725         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
40726         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
40727         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
40728         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
40729         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
40730         utime.m4, utimes.m4, xstrtoumax.m4:
40731         Quote the first argument in each use of AC_DEFUN.
40732
40733 2001-08-12  Jim Meyering  <meyering@lucent.com>
40734
40735         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
40736         Simply `return getcwd (NULL, 0);'.
40737         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
40738         Use 1300 as initial value for length, not PATH_MAX.
40739
40740         * lib/pathmax.h: Clean up cpp syntax.
40741
40742 2001-08-12  Jim Meyering  <meyering@lucent.com>
40743
40744         * lib/gettimeofday.c: New file.
40745         * lib/gtod.h: New file.
40746         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
40747
40748 2001-08-05  Jim Meyering  <meyering@lucent.com>
40749
40750         * m4/jm-macros.m4: Require autoconf-2.52.
40751
40752 2001-08-04  Jim Meyering  <meyering@lucent.com>
40753
40754         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
40755         stmt, to get in sync with glibc.
40756
40757 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40758
40759         The following changes are from gettext 0.10.39 as maintained by
40760         Bruno Haible.
40761
40762         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
40763         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
40764         with inverted sense.  All uses changed.
40765
40766         * lib/mbswidth.c: Don't include <limits.h>.
40767         Include <stdlib.h> and <string.h> unconditionally.
40768         (iswcntrl, mbsinit, ISCNTRL): New macros.
40769         (mbsnwidth): Use K&R style function declarations.
40770         Don't bother checking for MB_LEN_MAX == 1, since the compiler
40771         can optimize it when MB_CUR_MAX == 1.
40772         The width of control characters is zero, not 1.
40773
40774 2001-08-03  Paul Eggert  <eggert@twinsun.com>
40775
40776         The following changes are from gettext 0.10.39 as maintained by
40777         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
40778
40779         * m4/codeset.m4: Upgrade to serial AM1.
40780         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
40781         all uses changed.  Quote first arg of AC_DEFUN.
40782         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
40783
40784         * m4/iconv.m4: Upgrade to serial AM2.
40785         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
40786         Add --with-libconv-prefix.
40787         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
40788         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
40789         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
40790         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
40791         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
40792
40793         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
40794         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
40795         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
40796         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
40797         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
40798         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
40799         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
40800         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
40801         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
40802
40803         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
40804         string.h any more.
40805
40806         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
40807         not the default value.
40808
40809         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
40810         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
40811         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
40812         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
40813         Also check for iswcntrl, used for wcwidth fallback.
40814         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
40815         to Autoconf 2.13.
40816
40817 2001-08-03  Jim Meyering  <meyering@lucent.com>
40818
40819         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
40820         as it was in the original.  Reported by Paul Eggert.
40821
40822 2001-07-16  Jim Meyering  <meyering@lucent.com>
40823
40824         * m4/gettimeofday.m4: New file.
40825         Prompted by a report from Bernhard Baehr.
40826
40827 2001-07-15  Jim Meyering  <meyering@lucent.com>
40828
40829         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
40830         stuff. Now it's in ../Makefile.cfg.
40831
40832 2001-07-15  Jim Meyering  <meyering@lucent.com>
40833
40834         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
40835         (BUILT_SOURCES): Add unlocked-io.h.
40836         (io_functions): Define.
40837         (unlocked-io.h): New rule.
40838         (DISTCLEANFILES): Add unlocked-io.h.
40839         (all-local): Depend on unlocked-io.h, to ensure it is created.
40840
40841         * lib/unlocked-io.hin: New file
40842
40843         * lib/regex.c: Update from glibc.
40844
40845 2001-07-05  Jim Meyering  <meyering@lucent.com>
40846
40847         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
40848         recommendation.
40849         (libfetish_a_SOURCES): Put all .h files here instead.
40850         Remove a thus-exposed (better checks in automake) duplicate and
40851         two unnecessary .h files.
40852
40853 2001-07-04  Jim Meyering  <meyering@lucent.com>
40854
40855         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
40856         that generates jm-glibc-io.m4 so that it doesn't trigger any make
40857         distcheck failure.
40858
40859 2001-07-02  Jim Meyering  <meyering@lucent.com>
40860
40861         The following changes were prompted by suggestions from Bruno Haible.
40862
40863         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
40864         is now generated.
40865         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
40866         definition of EXTRA_DIST.
40867         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
40868         ensure that the generated file is created/updated whenever the list
40869         of $(unlocked_functions) is changed.
40870         (jm-glibc-io.m4): New rule.
40871         (unlocked-io.h): New rule -- currently unused.
40872
40873 2001-06-24  Jim Meyering  <meyering@lucent.com>
40874
40875         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
40876         unmatched right bracket, rather than kludging it with an extra,
40877         falsely-matching quote in a comment.  Patch by Akim Demaille.
40878
40879 2001-06-11  Jim Meyering  <meyering@lucent.com>
40880
40881         * lib/regex.c: Update from GNU libc.
40882
40883 2001-05-27  Jim Meyering  <meyering@lucent.com>
40884
40885         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
40886         Check for ut_type in struct utmp.
40887
40888 2001-05-27  Jim Meyering  <meyering@lucent.com>
40889
40890         * lib/readutmp.h (UT_TYPE): Define.
40891
40892 2001-05-24  Jim Meyering  <meyering@lucent.com>
40893
40894         * lib/argmatch.c: Include "quote.h".
40895         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
40896         quote function.  Reported by Göran Uddeborg.
40897
40898 2001-05-22  Jim Meyering  <meyering@lucent.com>
40899
40900         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
40901         now that we use the package-supplied version unconditionally.
40902         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
40903
40904 2001-05-21  Jim Meyering  <meyering@lucent.com>
40905
40906         * m4/regex.m4: Change a couple backticks to single quotes to avoid
40907         shell syntax errors.
40908
40909 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
40910
40911         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
40912
40913 2001-05-20  Paul Eggert  <eggert@twinsun.com>
40914
40915         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
40916         Don't bother to check library strftime, since
40917         we'll be using our own my_strftime function anyway.
40918         Define my_strftime instead of strftime.
40919
40920 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
40921
40922         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
40923         which is not yet declared.
40924
40925 2001-05-15  Jim Meyering  <meyering@lucent.com>
40926
40927         * m4/regex.m4: Use proper quoting so brackets appear in the test
40928         program.
40929         Reported by, and with help from, Bruno Haible.
40930
40931 2001-05-13  Jim Meyering  <meyering@lucent.com>
40932
40933         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
40934         undefined.
40935
40936 2001-05-11  Paul Eggert  <eggert@twinsun.com>
40937
40938         dirname code cleanup.  base_name now behaves more compatibly
40939         with POSIX basename when given file names that have trailing
40940         slashes, and similarly for dir_name.  Add new primitives
40941         base_len and dir_len.  Put the directory-name-related decls
40942         into dirname.h.
40943
40944         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
40945         * lib/backupfile.c (base_name): Likewise.
40946         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
40947         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
40948         * lib/makepath.c (strip_trailing_slashes): Likewise.
40949         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
40950         ISSLASH): Likewise.
40951         * lib/rename.c (strip_trailing_slashes): Likewise.
40952         * lib/same.c (base_name): Likewise.
40953         * lib/stripslash.c (ISSLASH): Likewise.
40954
40955         * lib/addext.c: Include <dirname.h> after size_t is defined.
40956         * lib/backupfile.c: Likewise.
40957
40958         * lib/addext.c (addext): Use base_len to trim redundant
40959         trailing slashes instead of doing it ourselves.
40960         But do not trim the last slash if it is not redundant.
40961
40962         * lib/backupfile.c (find_backup_file_name,
40963         max_backup_version): Use base_len instead of rolling it ourselves.
40964         Handle the case of "" and (on DOS) "C:" correctly.
40965
40966         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
40967         needed. Include <string.h>, <dirname.h>.
40968         (base_name): Allow file names ending in slashes, other than names
40969         that are all slashes.  In this case, return the basename followed
40970         by the slashes.  This is more general, and can be used in places
40971         where the original base_name purposely had an assertion failure.
40972         (base_len): New function.
40973
40974         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
40975         Do not include <assert.h>; no longer needed.
40976         Include xalloc.h.
40977         (memrchr): Remove decl.
40978         (dir_name_r): Remove.
40979         (dir_len): Renamed from dirlen.  All callers changed.
40980         Rewrite in terms of base_name, for simplicity and consistency.
40981         (dir_name): Never return NULL.  All callers changed.
40982         Do not include <stdlib.h> in test program; no longer needed.
40983         return 0; is fine for test program.
40984
40985         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
40986         New macros.
40987         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
40988
40989         * lib/path-concat.c (path_concat): Use base_len to compute
40990         base length, not strlen; this means we cannot rely on memcpy
40991         to null-terminate.
40992
40993         * lib/same.c (STREQ): Remove.
40994         (same_name): Handle the case where the basename ends in trailing '/'.
40995
40996         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
40997         a slash was stripped.  Do not strip the last slash after a
40998         file system prefix.
40999
41000 2001-05-11  Paul Eggert  <eggert@twinsun.com>
41001
41002         * lib/Makefile.am (libfetish_a_SOURCES):
41003         Add strftime.c, since we now compile it on all hosts.
41004
41005         * lib/strftime.c (my_strftime):
41006         Define to nstrftime if emacs, but only if my_strftime is not defined.
41007         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
41008         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
41009         Add one more extra argument: a nanoseconds value.
41010         All uses changed.
41011         (ns): New macro.
41012         (my_strftime function): Add %N format.
41013         (emacs_strftimeu): Renamed from emacs_strftime,
41014         with extra ut argument.
41015
41016 2001-05-09  Paul Eggert  <eggert@twinsun.com>
41017
41018         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
41019
41020 2001-04-21  Jim Meyering  <meyering@lucent.com>
41021
41022         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
41023         doesn't interfere.
41024
41025 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
41026
41027         * m4/ftruncate.m4: Check for chsize.
41028         Link with ftruncate.o unconditionally if ftruncate is missing.
41029         This was required when cross-compiling to i586-mingw32msvc.
41030
41031 2001-04-08  Jim Meyering  <meyering@lucent.com>
41032
41033         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
41034         recomputed; that's necessary when the offset spans a DST transition.
41035         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
41036
41037 2001-04-02  Jim Meyering  <meyering@lucent.com>
41038
41039         * lib/regex.h, regex.c: Update from GNU libc.
41040
41041 2001-03-24  Jim Meyering  <meyering@lucent.com>
41042
41043         * m4/jm-macros.m4: Require autoconf-2.49d.
41044
41045 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
41046
41047         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
41048
41049 2001-03-19  Paul Eggert  <eggert@twinsun.com>
41050
41051         * lib/version-etc.c (version_etc_copyright): Update to 2001.
41052
41053 2001-03-17  Jim Meyering  <meyering@lucent.com>
41054
41055         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
41056         now that the version in autoconf is equivalent.
41057         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
41058
41059         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
41060         Suggestion from Akim Demaille.
41061
41062         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
41063         (jm_PREREQ_TEMPNAME): New function.
41064
41065 2001-03-16  Paul Eggert  <eggert@twinsun.com>
41066
41067         * lib/tempname.c (uint64_t): Define to uintmax_t if
41068         not defined, and if UINT64_MAX is not defined.
41069         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
41070         Reported by John David Anglin.
41071
41072 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
41073
41074         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
41075         resolve alias if codeset is empty.
41076         * lib/config.charset (BeOS): Use wildcard syntax.
41077
41078 2001-03-13  Jim Meyering  <meyering@lucent.com>
41079
41080         * lib/path-concat.c (path_concat)
41081         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
41082         concatenating e.g., `C:' and `foo'.
41083         From Bruno Haible.
41084
41085 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
41086
41087         * lib/localcharset.c (locale_charset): Don't use
41088         setlocale(LC_CTYPE,NULL). Don't return NULL.
41089         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
41090
41091 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
41092
41093         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
41094         support for DOS/DJGPP.
41095
41096 2001-03-01  Paul Eggert  <eggert@twinsun.com>
41097
41098         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
41099         lacks mkstemp.  Compile our own tempname.c if we compile our own
41100         mkstemp.c, as mkstemp relies on tempname.
41101
41102 2001-03-01  Jim Meyering  <meyering@lucent.com>
41103
41104         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
41105         AH_VERBATIM really does output its argument verbatim.
41106
41107 2001-02-28  Paul Eggert  <eggert@twinsun.com>
41108
41109         * lib/Makefile.am (libfetish_a_SOURCES):
41110         Add dup-safer.c, fopen-safer.c.
41111         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
41112
41113         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
41114         * lib/unistd-safer.h: New files.
41115
41116 2001-02-25  Paul Eggert  <eggert@twinsun.com>
41117
41118         The mkstemp replacement is taken from glibc 2.2.2, with some
41119         portability fixes for use outside glibc, as follows:
41120
41121         * lib/tempname.c (struct_stat64): New macro.
41122         (direxists, __gen_tempname): Use it.
41123         This avoids a portability problem with Solaris 8.
41124
41125         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
41126         (<stddef.h>, <stdint.h>, <string.h>):
41127         Include only if STDC_HEADERS || _LIBC.
41128         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
41129         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
41130         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
41131         (__set_errno): Define this macro if <errno.h> doesn't.
41132         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
41133         Define these macros if <stdio.h> doesn't.
41134         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
41135         Define these macros if <sys/stat.h>
41136         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
41137         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
41138         __xstat64): Define if not _LIBC.
41139         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
41140         (__gen_tempname): Invoke gettimeofday only if
41141         HAVE_GETTIMEOFDAY || _LIBC;
41142         otherwise, fall back on plain "time".
41143         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
41144
41145         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
41146
41147         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
41148
41149 2001-02-18  Paul Eggert  <eggert@twinsun.com>
41150
41151         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
41152
41153 2001-02-17  Paul Eggert  <eggert@twinsun.com>
41154
41155         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
41156         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
41157         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
41158         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
41159
41160 2001-02-17  Paul Eggert  <eggert@twinsun.com>
41161
41162         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
41163         Remove workaround macros for hosts that have mbrtowc but not
41164         mbstate_t, as we now insist on proper declarations for both
41165         before using mbrtowc.
41166
41167 2001-02-17  Jim Meyering  <meyering@lucent.com>
41168
41169         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
41170         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
41171         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
41172         UnixWare 7.1.1.
41173
41174         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
41175         rather than AC_CACHE_VAL.
41176
41177 2001-02-17  Jim Meyering  <meyering@lucent.com>
41178
41179         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
41180         around included file name.
41181
41182         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
41183
41184         * lib/strftime.c: Update from GNU libc (the only changes were to
41185         comments).
41186
41187 2001-02-17  Jim Meyering  <meyering@lucent.com>
41188
41189         * lib/regex.c: Update from libc.
41190
41191 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
41192
41193         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
41194         clash.
41195
41196 2001-02-16  Paul Eggert  <eggert@twinsun.com>
41197
41198         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
41199         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
41200         Reported by Mark Hounschell via Paul Eggert.
41201
41202 2001-02-07  Jim Meyering  <meyering@lucent.com>
41203
41204         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
41205
41206 2001-02-05  Jim Meyering  <meyering@lucent.com>
41207
41208         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
41209         it includes the patch required for `large file' support with at least
41210         HP-UX's 10.20 /bin/cc.
41211
41212 2001-02-03  Jim Meyering  <meyering@lucent.com>
41213
41214         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
41215         AS_IF, now that it works once again (mysteriously).
41216         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41217
41218 2001-01-30  Jim Meyering  <meyering@lucent.com>
41219
41220         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
41221         * m4/chown.m4: Rename conftestchown to conftest.chown.
41222         * m4/rename.m4: s/conftestdir/conftest.d1/ and
41223         s/conftestdir2/conftest.d2/.
41224         * m4/utimes.m4: s/conftestdata/conftest.data/
41225         Inspired by Pavel Roskin's change in autoconf.
41226
41227 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
41228
41229         * lib/config.charset: Update for FreeBSD 4.2.
41230
41231 2001-01-27  Jim Meyering  <meyering@lucent.com>
41232
41233         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
41234         a use of AS_IF.
41235         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
41236
41237 2001-01-26  Jim Meyering  <meyering@lucent.com>
41238
41239         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
41240         quotearg.c includes it.
41241
41242 2001-01-26  Jim Meyering  <meyering@lucent.com>
41243
41244         * lib/quotearg.c: Include stddef.h.
41245         * lib/quote.c: Include stddef.h.
41246         Reported by Axel Kittenberger.
41247
41248         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
41249         line in double quotes so that it evokes a better diagnostic.
41250         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
41251         Reported by Axel Kittenberger.
41252
41253 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
41254
41255         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
41256         as if it was a `charset'.
41257
41258 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41259
41260         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
41261         has const.
41262
41263 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
41264
41265         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
41266         to avoid a warning.  Add back 'const' to inptr.
41267
41268 2001-01-20  Jim Meyering  <meyering@lucent.com>
41269
41270         Be sure that headers are checked before used in code compiled
41271         for the type checks.
41272         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
41273         In place of that, invoke jm_CHECK_ALL_TYPES.
41274         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
41275         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
41276         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
41277         The check for ssize_t was mistakenly run before the test for unistd.h.
41278
41279         The configure-time check for stdbool.h was missing.
41280         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
41281         (jm_PREREQ_HASH): New function.
41282
41283 2001-01-17  Jim Meyering  <meyering@lucent.com>
41284
41285         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
41286         for autoconf-2.49c.
41287         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
41288
41289 2001-01-16  Jim Meyering  <meyering@lucent.com>
41290
41291         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
41292         From Bruno Haible.
41293
41294 2001-01-14  Jim Meyering  <meyering@lucent.com>
41295
41296         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
41297         foo and bar.  Create conftestdir/ in the script, not in the C code.
41298         Remove directories in the script, not in the C code.
41299         Remove conftestdir{,2} before trying to create the directory.
41300         Make the entire configure script fail if the mkdir fails.
41301
41302 2001-01-14  Jim Meyering  <meyering@lucent.com>
41303
41304         * lib/rename.c: New file.  From Volker Borchert.
41305         Include stdlib.h, string.h or strings.h, and xalloc.h.
41306         Use strip_trailing_slashes rather than open-coding it.
41307
41308 2001-01-03  Paul Eggert  <eggert@twinsun.com>
41309
41310         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
41311
41312 2001-01-03  Jim Meyering  <meyering@lucent.com>
41313
41314         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
41315         of local `inptr' to avoid warning with some system declarations of
41316         iconv.
41317
41318 2001-01-02  Volker Borchert  <bt@teknon.de>
41319
41320         * m4/rename.m4: New file.
41321         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
41322
41323 2001-01-01  Jim Meyering  <meyering@lucent.com>
41324
41325         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
41326         even on systems with utmpx.h.  It's necessary for the declaration of
41327         utmp's ut_user member.  Reported by Andreas Jaeger.
41328
41329         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
41330         available. They are required for the declarations of getgrgid and
41331         getpwuid resp.
41332         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
41333         Reported by Andreas Jaeger.
41334
41335 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
41336
41337         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
41338         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
41339         so `make install' also works in VPATH builds.
41340
41341 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
41342
41343         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
41344         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
41345         can be used in subdirectories.
41346
41347 2000-12-29  Paul Eggert  <eggert@twinsun.com>
41348
41349         * lib/modechange.c: Do not assume that mode_t uses the
41350         traditional octal encoding.  E.g. "chmod 1 FOO" should set
41351         the other-execute bit of FOO even if S_IXOTH != 1.
41352
41353         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
41354         WOTH, XOTH, ALLM): New macros.
41355         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
41356          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
41357         Use them.
41358         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
41359         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
41360         (mode_compile):
41361         No need to use uintmax_t; unsigned long is long enough.
41362         Don't bother to get suffix since we don't use it.
41363
41364 2000-12-26  Jim Meyering  <meyering@lucent.com>
41365
41366         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
41367         better with autoheader.
41368
41369 2000-12-24  Jim Meyering  <meyering@lucent.com>
41370
41371         * lib/hash.c (is_prime): Return explicit boolean values.
41372         (hash_get_first): Return NULL to appease Irix5.6's 89.
41373         Reported by Nelson Beebe.
41374
41375 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
41376
41377         * lib/localcharset.c (locale_charset): Add support for Win32.
41378
41379 2000-12-18  Paul Eggert  <eggert@twinsun.com>
41380
41381         * lib/physmem.h, lib/physmem.c: New files.
41382
41383         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
41384         (noinst_HEADERS): Add physmem.h.
41385
41386         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
41387         't' for compatibility with Solaris 8 sort.
41388
41389 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
41390
41391         * lib/config.charset: Add support for BeOS.
41392
41393 2000-12-17  Jim Meyering  <meyering@lucent.com>
41394
41395         * m4/dos.m4 (jm_AC_DOS): New file and macro.
41396         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
41397
41398 2000-12-16  Jim Meyering  <meyering@lucent.com>
41399
41400         This bug had a serious impact on chown: `chown N:M FILE' (for integer
41401         N and M) would have treated it like `chown N:N FILE'.
41402
41403         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
41404
41405 2000-12-16  Jim Meyering  <meyering@lucent.com>
41406
41407         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
41408         SHELLS_FILE to a file name that's useful on djgpp systems.
41409         Include stdlib.h.
41410         (ADDITIONAL_DEFAULT_SHELLS): Define.
41411         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
41412         Based mostly on a patch from Prashant TR.
41413
41414 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
41415
41416         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
41417         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
41418         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
41419
41420 2000-12-08  Andreas Schwab  <schwab@suse.de>
41421
41422         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
41423         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
41424
41425 2000-12-07  Jim Meyering  <meyering@lucent.com>
41426
41427         * lib/stripslash.c (ISSLASH): Define.
41428         (strip_trailing_slashes): Use ISSLASH rather than comparing against
41429         `/'.
41430         From Prashant TR.
41431
41432         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
41433         (dir_name_r): Declare this function as static.
41434         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
41435         manifest itself on a name containing a mix of slashes and
41436         backslashes.
41437         Make this function work with names starting with a DOS-style
41438         drive letter and colon prefix.
41439         (dir_name): Append `.' if necessary.
41440         Based mostly on patches from Prashant TR and Eli Zaretskii.
41441
41442         * lib/dirname.h (dir_name_r): Remove prototype.
41443
41444 2000-12-06  Paul Eggert  <eggert@twinsun.com>
41445
41446         * m4/off_t-format.m4: Remove this file.
41447         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
41448
41449 2000-12-06  Jim Meyering  <meyering@lucent.com>
41450
41451         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
41452         replacement strtoull, we may well need the replacement strtoul, too.
41453         Check for declarations of strtoul and strtoull.
41454         Check for strtol.  Mainly as a cue to cause automake to include
41455         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
41456         Check for limits.h -- strtol.c needs it.
41457
41458 2000-12-05  Jim Meyering  <meyering@lucent.com>
41459
41460         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
41461
41462 2000-12-04  Jim Meyering  <meyering@lucent.com>
41463
41464         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
41465         Also include memory.h, stdlib.h, unistd.h if appropriate.
41466         Reported by Andreas Jaeger (conflicting declaration of malloc).
41467
41468 2000-12-02  Jim Meyering  <meyering@lucent.com>
41469
41470         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
41471         * m4/jm-macros.m4 (jm_MACROS): require it.
41472
41473 2000-12-02  Jim Meyering  <meyering@lucent.com>
41474
41475         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
41476
41477 2000-12-01  Paul Eggert  <eggert@twinsun.com>
41478
41479         * lib/memrchr.c: Include <config.h> before any system include file.
41480
41481 2000-11-30  Jim Meyering  <meyering@lucent.com>
41482
41483         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
41484
41485 2000-11-30  Jim Meyering  <meyering@lucent.com>
41486
41487         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
41488
41489 2000-11-29  Paul Eggert  <eggert@twinsun.com>
41490
41491         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
41492
41493 2000-11-26  Jim Meyering  <meyering@lucent.com>
41494
41495         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
41496
41497 2000-11-22  Paul Eggert  <eggert@twinsun.com>
41498
41499         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
41500         size of (size_t) -1; it's not portable.
41501
41502 2000-11-17  Jim Meyering  <meyering@lucent.com>
41503
41504         * lib/strstr.c: Update from GNU libc.
41505
41506 2000-11-17  Akim Demaille  <akim@epita.fr>
41507
41508         * lib/obstack.h: Formatting changes.
41509         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
41510         prevent type checking.
41511         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
41512         cast the value to (void *): assigning a `foo *' to a `void *'
41513         variable is valid.
41514         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
41515
41516 2000-11-16  Jim Meyering  <meyering@lucent.com>
41517
41518         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
41519
41520 2000-11-11  Jim Meyering  <meyering@lucent.com>
41521
41522         * lib/error.c: Add a couple #includes, merging from GNU libc version.
41523
41524 2000-11-10  Jim Meyering  <meyering@lucent.com>
41525
41526         * lib/obstack.h: Update from GNU libc.
41527         * lib/obstack.c: Likewise.
41528
41529 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
41530
41531         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
41532
41533 2000-11-06  Paul Eggert  <eggert@twinsun.com>
41534
41535         * lib/getusershell.c (setusershell): Use rewind rather than
41536         fseek/fseeko, to avoid configuration hassles with fseeko.
41537         Don't bother opening SHELLS_FILE if shellstream is NULL;
41538         it's not necessary.
41539
41540 2000-11-05  Jim Meyering  <meyering@lucent.com>
41541
41542         * lib/makepath.h (make_dir): Declare.
41543         * lib/makepath.c (make_dir): Remove `static' attribute.
41544         Tweak a comment.
41545
41546 2000-11-04  Jim Meyering  <meyering@lucent.com>
41547
41548         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
41549
41550 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
41551
41552         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
41553         last one in a bucket, advance to the next bucket.
41554
41555 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
41556
41557         * lib/fnmatch.c: Do not comment out all the code if we are using
41558         the GNU C library, because in some cases we are replacing buggy
41559         code in the GNU C library itself.
41560
41561 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
41562
41563         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
41564         (regex_compile): Catch bogus \(\1\).
41565
41566 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41567
41568         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
41569         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
41570         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
41571
41572 2000-10-30  Paul Eggert  <eggert@twinsun.com>
41573
41574         * lib/error.h, getline.h, modechange.h:
41575         Remove "2000" from Copyright line, as the file hasn't been
41576         changed this year other than in the copyright notice.
41577
41578         * lib/xalloc.h: Add "2000" to Copyright line, as this file
41579         was changed this year.
41580
41581 2000-10-29  Jim Meyering  <meyering@lucent.com>
41582
41583         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
41584         renaming.
41585         * m4/ls-mntd-fs.m4: Likewise
41586
41587 2000-10-29  Jim Meyering  <meyering@lucent.com>
41588
41589         * lib/xstat.in: Fix grammar in comment.
41590
41591 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
41592
41593         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
41594         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
41595         doesn't define __restrict_arr.
41596
41597 2000-10-28  Jim Meyering  <meyering@lucent.com>
41598
41599         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
41600         (jm_PREREQ_MEMCHR): New function.
41601
41602 2000-10-28  Jim Meyering  <meyering@lucent.com>
41603
41604         * lib/memchr.c: Update from libc.
41605         Adjust for portability:
41606         [HAVE_STDLIB_H]: Include stdlib.h.
41607         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
41608         Undef __memchr, too.
41609         [!weak_alias]: Define __memchr to memchr.
41610
41611         * lib/regex.c: Update from libc.
41612         * lib/regex.h: Likewise.
41613         * lib/getopt1.c: Likewise.
41614         * lib/memcmp.c: Likewise.
41615
41616         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
41617         Avoid using fseek, when possible -- it's broken by design.
41618         Patch by Ulrich Drepper.
41619
41620 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
41621
41622         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
41623         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
41624         Giving in to popular pressure to shut up the compiler with casts.
41625
41626 2000-10-26  Jim Meyering  <meyering@lucent.com>
41627
41628         * lib/strftime.c: Update from libc.
41629
41630 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
41631
41632         * regex.c: More `unsigned char' -> `re_char' changes.
41633         Also change several `int' into `re_wchar_t'.
41634         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
41635         (PUSH_FAILURE_POINTER): Don't cast any more.
41636         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
41637         We want GCC to complain, since this piece of code makes
41638         re_match non-reentrant, which *should* be fixed.
41639         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
41640         (EXTEND_BUFFER): Use RETALLOC.
41641         (SET_LIST_BIT): Don't cast.
41642         (re_wchar_t): New type.
41643         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
41644         that those two functions will always properly return.
41645         (IMMEDIATE_QUIT_CHECK): Cast to void.
41646         (analyse_first): Use recursion rather than an explicit stack.
41647         (re_compile_fastmap): Can't fail anymore.
41648         (re_search_2): Don't check re_compile_fastmap for failure.
41649         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
41650         Now also sets the new value (passed in a new argument).
41651         (re_match_2_internal): Use it.
41652         Also, use a new var `reg' of type size_t when looping through regs
41653         rather than reuse the inappropriate `mcnt'.
41654
41655 2000-10-25  Jim Meyering  <meyering@lucent.com>
41656
41657         * lib/obstack.c: Update from libc.
41658
41659 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
41660
41661         * regex.c (regex_compile): Change the way of handling a range from
41662         a char less than 256 to a char not less than 256.
41663
41664 2000-10-24  Andrew Innes  <andrewi@gnu.org>
41665
41666         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
41667         NT-Emacs only.
41668         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
41669         so that re_search functions only quit when callers expect them to.
41670
41671 2000-10-23  Jim Meyering  <meyering@lucent.com>
41672
41673         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
41674         wrong.  That set_locale call must not have any side effects.
41675         From Paul Eggert.
41676
41677 2000-10-22  Jim Meyering  <meyering@lucent.com>
41678
41679         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
41680         [CYCLIC]: Remove now-unused definition.
41681
41682         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
41683         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
41684         Suggestion from Ulrich Drepper.
41685
41686 2000-10-21  Jim Meyering  <meyering@lucent.com>
41687
41688         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
41689         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
41690         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
41691
41692 2000-10-21  Jim Meyering  <meyering@lucent.com>
41693
41694         * lib/dirname.c (memrchr): Declare if necessary.
41695         (dir_name): Remove the restriction that there be no
41696         trailing slashes.  Now, this code skips past them, effectively
41697         ignoring them.
41698         [TEST_DIRNAME] (main): New unit tests.
41699
41700         * lib/memrchr.c: New file from GNU libc.
41701         Undef __memrchr, too.
41702         [!weak_alias]: Define __memrchr to memrchr.
41703         Guard weak_alias use with `#ifdef weak_alias'.
41704
41705 2000-10-21  Jim Meyering  <meyering@lucent.com>
41706
41707         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
41708         (dir_name): Use dir_name_r.
41709         * lib/dirname.h (dir_name_r): Declare it.
41710
41711 2000-10-17  Jim Meyering  <meyering@lucent.com>
41712
41713         * lib/quote.h (PARAMS): Define and use.
41714         Reported by Akim Demaille.
41715
41716         * lib/getopt.c: Update from libc.
41717
41718 2000-10-16  Jim Meyering  <meyering@lucent.com>
41719
41720         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
41721         setlocale.
41722         From Jan Fedak.
41723
41724 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
41725
41726         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
41727
41728 2000-09-25  Jim Meyering  <meyering@lucent.com>
41729
41730         * lib/md5.h (rol): Define (from GnuPG).
41731
41732         * lib/sha.c: Give credit (GnuPG) where due.
41733         (M): Use rol rather than open-coding it.
41734         Add a FIXME comment.
41735
41736 2000-09-21  Jim Meyering  <meyering@lucent.com>
41737
41738         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
41739         Reported by Michael Stone.
41740
41741 2000-09-20  Jim Meyering  <meyering@lucent.com>
41742
41743         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
41744         (noinst_HEADERS): Add sha.h.
41745         Based on code from Scott G. Miller and from GnuPG.
41746
41747 2000-09-18  Jim Meyering  <meyering@lucent.com>
41748
41749         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
41750         LIBS. Otherwise, everyone ends up linking with -lelf for some
41751         configurations.
41752         Reported by Mike Stone.
41753
41754 2000-09-15  Jim Meyering  <meyering@lucent.com>
41755
41756         * lib/regex.c: Update from libc.
41757
41758 2000-09-10  Jim Meyering  <meyering@lucent.com>
41759
41760         * lib/getopt.c (_getopt_internal): Update from glibc.
41761
41762 2000-09-09  Jim Meyering  <meyering@lucent.com>
41763
41764         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
41765         think it should be used as a general replacement for isascii.
41766         * lib/fnmatch.c: Likewise.
41767         * lib/mbswidth.c: Likewise
41768         * lib/regex.c: Likewise.
41769
41770         Don't use atoi.
41771         * lib/userspec.c: Include sys/param.h and limits.h.
41772         Include xstrtol.h.
41773         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
41774         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
41775         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
41776         UID, GID.  Check range.
41777
41778 2000-09-06  Jim Meyering  <meyering@lucent.com>
41779
41780         * lib/getopt.c (_getopt_internal): Update from glibc.
41781
41782 2000-08-30  Jim Meyering  <meyering@lucent.com>
41783
41784         * lib/strftime.c: Merge in changes from GNU libc.
41785
41786 2000-08-26  Jim Meyering  <meyering@lucent.com>
41787
41788         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
41789         * m4/fpending.m4: New file.
41790
41791 2000-08-26  Jim Meyering  <meyering@lucent.com>
41792
41793         * lib/closeout.c: Include "__fpending.h".
41794         (close_stdout_status): Return right away if there's nothing to flush.
41795
41796         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
41797         * lib/__fpending.c: New file.
41798         * lib/__fpending.h: New file.
41799
41800 2000-08-20  Jim Meyering  <meyering@lucent.com>
41801
41802         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
41803         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
41804         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
41805
41806 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
41807
41808         Improve fileutils installation on systems where running
41809         programs (like install) can't be unlinked.
41810         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
41811         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
41812
41813 2000-08-07  Paul Eggert  <eggert@twinsun.com>
41814
41815         Standardize on "memory exhausted" instead of "Memory exhausted"
41816         or "virtual memory exhausted".
41817         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
41818         "virtual memory exhausted".
41819         * lib/same.c (same_name): Invoke xalloc_die instead of printing
41820         our own message.
41821         * lib/userspec.c (parse_user_spec): Likewise.
41822         * lib/bumpalloc.h: comment fix
41823         * lib/same.c, userspec.c: Include xalloc.h.
41824
41825         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
41826         not char *const and pointing to a constant array.
41827         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
41828         (xrealloc): Comment fix.
41829
41830         * lib/userspec.c (parse_user_spec):
41831         Don't translate a message until just before returning,
41832         to avoid unnecessary translation.
41833
41834 2000-08-07  Jim Meyering  <meyering@lucent.com>
41835
41836         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
41837         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
41838         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
41839         getgroups.c, gethostname.c, getopt.h, group-member.c,
41840         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
41841         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
41842         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
41843         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
41844         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
41845         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
41846         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
41847         yesno.c: Back out Copyright date changes for each file with no change
41848         this year.  This eases coordination with other programs using the same
41849         source code modules.  From Paul Eggert.
41850
41851 2000-08-06  Paul Eggert  <eggert@twinsun.com>
41852
41853         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
41854         not char, for compatibility with glibc 2.1.3 strftime.c.
41855
41856 2000-08-03  Greg McGary  <greg@mcgary.org>
41857
41858         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
41859         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
41860         (EXTEND_BUFFER): Use them.
41861
41862 2000-08-01  Jim Meyering  <meyering@lucent.com>
41863
41864         * lib/dirname.c (ISSLASH): Define.
41865         (BACKSLASH_IS_PATH_SEPARATOR): Define.
41866         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
41867         both `\' and `/' may be use as path separators.
41868         Based on a patch from Prashant TR.
41869
41870 2000-07-31  Paul Eggert  <eggert@twinsun.com>
41871
41872         * lib/quotearg.c (quotearg_n_options): Don't make the initial
41873         slot vector a constant, since it might get modified.
41874
41875 2000-07-31  Jim Meyering  <meyering@lucent.com>
41876
41877         * lib/xmalloc.c: Use `virtual memory exhausted', not
41878         `Memory exhausted'.
41879         * lib/obstack.c (print_and_abort): Likewise.
41880
41881 2000-07-30  Paul Eggert  <eggert@twinsun.com>
41882
41883         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
41884         buffer, so that the caller can always quote one small
41885         component of a "memory exhausted" message in slot 0.
41886         From a suggestion by Jim Meyering.
41887
41888 2000-07-30  Jim Meyering  <meyering@lucent.com>
41889
41890         * lib/makepath.c (make_path): Quote the other instance, too.
41891
41892         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
41893         (STATIC_BUF_SIZE): Define.
41894         (quotearg_n_options): Use only statically allocated storage when
41895         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
41896         than STATIC_BUF_SIZE.
41897
41898 2000-07-29  Jim Meyering  <meyering@lucent.com>
41899
41900         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
41901         * lib/dirname.c (dir_name): Likewise.
41902
41903         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
41904         `/'.
41905
41906         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
41907         (dir_name): Assert that there are no trailing slashes.
41908
41909 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
41910
41911         * lib/mbswidth.h (mbswidth): Add a flags argument.
41912         (mbswidth): New declaration.
41913         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
41914         * lib/mbswidth.c (mbswidth): Add a flags argument.
41915         (mbsnwidth): New function.
41916
41917 2000-07-24  Jim Meyering  <meyering@lucent.com>
41918
41919         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
41920
41921 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41922
41923         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
41924
41925 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41926
41927         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
41928         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
41929         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
41930         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
41931         invoke multibyte primitives.
41932
41933 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41934
41935         * lib/quotearg.c:
41936         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
41937         so that mbstate_t is always defined.
41938
41939         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
41940         be 1 in at least one GCC installation, and this configuration
41941         error is likely to be common.  Ignoring MB_LEN_MAX hurts
41942         performance on hosts that have mbrtowc but have only unibyte
41943         locales, but I assume these hosts are rare.
41944
41945 2000-07-23  Paul Eggert  <eggert@twinsun.com>
41946
41947         * lib/mbswidth.c (_XOPEN_SOURCE):
41948         Don't define; this causes problems on Solaris 7.
41949         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
41950
41951 2000-07-23  Jim Meyering  <meyering@lucent.com>
41952
41953         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
41954         too: getgrgid, getpwuid, getuid.
41955
41956 2000-07-23  Jim Meyering  <meyering@lucent.com>
41957
41958         * lib/basename.c (base_name): Add an assertion.
41959
41960 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
41961
41962         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
41963         shadow its mbsinit function.
41964
41965 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41966
41967         * lib/mbswidth.h: New file.
41968         * lib/mbswidth.c: New file.
41969         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
41970         (noinst_HEADERS): Add mbswidth.h.
41971
41972 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
41973
41974         * lib/config.charset: Add support for FreeBSD. Improve support for
41975         HP-UX and IRIX 6.
41976
41977 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
41978
41979         * m4/mbswidth.m4: New file.
41980         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
41981
41982 2000-07-15  Jim Meyering  <meyering@lucent.com>
41983
41984         * lib/makepath.c: Include quote.h.
41985         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
41986         corresponding argument in a `quote (...)' call.
41987         Give better diagnostics.
41988
41989         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
41990         (noinst_HEADERS): Add quote.h.
41991
41992         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
41993         from tar's src/misc.c.
41994         * lib/quote.h: New file.  Prototypes for same.
41995
41996 2000-07-14  Paul Eggert  <eggert@twinsun.com>
41997
41998         From a suggestion by Bruno Haible.
41999         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
42000         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
42001         to decide whether to define the BeOS workaround macro;
42002         this adjusts to the change to AC_MBSTATE_T.
42003
42004 2000-07-14  Jim Meyering  <meyering@lucent.com>
42005
42006         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
42007         jm_AC_TYPE_UINTMAX_T.
42008
42009 2000-07-13  Paul Eggert  <eggert@twinsun.com>
42010
42011         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
42012
42013         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
42014         quotearg_buffer_restyled): Add support for
42015         clocale_quoting_style.  Undo previous change to
42016         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
42017         and "{RIGHT QUOTATION MARK}" msgids.
42018
42019 2000-07-10  Paul Eggert  <eggert@twinsun.com>
42020
42021         From a suggestion by Bruno Haible.
42022         * m4/mbstate_t.m4 (AC_MBSTATE_T):
42023         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
42024         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
42025         and mbstate_t, to a single-part test that simply defines mbstate_t.
42026         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
42027         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
42028
42029 2000-07-10  Jim Meyering  <meyering@lucent.com>
42030
42031         * m4/strerror_r.m4: Mirror the correction made in autoconf.
42032
42033         * m4/gnu-source.m4: Output to confdefs.h directly.
42034         Suggestion from Akim Demaille.
42035
42036 2000-07-09  Paul Eggert  <eggert@twinsun.com>
42037
42038         The old behavior of quoting `like this' doesn't look good with
42039         newer, ISO-style fonts.  See:
42040         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
42041
42042         Instead, quote "like this" by default.  Let the translator
42043         tailor the locale-specific quoting behavior by providing
42044         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
42045
42046         * lib/quotearg.c (N_): New macro.
42047         (gettext_default): New function.
42048         (quotearg_buffer_restyled): Use
42049         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
42050         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
42051
42052 2000-07-09  Jim Meyering  <meyering@lucent.com>
42053
42054         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
42055         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
42056
42057         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
42058         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
42059
42060 2000-07-09  Jim Meyering  <meyering@lucent.com>
42061
42062         * lib/Most files: Update copyright dates to include 2000.
42063
42064 2000-07-08  Jim Meyering  <meyering@lucent.com>
42065
42066         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
42067         if not defined.
42068         (xgethostname): Remove now-unnecessary #ifdef.
42069         Move declaration of `err' into loop where it's used.
42070
42071 2000-07-05  Paul Eggert  <eggert@twinsun.com>
42072         and Bruno Haible  <haible@clisp.cons.org>
42073
42074         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
42075         only if the test for an object-type mbstate_t fails.  This
42076         prevents us from mistakenly reporting that mbstate_t is a
42077         system object type after we "#define mbstate_t int" to work
42078         around its lack.
42079
42080 2000-07-05  Paul Eggert  <eggert@twinsun.com>
42081         and Bruno Haible  <haible@clisp.cons.org>
42082
42083         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
42084
42085 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
42086
42087         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
42088         to strerror_r.
42089         Include <ctype.h> for use of isalpha.
42090
42091 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
42092
42093         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
42094         by allocating a larger buffer. Test the gethostname return value for
42095         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
42096         returns an error and ENAMETOOLONG isn't defined.
42097
42098 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
42099
42100         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
42101         dimension.
42102
42103 2000-07-04  Jim Meyering  <meyering@lucent.com>
42104
42105         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
42106         of the deprecated AC_CHECKING.
42107
42108 2000-07-04  Jim Meyering  <meyering@lucent.com>
42109
42110         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
42111         Reported by Bruno Haible.
42112
42113 2000-07-04  Jim Meyering  <meyering@lucent.com>
42114
42115         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
42116         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
42117         lacks mbrtowc.
42118
42119 2000-07-03  Paul Eggert  <eggert@twinsun.com>
42120
42121         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
42122         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
42123
42124 2000-07-03  Paul Eggert  <eggert@twinsun.com>
42125         and Bruno Haible  <haible@clisp.cons.org>
42126
42127         * lib/quotearg.c (mbrtowc):
42128         Assign to *pwc, and return 1 only if result is nonzero.
42129         (iswprint): Use ISPRINT when substituting our own mbrtowc.
42130
42131 2000-07-03  Jim Meyering  <meyering@lucent.com>
42132
42133         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
42134
42135 2000-07-03  Jim Meyering  <meyering@lucent.com>
42136
42137         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
42138         This is necessary to get a definition of e.g., UTMP_FILE on
42139         HP-UX 10.20.
42140         From Bob Proulx.
42141
42142 2000-07-02  Jim Meyering  <meyering@lucent.com>
42143
42144         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
42145
42146         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
42147         AC_LIBOBJ(function_name).
42148         * m4/chown.m4: Likewise.
42149         * m4/fnmatch.m4: Likewise.
42150         * m4/ftruncate.m4: Likewise.
42151         * m4/getgroups.m4: Likewise.
42152         * m4/getline.m4: Likewise.
42153         * m4/group-member.m4: Likewise.
42154         * m4/jm-macros.m4: Likewise.
42155         * m4/lstat.m4: Likewise.
42156         * m4/malloc.m4: Likewise.
42157         * m4/memcmp.m4: Likewise.
42158         * m4/nanosleep.m4: Likewise.
42159         * m4/putenv.m4: Likewise.
42160         * m4/realloc.m4: Likewise.
42161         * m4/regex.m4: Likewise.
42162         * m4/stat.m4: Likewise.
42163         * m4/strftime.m4: Likewise.
42164
42165 2000-07-02  Jim Meyering  <meyering@lucent.com>
42166
42167         * lib/quotearg.c (mbstate_t): Don't define here.
42168
42169 2000-07-02  Jim Meyering  <meyering@lucent.com>
42170
42171         * lib/nanosleep.c (SIGCONT): Define if not already defined.
42172
42173 2000-07-01  Jim Meyering  <meyering@lucent.com>
42174
42175         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
42176
42177 2000-07-01  Jim Meyering  <meyering@lucent.com>
42178
42179         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
42180         problem.
42181
42182 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
42183
42184         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
42185         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
42186
42187 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
42188
42189         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
42190         per change in ../m4/ls-mntd-fs.m4.
42191         (read_filesystem_list): Ignore symbolic links.
42192
42193 2000-06-29  Jim Meyering  <meyering@lucent.com>
42194
42195         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
42196         for declaration of strcmp.
42197
42198         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
42199
42200         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
42201         Avoid warning by casting result to `char *' to remove `const'.
42202
42203 2000-06-28  Jim Meyering  <meyering@lucent.com>
42204
42205         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
42206         included by quotearg.c, for which we perform this test.  From
42207         Bruno Haible.
42208
42209 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42210
42211         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
42212         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
42213         <utmpx.h> exists, put readutmp.o into LIBOBJS.
42214
42215 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
42216
42217         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
42218
42219 2000-06-26  Paul Eggert  <eggert@twinsun.com>
42220
42221         savedir now sets errno on failure and invokes xmalloc to get memory.
42222         Fix a couple of other minor bugs while we're at it.
42223
42224         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
42225         (NAMLEN): Remove macro.
42226         (malloc, realloc): Remove decls.
42227         (stpcpy): Likewise.
42228         ("xalloc.h"): Include.
42229         (NAME_SIZE_DEFAULT): New macro.
42230         (savedir): Use xmalloc / xrealloc to allocate memory.
42231         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
42232         Skip "" directory entries.
42233         Use strlen to calculate directory entry length, since the old method
42234         is rarely used these days and isn't worth supporting.
42235         Don't use a pointer after freeing it.
42236         Check for integer overflow when calculating allocation size.
42237         Use memcpy to copy entries, instead of stpcpy.
42238         Set errno properly when returning NULL.
42239         Check for readdir error.
42240
42241 2000-06-26  Jim Meyering  <meyering@lucent.com>
42242
42243         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
42244
42245 2000-06-25  Jim Meyering  <meyering@lucent.com>
42246
42247         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
42248         Linux header bug when _XOPEN_SOURCE is defined to 500.
42249
42250 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42251
42252         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
42253         deficiency.
42254
42255 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
42256
42257         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
42258         Include xalloc.h.
42259         Don't include <stdlib.h>.  Don't declare malloc, realloc.
42260
42261 2000-06-24  Jim Meyering  <meyering@lucent.com>
42262
42263         * m4/strerror_r.m4: Revive this file -- to try out an experimental
42264         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
42265         for which strerror does return char*, but which lacks a conveniently
42266         accessible declaration of the function.  If the compile-test says
42267         strerror_r doesn't work, then resort to a `run'-test that works on
42268         BeOS and segfaults on DEC Unix.
42269
42270 2000-06-24  Jim Meyering  <meyering@lucent.com>
42271
42272         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
42273
42274 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42275
42276         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
42277         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
42278
42279 2000-06-23  Paul Eggert  <eggert@twinsun.com>
42280
42281         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
42282         (mbrtowc, mbstate_t): Define substitutes if
42283         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
42284         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
42285         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
42286
42287 2000-06-23  Jim Meyering  <meyering@lucent.com>
42288
42289         * m4/afs.m4: Add missing AC_MSG_RESULT.
42290         Reported by Bruno Haible.
42291
42292         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
42293         Suggestion from Bruno Haible.
42294
42295 2000-06-23  Jim Meyering  <meyering@lucent.com>
42296
42297         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
42298
42299 2000-06-21  Jim Meyering  <meyering@lucent.com>
42300
42301         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
42302
42303 2000-06-21  Jim Meyering  <meyering@lucent.com>
42304
42305         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
42306         (noinst_HEADERS): Add getstr.h.
42307
42308         * lib/getline.c (getstr): Move into a separate file.
42309         * lib/getstr.c (getstr): New file, extracted from getline.c, with
42310         the following changes: new parameter, delim2; both delim[12]
42311         parameters have type `int', not `char'.  The latter would lose
42312         with 8-bit delimiters.
42313         * lib/getstr.h: New file.
42314
42315 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42316
42317         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
42318         than 1024, return a memory chunk of least possible size, instead
42319         of size PATH_MAX + 2. In the loop, increment the size proportionally.
42320         Use free/xmalloc instead of xrealloc to avoid copying for very long
42321         paths.
42322
42323 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42324
42325         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
42326         the empty string.
42327
42328 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
42329
42330         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
42331         address, not strdup.  Include <stdlib.h> and don't declare free().
42332
42333 2000-06-19  Jim Meyering  <meyering@lucent.com>
42334
42335         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
42336
42337 2000-06-18  Jim Meyering  <meyering@lucent.com>
42338
42339         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
42340
42341         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
42342         `checking whether...' message to be consistent with that of the
42343         lstat test.
42344
42345 2000-06-18  Jim Meyering  <meyering@lucent.com>
42346
42347         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
42348         Besides, these days every porting target provides a mkdir function.
42349
42350         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
42351         needed. (this snippet comes from src/system.h).
42352
42353 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
42354
42355         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
42356
42357 2000-06-15  Paul Eggert  <eggert@twinsun.com>
42358
42359         * lib/human.c (adjust_value): New function.
42360         (human_readable_inexact): Apply rounding style even when
42361         printing approximate values.
42362
42363 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42364
42365         * lib/human.c (human_readable_inexact): Allow an input block
42366         size that is not a multiple of the output block size, and vice versa.
42367         Reported by Piergiorgio Sartor.
42368
42369 2000-06-14  Paul Eggert  <eggert@twinsun.com>
42370
42371         * lib/getdate.y (get_date): Apply relative times after time
42372         zone indicator, not before.  Reported by Todd A. Jacobs.
42373
42374 2000-06-13  Jim Meyering  <meyering@lucent.com>
42375
42376         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
42377
42378         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
42379
42380 2000-06-12  Paul Eggert  <eggert@twinsun.com>
42381
42382         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
42383
42384 2000-06-12  Jim Meyering  <meyering@lucent.com>
42385
42386         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
42387         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
42388         optional argument.
42389         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
42390         the optional argument, `lib'.
42391
42392 2000-06-08  Jim Meyering  <meyering@lucent.com>
42393
42394         * m4/largefile.m4: Remove file (now that it's part of autoconf).
42395
42396 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42397
42398         Rewrite largefile configuration so that we don't need to run
42399         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
42400         AC_CANONICAL_HOST in configure.in -- jmm]
42401
42402         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
42403         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
42404         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
42405         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
42406         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
42407         All uses changed.
42408         Instead of inspecting the output of getconf, try to compile the
42409         test program without and with the macro definition.
42410         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
42411         for getconf.  Instead, check for the needed flags by compiling
42412         test programs.
42413
42414 2000-06-04  Paul Eggert  <eggert@twinsun.com>
42415
42416         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
42417
42418 2000-06-04  Jim Meyering  <meyering@lucent.com>
42419
42420         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
42421         SunOS 4.1.4 for which gid_t is an unsigned type.
42422
42423 2000-06-03  Jim Meyering  <meyering@lucent.com>
42424
42425         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
42426         now that autoconf requires that.
42427
42428         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
42429         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
42430         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
42431
42432 2000-06-03  Jim Meyering  <meyering@lucent.com>
42433
42434         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
42435
42436 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42437
42438         * m4/glibc21.m4: New file.
42439         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
42440
42441 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
42442
42443         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
42444         newer, don't install charset.alias.
42445         * lib/config.charset: Change the Linux/glibc rules so they become empty
42446         on glibc-2.1 or newer.
42447
42448 2000-06-02  Jim Meyering  <meyering@lucent.com>
42449
42450         * lib/mountlist.c: Back out last change.  Instead, do this...
42451         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
42452         me_dummy member using the same `ignore'-testing code.
42453         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
42454         fs_type strings.
42455         From Mark D. Roth.
42456
42457 2000-05-29  Jim Meyering  <meyering@lucent.com>
42458
42459         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
42460         mounts with the `ignore' attribute.  Based on a patch from
42461         Mark D. Roth.
42462
42463 2000-05-28  Jim Meyering  <meyering@lucent.com>
42464
42465         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
42466         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42467         * m4/stat.m4: Likewise.
42468         * m4/lstat.m4: Likewise.
42469         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
42470
42471         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
42472         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
42473
42474 2000-05-26  Jim Meyering  <meyering@lucent.com>
42475
42476         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
42477
42478 2000-05-24  Jim Meyering  <meyering@lucent.com>
42479
42480         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
42481         autoconf requires that.
42482         * m4/lib-check.m4: Likewise.
42483         * m4/jm-macros.m4: Likewise.
42484         * m4/strftime.m4: Likewise.
42485
42486         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
42487         AC_CHECK_DECLS, now that autoconf requires that.
42488
42489 2000-05-22  Jim Meyering  <meyering@lucent.com>
42490
42491         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42492         * m4/lstat.m4: Likewise.
42493
42494 2000-05-22  Jim Meyering  <meyering@lucent.com>
42495
42496         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
42497
42498 2000-05-20  Jim Meyering  <meyering@lucent.com>
42499
42500         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
42501         (jm_PREREQ): Use it.
42502
42503 2000-05-18  Jim Meyering  <meyering@lucent.com>
42504
42505         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
42506         back, too, since it may have been modified by allocate_entry.
42507         (hash_delete): Rewrite to use neither the assignment operator
42508         nor the comma operator in an if-expression.
42509
42510 2000-05-15  Paul Eggert  <eggert@twinsun.com>
42511
42512         * lib/closeout.c:
42513         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
42514         Remove; no longer needed.
42515         "quotearg.h": Add include.
42516         (file_name): Do not bother to explicitly initialize to NULL; it's less
42517         efficient on some hosts.
42518         (close_stdout_status): Remove test as to whether stdout was already
42519         closed; it breaks for the case "echo x | sort >&-".
42520         Quote file name colons.
42521         Do not assume that _("write error") lacks format strings.
42522
42523 2000-05-15  Jim Meyering  <meyering@lucent.com>
42524
42525         * lib/version-etc.c (version_etc_copyright): Update the copyright
42526         string used in all --version output.
42527
42528 2000-05-14  Jim Meyering  <meyering@lucent.com>
42529
42530         * lib/closeout.c (close_stdout_set_file_name): New function.
42531         (close_stdout_status): Use new file-scoped global.
42532         Return right away if fstat says the stdout file descriptor is invalid.
42533         * lib/closeout.h (close_stdout_set_file_name): Declare.
42534
42535 2000-05-10  Jim Meyering  <meyering@lucent.com>
42536
42537         * lib/closeout.c [default_exit_status]: New file-scoped variable.
42538         (close_stdout_set_status): New function.
42539         * lib/closeout.h (close_stdout_set_status): Declare.
42540
42541 2000-05-09  Jim Meyering  <meyering@lucent.com>
42542
42543         * m4/gettext.m4: Rename this...
42544         * m4/libintl.m4: ...to this.
42545
42546 2000-05-08  Jim Meyering  <meyering@lucent.com>
42547
42548         * lib/long-options.c: Don't include closeout.h.
42549         (parse_long_options): Don't call close_stdout for --version.
42550
42551 2000-05-06  Paul Eggert  <eggert@twinsun.com>
42552
42553         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
42554         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
42555         2.1.3 bug.  This avoids a clash when files like regex.c define
42556         _GNU_SOURCE.
42557
42558 2000-05-06  Jim Meyering  <meyering@lucent.com>
42559
42560         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
42561         (AC_REPLACE_FUNCS): Add strnlen.
42562
42563         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
42564         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
42565
42566         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
42567         AC_SEARCH_LIBS call for nanosleep.
42568         (LIB_NANOSLEEP): Set and AC_SUBST.
42569
42570 2000-05-06  Jim Meyering  <meyering@lucent.com>
42571
42572         * lib/strnlen.c: Undefine __strnlen and strnlen.
42573         [!weak_alias]: Define __strnlen to strnlen.
42574
42575         * lib/atexit.c: New file, from libiberty.
42576
42577 2000-05-06  Jim Meyering  <meyering@lucent.com>
42578
42579         * lib/closeout.c (close_stdout_status): Also check for errors on the
42580         stderr stream.
42581
42582 2000-05-05  Jim Meyering  <meyering@lucent.com>
42583
42584         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
42585         AC_SEARCH_LIBS call for clock_gettime.
42586         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
42587
42588         * m4/search-libs.m4: Update from autoconf.
42589
42590         su doesn't work on Solaris 2.6.
42591         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
42592         <shadow.h>.  Reported by Dragos Harabor.
42593
42594 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
42595
42596         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
42597         memcpy instead of xmalloc, xrealloc, path_concat.
42598         (locale_charset): Treat empty environment variables as absent.
42599         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
42600
42601 2000-05-04  Jim Meyering  <meyering@lucent.com>
42602
42603         * lib/getopt.c: Update from glibc.
42604         * lib/obstack.c: Likewise.
42605         * lib/obstack.h: Likewise.
42606         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
42607         file
42608
42609         * lib/regex.h: Likewise.
42610         * lib/strndup.c: Likewise.
42611         * lib/strnlen.c: New file, from glibc.
42612
42613 2000-05-03  Jim Meyering  <meyering@lucent.com>
42614
42615         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
42616
42617 2000-05-02  Paul Eggert  <eggert@twinsun.com>
42618
42619         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
42620         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
42621         compile-time test, rather than inspecting host and OS, to
42622         decide whether to define _LARGEFILE_SOURCE.
42623
42624 2000-05-01  Jim Meyering  <meyering@lucent.com>
42625
42626         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
42627
42628         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
42629         Based on a patch from Bruno Haible.
42630
42631 2000-05-01  Jim Meyering  <meyering@lucent.com>
42632
42633         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
42634
42635 2000-04-29  Jim Meyering  <meyering@lucent.com>
42636
42637         * lib/path-concat.c: Declare strdup only if it's not defined.
42638         * lib/canon-host.c: Likewise.
42639
42640 2000-04-28  Jim Meyering  <meyering@lucent.com>
42641
42642         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
42643         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
42644         is included first, then limits.h is included by locale.h by libintl.h.
42645         From John David Anglin.
42646
42647 2000-04-25  Jim Meyering  <meyering@lucent.com>
42648
42649         * lib/makepath.c (S_IRWXUGO): Define.
42650         (make_path): Always perform explicit chmod if MODE specifies any
42651         of the `special' permission bits.  Prompted by a bug report against
42652         install from Mate Wierdl and Joost van Baal.
42653
42654 2000-04-18  Jim Meyering  <meyering@lucent.com>
42655
42656         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
42657         (jm_PREREQ): Use it.
42658
42659 2000-04-18  Jim Meyering  <meyering@lucent.com>
42660
42661         * lib/README: New file.
42662
42663         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
42664         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
42665
42666 2000-04-17  Jim Meyering  <meyering@lucent.com>
42667
42668         Get it right :-)
42669         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
42670         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
42671         Suggestion from Akim Demaille.
42672
42673 2000-04-17  Jim Meyering  <meyering@lucent.com>
42674
42675         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
42676         the definition of it to rpl_strftime also defined-away the system's
42677         declaration.
42678
42679 2000-04-15  Jim Meyering  <meyering@lucent.com>
42680
42681         Use `C' to denote so-called `contiguous' files, the same way
42682         that tar does.
42683         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
42684         (ftypelet): Use S_ISCTG.
42685         From Michael Deutschmann.
42686
42687 2000-04-14  Jim Meyering  <meyering@lucent.com>
42688
42689         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
42690         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
42691         clobbered.
42692
42693 2000-04-14  Jim Meyering  <meyering@lucent.com>
42694
42695         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
42696
42697 2000-04-13  Jim Meyering  <meyering@lucent.com>
42698
42699         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
42700         AH_VERBATIM to insert required #ifndef into config.h.in.
42701         Suggestion from Akim Demaille.
42702
42703 2000-04-12  Jim Meyering  <meyering@lucent.com>
42704
42705         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
42706         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
42707         Christian Krackowizer.
42708
42709         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
42710         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
42711         (AC_SYS_LARGEFILE): Require.
42712         (AM_C_PROTOTYPES): Require.
42713
42714 2000-04-08  Jim Meyering  <meyering@lucent.com>
42715
42716         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
42717         names don't conflict.  Reported by Eli Zaretskii.
42718
42719 2000-04-07  Jim Meyering  <meyering@lucent.com>
42720
42721         * lib/putenv.c: Move inclusion of errno.h so it follows that of
42722         sys/types.h, to work around system header problems on AIX 3.2.5.
42723         From Bruno Haible.
42724
42725 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
42726
42727         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
42728         bug.  Deal with the different error behavior of Irix iconv.
42729
42730 2000-04-05  Paul Eggert  <eggert@twinsun.com>
42731
42732         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
42733         IRIX if the installer said otherwise.
42734
42735 2000-04-05  Jim Meyering  <meyering@lucent.com>
42736
42737         Portability tweaks required for ultrix4.3.
42738         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
42739         (jm_CHECK_DECLS): Add getutent to the list of functions.
42740         (_jm_DECL_HEADERS): Add utmpx.h.
42741         From John David Anglin.
42742
42743         * m4/strftime.m4: Back out the 2000-04-02 change.
42744         Instead of that change, simply undefine putenv in the test program.
42745
42746 2000-04-05  Jim Meyering  <meyering@lucent.com>
42747
42748         Portability tweaks required for ultrix4.3.
42749         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
42750         getutent.
42751         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
42752         * lib/canon-host.c: Declare strdup.
42753         * lib/path-concat.c: Likewise.
42754         From John David Anglin.
42755
42756 2000-04-04  Jim Meyering  <meyering@lucent.com>
42757
42758         Be more DOS 8.3-friendly.
42759         * lib/ref-add.sin: Renamed from ref-add.sed.in.
42760         * lib/ref-del.sin: Renamed from ref-del.sed.in.
42761         * lib/Makefile.am: Reflect renaming.
42762         Reported by Eli Zaretskii.
42763
42764         Use a temporary file name that won't clash with `charset.alias'
42765         in the DOS 8.3 name space.
42766         * lib/Makefile.am (charset_tmp): Define.
42767         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
42768         (uninstall-local): Likewise.
42769         Reported by Eli Zaretskii.
42770
42771 2000-04-03  Jim Meyering  <meyering@lucent.com>
42772
42773         * m4/gettext.m4: Fix typo in comment.
42774
42775         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
42776         textutils/configure.in).  Suggestion from Paul Eggert.
42777         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
42778
42779 2000-04-02  Paul Eggert  <eggert@twinsun.com>
42780
42781         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
42782         variable in the shell rather than using putenv, which isn't
42783         portable.  This avoids the configure-time inter-test dependency
42784         on the potentially-renamed putenv function.
42785
42786 2000-03-30  Paul Eggert  <eggert@twinsun.com>
42787
42788         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
42789         before checking struct stat.st_blksize, so that
42790         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
42791
42792 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42793
42794         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
42795         since strftime.c uses HAVE_STRFTIME to decide whether to use
42796         the underlying strftime.
42797
42798 2000-03-29  Paul Eggert  <eggert@twinsun.com>
42799
42800         * lib/time/strftime.c (my_strftime): Make sure we call the system
42801         strftime, not ourselves, when invoking the underlying strftime.
42802
42803 2000-03-24  Jim Meyering  <meyering@lucent.com>
42804
42805         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
42806         (charset_alias): Define.
42807         (install-exec-local): Factor out common code.
42808         (uninstall-local): Split lines longer than 80.
42809         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
42810         (SUFFIXES): Define.
42811         (.sed.in.sed): New rule.  Don't redirect directly to $@.
42812         (CLEANFILES): Add ref-add.sed and ref-del.sed.
42813
42814 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
42815
42816         * lib/config.charset: Output a line containing "Packages using this
42817         file".
42818         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
42819         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
42820         ref-del.sed): New rules.
42821
42822 2000-03-17  Jim Meyering  <meyering@lucent.com>
42823
42824         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
42825         Otherwise, include <strings.h>
42826
42827 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
42828
42829         * lib/unicodeio.c (utf8_wctomb): New function.
42830         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
42831         format instead of in UCS-4 with platform dependent endianness.
42832
42833 2000-03-10  Jim Meyering  <meyering@lucent.com>
42834
42835         * m4/lib-check.m4: Look for getspnam in -lgen, too.
42836         From Marco Franzen.
42837
42838 2000-03-07  Paul Eggert  <eggert@twinsun.com>
42839
42840         * lib/savedir.c (savedir): Work even if directory size is
42841         negative; this can happen with some screwy NFS configurations.
42842
42843 2000-03-06  Jim Meyering  <meyering@lucent.com>
42844
42845         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
42846         if it's NULL (because we ran out of memory).  From Bruno Haible.
42847
42848 2000-03-05  Jim Meyering  <meyering@lucent.com>
42849
42850         * lib/localcharset.c ("path-concat.h"): Include.
42851         (get_charset_aliases): Use path_concat instead of ANSI string
42852         concatenation.
42853
42854         * lib/unicodeio.h (PARAMS): Define.
42855         Use it to guard prototype.
42856
42857 2000-03-04  Jim Meyering  <meyering@lucent.com>
42858
42859         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
42860         for lib/localcharset.c.
42861
42862 2000-03-04  Jim Meyering  <meyering@lucent.com>
42863
42864         * lib/Makefile.am (install-exec-local): Create $(libdir) before
42865         installing into it.
42866         (uninstall-local): Uncomment this rule so `make distcheck' works
42867         once again.
42868
42869         * lib/unicodeio.c (<errno.h>): Include it.
42870         (errno): Declare if not defined.
42871
42872         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
42873
42874         * lib/config.charset: New version, incorporating remarks from a linux
42875         i18n mailing list.  From Bruno Haible.
42876
42877 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
42878
42879         * m4/codeset.m4: New file.
42880         * m4/iconv.m4: New file.
42881         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
42882
42883 2000-03-03  Jim Meyering  <meyering@lucent.com>
42884
42885         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
42886
42887 2000-03-02  Jim Meyering  <meyering@lucent.com>
42888
42889         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
42890         the messages come out on separate lines.
42891
42892         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
42893         rather than jm_CHECK_DECLARATIONS.
42894         * m4/decl.m4: Remove now-unused file.
42895
42896         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
42897         geteuid.
42898
42899 2000-03-02  Jim Meyering  <meyering@lucent.com>
42900
42901         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
42902
42903 2000-03-01  Jim Meyering  <meyering@lucent.com>
42904
42905         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
42906         * lib/unicodeio.c: Likewise.
42907
42908 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
42909
42910         * lib/config.charset: New file.
42911         * lib/localcharset.c: New file.
42912         * lib/unicodeio.h, lib/unicodeio.c: New files.
42913         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
42914         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
42915         (noinst_HEADERS): Add unicodeio.h.
42916         (all-local, install-exec-local, charset.alias): New targets.
42917
42918 2000-02-28  Paul Eggert  <eggert@twinsun.com>
42919
42920         * lib/quotearg.c (ALERT_CHAR): New macro.
42921         (quotearg_buffer_restyled): Use it.
42922
42923 2000-02-27  Jim Meyering  <meyering@lucent.com>
42924
42925         * m4/check-decl.m4: Add getenv to the list.
42926
42927 2000-02-27  Jim Meyering  <meyering@lucent.com>
42928
42929         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
42930         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
42931
42932         * lib/backupfile.c: Guard inclusion of stdlib.h with
42933         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
42934         Declare malloc if needed.
42935
42936         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
42937         `#ifndef HAVE_DECL..'
42938         now that autoconf always defines the HAVE_DECL_ symbols.
42939         * lib/human.c: Likewise.
42940         * lib/same.c: Likewise.
42941         * lib/strtoumax.c: Likewise.
42942
42943         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
42944         declaration check was not run.
42945         * lib/hash.c: Likewise.
42946         * lib/human.c: Likewise.
42947         * lib/same.c: Likewise.
42948         * lib/strtoumax.c: Likewise.
42949
42950         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
42951         `.', then first look up the entire `.'-containing string as a login
42952         name.
42953
42954 2000-02-23  Jim Meyering  <meyering@lucent.com>
42955
42956         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
42957         in place of my hack.
42958
42959 2000-02-18  Paul Eggert  <eggert@twinsun.com>
42960
42961         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
42962         (textint): New typedef.
42963         (parser_control): Member year changed from int to textint.
42964         All uses changed.
42965         (YYSTYPE): Removed; replaced by %union with int and textint members.
42966         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
42967         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
42968         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
42969         (tSNUMBER, tUNUMBER): Now of type <textintval>.
42970         (date, number, to_year): Use width of number in digits, not its value,
42971         to determine whether it's a 2-digit year, or a 2-digit time.
42972         (yylex): Store number of digits of numeric tokens.
42973         Reported by John Kendall.
42974
42975         (parser_control): Changed from struct parser_control to typedef (for
42976         consistency).  All uses changed.
42977
42978         (tID): Removed; not used.
42979         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
42980
42981 2000-02-14  Paul Eggert  <eggert@twinsun.com>
42982
42983         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
42984         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
42985
42986 2000-02-12  Jim Meyering  <meyering@lucent.com>
42987
42988         * lib/userspec.c (ISDIGIT): Define it.
42989         (isdigit): Remove definition.
42990         (is_number): Use ISDIGIT, not isdigit.
42991         <libintl.h>: Include.
42992         (_ and N_): Define.
42993         (parse_user_spec): Mark translatable strings.
42994
42995 2000-02-10  Jim Meyering  <meyering@lucent.com>
42996
42997         With these changes, nanosleep.[ch] are finally enough like the other
42998         lib/* replacement files to compile on a few more losing systems.
42999
43000         * lib/nanosleep.h: Don't include config.h.
43001         Remove prototype from declaration of nanosleep.
43002         (PARAMS): Remove now-unneeded definition.
43003         * lib/nanosleep.c: #undef nanosleep.
43004         (rpl_nanosleep): Rename from nanosleep.
43005
43006 2000-02-10  Jim Meyering  <meyering@lucent.com>
43007
43008         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
43009         gnu_nanosleep to rpl_nanosleep.
43010
43011 2000-02-09  Jim Meyering  <meyering@lucent.com>
43012
43013         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
43014         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
43015
43016 2000-02-08  Akim Demaille  <akim@epita.fr>
43017
43018         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
43019         `[' and `]' and remove uses of `changequote'.
43020         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
43021         (AC_SYS_LARGEFILE): Likewise.
43022         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
43023         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
43024         of changequote.
43025         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
43026         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
43027         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
43028         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
43029
43030 2000-02-05  Jim Meyering  <meyering@lucent.com>
43031
43032         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
43033         Remove explicit use of AC_HEADER_TIME.  It is required by
43034         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
43035         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
43036         in autoconf whereby the expansion of the latter ended up preceding
43037         the expansion of its prerequisite, AC_HEADER_TIME.
43038         Reported by Volker Borchert.
43039
43040 2000-02-03  Jim Meyering  <meyering@lucent.com>
43041
43042         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
43043
43044 2000-02-03  Jim Meyering  <meyering@lucent.com>
43045
43046         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
43047         rather than with `#if HAVE_UTMPNAME'.
43048
43049 2000-02-02  Jim Meyering  <meyering@lucent.com>
43050
43051         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
43052         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
43053         Reported by Eli Zaretskii.
43054
43055 2000-02-01  Jim Meyering  <meyering@lucent.com>
43056
43057         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
43058
43059 2000-01-31  Jim Meyering  <meyering@lucent.com>
43060
43061         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
43062         functions.  Add the time.h and sys/time.h headers along with the
43063         AC_REQUIRE'ment of AC_HEADER_TIME.
43064
43065 2000-01-31  Jim Meyering  <meyering@lucent.com>
43066
43067         * lib/nanosleep.h (nanosleep): Guard declaration with
43068         `#if ! HAVE_DECL_NANOSLEEP'.
43069         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
43070         the declaration in that vendor's sys/timers.h.
43071         Reported by Christian Krackowizer.
43072
43073         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
43074         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
43075         (ISPRINT): Likewise.
43076         Reported by Tom Tromey.
43077
43078 2000-01-30  Jim Meyering  <meyering@lucent.com>
43079
43080         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
43081
43082         * m4/prereq.m4 (utmp_includes): Define.
43083         Check for ut_user and ut_name members in both struct utmpx
43084         and struct utmp.
43085
43086 2000-01-30  Jim Meyering  <meyering@lucent.com>
43087
43088         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
43089         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
43090         header files where only utmpx.ut_user is declared.
43091
43092         * lib/readutmp.h (UT_USER): Define.
43093
43094 2000-01-29  Jim Meyering  <meyering@lucent.com>
43095
43096         * m4/lib-check.m4: New file containing library-related checks from
43097         fileutils and sh-utils (textutils had none).
43098
43099 2000-01-28  Jim Meyering  <meyering@lucent.com>
43100
43101         * m4/perl.m4: Change format of warning message to look more like that
43102         from the missing script.  Suggestion from François Pinard.
43103
43104 2000-01-25  Jim Meyering  <meyering@lucent.com>
43105
43106         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
43107         well as time.h in the compile check.
43108         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
43109         Fix typo in cross-compiling case: s/yes/no/.
43110
43111 2000-01-23  Jim Meyering  <meyering@lucent.com>
43112
43113         * m4/jm-macros.m4: Move df-related tests here from
43114         fileutils/configure.in
43115
43116         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
43117         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
43118
43119         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
43120         s/space/ac_fsusage_space/.
43121         (jm_FILE_SYSTEM_USAGE): Take two parameters.
43122
43123         * m4/ftruncate.m4: New file (derived from part of
43124         fileutils/configure.in).
43125         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
43126         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
43127
43128         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
43129         AC_SUBST these here, rather than just in sh-util/configure.in, so
43130         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
43131         all the same.
43132         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
43133         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
43134         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
43135         (AC_SUBST(POW_LIBM)): Likewise.
43136         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
43137
43138 2000-01-23  Jim Meyering  <meyering@lucent.com>
43139
43140         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
43141         obstack.c.
43142
43143 2000-01-22  Jim Meyering  <meyering@lucent.com>
43144
43145         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
43146
43147         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
43148
43149         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
43150         configure.in
43151         (AC_CHECK_HEADERS): Likewise for sh-utils.
43152         (AC_CHECK_HEADERS): Likewise for textutils.
43153         Merge the three lists of headers.
43154
43155         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
43156         from fileutils' configure.in.
43157
43158         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
43159         code. Moved tests into their own function (_jm_DECL_HEADERS) in
43160         check-decl.m4.
43161
43162         * m4/check-decl.m4: Use #if rather than #ifdef.
43163         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
43164         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
43165         (_jm_DECL_HEADERS): Define new function.
43166         (jm_CHECK_DECLARATIONS): Require it.
43167
43168 2000-01-22  Jim Meyering  <meyering@lucent.com>
43169
43170         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
43171         [! HAVE_DECL_STRTOULL]: Declare strtoull.
43172         Required for some AIX systems.  Reported by Christian Krackowizer.
43173         [TESTING] (main): New function.
43174
43175         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
43176         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
43177         letters.
43178
43179         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
43180         iswprint.
43181
43182         * lib/strverscmp.c (ISDIGIT): Define.
43183         (strverscmp): Use ISDIGIT, not isdigit.
43184
43185 2000-01-19  Jim Meyering  <meyering@lucent.com>
43186
43187         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
43188         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
43189         defines `struct timespec' in <sys/time.h>
43190
43191         * m4/c-bs-a.m4: Remove uses of changequote altogether.
43192         Thanks to Akim for explaining.
43193
43194 2000-01-17  Paul Eggert  <eggert@twinsun.com>
43195
43196         * lib/nanosleep.c (nanosleep):
43197         Don't use SA_INTERRUPT to decide whether to call sigaction, as
43198         POSIX.1 doesn't require SA_INTERRUPT and some systems
43199         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
43200         it's been part of POSIX.1 since day 1 (in 1988).
43201
43202 2000-01-17  Jim Meyering  <meyering@lucent.com>
43203
43204         * lib/interlock: Remove unused file.  Reported by François Pinard.
43205
43206 2000-01-16  Paul Eggert  <eggert@twinsun.com>
43207
43208         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
43209         alert, backslash, formfeed, and vertical tab unnecessarily in
43210         shell quoting style.
43211
43212 2000-01-16  Jim Meyering  <meyering@lucent.com>
43213
43214         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
43215         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
43216         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
43217         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
43218
43219 2000-01-16  Jim Meyering  <meyering@lucent.com>
43220
43221         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
43222         because the latter didn't work.
43223
43224 2000-01-15  Jim Meyering  <meyering@lucent.com>
43225
43226         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
43227         (AC_REPLACE_FUNCS): Add memcpy and memset.
43228         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
43229         Add strpbrk.
43230         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
43231
43232 2000-01-12  Jim Meyering  <meyering@lucent.com>
43233
43234         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
43235         (jm_PREREQ): Use it.
43236         (jm_PREREQ_READUTMP): New macro.
43237         (jm_PREREQ): Use it.
43238
43239 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43240
43241         Quote multibyte characters correctly.
43242         * m4/c-bs-a.m4: New file.
43243         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
43244         (jm_PREREQ): Use it.
43245
43246 2000-01-11  Paul Eggert  <eggert@twinsun.com>
43247
43248         * m4/uintmax_t.m4: Port to autoconf 2.13.
43249
43250 2000-01-08  Jim Meyering  <meyering@ascend.com>
43251
43252         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
43253         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
43254
43255 2000-01-04  Jim Meyering  <meyering@ascend.com>
43256
43257         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
43258         jm_STRUCT_DIRENT_D_TYPE.
43259         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
43260         jm_STRUCT_DIRENT_D_INO.
43261         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
43262         jm_STRUCT_UTIMBUF.
43263         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
43264         renamings.
43265         * m4/utime.m4: Likewise.
43266
43267         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
43268         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
43269
43270 2000-01-03  Paul Eggert  <eggert@twinsun.com>
43271
43272         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
43273         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
43274
43275 2000-01-02  Jim Meyering  <meyering@ascend.com>
43276
43277         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
43278         remember if this is necessary.
43279
43280 1999-12-26  Jim Meyering  <meyering@ascend.com>
43281
43282         * m4/jm-macros.m4: Use it here.
43283         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
43284
43285 1999-12-23  Jim Meyering  <meyering@ascend.com>
43286
43287         * m4/jm-macros.m4: Check for clock_gettime (moved from
43288         fileutils/configure.in)
43289         Check for gettimeofday.
43290
43291 1999-12-20  Jim Meyering  <meyering@ascend.com>
43292
43293         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
43294         autoconf-2.14a-1999-12-20.
43295
43296 1999-12-19  Jim Meyering  <meyering@ascend.com>
43297
43298         * m4/lstat-slash.m4: New file.
43299         * m4/jm-macros.m4: Use the new macro:
43300         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
43301
43302 1999-12-07  Jim Meyering  <meyering@ascend.com>
43303
43304         * m4/perl.m4: Require that File::Compare be available, too.
43305         Too many systems seem to lack it.
43306
43307         * m4/strftime.m4: Add checks for most of the cpp macros tested in
43308         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
43309
43310 1999-11-18  Paul Eggert  <eggert@twinsun.com>
43311
43312         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
43313         problem with the QNX 4.25 shell, which doesn't propagate exit
43314         status of failed commands inside shell assignments.
43315
43316 1999-11-17  Jim Meyering  <meyering@ascend.com>
43317
43318         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
43319
43320 1999-11-07  Jim Meyering  <meyering@ascend.com>
43321
43322         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
43323
43324 1999-11-06  Jim Meyering  <meyering@ascend.com>
43325
43326         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
43327         * m4/jm-macros.m4 (jm_MACROS): Use it here.
43328
43329 1999-11-05  Jim Meyering  <meyering@ascend.com>
43330
43331         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
43332         configure.in of textutils, fileutils, and sh-utils into this one
43333         (shared between those packages) file.
43334         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
43335         AC_STRUCT_ST_BLKSIZE.
43336
43337 1999-11-03  Jim Meyering  <meyering@ascend.com>
43338
43339         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
43340         of AC_CHECK_TYPE checks includes unistd.h.
43341         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
43342         Suggestion from Akim Demaille.
43343
43344 1999-10-30  Jim Meyering  <meyering@ascend.com>
43345
43346         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
43347         m4-quoted string.
43348         * m4/ls-mntd-fs.m4: Likewise.
43349         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
43350         * m4/jm-winsz1.m4: Likewise.
43351
43352         * m4/const.m4: Remove file, since the fix made it into the experimental
43353         version of autoconf.
43354         * m4/mktime.m4: Likewise.
43355
43356         * m4/check-type.m4: Remove file, now that the latest version of
43357         AC_CHECK_TYPE takes a third arg to specify additional #includes.
43358
43359         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
43360         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
43361         AC_CHECK_TYPE.
43362
43363 1999-10-04  Jim Meyering  <meyering@ascend.com>
43364
43365         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
43366
43367 1999-09-22  Paul Eggert  <eggert@twinsun.com>
43368
43369         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
43370         2.95.1 bug with HP-UX 10.20.
43371
43372 1999-09-17  Jim Meyering  <meyering@ascend.com>
43373
43374         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
43375         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
43376         due to missing strdup (against sh-utils-2.0).
43377
43378 1999-08-29  Jim Meyering  <meyering@ascend.com>
43379
43380         * m4/jm-macros.m4: Require jm_BISON.
43381         * m4/bison.m4: New file.
43382
43383 1999-08-17  Paul Eggert  <eggert@twinsun.com>
43384
43385         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
43386         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
43387
43388 1999-08-05  Jim Meyering  <meyering@ascend.com>
43389
43390         * m4/getline.m4: Rename test file from conftestdata to conftest.data
43391         to avoid conflicts with `conftest' on 8+3 filesystems.
43392         Suggestion from Eli Zaretskii.
43393
43394 1999-08-04  Jim Meyering  <meyering@ascend.com>
43395
43396         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
43397         fileutils and sh-utils (textutils's getline test was inadequate).
43398         (AM_FUNC_GETLINE): Run this test.
43399         (AC_CHECK_FUNCS): Check for getdelim.
43400         Reported by Bob Proulx.
43401
43402 1999-08-02  Jim Meyering  <meyering@ascend.com>
43403
43404         * m4/jm-macros.m4: Add a comment.
43405
43406 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43407
43408         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
43409         <inttypes.h> defines strtoumax as a macro (and not as a
43410         function).
43411
43412 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43413
43414         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
43415         that we can shift, multiply and divide unsigned long long
43416         values; Ultrix cc can't do it.
43417
43418 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43419
43420         * m4/mktime.m4: New file, which is a preview of what should appear
43421         in the next public autoconf release.
43422
43423 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43424
43425         * m4/lfs.m4: Remove this file.
43426         * m4/largefile.m4: New file.  It contains the old contents of
43427         lfs.m4, except that all names with prefix AC_LFS have been
43428         changed to use the prefix AC_SYS_LARGEFILE instead, to be
43429         compatible with future autoconf versions.  Also, some minor m4
43430         quoting problems have been fixed.
43431
43432 1999-08-01  Paul Eggert  <eggert@twinsun.com>
43433
43434         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
43435         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
43436         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
43437         and simplify the shell code.
43438
43439 1999-08-01  Jim Meyering  <meyering@ascend.com>
43440
43441         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
43442         m4.
43443
43444 1999-07-20  Jim Meyering  <meyering@ascend.com>
43445
43446         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
43447
43448 1999-07-15  Jim Meyering  <meyering@ascend.com>
43449
43450         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
43451
43452 1999-05-22  Jim Meyering  <meyering@ascend.com>
43453
43454         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
43455
43456 1999-05-20  Jim Meyering  <meyering@ascend.com>
43457
43458         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
43459         Add a colon after each `then' in case $4 is empty.
43460
43461 1999-05-16  Jim Meyering  <meyering@ascend.com>
43462
43463         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
43464
43465 1999-05-10  Jim Meyering  <meyering@ascend.com>
43466
43467         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
43468
43469         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
43470         AC_FUNC_MKTIME.
43471
43472 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
43473
43474         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
43475
43476 1999-05-04  Paul Eggert  <eggert@twinsun.com>
43477
43478         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
43479         not CPPFLAGS, so that linking works correctly in IRIX.
43480
43481 1999-04-30  Paul Eggert  <eggert@twinsun.com>
43482
43483         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
43484
43485 1999-04-20  Paul Eggert  <eggert@twinsun.com>
43486
43487         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
43488         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
43489         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
43490         jm_AC_TYPE_UNSIGNED_LONG_LONG.
43491         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
43492
43493         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
43494
43495 1999-04-20  Jim Meyering  <meyering@ascend.com>
43496
43497         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
43498         AC_REPLACE xstroull if necessary.  From Paul Eggert.
43499         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
43500
43501 1999-04-18  Jim Meyering  <meyering@ascend.com>
43502
43503         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
43504         * m4/jm-macros.m4: Use it.
43505
43506 1999-04-06  Jim Meyering  <meyering@ascend.com>
43507
43508         * m4/strftime.m4: Remove test for %f.
43509
43510 1999-03-29  Jim Meyering  <meyering@ascend.com>
43511
43512         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
43513         superset of the AC_TYPE_* checks in the textutils, fileutils,
43514         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
43515         AC_TYPE_PID_T.
43516
43517 1999-03-28  Jim Meyering  <meyering@ascend.com>
43518
43519         * m4/jm-macros.m4: Define GNU_PACKAGE here.
43520         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
43521         replaced e.g., in the *.sh files of the sh-utils.
43522
43523 1999-03-20  Jim Meyering  <meyering@ascend.com>
43524
43525         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
43526         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
43527         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
43528
43529 1999-03-19  Jim Meyering  <meyering@ascend.com>
43530
43531         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
43532
43533 1999-03-12  Jim Meyering  <meyering@ascend.com>
43534
43535         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
43536
43537 1999-03-07  Jim Meyering  <meyering@ascend.com>
43538
43539         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
43540         declared.
43541
43542 1999-02-17  Jim Meyering  <meyering@ascend.com>
43543
43544         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
43545         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
43546
43547 1999-02-07  Jim Meyering  <meyering@ascend.com>
43548
43549         * m4/group-member.m4: New file -- extracted from sh-utils'
43550         configure.in.
43551
43552         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
43553         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
43554
43555 1999-02-06  Jim Meyering  <meyering@ascend.com>
43556
43557         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
43558         * m4/fnmatch.m4: Likewise.
43559         * m4/getgroups.m4: Likewise.
43560         * m4/lstat.m4: Likewise.
43561         * m4/malloc.m4: Likewise.
43562         * m4/putenv.m4: Likewise.
43563         * m4/realloc.m4: Likewise.
43564         * m4/regex.m4: Likewise.
43565         * m4/stat.m4: Likewise.
43566         * m4/strftime.m4: Likewise.
43567         Suggestion from Alain Magloire.
43568
43569         * m4/chown.m4: Use `.$ac_objext', not `.o'.
43570         * m4/fnmatch.m4: Likewise.
43571         * m4/getgroups.m4: Likewise.
43572         * m4/getline.m4: Likewise.
43573         * m4/lstat.m4: Likewise.
43574         * m4/malloc.m4: Likewise.
43575         * m4/memcmp.m4: Likewise.
43576         * m4/putenv.m4: Likewise.
43577         * m4/realloc.m4: Likewise.
43578         * m4/regex.m4: Likewise.
43579         * m4/stat.m4: Likewise.
43580         * m4/strftime.m4: Likewise.
43581         Suggestion from Alain Magloire.
43582
43583         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
43584         an argument.
43585
43586         * m4/regex.m4: Add a run-time Test for proper operation of
43587         re_compile_pattern.
43588
43589 1999-01-31  Jim Meyering  <meyering@ascend.com>
43590
43591         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
43592
43593 1999-01-30  Jim Meyering  <meyering@ascend.com>
43594
43595         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
43596
43597         * m4/jm-mktime.m4: Make this a wrapper around the official
43598         AM_FUNC_MKTIME rather than my private copy, now that the official one
43599         is up to date.
43600         * m4/mktime.m4: Remove file.
43601
43602         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
43603         * m4/uptime.m4: Likewise.
43604         * m4/uintmax_t.m4: Likewise.
43605
43606 1999-01-28  Jim Meyering  <meyering@ascend.com>
43607
43608         * m4/jm-macros.m4: Use jm_AFS.
43609         * m4/afs.m4: New file (from fileutils' configure.in).
43610
43611         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
43612         * m4/chown.m4: Likewise.
43613         * m4/d-ino.m4: Likewise.
43614         * m4/d-type.m4: Likewise.
43615         * m4/fnmatch.m4: Likewise.
43616         * m4/getgroups.m4: Likewise.
43617         * m4/gettext.m4: Likewise.
43618         * m4/jm-mktime.m4: Likewise.
43619         * m4/jm-winsz2.m4: Likewise.
43620         * m4/lcmessage.m4: Likewise.
43621         * m4/ls-mntd-fs.m4: Likewise.
43622         * m4/malloc.m4: Likewise.
43623         * m4/memcmp.m4: Likewise.
43624         * m4/putenv.m4: Likewise.
43625         * m4/realloc.m4: Likewise.
43626         * m4/st_mtim.m4: Likewise.
43627         * m4/strftime.m4: Likewise.
43628
43629 1999-01-16  Jim Meyering  <meyering@ascend.com>
43630
43631         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
43632         (ARGMATCH_DIE_DECL): Define.
43633
43634 1999-01-12  Jim Meyering  <meyering@ascend.com>
43635
43636         * m4/Makefile.am.in: Rewrite to avoid using fmt.
43637         Reported by Lars Hecking.
43638
43639 1999-01-10  Jim Meyering  <meyering@ascend.com>
43640
43641         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
43642         gross kludge.
43643         * m4/inttypes_h.m4: Likewise.
43644         * m4/lstat.m4: Likewise.
43645         * m4/malloc.m4: Likewise.
43646         * m4/readdir.m4: Likewise.
43647         * m4/realloc.m4: Likewise.
43648         * m4/st_dm_mode.m4: Likewise.
43649         * m4/stat.m4: Likewise.
43650         * m4/utimbuf.m4: Likewise.
43651         * m4/utimes.m4: Likewise.
43652
43653         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
43654         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
43655         comments in config.h.in are meaningful.
43656
43657         * m4/jm-macros.m4: Require autoconf-2.13 here.
43658
43659         * m4/regex.m4: By default, don't use the included regex.c on systems
43660         with glibc 2.  Suggestion from Uli Drepper.
43661
43662 1999-01-02  Jim Meyering  <meyering@ascend.com>
43663
43664         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
43665
43666 1998-12-18  Jim Meyering  <meyering@ascend.com>
43667
43668         * m4/Makefile.am.in (Makefile.am): Simplify rule.
43669         Based on a suggestion from Lars Hecking.
43670
43671 1998-11-16  Paul Eggert  <eggert@twinsun.com>
43672
43673         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
43674
43675 1998-11-16  Jim Meyering  <meyering@ascend.com>
43676
43677         * m4/lfs.m4: Double-quote the `uname...` expression.
43678
43679 1998-11-14  Jim Meyering  <meyering@ascend.com>
43680
43681         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
43682         * m4/stat.m4: Likewise.
43683
43684 1998-11-03  Jim Meyering  <meyering@ascend.com>
43685
43686         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
43687         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
43688
43689 1998-10-18  Jim Meyering  <meyering@ascend.com>
43690
43691         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
43692
43693 1998-10-17  Jim Meyering  <meyering@ascend.com>
43694
43695         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
43696         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
43697         calls for those previously hard-coded headers.  Instead, take a new
43698         parameter.
43699         (jm_CHECK_DECLARATIONS): Reflect interface change.
43700         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
43701         (jm_CHECK_DECL_LOCALTIME_R): New macro.
43702
43703         * m4/mktime.m4: Test for spring-forward gap before long-running test.
43704
43705 1998-10-14  Jim Meyering  <meyering@ascend.com>
43706
43707         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
43708         instead of "TZ=America/Vancouver".  From Paul Eggert.
43709
43710 1998-10-11  Jim Meyering  <meyering@ascend.com>
43711
43712         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
43713         This adds a test for a recently added compatibility fix for mktime.c.
43714         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
43715
43716 1998-09-27  Jim Meyering  <meyering@ascend.com>
43717
43718         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
43719
43720         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
43721         ../configure.in, including a change from Gordon Matzigkeit to allow
43722         cross-compiling for the Hurd.
43723
43724         * m4/glibc.m4: New file/macro to test for the GNU C Library
43725         versions 1 and 2.  From Gordon Matzigkeit.
43726         Indent.
43727
43728 1998-09-21  Jim Meyering  <meyering@ascend.com>
43729
43730         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
43731
43732 1998-08-18  Paul Eggert  <eggert@twinsun.com>
43733
43734         Port nanosecond-resolution times to UnixWare 2.1.2 and
43735         pedantic Solaris 2.6.
43736
43737         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
43738         AC_STRUCT_ST_MTIM.
43739         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
43740         Generate name of ns member, instead of just 1 or undef.
43741         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
43742
43743 1998-08-15  Jim Meyering  <meyering@ascend.com>
43744
43745         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
43746         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
43747         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
43748         instead of jm_TYPE_SSIZE_T.
43749
43750 1998-08-12  Jim Meyering  <meyering@ascend.com>
43751
43752         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
43753
43754 1998-08-02  Jim Meyering  <meyering@ascend.com>
43755
43756         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
43757         in acconfig.h manually.
43758
43759 1998-07-31  Paul Eggert  <eggert@twinsun.com>
43760
43761         * m4/st_mtim.m4: New file.
43762
43763 1998-07-28  Jim Meyering  <meyering@ascend.com>
43764
43765         * m4/utimes.m4: Undef stat.
43766
43767 1998-07-25  Jim Meyering  <meyering@ascend.com>
43768
43769         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
43770         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
43771
43772 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
43773
43774         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
43775         uid and gid actually remain unchanged.
43776
43777 1998-07-07  Jim Meyering  <meyering@ascend.com>
43778
43779         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
43780
43781 1998-07-04  Jim Meyering  <meyering@ascend.com>
43782
43783         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
43784         to prove that this macro can be used in packages without regex.c.
43785
43786 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
43787
43788         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
43789         is to be used.
43790
43791 1998-07-03  Jim Meyering  <meyering@ascend.com>
43792
43793         * m4/gettext.m4: Add -lintl if it's found to be necessary.
43794
43795         * m4/gettext.m4: New file -- from gettext-0.10.35.
43796         * m4/lcmessage.m4: Likewise.
43797         * m4/progtest.m4: Likewise.
43798
43799         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
43800         * m4/jm-macros.m4: Require the new macro.
43801
43802 1998-06-29  Jim Meyering  <meyering@ascend.com>
43803
43804         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
43805         for the definition of NGROUPS (used in a system header included
43806         by sys/mount.h).
43807
43808 1998-06-28  Jim Meyering  <meyering@ascend.com>
43809
43810         * m4/ls-mntd-fs.m4: New file.
43811         * m4/fstypename.m4: New file.
43812
43813         * m4/jm-macros.m4: Require the new macro.
43814         * m4/jm-glibc-io.m4: New file.
43815
43816 1998-05-19  Jim Meyering  <meyering@ascend.com>
43817
43818         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
43819         * m4/lchown.m4: New file.
43820
43821         * m4/Makefile.am.in: New file.
43822         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
43823
43824 1998-05-14  Jim Meyering  <meyering@ascend.com>
43825
43826         * m4/Makefile.am (EXTRA_DIST): Add them.
43827         * m4/jm-macros.m4: New file.
43828         * m4/utimbuf.m4: New file.
43829
43830 1998-05-12  Jim Meyering  <meyering@ascend.com>
43831
43832         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
43833
43834 1998-05-11  Jim Meyering  <meyering@ascend.com>
43835
43836         * m4/isc-posix.m4: New file.
43837
43838 1998-05-10  Jim Meyering  <meyering@ascend.com>
43839
43840         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
43841
43842 1998-05-09  Jim Meyering  <meyering@ascend.com>
43843
43844         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
43845         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
43846         with automake.
43847
43848         * m4/ssize_t.m4: New file.
43849         * m4/mktime.m4: Remove file -- the new automake has this now.
43850
43851 1998-04-26  Jim Meyering  <meyering@ascend.com>
43852
43853         * m4/assert.m4: New file.
43854         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
43855
43856 1998-04-05  Jim Meyering  <meyering@ascend.com>
43857
43858         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
43859         (jm_PREREQ): Use it here.
43860
43861 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
43862
43863         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
43864         in acconfig.h.
43865
43866 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
43867
43868         * m4/prereq.m4: New file.
43869         * m4/error.m4: New file.
43870         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
43871
43872 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
43873
43874         * m4/getline.m4: Don't set am_cv_func_working_getline before the
43875         cache-check for the same variable -- that defeated the purpose of
43876         the test; the test program was never run.  This was a problem only
43877         on systems with losing getline functions -- HP-UX 10.20 is one.
43878         Reported by Bjorn Helgaas.
43879
43880 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
43881
43882         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
43883
43884 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
43885
43886         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
43887
43888         * m4/const.m4: New file.  Use an initializer in this declaration
43889         typedef int charset[2]; const charset x;
43890         Reported by Bob Glickstein.
43891
43892 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
43893
43894         * m4/chown.m4: Fix reversed types on -1 args to chown.
43895         From Kaveh Ghazi.
43896
43897 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
43898
43899         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
43900         Add lseek and memchr.
43901
43902         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
43903         T.E.Dickey <dickey@clark.net> said that some older preprocessors
43904         have a 20-character limit on names.
43905
43906 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
43907
43908         * m4/inttypes_h.m4: New file.
43909         * m4/uintmax_t.m4: New file.
43910         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
43911
43912
43913         -----
43914
43915         Local Variables:
43916         coding: utf-8
43917         End:
43918
43919         Copyright (C) 1997-2008 Free Software Foundation, Inc.
43920
43921         Copying and distribution of this file, with or without
43922         modification, are permitted provided the copyright notice
43923         and this notice are preserved.