getdate.y: factor out common actions
[gnulib.git] / ChangeLog
1 2008-07-02  Ondřej Vašík  <ovasik@redhat.com>
2
3         getdate.y: factor out common actions
4         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
5         Use them in place of open-coded actions.
6
7 2008-07-01  Simon Josefsson  <simon@josefsson.org>
8
9         Add self-test for getdate module.
10         * modules/getdate-tests: New file.
11         * tests/test-getdate.c: New file.
12
13 2008-06-29  Bruno Haible  <bruno@clisp.org>
14
15         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16         .gitignore.
17         Reported by Sylvain Beucler <beuc@beuc.net>.
18
19 2008-06-29  Bruno Haible  <bruno@clisp.org>
20
21         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
22         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
23
24 2008-06-29  Bruno Haible  <bruno@clisp.org>
25
26         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
27         EXTRA_DIST.
28         Reported by Sylvain Beucler <beuc@beuc.net>.
29
30 2008-06-26  Jim Meyering  <meyering@redhat.com>
31
32         make several modules depend on the "open" module
33         This provides slightly increased consistency when opening-for-write
34         the name of a non-directory spelled with a trailing slash.
35         * modules/chdir-safer: Likewise.
36         * modules/chown: Likewise.
37         * modules/clean-temp: Likewise.
38         * modules/copy-file: Likewise.
39         * modules/fchdir: Likewise.
40         * modules/fcntl-safer: Likewise.
41         * modules/pipe: Likewise.
42         * modules/utime: Likewise.
43         Prompted by Eric Blake and Bruno Haible.
44
45 2008-06-24  Andreas Schwab  <schwab@suse.de>
46
47         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
48         literals can be used as initializers for global variables.
49
50 2008-06-23  Eric Blake  <ebb9@byu.net>
51
52         Make gnulib-cache.m4 easier to diff.
53         * gnulib-tool (func_import): Allow newlines when reading cached
54         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
55
56 2008-06-23  Bruno Haible  <bruno@clisp.org>
57
58         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
59         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
60         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
61         m4/signalblocking.m4.
62         (gl_PREREQ_SIGACTION): Don't invoke it.
63         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
64         gl_PREREQ_SIG_HANDLER_H.
65         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
66         Don't check for sigaction here.
67
68 2008-06-23  Bruno Haible  <bruno@clisp.org>
69
70         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
71         (install_handlers): Don't set the SA_RESETHAND flag.
72
73 2008-06-23  Bruno Haible  <bruno@clisp.org>
74
75         * m4/sigaction.m4: Comment fixes.
76         * lib/signal.in.h: Likewise.
77
78 2008-06-23  Eric Blake  <ebb9@byu.net>
79
80         Fix typo.
81         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
82
83         Avoid SA_ namespace.
84         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
85         Reported by Ralf Wildenhues.
86
87         Avoid test failure due to SA_RESTORER.
88         * tests/test-sigaction.c (SA_MASK): New macro.
89         (main): Avoid failing due to extension flags being set.
90         Reported by Jim Meyering.
91
92         Revert use of sig-handler.h in sigprocmask.c.
93         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
94         it requires the existence of struct sigaction.
95         * lib/sigprocmask.c (handler_t): Restore typedef.
96         (rpl_signal, old_handlers): Use local type.
97
98 2008-06-22  Bruno Haible  <bruno@clisp.org>
99
100         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
101         conditionally.
102         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
103
104 2008-06-22  Bruno Haible  <bruno@clisp.org>
105
106         * doc/posix-functions/siginterrupt.texi: Move note.
107
108         * lib/signal.in.h (SA_RESTART): New macro.
109         * lib/sigaction.c: Update comment.
110
111         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
112
113         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
114         (gl_PREREQ_SIGPROCMASK): Invoke it.
115         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
116
117         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
118
119         * lib/sigprocmask.c: Update a comment.
120
121 2008-06-21  Eric Blake  <ebb9@byu.net>
122
123         Use sigaction module rather than signal().
124         * modules/c-stack (Depends-on): Add sigaction.
125         * modules/fatal-signal (Depends-on): Likewise.
126         * modules/nanosleep (Depends-on): Likewise.
127         * modules/sigprocmask (Files): Add sig-handler.h.
128         * modules/sigaction (Files): Likewise.
129         * lib/sig-handler.h (get_handler): New file, suggested by Paul
130         Eggert.
131         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
132         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
133         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
134         (init_fatal_signals): Likewise.
135         * lib/nanosleep.c (rpl_nanosleep): Likewise.
136         (siginterrupt): Delete fallback.
137         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
138         instead.
139         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
140         siginterrupt.
141
142         New module sigaction, for mingw.
143         * modules/sigaction: New module...
144         * modules/sigaction-tests: ...and its test.
145         * m4/sigaction.m4: New file.
146         * lib/sigaction.c: Likewise.
147         * tests/test-sigaction.c: Likewise.
148         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
149         * modules/signal (Makefile.am): Likewise.
150         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
151         needed.
152         * doc/posix-headers/signal.texi (signal.h): Mention provided
153         types.
154         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
155         that sigaction is preferable.
156         * doc/posix-functions/sigaction.texi (sigaction): Mention new
157         module.
158         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
159         sigaction.
160
161         Improve robustness of sigprocmask by overriding signal.
162         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
163         is in use.
164         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
165         (SIGKILL, SIGSTOP): Provide fallbacks.
166         (rpl_signal): Implement.
167         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
168         signal can be called inside handlers.
169
170         Fix nanosleep module on mingw.
171         * modules/nanosleep (Depends-on): Add sys_select.
172         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
173
174         Fix licensing of sigprocmask.
175         * modules/raise (License): Relicense as LGPL.
176
177 2008-06-21  Bruno Haible  <bruno@clisp.org>
178
179         * lib/propername.c (proper_name_utf8): Don't use the transliterated
180         result if it contains question marks.
181         Reported by Michael Geng <linux@michaelgeng.de>.
182
183 2008-06-19  Bruno Haible  <bruno@clisp.org>
184
185         Fix CVS-ism.
186         * doc/gnulib.texi: Include updated-stamp.texi.
187         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
188         (updated-stamp.texi): New rule.
189         (gnulib.info): Depend on it.
190         * doc/.gitignore: Add updated-stamp.texi.
191         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
192
193 2008-06-19  Bruno Haible  <bruno@clisp.org>
194
195         * doc/Makefile (gnulib.info): Update and simplify dependencies.
196         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
197
198 2008-06-19  Eric Blake  <ebb9@byu.net>
199
200         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
201         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
202         Reported by Stepan Kasal.
203
204 2008-06-18  Bruno Haible  <bruno@clisp.org>
205
206         * lib/fatal-signal.c (init_fatal_signals): Add comment.
207         Reported by Eric Blake.
208
209 2008-06-18  Eric Blake  <ebb9@byu.net>
210
211         Work around cygwin 1.5.25 strsignal bug.
212         * tests/test-strsignal.c: Allow for const char *.
213         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
214
215 2008-06-18  Simon Josefsson  <simon@josefsson.org>
216
217         * users.txt: Update URL to article and add author/date
218         information.
219
220 2008-06-17  Bruno Haible  <bruno@clisp.org>
221
222         New macro gl_DISABLE_THREADS.
223         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
224         if the user did not pass --enable-threads or --disable-threads option.
225         (gl_DISABLE_THREADS): New macro.
226         Reported by Eric Blake <ebb9@byu.net>.
227
228 2008-06-17  Bruno Haible  <bruno@clisp.org>
229
230         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
231         when the macro ignores it.
232         Based on a patch by Eric Blake <ebb9@byu.net>.
233
234 2008-06-17  Bruno Haible  <bruno@clisp.org>
235
236         * modules/tls (License): Change to LGPLv2+.
237         Reported by Eric Blake.
238
239 2008-06-17  Eric Blake  <ebb9@byu.net>
240
241         Simplify c-stack prerequisites.
242         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
243         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
244         no longer requires <ucontext.h> to exist.  Optimize setrlimit
245         check.
246         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
247         <sys/resource.h>.
248
249         Move c-stack test into testsuite.
250         * modules/c-stack-tests: New file.
251         * lib/c-stack.c [DEBUG]: Move test program...
252         * tests/test-c-stack.c: ...into this new file.  Skip rather than
253         fail test if sigaltstack is lacking.
254         * tests/test-c-stack.sh: New driver file.
255
256 2008-06-16  Eric Blake  <ebb9@byu.net>
257
258         Use raise module consistently.
259         * modules/fatal-signal (Depends-on): Add raise.
260         * modules/sigprocmask (Depends-on): Likewise.
261         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
262         * lib/sigprocmask.c (sigprocmask): Likewise.
263         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
264         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
265
266         Fix compliance bug in sigpending.
267         * lib/sigprocmask.c (sigpending): Return pending array via
268         parameter, not return value.
269
270 2008-06-14  Eric Blake  <ebb9@byu.net>
271
272         Improve obstack-printf test code.
273         * tests/test-obstack-printf.c (test_function): Fix comment, and
274         simplify usage of obstack_* in macros.  Add a test for coverage.
275         Reported by Bruno Haible.
276
277 2008-06-14  Bruno Haible  <bruno@clisp.org>
278
279         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
280         array size as a constant, not as a const variable.
281         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
282         AC_USE_SYSTEM_EXTENSIONS.
283         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
284         Test whether the obstack_printf function actually exists.
285         * modules/obstack-printf (Depends-on): Add extensions.
286         (Include): Remove obstack.h.
287         * modules/obstack-printf-posix (Depends-on): Add extensions.
288         (Include): Remove obstack.h.
289
290 2008-06-13  Eric Blake  <ebb9@byu.net>
291
292         Add obstack-printf and obstack-printf-posix modules.
293         * modules/obstack-printf: New file.
294         * modules/obstack-printf-posix: Likewise.
295         * MODULES.html.sh (Misc): Mention them.
296         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
297         Likewise.
298         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
299         Likewise.
300         * modules/stdio (Makefile.am): Accomodate new modules.
301         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
302         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
303         Declare.
304         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
305         functions.
306         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
307         (gl_REPLACE_OBSTACK_PRINTF): New macros
308         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
309         * tests/test-obstack-printf.c: New file.
310         * modules/obstack-printf-tests: Likewise.
311         * modules/obstack-printf-posix-tests: Likewise.
312
313 2008-06-11  Bruno Haible  <bruno@clisp.org>
314
315         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
316         * lib/open.c: Include errno.h.
317         (open): Fail when attempting to write to a file that has a trailing
318         slash.
319         * tests/test-open.c (main): Test against trailing slash bug.
320         * doc/posix-functions/open.texi: Mention the trailing slash bug.
321
322 2008-06-10  Bruno Haible  <bruno@clisp.org>
323
324         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
325         for $? to work inside the trap command, with various /bin/sh-s.
326         * tests/test-vc-list-files-cvs.sh: Likewise.
327
328 2008-06-10  Bruno Haible  <bruno@clisp.org>
329
330         * lib/acl-internal.h: Don't include gettext.h here.
331         * lib/set-mode-acl.c: Include gettext.h here.
332         * lib/copy-acl.c: Likewise.
333
334 2008-06-10  Bruno Haible  <bruno@clisp.org>
335
336         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
337         * lib/wait-process.c (wait_subprocess): Likewise.
338         * lib/execute.h (execute): Add termsigp argument.
339         * lib/execute.c (execute): Likewise.
340         * lib/csharpcomp.c (compile_csharp_using_pnet,
341         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
342         * lib/csharpexec.c (execute_csharp_using_pnet,
343         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
344         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
345         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
346         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
347         is_jikes_present): Update.
348         * lib/javaexec.c (execute_java_class): Update.
349         * lib/javaversion.c (execute_and_read_line): Update.
350         * NEWS: Document the changes.
351         Reported by Eric Blake.
352
353 2008-06-10  Eric Blake  <ebb9@byu.net>
354
355         Add missing include.
356         * tests/test-strstr.c (includes): Add <signal.h>.
357         * tests/test-strcasestr.c (includes): Likewise.
358         * tests/test-memmem.c (includes): Likewise.
359
360 2008-06-10  Bruno Haible  <bruno@clisp.org>
361
362         * lib/wait-process.c (wait_subprocess): Add an assertion.
363
364 2008-06-10  Bruno Haible  <bruno@clisp.org>
365
366         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
367
368 2008-06-10  Bruno Haible  <bruno@clisp.org>
369
370         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
371         using alarm().
372         * tests/test-strcasestr.c (main): Likewise.
373         * tests/test-strstr.c (main): Likewise.
374
375 2008-06-09  Bruno Haible  <bruno@clisp.org>
376
377         Work around the Solaris 10 ACE ACLs ABI change.
378         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
379         declare if ACL_NO_TRIVIAL is present.
380         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
381         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
382         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
383         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
384         define if ACL_NO_TRIVIAL is present.
385         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
386         and use the current ABI.
387         (file_has_acl): Use same #if condition as elsewhere.
388         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
389         in use, and use the current ABI.
390         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
391         Reported by Jim Meyering.
392
393 2008-06-09  Eric Blake  <ebb9@byu.net>
394
395         Work around environments that (stupidly) ignore SIGALRM.
396         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
397         before using alarm().
398         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
399         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
400         Reported by Ian Beckwith <ianb@erislabs.net>.
401
402         Produce autobuild blurb earlier in log.
403         * modules/autobuild (configure.ac-early): Move AB_INIT here.
404
405 2008-06-09  Jim Meyering  <meyering@redhat.com>
406         and Ondřej Vašík  <ovasik@redhat.com>
407
408         utimens.c: correct kernel bug work-around
409         Ondřej Vašík found that the invalid return value of 280 indicates
410         failure, not success, and the kernel bug we're trying to work
411         around affects not just the utimensat call, but also the fallback
412         futimens call.
413         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
414         not success.
415         [HAVE_FUTIMENS]: Use the same work-around, here.
416
417 2008-06-09  Jim Meyering  <meyering@redhat.com>
418
419         add more guards around definition of ACE_-related code
420         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
421         ALLOW and ACE_OWNER are also defined.
422
423 2008-06-08  Bruno Haible  <bruno@clisp.org>
424
425         * lib/acl-internal.h: Add me as co-author.
426         * lib/file-has-acl.c: Likewise.
427         * lib/set-mode-acl.c: Likewise.
428         * lib/copy-acl.c: Likewise.
429
430 2008-06-08  Bruno Haible  <bruno@clisp.org>
431
432         Add support for AIX ACLs.
433         * lib/acl-internal.h (acl_nontrivial): New declaration.
434         * lib/file-has-acl.c (acl_nontrivial): New function.
435         (file_has_acl): Add implementation using AIX 4 ACL API.
436         * lib/set-mode-acl.c (qset_acl): Likewise.
437         * lib/copy-acl.c (qcopy_acl): Likewise.
438
439 2008-06-08  Bruno Haible  <bruno@clisp.org>
440
441         Add support for HP-UX ACLs.
442         * lib/acl-internal.h (acl_nontrivial): New declaration.
443         * lib/file-has-acl.c (acl_nontrivial): New function.
444         (file_has_acl): Add implementation using HP-UX 11 ACL API.
445         * lib/set-mode-acl.c (qset_acl): Likewise.
446         * lib/copy-acl.c (qcopy_acl): Likewise.
447
448 2008-06-08  Bruno Haible  <bruno@clisp.org>
449
450         Add support for Cygwin ACLs.
451         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
452         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
453         the chmod_or_fchmod call.
454         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
455
456 2008-06-08  Bruno Haible  <bruno@clisp.org>
457
458         Fix bug with setuid modes in Solaris 10+ code.
459         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
460         succeeded, when the mode contains some special bits.
461
462 2008-06-08  Bruno Haible  <bruno@clisp.org>
463
464         Add support for Solaris 7..10 ACLs.
465         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
466         declarations.
467         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
468         functions.
469         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
470         * lib/set-mode-acl.c (qset_acl): Likewise.
471         * lib/copy-acl.c (qcopy_acl): Likewise.
472
473 2008-06-08  Bruno Haible  <bruno@clisp.org>
474
475         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
476         declaration.
477         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
478         (acl_access_nontrivial): Remove MacOS X case.
479         (file_has_acl): Use acl_extended_nontrivial.
480         * lib/copy-acl.c (qcopy_acl): Likewise.
481
482 2008-06-08  Bruno Haible  <bruno@clisp.org>
483
484         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
485
486 2008-06-08  Jim Meyering  <meyering@redhat.com>
487
488         * modules/acl (Maintainer): Add Bruno Haible.
489
490 2008-06-07  Bruno Haible  <bruno@clisp.org>
491
492         Improve support for Tru64 ACLs.
493         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
494         ACL on OSF/1.
495
496 2008-06-07  Bruno Haible  <bruno@clisp.org>
497
498         Add support for MacOS X ACLs.
499         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
500         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
501         * lib/set-mode-acl.c (qset_acl): Likewise.
502         * lib/copy-acl.c (qcopy_acl): Likewise.
503
504 2008-06-07  Bruno Haible  <bruno@clisp.org>
505
506         Fix memory leak introduced on 2008-05-22.
507         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
508         use.
509
510 2008-06-07  Bruno Haible  <bruno@clisp.org>
511
512         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
513         to construct an empty ACL.
514
515 2008-06-07  Bruno Haible  <bruno@clisp.org>
516
517         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
518         precisely.
519         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
520
521 2008-06-07  Bruno Haible  <bruno@clisp.org>
522
523         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
524         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
525
526 2008-06-07  Bruno Haible  <bruno@clisp.org>
527
528         * doc/posix-functions/_setjmp.texi: Explain the use of this function
529         regardless of POSIX.
530         * doc/posix-functions/_longjmp.texi: Likewise.
531         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
532         SystemV platform in this case.
533
534 2008-06-06  Eric Blake  <ebb9@byu.net>
535
536         Document abort() bugs.
537         * doc/posix-functions/abort.texi (abort): Mention anomalies.
538
539         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
540         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
541         sigsetjmp.
542         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
543         siglongjmp, but only as a macro.
544         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
545         is obsolete.
546         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
547
548         Tweak documentation to cover cygwin argz bugs.
549         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
550         argz bug fix; no code change needed since no cygwin releases
551         occurred between the last fix and the bug being tested.
552         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
553         module and recently fixed cygwin bugs.
554         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
555         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
556         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
557         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
558         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
559         Likewise.
560         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
561         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
562         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
563         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
564         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
565         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
566         Likewise.
567
568         Avoid gcc warning on cygwin.
569         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
570         !ACL_NO_TRIVIAL]: Avoid unused variable.
571
572 2008-06-05  Eric Blake  <ebb9@byu.net>
573
574         Be tolerant of UNKNOWN version in gnulib-tool test dir.
575         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
576         git-version-gen fails to come up with a version.
577         Reported by Simon Josefsson.
578
579 2008-06-05  Jim Meyering  <meyering@redhat.com>
580             Paul Eggert  <eggert@cs.ucla.edu>
581
582         utimens.c: work around a probable Linux kernel bug
583         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
584         appears to be a kernel bug that causes utimensat to return 280
585         instead of 0, indicating success.
586
587 2008-06-04  Bruno Haible  <bruno@clisp.org>
588
589         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
590         2008-06-01 commit.
591
592 2008-06-04  Bruno Haible  <bruno@clisp.org>
593
594         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
595         * lib/file-has-acl.c (acl_access_nontrivial): New function.
596         (file_has_acl): Use it. Save errno afterwards.
597         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
598
599 2008-06-03  Bruno Haible  <bruno@clisp.org>
600
601         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
602         draft code. Simplify #ifs.
603         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
604         Put Solaris code after POSIX-draft code. Fix comments regarding
605         Solaris 10, HP-UX. Mention Cygwin.
606         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
607
608 2008-06-03  Eric Blake  <ebb9@byu.net>
609
610         Provide fallback for older kernels.
611         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
612         Provide runtime fallback if kernel lacks support.
613         Reported by Mike Frysinger.
614
615 2008-06-02  Bruno Haible  <bruno@clisp.org>
616
617         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
618         it exists.
619
620 2008-06-02  Bruno Haible  <bruno@clisp.org>
621
622         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
623         * lib/copy-acl.c (qcopy_acl): Update comment.
624
625 2008-06-02  Bruno Haible  <bruno@clisp.org>
626
627         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
628         like ACL APIs.
629
630 2008-06-02  Bruno Haible  <bruno@clisp.org>
631
632         * tests/test-file-has-acl.sh: Use different code for Cygwin.
633         * tests/test-set-mode-acl.sh: Likewise.
634         * tests/test-copy-acl.sh: Likewise.
635         * tests/test-copy-file.sh: Likewise.
636
637 2008-06-02  Bruno Haible  <bruno@clisp.org>
638
639         * tests/test-file-has-acl.sh: Remove unused code.
640
641 2008-06-01  Bruno Haible  <bruno@clisp.org>
642
643         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
644         (copy_acl): Just a wrapper around qcopy_acl that emits the error
645         messages.
646         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
647
648 2008-06-01  Bruno Haible  <bruno@clisp.org>
649
650         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
651         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
652         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
653         APIs.
654         * modules/acl-tests (configure.ac): Remove tests now contained in
655         m4/acl.m4.
656
657 2008-06-02  Jim Meyering  <meyering@redhat.com>
658
659         announce-gen: use a better key-server host name
660         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
661         it may be more consistently reliable.  Suggested by Werner Koch
662         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
663
664 2008-06-01  Bruno Haible  <bruno@clisp.org>
665
666         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
667         Reported by Voroskoi Andras <voroskoi@gmail.com>.
668
669 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
670
671         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
672
673 2008-06-01  Bruno Haible  <bruno@clisp.org>
674
675         New ACL tests.
676         * tests/test-file-has-acl.sh: New file.
677         * tests/test-file-has-acl.c: New file.
678         * tests/test-set-mode-acl.sh: New file.
679         * tests/test-set-mode-acl.c: New file.
680         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
681         * tests/test-copy-acl.c: New file.
682         * modules/acl-tests: New file, based on modules/copy-file-tests.
683         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
684         (Depends-on): Add acl-tests.
685         (configure.ac): Remove checks.
686         (Makefile.am): Don't create test-sameacls program here any more.
687
688 2008-06-01  Bruno Haible  <bruno@clisp.org>
689
690         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
691         * tests/test-sameacls.c: Include progname.h.
692         (main): Invoke set_program_name. Portability fixes for MacOS X,
693         Solaris, HP-UX.
694
695 2008-06-01  Bruno Haible  <bruno@clisp.org>
696
697         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
698         function.
699         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
700
701 2008-06-01  Bruno Haible  <bruno@clisp.org>
702
703         * modules/rpmatch (Depends-on): Add strdup.
704
705 2008-06-01  Bruno Haible  <bruno@clisp.org>
706
707         * lib/pipe.c: Include unistd-safer.h.
708         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
709         * modules/pipe (Depends-on): Add unistd-safer.
710
711 2008-05-30  Simon Josefsson  <simon@josefsson.org>
712
713         * modules/autobuild (configure.ac): Call AB_INIT.
714
715 2008-05-30  Simon Josefsson  <simon@josefsson.org>
716
717         * tests/test-getaddrinfo.c: Don't print debug messages by default.
718         Suggested by Bruno Haible <bruno@clisp.org>.
719
720 2008-05-30  Simon Josefsson  <simon@josefsson.org>
721
722         * tests/test-base64.c: Cast size_t to unsigned long when invoking
723         printf.  Use %lu instead of %d.  Reported by Bruno Haible
724         <bruno@clisp.org>.
725
726 2008-05-29  Eric Blake  <ebb9@byu.net>
727
728         Prefer new POSIX 200x interfaces over futimesat.
729         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
730         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
731         when available.
732         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
733
734 2008-05-28  Bruno Haible  <bruno@clisp.org>
735
736         * modules/stpcpy (License): Change to LGPLv2+.
737         Requested by David Lutterkort <dlutter@redhat.com>.
738
739 2008-05-27  Bruno Haible  <bruno@clisp.org>
740
741         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
742         current mingw.
743         Reported by Jose E. Marchesi <jemarch@gnu.org>.
744
745 2008-05-27  Bruno Haible  <bruno@clisp.org>
746
747         * modules/iconv_open (Link): New section, from module 'iconv'.
748         * modules/striconv (Link): Likewise.
749         * modules/striconveh (Link): Likewise.
750         * modules/xstriconv (Link): Likewise.
751         * modules/unicodeio (Link): Likewise.
752         * modules/propername (Link): Likewise.
753         Reported by Jim Meyering.
754
755 2008-05-26  Jim Meyering  <meyering@redhat.com>
756
757         sha256: do not artificially restrict buffer length to be < 2^32
758         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
759         uint32_t to size_t.
760         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
761         to match.
762
763         avoid unaligned access errors, e.g., on sparc
764         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
765         direct access through a possibly-unaligned uint64* pointer.
766         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
767         direct access through a possibly-unaligned uint32* pointer.
768         Prompted by this patch from Tom "spot" Callaway:
769         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
770
771         sha512.c: fix typo in comment
772         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
773
774 2008-05-25  Bruno Haible  <bruno@clisp.org>
775
776         * lib/set-mode-acl.c: Renamed from lib/acl.c.
777         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
778         (Makefile.am): Update lib_SOURCES.
779
780 2008-05-25  Bruno Haible  <bruno@clisp.org>
781
782         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
783
784 2008-05-25  Jim Meyering  <meyering@redhat.com>
785
786         useless-if-before-free: freed expr may have white-space differences
787         * build-aux/useless-if-before-free: Recognize cases in which the
788         freed expression differs from the tested one in embedded white
789         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
790         $1 was used, so we can't make any regexp shy.  Improved tests now
791         detect this.
792
793         useless-if-before-free: accept white space in the expression.
794         * build-aux/useless-if-before-free: For now, any white space
795         in the expression must be identical in the free argument.
796
797         useless-if-before-free: efficiency tweak
798         * build-aux/useless-if-before-free: Make the expression-matching
799         regexp "shy".
800         Make the *outer* regexp shy, not the expr-matching one.
801
802         update code-in-comment to accept cast of free arg
803         * build-aux/useless-if-before-free: Update regexp.
804
805 2008-05-25  Bruno Haible  <bruno@clisp.org>
806
807         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
808         * modules/copy-file-tests (Files, Makefile.am): Update.
809         * tests/test-copy-file.c (func_test_copy): Update.
810
811 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
812
813         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
814
815 2008-05-23  Bruno Haible  <bruno@clisp.org>
816
817         Improve support for ACLs on OSF/1.
818         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
819         Remove fallback for unknown flavors of ACLs.
820
821 2008-05-22  Bruno Haible  <bruno@clisp.org>
822
823         Add support for ACLs on OSF/1.
824         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
825         replacements.
826         (acl_free_text): New macro fallback.
827         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
828         acl_free.
829         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
830         acl_free_text function. Require AC_C_INLINE.
831
832 2008-05-22  Bruno Haible  <bruno@clisp.org>
833
834         Make copy_acl work on MacOS X 10.5.
835         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
836         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
837         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
838         If MODE_INSIDE_ACL, don't assume that every system has the same text
839         representation for ACLs as FreeBSD.
840         * lib/copy-acl.c (copy_acl): Add support for platforms with
841         !MODE_INSIDE_ACL.
842         * lib/file-has-acl.c (file_has_acl): Likewise.
843         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
844         FreeBSD, MacOS X, or IRIX, respectively.
845
846 2008-05-22  Bruno Haible  <bruno@clisp.org>
847
848         * lib/acl.h: Don't include <sys/acl.h>.
849         (GETACLCNT): Move fallback to lib/acl-internal.h.
850         * lib/acl-internal.h: Include <sys/acl.h> here.
851         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
852
853 2008-05-22  Bruno Haible  <bruno@clisp.org>
854
855         Split off copy_acl function to separate file.
856         * lib/copy-acl.c: New file, extracted from lib/acl.c.
857         * lib/acl.c (copy_acl): Moved function to separate file.
858         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
859         * modules/acl (Files): Add lib/copy-acl.c.
860         (Makefiles.am): Augment lib_SOURCES.
861
862 2008-05-22  Bruno Haible  <bruno@clisp.org>
863
864         * modules/copy-file-tests: New file.
865         * tests/test-copy-file.sh: New file.
866         * tests/test-copy-file.c: New file.
867         * tests/test-copy-file-sameacls.c: New file.
868
869 2008-05-22  Eric Blake  <ebb9@byu.net>
870
871         Avoid gcc warning.
872         * tests/test-memcmp.c (main): Pass NULL indirectly.
873
874 2008-05-21  Bruno Haible  <bruno@clisp.org>
875
876         Add reference doc about ACLs.
877         * doc/acl-resources.txt: New file.
878         * doc/acl-cygwin.txt: New file.
879
880 2008-05-21  Bruno Haible  <bruno@clisp.org>
881
882         Avoid one more warning from gcc.
883         * lib/vasnprintf.c (IF_LINT): Update comments.
884         (VASNPRINTF): Use it also for the 'prefix' array initializer.
885
886 2008-05-21  Jim Meyering  <meyering@redhat.com>
887
888         avoid a warning from gcc
889         * lib/vasnprintf.c (IF_LINT): Define.
890         (scale10_round_decimal_long_double):
891         Use it to avoid a "may be used uninitialized" warning.
892         (scale10_round_decimal_double): Likewise.
893
894 2008-05-21  Simon Josefsson  <simon@josefsson.org>
895
896         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
897         declared.
898
899 2008-05-20  Bruno Haible  <bruno@clisp.org>
900
901         * tests/test-memcmp.c (main): Test also the sign of the result. Test
902         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
903
904 2008-05-20  Simon Josefsson  <simon@josefsson.org>
905
906         * modules/memcmp-tests: New file.
907         * tests/test-memcmp.c: New file.
908
909 2008-05-19  Bruno Haible  <bruno@clisp.org>
910
911         * modules/propername (Notice, configure.ac): Put quoted "..." into
912         --keyword option.
913         * lib/propername.h: Update comments accordingly.
914         Reported by Eric Blake.
915
916 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
917
918         * modules/getpass-gnu (Depends-on): Add fseeko.
919
920 2008-05-19  Simon Josefsson  <simon@josefsson.org>
921
922         * modules/base64-tests: New file.
923
924 2008-05-19  Bo Borgerson <gigabo@gmail.com>
925
926         * lib/base64.c (base64_decode_ctx): If a decode context structure
927         was passed in use it to ignore newlines.  If a context structure
928         was _not_ passed in, continue to treat newlines as garbage (this
929         is the historical behavior).  Formerly base64_decode.
930         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
931         takes a decode context structure.
932         * lib/base64.h (base64_decode): Macro for four-argument calls.
933         (base64_decode_alloc): Likewise.
934         * lib/base64.c (base64_decode_ctx): If a decode context structure
935         was passed in use it to ignore newlines.  If a context structure
936         was _not_ passed in, continue to treat newlines as garbage (this
937         is the historical behavior).  Formerly base64_decode.
938         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
939         takes a decode context structure.
940         * lib/base64.h (base64_decode): Macro for four-argument calls.
941         (base64_decode_alloc): Likewise.
942
943 2008-05-19  Jim Meyering  <meyering@redhat.com>
944
945         avoid a warning from gcc
946         * lib/trim.c (IF_LINT): Define.
947         (trim2): Use it to avoid a "may be used uninitialized" warning.
948
949         Fix doc typo.
950         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
951
952 2008-05-19  Bruno Haible  <bruno@clisp.org>
953
954         * doc/glibc-functions/getpass.texi: Document limits of other
955         implementations.
956
957 2008-05-19  Simon Josefsson  <simon@josefsson.org>
958             Bruno Haible <bruno@clisp.org>
959
960         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
961
962 2008-05-18  Bruno Haible  <bruno@clisp.org>
963
964         * modules/propername: New file, from GNU gettext.
965         * lib/propername.h: New file, from GNU gettext.
966         * lib/propername.c: New file, from GNU gettext.
967         * MODULES.html.sh (Internationalization functions): Add propername.
968
969 2008-05-16  Jim Meyering  <meyering@redhat.com>
970             Bruno Haible  <bruno@clisp.org>
971
972         Avoid some warnings from "gcc -Wshadow".
973         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
974
975 2008-05-15  Eric Blake  <ebb9@byu.net>
976
977         Extend previous patch to cygwin 1.7.0.
978         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
979         fast implementation in cygwin >= 1.7.0.
980         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
981         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
982
983 2008-05-15  Bruno Haible  <bruno@clisp.org>
984
985         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
986         implementation in glibc >= 2.9.
987         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
988         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
989
990 2008-05-15  Bruno Haible  <bruno@clisp.org>
991
992         * MODULES.html.sh (Internationalization functions): Remove linebreak.
993         (Unicode string functions): Add unilbrk/*.
994         Reported by Karl Berry.
995
996 2008-05-15  Eric Blake  <ebb9@byu.net>
997
998         Fix violation of <stdbool.h> replacement in regex.
999         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
1000         * lib/regexec.c (re_search_internal): Likewise.
1001         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
1002
1003 2008-05-15  Jim Meyering  <meyering@redhat.com>
1004
1005         avoid distracting test output when git or cvs is not found
1006         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
1007         * tests/test-vc-list-files-git.sh: Likewise.
1008
1009 2008-05-15  Eric Blake  <ebb9@byu.net>
1010
1011         Glibc finally accepted the memmem speedup code, bugzilla #5514.
1012         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
1013         glibc version.
1014         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
1015         * doc/posix-functions/strstr.texi (strstr): Likewise.
1016         * lib/str-two-way.h (MAX): Sychronize with glibc.
1017
1018 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
1019
1020         * lib/regcomp.c (optimize_utf8): Add a note on why we test
1021         opr.ctx_type.
1022         (calc_first): Initialize constraint field.
1023         (duplicate_node_closure): Use it instead of special casing ANCHORS.
1024         Fix grammar.
1025         (duplicate_node): Merge constraint field for all node types.
1026         (calc_eclosure_iter): Look at constraint field for all node types.
1027         * lib/regex_internal.c (create_cd_newstate): Don't look at
1028         opr.ctx_type.
1029
1030 2008-05-14  Bruno Haible  <bruno@clisp.org>
1031
1032         Help GCC to do better code generation.
1033         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
1034         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
1035         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
1036         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
1037         Declare with attribute 'malloc' if supported.
1038
1039 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
1040
1041         use "echo STR|wc -c" rather than unportable "expr length STR"
1042         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
1043         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
1044
1045 2008-05-14  Jim Meyering  <meyering@redhat.com>
1046
1047         use dd ibs=$n count=1 ... rather than less-portable head -c$n
1048         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
1049         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
1050         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
1051         via Collin Lasse.
1052
1053 2008-05-14  Eric Blake  <ebb9@byu.net>
1054
1055         Avoid quadratic growth in gl_LIBSOURCES.
1056         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
1057         Suggested by Bruno Haible.
1058
1059         Test xmemdup0.
1060         * modules/xmemdup0-tests: New file.
1061         * tests/test-xmemdup0.c: Likewise.
1062
1063 2008-05-13  Eric Blake  <ebb9@byu.net>
1064
1065         Split xmemdup0 into its own module.
1066         * modules/xmemdup0: New file.
1067         * lib/xmemdup0.h: Likewise.
1068         * lib/xmemdup0.c: Likewise.
1069         * MODULES.html.sh (Memory management functions): Add xmemdup0.
1070         * lib/xalloc.h (xmemdup0): Remove.
1071         * lib/xmalloc.c (xmemdup0): Likewise.
1072
1073 2008-05-13  Eric Blake  <ebb9@byu.net>
1074             Bruno Haible  <bruno@clisp.org>
1075
1076         Reduce number of forks required during autoconf.
1077         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
1078         and gl_LIBSOURCES_DIR.
1079         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
1080         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
1081         m4_syscmd per file.
1082         <m4_foreach_w>: Move...
1083         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
1084
1085 2008-05-13  Eric Blake  <ebb9@byu.net>
1086
1087         * gnulib-tool: Fix various comment typos.
1088
1089 2008-05-12  Bruno Haible  <bruno@clisp.org>
1090
1091         Tailor the linebreaking algorithm.
1092         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
1093
1094 2008-05-12  Bruno Haible  <bruno@clisp.org>
1095
1096         Update to Unicode 5.0.0.
1097         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
1098         LBP_JV, LBP_JT. Redistribute values.
1099         (unilbrk_table): Change size.
1100         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
1101         Unicode TR#14 rev. 22.
1102         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
1103         LBP_JV, LBP_JT. Redistribute values.
1104         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
1105         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
1106         Update.
1107         * lib/unilbrk/lbrkprop1.h: Regenerated.
1108         * lib/unilbrk/lbrkprop2.h: Regenerated.
1109         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
1110         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
1111         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
1112         Likewise.
1113         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
1114         Likewise.
1115         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
1116         result.
1117         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
1118         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
1119         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
1120         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
1121         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
1122         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
1123
1124 2008-05-11  Bruno Haible  <bruno@clisp.org>
1125
1126         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
1127
1128 2008-05-11  Bruno Haible  <bruno@clisp.org>
1129
1130         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
1131         * modules/unilbrk/gen-lbrk: New file.
1132
1133 2008-05-11  Bruno Haible  <bruno@clisp.org>
1134
1135         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
1136         * m4/sha512.m4 (gl_SHA512): Likewise.
1137
1138 2008-05-11  Jim Meyering  <meyering@redhat.com>
1139
1140         New modules: crypto/sha256, crypto/sha512 (from coreutils)
1141         * modules/crypto/sha256: New file.
1142         * modules/crypto/sha512: Likewise.
1143         * lib/sha256.c: Likewise.
1144         * lib/sha256.h: Likewise.
1145         * lib/sha512.c: Likewise.
1146         * lib/sha512.h: Likewise.
1147         * lib/u64.h: Likewise.
1148         * m4/sha256.m4: Likewise.
1149         * m4/sha512.m4: Likewise.
1150         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
1151
1152 2008-05-10  Bruno Haible  <bruno@clisp.org>
1153
1154         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
1155         (Input/Output <stdio.h>): Add xprintf.
1156         (Signal handling <signal.h>): Add strsignal.
1157         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
1158         (Core language properties): Add func.
1159         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
1160         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
1161         strings.
1162         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
1163         (Input/output): New section.
1164         (File system functions): Add openat-die, stat-macros.
1165         (Networking functions): Add sockets.
1166         (Unicode string functions): Add unictype/*.
1167         (Support for building libraries and executables): Add gperf.
1168         (Support for building documentation): Add agpl-3.0.
1169         (Misc): Add nocrash.
1170
1171 2008-05-10  Bruno Haible  <bruno@clisp.org>
1172
1173         * modules/unictype/gen-ctype: New file.
1174
1175 2008-05-10  Jim Meyering  <meyering@redhat.com>
1176
1177         Make chdir-safer.c more efficient on a system with no symlinks.
1178         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
1179         also if ELOOP is zero.  Suggested by Bruno Haible.
1180
1181         Make chdir-safer.c slightly safer.
1182         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
1183         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
1184
1185         Avoid compile failure on systems without ELOOP (like mingw).
1186         * lib/chdir-safer.c (ELOOP): Define if not already defined.
1187         Reported by Bruno Haible.
1188
1189 2008-05-10  Bruno Haible  <bruno@clisp.org>
1190
1191         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
1192         (is_utf8_encoding): Use a case-insensitive comparison.
1193         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
1194         streq.
1195
1196 2008-05-10  Bruno Haible  <bruno@clisp.org>
1197
1198         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
1199         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
1200         * lib/unilbrk/ulc-common.h (iconv_string_length,
1201         iconv_string_keeping_offsets): Remove declarations.
1202         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
1203         Don't include <iconv.h>, streq.h, xsize.h.
1204         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
1205         conversion.
1206         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
1207         <iconv.h>, streq.h, xsize.h.
1208         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
1209         conversion.
1210         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
1211         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
1212         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
1213         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
1214
1215 2008-05-10  Bruno Haible  <bruno@clisp.org>
1216
1217         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
1218         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
1219
1220         * modules/unilbrk/u32-width-linebreaks-tests: New file.
1221         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
1222
1223         * modules/unilbrk/u16-width-linebreaks-tests: New file.
1224         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
1225
1226         * modules/unilbrk/u8-width-linebreaks-tests: New file.
1227         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
1228
1229         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
1230         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
1231
1232         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
1233         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
1234
1235         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
1236         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
1237
1238         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
1239         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
1240
1241 2008-05-10  Bruno Haible  <bruno@clisp.org>
1242
1243         Split up 'linebreak' module.
1244         * lib/unilbrk.h: New file, based on lib/linebreak.h.
1245         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
1246         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
1247         modifications.
1248         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
1249         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
1250         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
1251         lib/linebreak.c.
1252         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
1253         lib/linebreak.c.
1254         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
1255         lib/linebreak.c.
1256         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
1257         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
1258         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
1259         lib/linebreak.c.
1260         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
1261         lib/linebreak.c.
1262         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
1263         lib/linebreak.c.
1264         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
1265         lib/linebreak.c.
1266         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
1267         lib/linebreak.c.
1268         * modules/unilbrk/base: New file.
1269         * modules/unilbrk/tables: New file.
1270         * modules/unilbrk/u8-possible-linebreaks: New file.
1271         * modules/unilbrk/u16-possible-linebreaks: New file.
1272         * modules/unilbrk/u32-possible-linebreaks: New file.
1273         * modules/unilbrk/ulc-common: New file.
1274         * modules/unilbrk/ulc-possible-linebreaks: New file.
1275         * modules/unilbrk/u8-width-linebreaks: New file.
1276         * modules/unilbrk/u16-width-linebreaks: New file.
1277         * modules/unilbrk/u32-width-linebreaks: New file.
1278         * modules/unilbrk/ulc-width-linebreaks: New file.
1279         * lib/linebreak.h: Remove file.
1280         * lib/linebreak.c: Remove file.
1281         * m4/linebreak.m4: Remove file.
1282         * modules/linebreak: Remove file.
1283         * NEWS: Mention the changes.
1284
1285 2008-05-09  Eric Blake  <ebb9@byu.net>
1286
1287         Add xmemdup0.
1288         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
1289         implementation.
1290         * lib/xmalloc.c (xmemdup0): New C implementation.
1291
1292 2008-05-08  Bruno Haible  <bruno@clisp.org>
1293
1294         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
1295
1296 2008-05-07  Eric Blake  <ebb9@byu.net>
1297
1298         Support cross-compilation of <wctype.h>.
1299         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
1300         AC_CACHE_CHECK.
1301
1302 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
1303
1304         * build-aux/vc-list-files: Add support for bzr.
1305
1306 2008-05-03  Jim Meyering  <meyering@redhat.com>
1307
1308         avoid failed assertion with tight malloc
1309         * tests/test-getndelim2.c: Correct an off-by-one assertion.
1310
1311 2008-05-03  Simon Josefsson  <simon@josefsson.org>
1312
1313         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
1314         are needed from arpa/inet.h.
1315         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
1316         Reported by Bruno Haible.
1317
1318 2008-05-02  Jim Meyering  <meyering@redhat.com>
1319
1320         avoid compilation error on FreeBSD 6
1321         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
1322
1323 2008-05-01  Jim Meyering  <meyering@redhat.com>
1324
1325         useless-if-before-free: correct --help's exit status description
1326         * build-aux/useless-if-before-free (usage): Like grep, exit 0
1327         for one or more matches, etc.  Reported by Bruno Haible.
1328
1329         vc-list-files: make the stand-alone gnulib test work
1330         * modules/vc-list-files-tests (configure.ac):
1331         Define and AC_SUBST abs_aux_dir.
1332         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
1333         $(abs_top_srcdir) to each script and having each of them
1334         duplicate the work of setting PATH, set PATH here, using
1335         the new variable, abs_aux_dir instead.
1336         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
1337         * tests/test-vc-list-files-git.sh: Likewise.
1338         Reported by Bruno Haible.
1339
1340 2008-05-01  Bruno Haible  <bruno@clisp.org>
1341
1342         * lib/getndelim2.c (getndelim2): Fix newsize computation during
1343         reallocation. Rename 'done' to 'found_delimiter'.
1344
1345 2008-05-01  Jim Meyering  <meyering@redhat.com>
1346
1347         vc-list-files: accommodate /bin/sh like the one from Solaris 10
1348         * build-aux/vc-list-files: Use `...`, not $(...).
1349
1350 2008-04-30  Jim Meyering  <meyering@redhat.com>
1351
1352         add tests for vc-list-files
1353         * modules/vc-list-files-tests: New module.
1354         * tests/test-vc-list-files-cvs.sh: New file.
1355         * tests/test-vc-list-files-git.sh: New file.
1356
1357         avoid a warning from gcc
1358         * lib/getndelim2.c (IF_LINT): Define.
1359         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
1360
1361         vc-list-files: work properly with build-aux/cvsu, too
1362         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
1363         to all cvs-based clauses.
1364
1365         vc-list-files: work properly in the CVS+awk case, too
1366         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
1367
1368         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
1369         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
1370         take more than one file argument, so .  Add quotes, just in case $dir
1371         ever contains a shell meta-character.  Prompted by Soren Hansen in
1372         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
1373
1374 2008-04-29  Eric Blake  <ebb9@byu.net>
1375
1376         Optimize getndelim2 to use block operations when possible.
1377         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
1378         freadseek, and memchr2.
1379         * lib/getndelim2.c (getndelim2): Use them for block reads.
1380
1381 2008-04-29  Bruno Haible  <bruno@clisp.org>
1382
1383         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
1384         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1385         * modules/inet_ntop (Depends-on): Add extensions.
1386         * modules/inet_pton (Depends-on): Likewise.
1387         Reported by Simon Josefsson.
1388
1389 2008-04-29  Jim Meyering  <meyering@redhat.com>
1390
1391         When the is more than one match in a block, match all of them.
1392         * build-aux/useless-if-before-free: Iterate through each block
1393         until there are no more matches.
1394
1395         Fix broken useless-if-before-free script.
1396         * build-aux/useless-if-before-free: Fix typo: missing "?" after
1397         the expression to match cast of argument to free-like function.
1398
1399 2008-04-29  Eric Blake  <ebb9@byu.net>
1400
1401         Use new header.
1402         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
1403
1404 2008-04-29  Jim Meyering  <meyering@redhat.com>
1405
1406         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
1407         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
1408         by gnulib to exist and to declare e.g., inet_ntop.
1409         Don't include "inet_ntop.h", now removed.
1410
1411         * m4/arpa_inet_h.m4: Remove trailing blanks.
1412
1413 2008-04-29  Eric Blake  <ebb9@byu.net>
1414
1415         Silence valgrind on safe reads beyond potential array bounds.
1416         * lib/rawmemchr.valgrind: New file.
1417         * lib/strchrnul.valgrind: Likewise.
1418         * modules/rawmemchr (Files): Distribute new file.
1419         * modules/strchrnul (Files): Likewise.
1420         Suggested by Bruno Haible.
1421
1422 2008-04-29  Bruno Haible  <bruno@clisp.org>
1423
1424         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
1425         (inet_ntop, inet_pton): Change portability warning's wording.
1426         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
1427         Invoke gl_CHECK_NEXT_HEADERS.
1428         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
1429         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
1430         set ARPA_INET_H.
1431         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1432         * modules/arpa_inet (Description): No longer only for systems that
1433         lack it.
1434         (Depends-on): Add include_next.
1435         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
1436         HAVE_ARPA_INET_H.
1437
1438 2008-04-29  Jim Meyering  <meyering@redhat.com>
1439
1440         * modules/mkdir (License): Re-license as LGPLv2+.
1441
1442 2008-04-29  Bruno Haible  <bruno@clisp.org>
1443
1444         * modules/rawmemchr (Maintainer): Set to Eric.
1445         * modules/strchrnul (Maintainer): Likewise.
1446
1447 2008-04-29  Simon Josefsson  <simon@josefsson.org>
1448
1449         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
1450         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
1451
1452         * modules/arpa_inet (arpa/inet.h): Use them.
1453
1454 2008-04-28  Eric Blake  <ebb9@byu.net>
1455
1456         Test getndelim2.
1457         * modules/getndelim2-tests: New file.
1458         * tests/test-getndelim2.c: Likewise.
1459         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
1460         stream.
1461         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
1462
1463         * MODULES.html.sh: Document new module.
1464
1465 2008-04-20  Bruno Haible  <bruno@clisp.org>
1466
1467         * lib/c-stack.c (die): Use raise.
1468         * modules/c-stack (Depends-on): Add raise.
1469
1470 2008-04-28  Bruno Haible  <bruno@clisp.org>
1471
1472         Expect rpmatch to be declared.
1473         * lib/yesno.c (rpmatch): Remove declaration.
1474
1475         Declare rpmatch.
1476         * lib/stdlib.in.h (rpmatch): New declaration.
1477         * lib/rpmatch.c: Include <stdlib.h> first.
1478         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
1479         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
1480         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
1481         HAVE_RPMATCH.
1482         * modules/rpmatch (Depends-on): Add stdlib, extensions.
1483         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
1484         (Include): Set to <stdlib.h>.
1485         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
1486         HAVE_RPMATCH.
1487         * NEWS: Document the change.
1488
1489 2008-04-28  Bruno Haible  <bruno@clisp.org>
1490
1491         Change rpmatch to use nl_langinfo when appropriate.
1492         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
1493         (N_): New macro.
1494         (localized_pattern): New function/macro.
1495         (try): Remove match, nomatch arguments. Copy the pattern into safe
1496         memory before caching it.
1497         (rpmatch): Use localized_pattern. Add translator comments.
1498         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
1499         Suggested by Eric Blake.
1500         * modules/rpmatch (Depends-on): Add stdbool.
1501
1502 2008-04-28  Eric Blake  <ebb9@byu.net>
1503
1504         Add rawmemchr module, matching glibc.
1505         * modules/string (Makefile.am): New indicator.
1506         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
1507         * lib/string.in.h (rawmemchr): Declare when appropriate.
1508         * modules/rawmemchr: New file.
1509         * m4/rawmemchr.m4: Likewise.
1510         * lib/rawmemchr.c: Likewise.
1511         * modules/rawmemchr-tests: Likewise.
1512         * tests/test-rawmemchr.c: Likewise.
1513         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
1514         module.
1515         * modules/strchrnul (Depends-on): Add rawmemchr.
1516         * lib/strchrnul.c (strchrnul): Optimize a corner case.
1517
1518         Whitespace cleanup.
1519         * tests/test-strchrnul.c: Reindent.
1520         * lib/strchrnul.c: Likewise.
1521
1522         Optimize and test strchrnul.
1523         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
1524         * modules/strchrnul-tests: New file.
1525         * tests/test-strchrnul.c: Likewise.
1526
1527         Remove intprops dependency.
1528         * modules/memchr (Depends-on): Remove intprops.
1529         * modules/memrchr (Depends-on): Likewise.
1530         * modules/memchr2 (Depends-on): Likewise.
1531         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
1532         * lib/memrchr.c (__memrchr): Likewise.
1533         * lib/memrchr2.c (memchr2): Likewise.
1534         Reported by Simon Josefsson.
1535
1536 2008-04-28  Simon Josefsson  <simon@josefsson.org>
1537
1538         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
1539         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1540
1541 2008-04-28  Simon Josefsson  <simon@josefsson.org>
1542
1543         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
1544
1545         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
1546
1547         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
1548
1549         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
1550         declarations.
1551         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
1552
1553         * m4/inet_pton.m4: Don't check for header files.
1554
1555         * m4/inet_ntop.m4: Don't check for header files.
1556
1557 2008-04-28  Simon Josefsson  <simon@josefsson.org>
1558
1559         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
1560         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
1561         trigger for cygwin).
1562         Reported by Bruno Haible  <bruno@clisp.org>.
1563
1564 2008-04-28  Bruno Haible  <bruno@clisp.org>
1565
1566         * doc/posix-functions/strdup.texi: Mention mingw problem.
1567
1568 2008-04-27  Bruno Haible  <bruno@clisp.org>
1569
1570         * modules/stat-time-tests (Depends-on): Add sleep.
1571         * tests/test-stat-time.c (force_unlink): New function.
1572         (cleanup): Use it.
1573         (test_mtime): Remove the ctime related tests.
1574         (test_ctime): New function, containing the ctime related tests.
1575         (main): Call test_ctime, except on native Windows platforms.
1576
1577 2008-04-27  Bruno Haible  <bruno@clisp.org>
1578
1579         * lib/rpmatch.c (rpmatch): Add some comments.
1580         Reported by James Youngman <jay@gnu.org>.
1581
1582 2008-04-27  Bruno Haible  <bruno@clisp.org>
1583
1584         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
1585         quiet NaNs.
1586
1587 2008-04-27  Bruno Haible  <bruno@clisp.org>
1588
1589         Make test-yesno.sh work on mingw.
1590         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
1591         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
1592         (main): Set stdin to binary mode.
1593         * modules/yesno-tests (Depends-on): Add binary-io.
1594
1595 2008-04-27  Bruno Haible  <bruno@clisp.org>
1596
1597         Fix 'isfinite' on x86, x86_64, ia64 platforms.
1598         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
1599         argument that lie outside the IEEE 854 domain.
1600         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
1601         (gl_ISFINITE): Use it.
1602         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
1603
1604 2008-04-27  Bruno Haible  <bruno@clisp.org>
1605
1606         Allow local renaming in config.h.
1607         * lib/memrchr.c (memrchr): Don't undefine outside libc.
1608
1609 2008-04-27  Bruno Haible  <bruno@clisp.org>
1610
1611         * lib/memchr.c (__memchr): Change type of 'i'.
1612         * lib/memchr2.c (memchr2): Likewise.
1613
1614 2008-04-26  Eric Blake  <ebb9@byu.net>
1615         and Bruno Haible  <bruno@clisp.org>
1616
1617         Optimize and test memrchr.
1618         * modules/memrchr (Depends-on): Add intprops.
1619         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
1620         * modules/memrchr-tests: New file.
1621         * tests/test-memrchr.c: New file.
1622
1623 2008-04-26  Bruno Haible  <bruno@clisp.org>
1624
1625         Add tentative support for DragonFly BSD.
1626         * lib/stdio-impl.h: Add macros for DragonFly BSD.
1627         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
1628         fp.
1629         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
1630         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
1631         * lib/fpurge.c (fpurge): Likewise.
1632         * lib/freadable.c (freaadable): Likewise.
1633         * lib/freadahead.c (freadahead): Likewise.
1634         * lib/freading.c (freading): Likewise.
1635         * lib/freadptr.c (freadptr): Likewise.
1636         * lib/freadseek.c (freadptrinc): Likewise.
1637         * lib/fseeko.c (fseeko): Likewise.
1638         * lib/fseterr.c (fseterr): Likewise.
1639         * lib/fwritable.c (fwritable): Likewise.
1640         * lib/fwriting.c (fwriting): Likewise.
1641
1642 2008-04-26  Bruno Haible  <bruno@clisp.org>
1643
1644         * lib/stdio-impl.h: New file.
1645         * lib/fbufmode.c: Include stdio-impl.h.
1646         (fbufmode): Use fp_, remove redundant #defines.
1647         * lib/fflush.c: Include stdio-impl.h.
1648         (clear_ungetc_buffer): Remove redundant #defines.
1649         * lib/fpurge.c: Include stdio-impl.h.
1650         (fpurge): Remove redundant #defines.
1651         * lib/freadable.c: Include stdio-impl.h.
1652         (freadable): Remove redundant #defines.
1653         * lib/freadahead.c: Include stdio-impl.h.
1654         (freadahead): Remove redundant #defines.
1655         * lib/freading.c: Include stdio-impl.h.
1656         (freading): Remove redundant #defines.
1657         * lib/freadptr.c: Include stdio-impl.h.
1658         (freadptr): Remove redundant #defines.
1659         * lib/freadseek.c: Include stdio-impl.h.
1660         (freadptrinc): Remove redundant #defines.
1661         * lib/fseeko.c: Include stdio-impl.h.
1662         (rpl_fseeko): Remove redundant #defines.
1663         * lib/fseterr.c: Include stdio-impl.h.
1664         (fseterr): Remove redundant #defines.
1665         * lib/fwritable.c: Include stdio-impl.h.
1666         (fwritable: Remove redundant #defines.
1667         * lib/fwriting.c: Include stdio-impl.h.
1668         (fwriting): Remove redundant #defines.
1669         * modules/fbufmode (Files): Add lib/stdio-impl.h.
1670         * modules/fflush (Files): Likewise.
1671         * modules/fpurge (Files): Likewise.
1672         * modules/freadable (Files): Likewise.
1673         * modules/freadahead (Files): Likewise.
1674         * modules/freading (Files): Likewise.
1675         * modules/freadptr (Files): Likewise.
1676         * modules/freadseek (Files): Likewise.
1677         * modules/fseeko (Files): Likewise.
1678         * modules/fseterr (Files): Likewise.
1679         * modules/fwritable (Files): Likewise.
1680         * modules/fwriting (Files): Likewise.
1681
1682 2008-04-26  Bruno Haible  <bruno@clisp.org>
1683
1684         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
1685         restore_seek_optimization, update_fpos_cache): New functions, extracted
1686         from rpl_fflush.
1687         (rpl_fflush): Use them.
1688         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
1689         (gl_REPLACE_FFLUSH): Use it.
1690
1691 2008-04-26  Bruno Haible  <bruno@clisp.org>
1692
1693         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
1694         on Solaris.
1695         * tests/test-xstrtoimax.sh: Likewise.
1696         * tests/test-xstrtoumax.sh: Likewise.
1697         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1698
1699 2008-04-26  Bruno Haible  <bruno@clisp.org>
1700
1701         * modules/memchr-tests: New file.
1702         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
1703
1704 2008-04-26  Eric Blake  <ebb9@byu.net>
1705             Bruno Haible  <bruno@clisp.org>
1706
1707         * lib/memchr.c: Include intprops.h.
1708         (__memchr): Optimize parallel detection of matching bytes. Rename local
1709         variables. Add explanatory comments.
1710
1711 2008-04-26  Bruno Haible  <bruno@clisp.org>
1712
1713         Fix module 'memchr', broken since 2000-10-28.
1714         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
1715
1716 2008-04-26  Bruno Haible  <bruno@clisp.org>
1717
1718         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
1719         comments.
1720
1721 2008-04-25  Eric Blake  <ebb9@byu.net>
1722
1723         Use native fstatat on cygwin 1.7.0.
1724         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
1725         first.
1726
1727 2008-04-23  Eric Blake  <ebb9@byu.net>
1728
1729         Improve memchr2 performance.
1730         * lib/memchr2.c (memchr2): Further optimize parallel detection of
1731         NUL bytes.
1732         * modules/memchr2 (Depends-on): Use intprops.h.
1733
1734 2008-04-23  Simon Josefsson  <simon@josefsson.org>
1735
1736         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
1737         an inline function instead of a CPP macro.  Patch by Ben Pfaff
1738         <blp@cs.stanford.edu>.
1739
1740 2008-04-23  Simon Josefsson  <simon@josefsson.org>
1741
1742         * lib/arpa_inet.in.h: New file.
1743
1744         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
1745         (Makefile.am): Sed in substitute header file.
1746
1747         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
1748         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
1749
1750         * modules/inet_ntop (configure.ac): Use
1751         gl_ARPA_INET_MODULE_INDICATOR.
1752
1753         * modules/inet_pton (configure.ac): Use
1754         gl_ARPA_INET_MODULE_INDICATOR.
1755
1756 2008-04-22  Jim Meyering  <meyering@redhat.com>
1757
1758         * modules/verify (License): Re-license as LGPLv2+.
1759
1760 2008-04-22  Simon Josefsson  <simon@josefsson.org>
1761
1762         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
1763         parameter to void* as per POSIX standard (MinGW uses char*).
1764
1765 2008-04-21  Bruno Haible  <bruno@clisp.org>
1766
1767         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
1768         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
1769         Define to replacements if REPLACE_ISWCNTRL is 1.
1770         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
1771         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
1772         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
1773         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
1774         what it fixes.
1775         * doc/posix-functions/iswalpha.texi: Likewise.
1776         * doc/posix-functions/iswblank.texi: Likewise.
1777         * doc/posix-functions/iswcntrl.texi: Likewise.
1778         * doc/posix-functions/iswdigit.texi: Likewise.
1779         * doc/posix-functions/iswgraph.texi: Likewise.
1780         * doc/posix-functions/iswlower.texi: Likewise.
1781         * doc/posix-functions/iswprint.texi: Likewise.
1782         * doc/posix-functions/iswpunct.texi: Likewise.
1783         * doc/posix-functions/iswspace.texi: Likewise.
1784         * doc/posix-functions/iswupper.texi: Likewise.
1785         * doc/posix-functions/iswxdigit.texi: Likewise.
1786         Reported by Alain Guibert.
1787
1788 2008-04-21  Bruno Haible  <bruno@clisp.org>
1789
1790         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
1791         Patch by Alain Guibert.
1792
1793 2008-04-21  Bruno Haible  <bruno@clisp.org>
1794
1795         Fix test failures on mingw.
1796         * tests/test-xstrtol.c (print_no_progname): New function.
1797         (main): Install it in error_print_progname hook.
1798         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
1799         * tests/test-xstrtoimax.sh: Likewise.
1800         * tests/test-xstrtoumax.sh: Likewise.
1801
1802 2008-04-21  Bruno Haible  <bruno@clisp.org>
1803
1804         Fix test failure on mingw.
1805         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
1806
1807 2008-04-21  Bruno Haible  <bruno@clisp.org>
1808
1809         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
1810         Actually assign a value.
1811
1812 2008-04-20  Bruno Haible  <bruno@clisp.org>
1813
1814         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
1815         take 2.
1816         * lib/canonicalize.c (canonicalize_file_name): Elide if the
1817         'canonicalize-lgpl' module is also used.
1818         * lib/canonicalize-lgpl.c: Undo last change.
1819         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
1820
1821 2008-04-20  Bruno Haible  <bruno@clisp.org>
1822
1823         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
1824         config.h. Provide _mkdir based fallback for mingw.
1825         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
1826         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
1827         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
1828         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
1829         rather than defining mkdir in config.h.
1830         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
1831         (gl_SYS_STAT_H_DEFAULTS): New macro.
1832         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
1833         HAVE_IO_H any more.
1834         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
1835         HAVE_DECL_MKDIR and HAVE_IO_H.
1836
1837 2008-04-20  Bruno Haible  <bruno@clisp.org>
1838
1839         * lib/isapipe.c: Port to native Windows platforms.
1840
1841 2008-04-20  Bruno Haible  <bruno@clisp.org>
1842
1843         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
1844
1845 2008-04-21  Eric Blake  <ebb9@byu.net>
1846
1847         Work around preprocessors that don't handle UINTMAX_MAX.
1848         * lib/memchr2.c (memchr2): Avoid embedded #if.
1849         Reported by Alain Guibert, fix suggested by Bruno Haible.
1850
1851 2008-04-21  Simon Josefsson  <simon@josefsson.org>
1852
1853         * doc/posix-functions/strftime.texi (strftime): Explain better
1854         Windows incompatibility.  Suggested by Micah Cowan
1855         <micah@cowan.name>.
1856
1857 2008-04-20  Bruno Haible  <bruno@clisp.org>
1858
1859         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
1860         unistr/u8-mblen.
1861
1862 2008-04-20  Bruno Haible  <bruno@clisp.org>
1863
1864         Fix test failure on platforms with non-GNU iconv.
1865         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
1866         (U_TO_U8): Use it, rather than u16_to_u8.
1867         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
1868         units at the end of the input string.
1869         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
1870
1871 2008-04-20  Bruno Haible  <bruno@clisp.org>
1872
1873         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
1874         when the resulting length is 0.
1875         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
1876
1877 2008-04-20  Bruno Haible  <bruno@clisp.org>
1878
1879         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
1880         works.
1881         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
1882
1883 2008-04-20  Bruno Haible  <bruno@clisp.org>
1884
1885         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
1886         * modules/tsearch-tests (configure.ac): Test for initstate function.
1887
1888 2008-04-20  Bruno Haible  <bruno@clisp.org>
1889
1890         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
1891         for nlink_t if missing.
1892         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
1893
1894 2008-04-19  Bruno Haible  <bruno@clisp.org>
1895
1896         Work around snprintf bug on Linux libc5.
1897         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
1898         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
1899         gl_SNPRINTF_SIZE1.
1900         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1901         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
1902         that test failed.
1903         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
1904         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
1905         * modules/snprintf (Files): Add m4/printf.m4.
1906         * modules/vsnprintf (Files): Likewise.
1907         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
1908         * doc/posix-functions/vsnprintf.texi: Likewise.
1909
1910 2008-04-19  Bruno Haible  <bruno@clisp.org>
1911
1912         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
1913         from 0.0058 to less than 10^-7.
1914
1915 2008-04-19  Bruno Haible  <bruno@clisp.org>
1916
1917         Fix rounding when a precision is given.
1918         * lib/vasnprintf.c (is_borderline): New function.
1919         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
1920         9...9x.
1921         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
1922         %e, %g.
1923         * tests/test-vasprintf-posix.c (test_function): Likewise.
1924         * tests/test-snprintf-posix.h (test_function): Likewise.
1925         * tests/test-sprintf-posix.h (test_function): Likewise.
1926         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
1927         * tests/test-printf-posix.h (test_function): Likewise.
1928         * tests/test-printf-posix.output: Update.
1929         Reported by John Darrington <john@darrington.wattle.id.au> via
1930         Ben Pfaff <blp@cs.stanford.edu>.
1931
1932 2008-04-18  Simon Josefsson  <simon@josefsson.org>
1933
1934         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
1935         Suggested by Bruno Haible <bruno@clisp.org>.
1936
1937 2008-04-17  Bruno Haible  <bruno@clisp.org>
1938
1939         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
1940         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
1941         implementation.
1942         Patch by Bruce Merry <bmerry@gmail.com>.
1943
1944 2008-04-17  Simon Josefsson  <simon@josefsson.org>
1945
1946         * doc/posix-functions/strftime.texi (strftime): Mention that %e
1947         doesn't work under Windows.
1948
1949 2008-04-16  Bruno Haible  <bruno@clisp.org>
1950
1951         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
1952         New macros.
1953         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
1954         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
1955         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
1956         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
1957         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
1958         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
1959         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
1960         macros.
1961         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
1962         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
1963         Northern Sotho, Uighur.
1964
1965 2008-04-16  Bruno Haible  <bruno@clisp.org>
1966
1967         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
1968         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
1969         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
1970         Reported by Daniel Bergström <daniel@octocode.com>.
1971
1972 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
1973             Bruno Haible  <bruno@clisp.org>
1974
1975         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
1976         function.
1977         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
1978         New functions, mostly extracted from gl_locale_name_default.
1979         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
1980
1981 2008-04-16  Eric Blake  <ebb9@byu.net>
1982
1983         Adjust strtod detection to catch glibc 2.7 bug.
1984         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
1985         Reported by John Gatewood Ham.
1986
1987 2008-04-16  Bruno Haible  <bruno@clisp.org>
1988
1989         Add tentative support for Linux libc5.
1990         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
1991         * lib/fpurge.c (fpurge): Likewise.
1992         * lib/freadable.c (freadable): Likewise.
1993         * lib/freadahead.c (freadahead): Likewise.
1994         * lib/freading.c (freading): Likewise.
1995         * lib/freadptr.c (freadptr): Likewise.
1996         * lib/freadseek.c (freadptrinc): Likewise.
1997         * lib/fseeko.c (rpl_fseeko): Likewise.
1998         * lib/fseterr.c (fseterr): Likewise.
1999         * lib/fwritable.c (fwritable): Likewise.
2000         * lib/fwriting.c (fwriting): Likewise.
2001         Reported by Alain Guibert <alguibert+bts@free.fr>.
2002
2003 2008-04-15  Bruno Haible  <bruno@clisp.org>
2004
2005         * modules/mathl (configure.ac): Define module indicator.
2006
2007 2008-04-15  Bruno Haible  <bruno@clisp.org>
2008
2009         * lib/logl.c (logl): Remove unused variables.
2010
2011 2008-04-15  Bruno Haible  <bruno@clisp.org>
2012
2013         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
2014         fails.
2015
2016 2008-04-15  Bruno Haible  <bruno@clisp.org>
2017
2018         * lib/trim.c (trim2): Fix argument of isspace() macro.
2019
2020 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
2021
2022         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
2023         to 0.
2024         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
2025
2026 2008-04-14  Bruno Haible  <bruno@clisp.org>
2027
2028         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
2029         AC_LANG_PROGRAM argument.
2030         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
2031         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
2032         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
2033         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
2034         * m4/math_h.m4 (gl_MATH_H): Likewise.
2035         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
2036         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
2037         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
2038         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
2039         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
2040         * m4/regex.m4 (gl_REGEX): Likewise.
2041         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
2042         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
2043         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
2044         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
2045         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
2046         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
2047         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
2048         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
2049
2050 2008-04-14  Jim Meyering  <meyering@redhat.com>
2051
2052         test-strtod: fix typos: s/abs/fabs/
2053         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
2054
2055 2008-04-13  Bruno Haible  <bruno@clisp.org>
2056
2057         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
2058         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
2059         module is also used and while not building the reloc-wrapper.
2060
2061 2008-04-13  Bruno Haible  <bruno@clisp.org>
2062
2063         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
2064
2065 2008-04-13  Bruno Haible  <bruno@clisp.org>
2066
2067         Fix AIX compilation failure introduced on 2008-04-02.
2068         * tests/test-frexp.c (exp): Undefine before redefining.
2069         * tests/test-frexpl.c (exp): Likewise.
2070
2071 2008-04-13  Bruno Haible  <bruno@clisp.org>
2072
2073         Work around a HP-UX stdio bug.
2074         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
2075         * tests/test-ftello.c (main): Likewise.
2076         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
2077         * doc/posix-functions/ftello.texi: Likewise.
2078
2079 2008-04-13  Bruno Haible  <bruno@clisp.org>
2080
2081         Make test-signbit pass on HP-UX/hppa.
2082         * tests/test-signbit.c (minus_zerol): New variable.
2083         (test_signbitl): Use it.
2084
2085 2008-04-13  Bruno Haible  <bruno@clisp.org>
2086
2087         Make truncl work on OSF/1 4.0.
2088         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
2089         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
2090         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
2091         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
2092         HAVE_DECL_TRUNCL.
2093         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
2094         HAVE_DECL_TRUNCL.
2095         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
2096
2097 2008-04-13  Bruno Haible  <bruno@clisp.org>
2098
2099         * lib/unictype.h: Remove trailing comma from enumeration definitions.
2100
2101 2008-04-13  Bruno Haible  <bruno@clisp.org>
2102
2103         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
2104         expression, so as to avoid HP-UX 11 cc compiler bug.
2105
2106 2008-04-13  Bruno Haible  <bruno@clisp.org>
2107
2108         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
2109
2110 2008-04-13  Bruno Haible  <bruno@clisp.org>
2111
2112         * lib/git-merge-changelog.c: Remove empty declaration outside of
2113         functions.
2114
2115 2008-04-13  Bruno Haible  <bruno@clisp.org>
2116
2117         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
2118
2119 2008-04-13  Bruno Haible  <bruno@clisp.org>
2120
2121         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
2122         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
2123         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
2124         also if it exists but lacks definitions of the SHUT_* macros.
2125         * modules/sys_socket (Description): Update.
2126         Reported by Elbert Pol <e.pol@chello.nl>.
2127
2128 2008-04-13  Bruno Haible  <bruno@clisp.org>
2129
2130         * lib/localcharset.c (OS2): Don't redefine if already defined.
2131         Reported by Elbert Pol <e.pol@chello.nl>.
2132
2133 2008-04-13  Bruno Haible  <bruno@clisp.org>
2134
2135         * lib/binary-io.h [__EMX__]: Include <io.h>.
2136         Reported by Elbert Pol <e.pol@chello.nl>.
2137
2138 2008-04-12  Bruno Haible  <bruno@clisp.org>
2139
2140         * lib/fpucw.h: Enable the definitions also for x86_64.
2141         Needed for NetBSD/x86_64.
2142         Reported by Thomas Klausner <tk@giga.or.at>.
2143
2144 2008-04-12  Bruno Haible  <bruno@clisp.org>
2145
2146         * tests/test-strtod.c: Include isnand.h.
2147         (main): Use isnand instead of isnan.
2148         Reported by Jim Meyering.
2149
2150 2008-04-12  Bruno Haible  <bruno@clisp.org>
2151
2152         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
2153         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2154
2155 2008-04-12  Jim Meyering  <meyering@redhat.com>
2156
2157         * m4/math_h.m4 (gl_MATH_H): Fix typos.
2158
2159 2008-04-12  Bruno Haible  <bruno@clisp.org>
2160
2161         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
2162         Reported by Elbert Pol <e.pol@chello.nl>.
2163
2164 2008-04-12  Eric Blake  <ebb9@byu.net>
2165
2166         Work around Solaris 10 math.h bug.
2167         * m4/math_h.m4 (gl_MATH_H): Check for bug.
2168         (gl_MATH_H_DEFAULTS): Set up default.
2169         * modules/math (Makefile.am): Replace new indicators.
2170         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
2171         * tests/test-math.c (main): Test this.
2172         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
2173         * doc/posix-headers/math.texi (math.h): Mention bug.
2174         Reported by Nelson H. F. Beebe and Jim Meyering.
2175
2176 2008-04-11  Bruno Haible  <bruno@clisp.org>
2177
2178         Adapt to future versions of Apple GCC.
2179         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
2180         Reported by Peter O'Gorman <peter@pogma.com>.
2181
2182 2008-04-11  Bruno Haible  <bruno@clisp.org>
2183
2184         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
2185
2186 2008-04-11  Bruno Haible  <bruno@clisp.org>
2187
2188         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
2189
2190         * modules/getaddrinfo-tests (Makefile.am): Define
2191         test_getaddrinfo_LDADD.
2192
2193 2008-04-11  Bruno Haible  <bruno@clisp.org>
2194
2195         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
2196         (init): Fix syntax error.
2197         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
2198         is declared.
2199
2200 2008-04-11  Bruno Haible  <bruno@clisp.org>
2201
2202         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
2203         * modules/glob (Depends-on): Add stdbool.
2204
2205 2008-04-11  Bruno Haible  <bruno@clisp.org>
2206
2207         * lib/trim.c: Include <string.h>.
2208
2209 2008-04-11  Eric Blake  <ebb9@byu.net>
2210
2211         Avoid compile failure on OS/2.
2212         * lib/regex_internal.h (internal_function): Disable optimization
2213         on OS/2 (__EMX__), where it caused compiler error.
2214         Reported by Elbert Pol.
2215
2216 2008-04-11  Bruno Haible  <bruno@clisp.org>
2217
2218         Flush the standard error stream before aborting. Needed on mingw.
2219         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
2220         * tests/test-array_list.c (ASSERT): Likewise.
2221         * tests/test-array_oset.c (ASSERT): Likewise.
2222         * tests/test-avltree_list.c (ASSERT): Likewise.
2223         * tests/test-avltree_oset.c (ASSERT): Likewise.
2224         * tests/test-avltreehash_list.c (ASSERT): Likewise.
2225         * tests/test-binary-io.c (ASSERT): Likewise.
2226         * tests/test-byteswap.c (ASSERT): Likewise.
2227         * tests/test-c-ctype.c (ASSERT): Likewise.
2228         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
2229         * tests/test-c-strcasestr.c (ASSERT): Likewise.
2230         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
2231         * tests/test-c-strstr.c (ASSERT): Likewise.
2232         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
2233         * tests/test-canonicalize.c (ASSERT): Likewise.
2234         * tests/test-carray_list.c (ASSERT): Likewise.
2235         * tests/test-ceilf1.c (ASSERT): Likewise.
2236         * tests/test-ceilf2.c (ASSERT): Likewise.
2237         * tests/test-ceill.c (ASSERT): Likewise.
2238         * tests/test-count-one-bits.c (ASSERT): Likewise.
2239         * tests/test-fbufmode.c (ASSERT): Likewise.
2240         * tests/test-fflush2.c (ASSERT): Likewise.
2241         * tests/test-floorf1.c (ASSERT): Likewise.
2242         * tests/test-floorf2.c (ASSERT): Likewise.
2243         * tests/test-floorl.c (ASSERT): Likewise.
2244         * tests/test-fopen.c (ASSERT): Likewise.
2245         * tests/test-fpending.c (ASSERT): Likewise.
2246         * tests/test-fprintf-posix.c (ASSERT): Likewise.
2247         * tests/test-fpurge.c (ASSERT): Likewise.
2248         * tests/test-freadable.c (ASSERT): Likewise.
2249         * tests/test-freadahead.c (ASSERT): Likewise.
2250         * tests/test-freading.c (ASSERT): Likewise.
2251         * tests/test-freadptr.c (ASSERT): Likewise.
2252         * tests/test-freadptr2.c (ASSERT): Likewise.
2253         * tests/test-freadseek.c (ASSERT): Likewise.
2254         * tests/test-freopen.c (ASSERT): Likewise.
2255         * tests/test-frexp.c (ASSERT): Likewise.
2256         * tests/test-frexpl.c (ASSERT): Likewise.
2257         * tests/test-fseek.c (ASSERT): Likewise.
2258         * tests/test-fseeko.c (ASSERT): Likewise.
2259         * tests/test-fstrcmp.c (ASSERT): Likewise.
2260         * tests/test-ftell.c (ASSERT): Likewise.
2261         * tests/test-ftello.c (ASSERT): Likewise.
2262         * tests/test-func.c (ASSERT): Likewise.
2263         * tests/test-fwritable.c (ASSERT): Likewise.
2264         * tests/test-fwriting.c (ASSERT): Likewise.
2265         * tests/test-getdelim.c (ASSERT): Likewise.
2266         * tests/test-getline.c (ASSERT): Likewise.
2267         * tests/test-i-ring.c (ASSERT): Likewise.
2268         * tests/test-iconv-utf.c (ASSERT): Likewise.
2269         * tests/test-iconv.c (ASSERT): Likewise.
2270         * tests/test-isfinite.c (ASSERT): Likewise.
2271         * tests/test-isnand.c (ASSERT): Likewise.
2272         * tests/test-isnanf.c (ASSERT): Likewise.
2273         * tests/test-isnanl.h (ASSERT): Likewise.
2274         * tests/test-ldexpl.c (ASSERT): Likewise.
2275         * tests/test-linked_list.c (ASSERT): Likewise.
2276         * tests/test-linkedhash_list.c (ASSERT): Likewise.
2277         * tests/test-localename.c (ASSERT): Likewise.
2278         * tests/test-lseek.c (ASSERT): Likewise.
2279         * tests/test-mbscasecmp.c (ASSERT): Likewise.
2280         * tests/test-mbscasestr1.c (ASSERT): Likewise.
2281         * tests/test-mbscasestr2.c (ASSERT): Likewise.
2282         * tests/test-mbscasestr3.c (ASSERT): Likewise.
2283         * tests/test-mbscasestr4.c (ASSERT): Likewise.
2284         * tests/test-mbschr.c (ASSERT): Likewise.
2285         * tests/test-mbscspn.c (ASSERT): Likewise.
2286         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
2287         * tests/test-mbspbrk.c (ASSERT): Likewise.
2288         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
2289         * tests/test-mbsrchr.c (ASSERT): Likewise.
2290         * tests/test-mbsspn.c (ASSERT): Likewise.
2291         * tests/test-mbsstr1.c (ASSERT): Likewise.
2292         * tests/test-mbsstr2.c (ASSERT): Likewise.
2293         * tests/test-mbsstr3.c (ASSERT): Likewise.
2294         * tests/test-memchr2.c (ASSERT): Likewise.
2295         * tests/test-memmem.c (ASSERT): Likewise.
2296         * tests/test-open.c (ASSERT): Likewise.
2297         * tests/test-printf-frexp.c (ASSERT): Likewise.
2298         * tests/test-printf-frexpl.c (ASSERT): Likewise.
2299         * tests/test-printf-posix.c (ASSERT): Likewise.
2300         * tests/test-quotearg.c (ASSERT): Likewise.
2301         * tests/test-rbtree_list.c (ASSERT): Likewise.
2302         * tests/test-rbtree_oset.c (ASSERT): Likewise.
2303         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
2304         * tests/test-round1.c (ASSERT): Likewise.
2305         * tests/test-roundf1.c (ASSERT): Likewise.
2306         * tests/test-roundl.c (ASSERT): Likewise.
2307         * tests/test-signbit.c (ASSERT): Likewise.
2308         * tests/test-sleep.c (ASSERT): Likewise.
2309         * tests/test-snprintf-posix.c (ASSERT): Likewise.
2310         * tests/test-snprintf.c (ASSERT): Likewise.
2311         * tests/test-sprintf-posix.c (ASSERT): Likewise.
2312         * tests/test-stat-time.c (ASSERT): Likewise.
2313         * tests/test-strcasestr.c (ASSERT): Likewise.
2314         * tests/test-strerror.c (ASSERT): Likewise.
2315         * tests/test-striconv.c (ASSERT): Likewise.
2316         * tests/test-striconveh.c (ASSERT): Likewise.
2317         * tests/test-striconveha.c (ASSERT): Likewise.
2318         * tests/test-strsignal.c (ASSERT): Likewise.
2319         * tests/test-strstr.c (ASSERT): Likewise.
2320         * tests/test-strtod.c (ASSERT): Likewise.
2321         * tests/test-trunc1.c (ASSERT): Likewise.
2322         * tests/test-trunc2.c (ASSERT): Likewise.
2323         * tests/test-truncf1.c (ASSERT): Likewise.
2324         * tests/test-truncf2.c (ASSERT): Likewise.
2325         * tests/test-truncl.c (ASSERT): Likewise.
2326         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
2327         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
2328         * tests/test-vasnprintf.c (ASSERT): Likewise.
2329         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
2330         * tests/test-vasprintf.c (ASSERT): Likewise.
2331         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
2332         * tests/test-vprintf-posix.c (ASSERT): Likewise.
2333         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
2334         * tests/test-vsnprintf.c (ASSERT): Likewise.
2335         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
2336         * tests/test-wcwidth.c (ASSERT): Likewise.
2337         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
2338         * tests/test-xprintf-posix.c (ASSERT): Likewise.
2339         * tests/test-xvasprintf.c (ASSERT): Likewise.
2340         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
2341         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
2342         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
2343         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
2344         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
2345         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
2346         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
2347         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
2348         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
2349         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
2350         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
2351         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
2352         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
2353         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
2354         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
2355         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
2356         * tests/unictype/test-block_list.c (ASSERT): Likewise.
2357         * tests/unictype/test-block_of.c (ASSERT): Likewise.
2358         * tests/unictype/test-block_test.c (ASSERT): Likewise.
2359         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
2360         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
2361         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
2362         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
2363         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
2364         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
2365         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
2366         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
2367         * tests/unictype/test-combining.c (ASSERT): Likewise.
2368         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
2369         * tests/unictype/test-digit.c (ASSERT): Likewise.
2370         * tests/unictype/test-mirror.c (ASSERT): Likewise.
2371         * tests/unictype/test-numeric.c (ASSERT): Likewise.
2372         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
2373         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
2374         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
2375         * tests/unictype/test-scripts.c (ASSERT): Likewise.
2376         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
2377         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
2378         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
2379         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
2380         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
2381         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
2382         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
2383         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
2384         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
2385         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
2386         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
2387         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
2388         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
2389         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
2390         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
2391         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
2392         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
2393         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
2394         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
2395         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
2396         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
2397         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
2398         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
2399         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
2400         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
2401         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
2402         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
2403         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
2404         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
2405         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
2406         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
2407         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
2408         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
2409         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
2410         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
2411         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
2412         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
2413         Reported by Eric Blake.
2414
2415 2008-04-11  Bruno Haible  <bruno@clisp.org>
2416
2417         * lib/wchar.in.h: Tweak comment.
2418
2419 2008-04-11  Bruno Haible  <bruno@clisp.org>
2420
2421         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
2422         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
2423         gl_COMMON.
2424         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
2425
2426 2008-04-11  Bruno Haible  <bruno@clisp.org>
2427
2428         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
2429
2430 2008-04-11  Simon Josefsson  <simon@josefsson.org>
2431
2432         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
2433         of attempting to use non-existing /dev/*random.  Based on patch
2434         from Adam Strzelecki <ono@java.pl> in
2435         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
2436
2437 2008-04-08  Bruno Haible  <bruno@clisp.org>
2438
2439         Add tentative support for emx+gcc.
2440         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
2441         * lib/fpurge.c (fpurge): Likewise.
2442         * lib/freadable.c (freadable): Likewise.
2443         * lib/freadahead.c (freadahead): Likewise.
2444         * lib/freading.c (freading): Likewise.
2445         * lib/freadptr.c (freadptr): Likewise.
2446         * lib/freadseek.c (freadptrinc): Likewise.
2447         * lib/fseeko.c (rpl_fseeko): Likewise.
2448         * lib/fseterr.c (fseterr): Likewise.
2449         * lib/fwritable.c (fwritable): Likewise.
2450         * lib/fwriting.c (fwriting): Likewise.
2451         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
2452
2453 2008-04-09  Eric Blake  <ebb9@byu.net>
2454
2455         Avoid some autoconf warnings.
2456         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
2457         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
2458         * m4/afs.m4 (gl_AFS): Likewise.
2459         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
2460         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
2461         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
2462         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
2463         (gl_INTEGER_TYPE_SUFFIX): Likewise.
2464         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
2465         (AC_CHECK_DECLS_ONCE): Likewise.
2466         Rename file...
2467         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
2468         gnulib-tool requires autoconf 2.59 or better.
2469         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
2470
2471 2008-04-08  Eric Blake  <ebb9@byu.net>
2472
2473         Use 'git describe --match' if present (added in git 1.5.5).
2474         * build-aux/git-version-gen: Limit result to tags that match 'v*'
2475         if possible.
2476
2477 2008-04-08  Bruno Haible  <bruno@clisp.org>
2478
2479         Add tentative support for OpenServer.
2480         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
2481         _ptr, _cnt.
2482         * lib/fpurge.c (fpurge): Likewise.
2483         * lib/freadable.c (freadable): Likewise.
2484         * lib/freadahead.c (freadahead): Likewise.
2485         * lib/freading.c (freading): Likewise.
2486         * lib/freadptr.c (freadptr): Likewise.
2487         * lib/freadseek.c (freadptrinc): Likewise.
2488         * lib/fseeko.c (rpl_fseeko): Likewise.
2489         * lib/fseterr.c (fseterr): Likewise.
2490         * lib/fwritable.c (fwritable): Likewise.
2491         * lib/fwriting.c (fwriting): Likewise.
2492         Reported by Roger Cornelius <rac@tenzing.org> and
2493         Brian K. White <brian@aljex.com>.
2494
2495 2008-04-06  Jim Meyering  <meyering@redhat.com>
2496
2497         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
2498
2499 2008-04-06  Bruno Haible  <bruno@clisp.org>
2500
2501         Avoid possible error with non-ASCII bytes in UTF-8 locales.
2502         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
2503         * tests/test-printf-posix.sh: Likewise.
2504         * tests/test-vfprintf-posix.sh: Likewise.
2505         * tests/test-vprintf-posix.sh: Likewise.
2506         * tests/test-xprintf-posix.sh: Likewise.
2507
2508 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2509
2510         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
2511         hide error from 'ls', needed on OS/2.
2512         Report by Elbert Pol <elbert.pol@gmail.com>.
2513
2514 2008-04-04  Eric Blake  <ebb9@byu.net>
2515
2516         Make test-fseeko.c failures meaningful.
2517         * tests/test-fseeko.c: Print line number on failure.
2518         * tests/test-fseek.c: Likewise.
2519         Reported by Nelson H. F. Beebe.
2520
2521         Improve strtod bug detection check.
2522         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
2523         required for Solaris 10.
2524         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
2525
2526 2008-04-04  Bruno Haible  <bruno@clisp.org>
2527
2528         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
2529         by m4/setenv.m4.
2530
2531 2008-04-03  Eric Blake  <ebb9@byu.net>
2532
2533         Ensure sane .version contents.
2534         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
2535         version string.
2536         * build-aux/git-version-gen: Improve documentation.
2537
2538         Make GNU make output nicer.
2539         * top/GNUmakefile [!_have-Makefile]: Add dependency on
2540         MAKECMDGOALS to enforce message for all command line targets.  Set
2541         srcdir for use in maint.mk.
2542
2543         Another maintainer tweak.
2544         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
2545         a target that regenerates version.
2546
2547 2008-04-03  Jim Meyering  <meyering@redhat.com>
2548
2549         vc-list-files: don't cause coreutils "make po-check" failure
2550         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
2551
2552 2008-04-03  Eric Blake  <ebb9@byu.net>
2553
2554         Allow VPATH usage of vc-list-files.
2555         * build-aux/vc-list-files (scriptversion): Add timestamp.
2556         (options): Add --help, --version, -C.
2557         (CVS): Support installed cvsu.
2558
2559 2008-04-02  Bruno Haible  <bruno@clisp.org>
2560
2561         Avoid some "statement with no effect" warnings from gcc.
2562         * tests/test-wctype.c (main): Explicitly ignore unused values.
2563         Reported by Jim Meyering.
2564
2565 2008-04-02  Jim Meyering  <meyering@redhat.com>
2566
2567         Avoid some warnings from "gcc -Wshadow".
2568         * tests/test-frexp.c (exp): Define to a different identifier.
2569         * tests/test-frexpl.c (exp): Likewise.
2570
2571 2008-04-03  Jim Meyering  <meyering@redhat.com>
2572
2573         bootstrap: remove dangling *.[ch] symlinks from lib
2574         * build-aux/bootstrap [dangling symlink removal]: Move find's
2575         -depth option to precede all others, to avoid a warning.
2576         Remove *.[ch] files too, and from "$source_base" (usually lib/).
2577
2578 2008-04-02  Bruno Haible  <bruno@clisp.org>
2579
2580         Avoid some warnings from "gcc -Wshadow".
2581         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
2582         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
2583         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
2584         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
2585         Reported by Jim Meyering.
2586
2587 2008-04-01  Bruno Haible  <bruno@clisp.org>
2588
2589         Fix test to work on IRIX 6.5 with cc.
2590         * tests/test-math.c (numeric_equal): New function.
2591         (main): Use it.
2592
2593 2008-04-01  Bruno Haible  <bruno@clisp.org>
2594
2595         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
2596
2597 2008-04-01  Bruno Haible  <bruno@clisp.org>
2598
2599         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
2600         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
2601         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
2602         (Depends-on): Remove math.
2603
2604         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
2605         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
2606         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
2607         (Depends-on): Remove math.
2608
2609         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
2610         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
2611         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
2612         (Depends-on): Remove math.
2613         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
2614         (Depends-on): Remove math.
2615
2616         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
2617         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
2618         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
2619         (Depends-on): Remove math.
2620         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
2621         (Depends-on): Remove math.
2622
2623         * tests/test-round1.c: Include nan.h.
2624         (main): Use NaNd instead of NAN.
2625         * modules/round-tests (Files): Add tests/nan.h.
2626
2627         * tests/test-trunc1.c: Include nan.h.
2628         (main): Use NaNd instead of NAN.
2629         * modules/trunc-tests (Files): Add tests/nan.h.
2630
2631         * tests/test-roundf1.c: Include nan.h.
2632         (main): Use NaNf instead of NAN.
2633         * modules/roundf-tests (Files): Add tests/nan.h.
2634
2635         * tests/test-truncf1.c: Include nan.h.
2636         (main): Use NaNf instead of NAN.
2637         * modules/truncf-tests (Files): Add tests/nan.h.
2638
2639         * tests/test-ceilf1.c: Include nan.h.
2640         (main): Use NaNf instead of NAN.
2641         * modules/ceilf-tests (Files): Add tests/nan.h.
2642
2643         * tests/test-floorf1.c: Include nan.h.
2644         (main): Use NaNf instead of NAN.
2645         * modules/floorf-tests (Files): Add tests/nan.h.
2646
2647         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
2648         (main): Use NaNf instead of NAN.
2649         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
2650
2651         * tests/test-isnand.c: Include nan.h instead of <math.h>.
2652         (main): Use NaNd instead of NAN.
2653         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
2654
2655         * tests/test-frexp.c: Include nan.h.
2656         (main): Use NaNd instead of NAN.
2657         * modules/frexp-tests (Files): Add tests/nan.h.
2658
2659         * lib/isnan.c: Don't include <math.h>.
2660         (FUNC): Don't use NAN macro.
2661         * modules/isnand-nolibm (Depends-on): Remove math.
2662         * modules/isnanf-nolibm (Depends-on): Remove math.
2663         * modules/isnanl (Depends-on): Remove math.
2664         * modules/isnanl-nolibm (Depends-on): Remove math.
2665
2666         * tests/nan.h: New file.
2667
2668 2008-04-01  Eric Blake  <ebb9@byu.net>
2669
2670         Fix typos.
2671         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
2672         values to be the right type.
2673
2674         For now, cater to gnulib strtod inaccuracies.
2675         * tests/test-strtod.c (main): Allow 1-ulp error on expected
2676         fractional results.  While not as nice from a QoI perspective, it
2677         is a quicker patch than correctly implementing decimal to binary
2678         rounding.
2679
2680 2008-03-31  Eric Blake  <ebb9@byu.net>
2681
2682         Guarantee a definition of NAN.
2683         * lib/math.in.h (NAN): Define if missing.
2684         * tests/test-math.c (main): Test it.
2685         * doc/posix-headers/math.texi (math.h): Document this.
2686         * lib/isnan.c (rpl_isnand): Use it.
2687         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
2688         * tests/test-floorf1.c (NaN): Likewise.
2689         * tests/test-frexp.c (NaN): Likewise.
2690         * tests/test-isnand.c (NaN): Likewise.
2691         * tests/test-isnanf.c (NaN): Likewise.
2692         * tests/test-round1.c (NaN): Likewise.
2693         * tests/test-roundf1.c (NaN): Likewise.
2694         * tests/test-snprintf-posix.h (NaN): Likewise.
2695         * tests/test-sprintf-posix.h (NaN): Likewise.
2696         * tests/test-trunc1.c (NaN): Likewise.
2697         * tests/test-truncf1.c (NaN): Likewise.
2698         * tests/test-vasnprintf-posix.c (NaN): Likewise.
2699         * tests/test-vasprintf-posix.c (NaN): Likewise.
2700         * modules/isnand-nolibm (Depends-on): Add math.
2701         * modules/isnanf-nolibm (Depends-on): Likewise.
2702         * modules/isnanl (Depends-on): Likewise.
2703         * modules/isnanl-nolibm (Depends-on): Likewise.
2704         * modules/snprintf-posix-tests (Depends-on): Likewise.
2705         * modules/sprintf-posix-tests (Depends-on): Likewise.
2706         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
2707         * modules/vsprintf-posix-tests (Depends-on): Likewise.
2708         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
2709         * modules/vasprintf-posix-tests (Depends-on): Likewise.
2710
2711 2008-03-31  Bruno Haible  <bruno@clisp.org>
2712
2713         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
2714         * doc/posix-functions/strtod.texi: Likewise.
2715
2716 2008-03-31  Bruno Haible  <bruno@clisp.org>
2717
2718         * tests/test-strtod.c (main): Don't use C99 syntax.
2719
2720 2008-03-31  Bruno Haible  <bruno@clisp.org>
2721
2722         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
2723         Reported by Eric Blake.
2724
2725 2008-03-31  Jim Meyering  <meyering@redhat.com>
2726
2727         Don't compare actual signbit return values.
2728         * tests/test-strtod.c (main): Rather, compare only their
2729         zero/non-zero nature.
2730
2731 2008-03-31  Eric Blake  <ebb9@byu.net>
2732
2733         More strtod documentation.
2734         * doc/posix-functions/strtod.texi (strtod): Interpret more test
2735         failures as distinct bugs.
2736
2737 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
2738
2739         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
2740         Problem reported by Erik Benada in
2741         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
2742
2743 2008-03-30  Bruno Haible  <bruno@clisp.org>
2744
2745         * tests/test-strtod.c: Add comments about which assertion fails on which
2746         platform.
2747         * doc/posix-functions/strtod.texi: Add info about many more platforms.
2748
2749 2008-03-30  Eric Blake  <ebb9@byu.net>
2750
2751         Test signbit behavior on zeros.
2752         * tests/test-signbit.c (test_signbitf): Add tests for zero.
2753         (test_signbitd, test_signbitl): Likewise.
2754
2755         More strtod touchups.
2756         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
2757         sign of negative underflow, for now.  Use .5, not .1.
2758         * doc/posix-functions/strtod.texi (strtod): Mention these
2759         limitations.
2760         Reported by Jim Meyering.
2761
2762 2008-03-30  Bruno Haible  <bruno@clisp.org>
2763
2764         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
2765         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
2766
2767 2008-03-30  Bruno Haible  <bruno@clisp.org>
2768
2769         Avoid failure when attempting to return empty iconv results on some
2770         platforms.
2771         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
2772         allocation, don't report ENOMEM when the resulting string is empty.
2773
2774 2008-03-30  Bruno Haible  <bruno@clisp.org>
2775
2776         Fix buffer overrun.
2777         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
2778         Don't consider the width for tmp_length. Check count against tmp_length
2779         before doing the padding. Ensure enough allocation during padding.
2780
2781 2008-03-30  Eric Blake  <ebb9@byu.net>
2782
2783         strtod touchups.
2784         * lib/strtod.c (strtod): Avoid compiler warnings.
2785         Reported by Jim Meyering.
2786
2787 2008-03-30  Bruno Haible  <bruno@clisp.org>
2788
2789         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
2790         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
2791         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
2792         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
2793         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
2794         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
2795         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
2796         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
2797
2798         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
2799         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
2800         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
2801         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
2802         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
2803         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
2804         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
2805         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
2806
2807         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
2808         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
2809         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
2810         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
2811         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
2812         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
2813         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
2814         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
2815
2816         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
2817         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
2818
2819         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
2820         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
2821
2822         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
2823         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
2824
2825         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
2826         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
2827         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
2828
2829         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
2830         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
2831         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
2832
2833         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
2834         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
2835         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
2836
2837         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
2838         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
2839         * modules/vasprintf (Depends-on): Add EOVERFLOW.
2840
2841         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
2842         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
2843         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
2844         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
2845         (Depends-on): Add EOVERFLOW.
2846         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
2847         (Depends-on): Add EOVERFLOW.
2848         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
2849         (Depends-on): Add EOVERFLOW.
2850         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
2851         (Depends-on): Add EOVERFLOW.
2852         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
2853         (Depends-on): Add EOVERFLOW.
2854         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
2855         (Depends-on): Add EOVERFLOW.
2856         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
2857         (Depends-on): Add EOVERFLOW.
2858         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
2859         (Depends-on): Add EOVERFLOW.
2860
2861         * lib/sprintf.c (EOVERFLOW): Remove fallback.
2862         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
2863         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
2864
2865         * lib/snprintf.c (EOVERFLOW): Remove fallback.
2866         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
2867         * modules/snprintf (Depends-on): Add EOVERFLOW.
2868
2869         * lib/poll.c (EOVERFLOW): Remove fallback.
2870         * modules/poll (Depends-on): Add EOVERFLOW.
2871
2872         * lib/getugroups.c (EOVERFLOW): Remove fallback.
2873         * modules/getugroups (Depends-on): Add EOVERFLOW.
2874
2875         * lib/getdelim.c (EOVERFLOW): Remove fallback.
2876         * modules/getdelim (Depends-on): Add EOVERFLOW.
2877
2878         * lib/ftell.c (EOVERFLOW): Remove fallback.
2879         * modules/ftell (Depends-on): Add EOVERFLOW.
2880
2881         * lib/fprintf.c (EOVERFLOW): Remove fallback.
2882         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
2883         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
2884
2885         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
2886
2887         * modules/EOVERFLOW-tests: New file.
2888         * tests/test-EOVERFLOW.c: New file.
2889
2890         * modules/EOVERFLOW: New file.
2891         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
2892
2893 2008-03-30  Bruno Haible  <bruno@clisp.org>
2894
2895         Fix bug introduced on 2007-06-10.
2896         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
2897         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
2898
2899 2008-03-30  Bruno Haible  <bruno@clisp.org>
2900
2901         Improve freadseek's efficiency after ungetc.
2902         * lib/freadseek.c: Include freadahead.h.
2903         (freadptrinc): New function, extracted from freadseek.
2904         (freadseek): Use it in a loop. Use freadahead to determine the number
2905         of loop iterations.
2906         * modules/freadseek (Depends-on): Add freadahead.
2907         (configure.ac): Require AC_C_INLINE.
2908
2909 2008-03-30  Bruno Haible  <bruno@clisp.org>
2910
2911         * lib/freadseek.c (freadseek): Don't ignore the return value of
2912         freadptr.
2913
2914 2008-03-29  Eric Blake  <ebb9@byu.net>
2915
2916         Add hex float support.
2917         * modules/strtod (Depends-on): Add c-ctype.
2918         (Link): Mention POW_LIB.
2919         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
2920         whitespace between 'e' and exponent.
2921         * tests/test-strtod.c (main): Enable hex float tests.
2922         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
2923         now provides.
2924
2925         Document various strtod bugs, with some fixes.
2926         * doc/posix-functions/strtod.texi (strtod): Document bugs with
2927         "-0x", "inf", "nan", and hex constants.
2928         * doc/posix-functions/atof.texi (atof): Likewise.
2929         * modules/stdlib (Makefile.am): Support strtod.
2930         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
2931         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
2932         detect additional strtod bugs.
2933         * lib/stdlib.in.h (rpl_strtod): Add declarations.
2934         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
2935         bool where appropriate.  Parse 'inf' and 'nan'.
2936         * tests/test-strtod.c: New file.
2937         * modules/strtod (Depends-on): Add stdbool, stdlib.
2938         (configure.ac): Turn on module indicator.
2939         * modules/strtod-tests: New module.
2940
2941 2008-03-29  Eric Blake  <ebb9@byu.net>
2942
2943         Fix ftell on mingw.
2944         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
2945         * modules/ftell-tests (Depends-on): Add binary-io.
2946         * modules/ftello-tests (Depends-on): Likewise.
2947         * tests/test-ftell.c (main): Enhance test to cover behavior after
2948         ungetc.  Enforce binary mode.
2949         * tests/test-ftello.c (main): Likewise.
2950
2951         Pass test-freadseek on cygwin.
2952         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
2953         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
2954         ungetc buffer.
2955
2956         * tests/test-fflush2.c (main): Fix typo.
2957
2958 2008-03-29  Bruno Haible  <bruno@clisp.org>
2959
2960         * tests/test-fflush2.c (main): Temporarily disable the contents of
2961         this test.
2962         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
2963         Reported by Eric Blake.
2964
2965 2008-03-28  Simon Josefsson  <simon@josefsson.org>
2966
2967         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
2968         (GC_SHA224_DIGEST_SIZE): Add.
2969
2970         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
2971         (gc_hash_digest_length): Likewise.
2972         (gc_hash_buffer): Likewise.
2973
2974 2008-03-25  Bruno Haible  <bruno@clisp.org>
2975
2976         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
2977         detail which gettext release to use.
2978         Reported by Simon Josefsson.
2979
2980 2008-03-26  Jim Meyering  <meyering@redhat.com>
2981
2982         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
2983         * modules/gnumakefile (clean-GNUmakefile): Also, use
2984         test ... && ... || : syntax rather than if-then ... fi.
2985
2986         gnumakefile: Don't double-quote-expand $(VPATH) value.
2987         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
2988
2989 2008-03-24  Eric Blake  <ebb9@byu.net>
2990
2991         Alter GNUmakefile to install into top directory.
2992         * modules/maintainer-makefile: Split, and add dependency...
2993         * modules/gnumakefile: to this new module.
2994         * build-aux/GNUmakefile: Move...
2995         * top/GNUmakefile: ...here.
2996         * build-aux/maint.mk: Move...
2997         * top/maint.mk: ...here.
2998         * MODULES.html.sh (Support for maintaining...): Document new
2999         module.
3000
3001 2008-03-23  Bruno Haible  <bruno@clisp.org>
3002
3003         * gnulib-tool: New options --vc-files, --no-vc-files.
3004         (func_usage): Document them.
3005         (vc_files): New variable.
3006         (func_import): Consider vc_files.
3007         (func_create_testdir): Set vc_files to empty.
3008         Suggested by Jim Meyering and Karl Berry.
3009
3010 2008-03-23  Bruno Haible  <bruno@clisp.org>
3011
3012         Fix regex compilation error on HP-UX 11.
3013         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
3014         * modules/regex (Files): Add m4/mbstate_t.m4.
3015         Reported by Ton Voon <ton.voon@altinity.com>.
3016
3017 2008-03-23  Bruno Haible  <bruno@clisp.org>
3018
3019         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
3020
3021 2008-03-23  Eric Blake  <ebb9@byu.net>
3022             Bruno Haible  <bruno@clisp.org>
3023
3024         Install files from top/ in the destination directory.
3025         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
3026         augmentation also for the files from top/.
3027         (func_import, func_create_testdir): Rewrite file names:
3028         top/filename -> filename.
3029
3030 2008-03-23  Bruno Haible  <bruno@clisp.org>
3031
3032         Tweak "gnulib --version" output.
3033         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
3034
3035 2008-03-23  Bruno Haible  <bruno@clisp.org>
3036
3037         Tweak "gnulib --version" output.
3038         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
3039         rather than contents of ChangeLog, when possible.
3040
3041 2008-03-21  Eric Blake  <ebb9@byu.net>
3042
3043         More --version tweaks.
3044         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
3045         date of last ChangeLog entry.
3046
3047 2008-03-21  Jim Meyering  <meyering@redhat.com>
3048
3049         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
3050
3051 2008-03-20  Eric Blake  <ebb9@byu.net>
3052
3053         VPATH fix.
3054         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
3055
3056 2008-03-20  Simon Josefsson  <simon@josefsson.org>
3057
3058         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
3059         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
3060
3061 2008-03-20  Eric Blake  <ebb9@byu.net>
3062
3063         Sync GNUmakefile with coreutils.
3064         * build-aux/GNUmakefile (have-Makefile): Rename...
3065         (_have-Makefile): ...to this, for namespace consideration.
3066         (GNUmakefile.cfg): Include, if present.
3067         (_autoreconf): Define a default.
3068         (_is-dist-target): New rule for rebuilds to pick up intra-release
3069         version.
3070         (maint-cfg.mk): Rename...
3071         (cfg.mk): ...to this.
3072
3073 2008-03-18  Jim Meyering  <meyering@redhat.com>
3074
3075         New script and module: mktempd
3076         * MODULES.html.sh (maint+release support): Add mktempd.
3077         * build-aux/mktempd: New file.
3078         * modules/mktempd: New file.
3079
3080 2008-03-15  Jim Meyering  <meyering@redhat.com>
3081
3082         Undo last change.
3083         * lib/sha1.c, lib/md5.c: 63 != ~63.
3084         Reported by Andreas Schwab.
3085
3086         sha1.c, md5.c: Hoist a redundant expression.
3087         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
3088         "ctx->buflen" only once, before calling *_process_block.
3089         * lib/md5.c (md5_process_bytes): Likewise.
3090
3091 2008-03-14  Eric Blake  <ebb9@byu.net>
3092
3093         Bump copyright year in files generated by gnulib-tool.
3094         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
3095         gnulib-tool, rather than hard-coding it.
3096
3097         Fix 'gnulib-tool --version' output to work with git.
3098         * gnulib-tool (func_gnulib_dir): New function, extracted from...
3099         (startup): ...here.
3100         (func_version): Use it to invoke git-version-gen, rather than
3101         relying on CVS keyword expansion.  Modernize wording.
3102         (cvsdatestamp, last_checkin_date, version): Kill unused
3103         variables.
3104
3105 2008-03-12  Jim Meyering  <meyering@redhat.com>
3106
3107         Recognize optional cast of the argument to free.
3108         * build-aux/useless-if-before-free: Update regexps.
3109
3110         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
3111
3112 2008-03-11  Bruno Haible  <bruno@clisp.org>
3113
3114         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
3115         by a single package.
3116         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
3117         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
3118         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
3119         Reported by Sam Steingold <sds@gnu.org>.
3120
3121 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3122
3123         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
3124         repositories.
3125
3126 2008-03-11  Bruno Haible  <bruno@clisp.org>
3127
3128         Avoid conflicts between local macro definitions.
3129         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
3130         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
3131
3132 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
3133             Bruno Haible  <bruno@clisp.org>
3134
3135         Make va_copy work with some version of xlc on AIX 5.1.
3136         * lib/stdarg.in.h: New file.
3137         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
3138         On AIX, use a <stdarg.h> file substitute.
3139         * modules/stdarg (Files): Add lib/stdarg.in.h.
3140         (Depends-on): Add include_next.
3141         (Makefile.am): Build a stdarg.h substitute if requested.
3142         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
3143
3144 2008-03-10  Bruno Haible  <bruno@clisp.org>
3145
3146         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
3147         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
3148         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
3149
3150 2008-03-10  Bruno Haible  <bruno@clisp.org>
3151
3152         * modules/stdlib (Depends-on): Add include_next, remove
3153         absolute-header.
3154
3155 2008-03-09  Bruno Haible  <bruno@clisp.org>
3156
3157         * lib/freadahead.h (freadahead): Document more precisely.
3158         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
3159         the sum of both buffer sizes.
3160         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
3161         * NEWS: Document the change.
3162
3163 2008-03-09  Bruno Haible  <bruno@clisp.org>
3164
3165         Extend freadptr to return also the buffer size.
3166         * lib/freadptr.h (freadptr): Add sizep argument.
3167         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
3168         (freadptr): Add sizep argument. Determine buffer size like freadahead
3169         does.
3170         * tests/test-freadptr.c: Don't include freadahead.h.
3171         (main): Adapt for new calling convention of freadptr.
3172         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
3173         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
3174         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
3175         tests/test-freadptr2.sh.
3176         (Depends): Remove freadahead.
3177         (TESTS): Add test-freadptr2.sh.
3178         (check_PROGRAMS): Add test-freadptr2.
3179
3180 2008-03-09  Bruno Haible  <bruno@clisp.org>
3181
3182         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
3183         Report and solution by Simon Josefsson.
3184
3185 2008-03-06  Bruno Haible  <bruno@clisp.org>
3186
3187         Make fflush after ungetc work on BSD platforms.
3188         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
3189         * tests/test-fflush2.c: New file.
3190         * tests/test-fflush2.sh: New file.
3191         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
3192         tests/test-fflush2.c.
3193         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
3194         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
3195
3196 2008-03-06  Eric Blake  <ebb9@byu.net>
3197
3198         Likewise for ftello.
3199         * modules/ftello (Dependencies): Add extensions.
3200         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
3201
3202 2008-03-06  Bruno Haible  <bruno@clisp.org>
3203
3204         * modules/fseeko (Dependencies): Add extensions.
3205         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
3206         Needed on glibc systems.
3207
3208 2008-03-06  Bruno Haible  <bruno@clisp.org>
3209
3210         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
3211         email address.
3212         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
3213
3214 2008-03-06  Bruno Haible  <bruno@clisp.org>
3215
3216         * users.txt: Add libgnupdf.
3217
3218 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
3219
3220         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
3221         (Header File Substitutes, Function Substitutes,
3222         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
3223         (Build robot for gnulib): Fix typo.
3224
3225 2008-03-06  Bruno Haible  <bruno@clisp.org>
3226
3227         * doc/gnulib-tool.texi (VCS Issues): Small updates.
3228         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
3229
3230 2008-03-06  Bruno Haible  <bruno@clisp.org>
3231
3232         * doc/func.texi: New file, extracted from doc/gnulib.texi.
3233         * doc/gnulib.texi: Include it.
3234
3235 2008-03-06  Simon Josefsson  <simon@josefsson.org>
3236
3237         * modules/func (License): Change license to unlimited; there was
3238         no LGPL parts in the module anyway.
3239
3240 2008-03-06  Simon Josefsson  <simon@josefsson.org>
3241
3242         * modules/__func__: Renamed to modules/func.
3243         * modules/__func__-tests: Renamed to modules/func-tests.
3244         * tests/test-__func__.c: Renamed to tests/test-func.c.
3245         * m4/__func__.m4: Renamed to m4/func.m4.
3246         * doc/gnulib.texi (__func__): Section renamed to func.
3247         Suggested by Eric Blake <ebb9@byu.net>.
3248
3249 2008-03-06  Simon Josefsson  <simon@josefsson.org>
3250
3251         * doc/gnulib.texi (__func__): Use C99 terminology when talking
3252         about __func__.  Make example self-contained.  Suggested by Eric
3253         Blake <ebb9@byu.net>.
3254
3255         * tests/test-__func__.c (main): Avoid extraneous () around __func.
3256         Suggested by Eric Blake <ebb9@byu.net>.
3257
3258 2008-03-06  Simon Josefsson  <simon@josefsson.org>
3259
3260         * modules/__func__: New file.
3261         * modules/__func__-tests: New file.
3262         * tests/test-__func__.c: New file.
3263         * m4/__func__.m4: New file.
3264         * doc/gnulib.texi (__func__): Document __func__ module.
3265
3266 2008-03-05  Simon Josefsson  <simon@josefsson.org>
3267
3268         * modules/byteswap (License): Re-license as LGPLv2+.
3269
3270 2008-03-05  Simon Josefsson  <simon@josefsson.org>
3271
3272         * doc/Makefile: Add pdf target.
3273
3274 2008-03-05  Simon Josefsson  <simon@josefsson.org>
3275
3276         * modules/inline (License): Use 'unlimited', since there are only
3277         *.m4 files in this module.
3278
3279 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
3280             Bruno Haible  <bruno@clisp.org>
3281
3282         Add support for HP C 7.1 on OpenVMS 8.3.
3283         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
3284
3285 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
3286
3287         Update VMS specifics.
3288         * lib/getopt.c [VMS]: Remove include of unixlib.h.
3289
3290 2008-03-02  Jim Meyering  <meyering@redhat.com>
3291
3292         Remove the last dependency on the "free" module.
3293         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
3294         Reported by Bob Proulx.
3295
3296         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
3297
3298         Remove useless "if" tests before free.  Deprecate "free" module.
3299         * doc/posix-functions/free.texi: Mention that this
3300         module is no longer useful.
3301         * modules/free (Notice): Say this module is obsolete.
3302         * modules/readutmp (Depends-on): Remove free.
3303         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
3304         * lib/putenv.c (putenv): Likewise.
3305         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
3306         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
3307         * tests/test-c-strcasestr.c (main): Likewise.
3308         * tests/test-c-strstr.c (main): Likewise.
3309         * tests/test-mbscasestr1.c (main): Likewise.
3310         * tests/test-mbscasestr2.c (main): Likewise.
3311         * tests/test-mbsstr1.c (main): Likewise.
3312         * tests/test-mbsstr2.c (main): Likewise.
3313         * tests/test-memmem.c (main): Likewise.
3314         * tests/test-strcasestr.c (main): Likewise.
3315         * tests/test-striconv.c (main): Likewise.
3316         * tests/test-striconveh.c (main): Likewise.
3317         * tests/test-striconveha.c (main): Likewise.
3318         * tests/test-strstr.c (main): Likewise.
3319
3320         * build-aux/git-version-gen: Adjust a comment and the Usage string.
3321
3322         bootstrap: sync from coreutils again
3323         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
3324
3325 2008-03-01  Jim Meyering  <meyering@redhat.com>
3326
3327         bootstrap: sync from coreutils
3328         * build-aux/bootstrap (update_po_files): Copy a .po file into place
3329         also when the target doesn't exist.
3330
3331 2008-03-01  Eric Blake  <ebb9@byu.net>
3332
3333         Fix bugs in last patch.
3334         * lib/memchr2.c (memchr2): Fix typo.
3335         * tests/test-memchr2.c: Test previous bug, and don't use GNU
3336         extension.
3337         Reported by Bruce Korb.
3338
3339         New module 'memchr2'.
3340         * modules/memchr2: New file.
3341         * modules/memchr2-tests: Likewise.
3342         * lib/memchr2.h: Likewise.
3343         * lib/memchr2.c: Likewise, based on memchr.c.
3344         * tests/test-memchr2.c: New test.
3345         * MODULES.html.sh (String handling): Add memchr2.
3346
3347 2008-02-29  Bruno Haible  <bruno@clisp.org>
3348
3349         * modules/freadseek-tests: New file.
3350         * tests/test-freadseek.sh: New file.
3351         * tests/test-freadseek.c: New file.
3352
3353         New module 'freadseek'.
3354         * modules/freadseek: New file.
3355         * lib/freadseek.h: New file.
3356         * lib/freadseek.c: New file.
3357         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
3358
3359 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
3360
3361         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
3362         wydawca.
3363
3364         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
3365         program_invocation_name and program_invocation_short_name are
3366         present.
3367
3368 2008-02-28  Bruno Haible  <bruno@clisp.org>
3369
3370         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
3371         * tests/test-freadptr.sh: Also test non-seekable stdin.
3372
3373 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
3374
3375         * build-aux/bootstrap (source_base, m4_base)
3376         (doc_base, tests_base): New variables.
3377         (gnulib_tool_options): Do not hardcode base directories, use
3378         the above variables instead.
3379
3380 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
3381
3382         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
3383
3384 2008-02-28  Bruno Haible  <bruno@clisp.org>
3385
3386         * modules/freadptr-tests: New file.
3387         * tests/test-freadptr.sh: New file.
3388         * tests/test-freadptr.c: New file.
3389
3390         New module 'freadptr'.
3391         * modules/freadptr: New file.
3392         * lib/freadptr.h: New file.
3393         * lib/freadptr.c: New file.
3394         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
3395
3396 2008-02-26  Karl Berry  <karl@freefriends.org>
3397
3398         Sync from Libtool:
3399         * libltdl/argz.c (argz_add, argz_count): New functions.
3400         * libltdl/argz.in.h: Declare them.
3401         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
3402
3403 2008-02-22  Bruno Haible  <bruno@clisp.org>
3404
3405         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
3406         is a pointer type.  Needed for HP-UX 10.
3407         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
3408         * doc/posix-functions/gmtime_r.texi: Likewise.
3409         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
3410
3411 2008-02-24  Bruno Haible  <bruno@clisp.org>
3412
3413         * modules/environ-tests: New file.
3414         * tests/test-environ.c: New file.
3415
3416         New module 'environ'.
3417         * modules/environ: New file.
3418         * lib/unistd.in.h (environ): New declaration.
3419         * m4/environ.m4: New file.
3420         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
3421         after use.
3422         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
3423         HAVE_DECL_ENVIRON.
3424         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
3425         HAVE_DECL_ENVIRON.
3426         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
3427         wrong claim that 'environ' is missing on some systems.
3428         * modules/execute (Depends-on): Add environ.
3429         * lib/execute.c (environ): Remove fallback declaration.
3430         * modules/pipe (Depends-on): Add environ.
3431         * lib/pipe.c (environ): Remove fallback declaration.
3432         * modules/setenv (Depends-on): Add environ.
3433         * lib/setenv.c (environ): Remove fallback declaration.
3434         * modules/unsetenv (Depends-on): Add environ.
3435         * lib/unsetenv.c (environ): Remove fallback declaration.
3436         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
3437         m4/environ.m4.
3438         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
3439         (gl_PREREQ_UNSETENV): Likewise.
3440
3441 2008-02-24  Bruno Haible  <bruno@clisp.org>
3442
3443         * doc/posix-functions/environ.texi: Document the MacOS X problem.
3444
3445 2008-02-20  Bob Proulx  <bob@proulx.com>
3446
3447         Enable use of older two part flavor 'git describe'.
3448         * build-aux/git-version-gen: If using the older two part flavor of
3449         git version then recreate the third part now present in the
3450         newer three part flavor of git describe.
3451
3452 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
3453
3454         * lib/fts.c (fts_build): Typo correction to comment.
3455
3456 2008-02-17  Bruno Haible  <bruno@clisp.org>
3457
3458         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
3459         generating no-op conflicts.
3460
3461 2008-02-17  Bruno Haible  <bruno@clisp.org>
3462
3463         Speed up by 10%.
3464         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
3465         result_entries, rather than an index-based loop.
3466
3467 2008-02-17  Bruno Haible  <bruno@clisp.org>
3468
3469         Speed up by 25%.
3470         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
3471         'hashcode_cached'.
3472         (entry_create): New function.
3473         (entry_hashcode): Use the cached hashcode if possible.
3474         (read_changelog_file, try_split_merged_entry): Use entry_create.
3475
3476 2008-02-17  Bruno Haible  <bruno@clisp.org>
3477
3478         Speed up from O(n^2) to O(n) for long ChangeLog files.
3479         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
3480         (read_changelog_file): Change implementation of entries_reversed list
3481         to rbtreehash.
3482         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
3483
3484 2008-02-17  Bruno Haible  <bruno@clisp.org>
3485
3486         New option --split-merged-entry.
3487         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
3488         (find_paragraph_end, try_split_merged_entry): New functions.
3489         (long_options): Add option --split-merged-entry.
3490         (usage): Document option --split-merged-entry.
3491         (main): Implement option --split-merged-entry.
3492         Reported by Eric Blake.
3493
3494 2008-02-17  Bruno Haible  <bruno@clisp.org>
3495
3496         * lib/git-merge-changelog.c: Include c-strstr.h.
3497         (main): Support the "git pull --rebase" situation.
3498         * modules/git-merge-changelog (Depends-on): Add c-strstr.
3499         Reported by Eric Blake.
3500
3501 2008-02-16  Eric Blake  <ebb9@byu.net>
3502
3503         Avoid doubling \ in common case of "c-maybe" quoting style.
3504         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
3505         eliding outer quotes.
3506         * lib/quotearg.h: Document this.
3507         * tests/test-quotearg.c (result_strings, inputs, results_g)
3508         (flag_results, locale_results): Test it by adding a new string to
3509         each test group.
3510         (compare_strings): Test new string.
3511
3512 2008-02-13  Eric Blake  <ebb9@byu.net>
3513
3514         Avoid trigraph quoting in default output.
3515         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
3516         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
3517         unless explicitly requested.
3518         * tests/test-quotearg.c (flag_results, main): Add additional tests.
3519
3520 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
3521
3522         Don't rely on signed integer overflowing to negative value.
3523         * lib/getugroups.c (getugroups): Include <limits.h>.
3524         Instead, compare against INT_MAX, and increment only if the test passes.
3525
3526 2008-02-13  Jim Meyering  <meyering@redhat.com>
3527         and Eric Blake  <ebb9@byu.net>
3528
3529         Avoid shadowing warning and compile errors on Linux.
3530         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
3531         forwarding macros on Linux.
3532         (dcgettext): Define a stub, for Linux.
3533         (results_g, main): Avoid warnings.
3534
3535 2008-02-12  Eric Blake  <ebb9@byu.net>
3536
3537         Silence warning in last patch.
3538         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
3539
3540         Quotearg part 4: add tests, fix c-maybe colon quoting.
3541         * lib/quotearg.h: Improve documentation.
3542         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
3543         escapes when adding outer quotes.  When quoting trigraphs, use
3544         valid C notation.  When quoting NUL, omit extra characters if next
3545         character is not digit.  Alter prototype.
3546         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
3547         callers.
3548         * modules/quotearg-tests: New module.
3549         * tests/test-quotearg.c: New test.
3550
3551 2008-02-07  Eric Blake  <ebb9@byu.net>
3552
3553         Quotearg part 3: add flag to control outer quote elision.
3554         * lib/quotearg.h (c_maybe_quoting_style): New style.
3555         (enum quoting_flags): Better documentation of flags.
3556         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
3557         c-maybe style.
3558         (quotearg_buffer_restyled): Handle new flag to elide outer
3559         quotes.
3560
3561         Quotearg part 2: add flag that can control NUL elision.
3562         * lib/quotearg.h (set_quoting_flags): New prototype.
3563         * lib/quotearg.c (struct quoting_options): Add flag field.
3564         (set_quoting_flags): New function.
3565         (quotearg_buffer_restyled): Add flags parameter.
3566         (quotearg_alloc_mem): Set the flag if length cannot be returned.
3567         (quotearg_n_options): Set the flag, since length cannot be
3568         returned.
3569         (quoting_options_from_style): Default flags correctly.
3570
3571         Quotearg part 1: more wrappers, restore quotearg_char state.
3572         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
3573         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
3574         (quotearg_colon_mem): New wrappers.
3575         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
3576         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
3577         functions.
3578         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
3579         (quotearg_colon_mem): New functions.
3580
3581 2008-02-11  Bruno Haible  <bruno@clisp.org>
3582
3583         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
3584         library in the current directory: it does not work with parallel make.
3585         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3586
3587 2008-02-11  Bruno Haible  <bruno@clisp.org>
3588
3589         * .gitattributes: New file.
3590
3591 2008-02-11  Jim Meyering  <meyering@redhat.com>
3592
3593         useless-if-before-free: Fix reversed exit values.
3594         * build-aux/useless-if-before-free: Use correct values
3595         for EXIT_MATCH and EXIT_NO_MATCH.
3596
3597         * build-aux/useless-if-before-free: Close stdout carefully.
3598
3599 2008-02-10  Bruno Haible  <bruno@clisp.org>
3600
3601         New module 'git-merge-changelog'.
3602         * modules/git-merge-changelog: New file.
3603         * lib/git-merge-changelog.c: New file.
3604
3605 2008-02-10  Jim Meyering  <meyering@redhat.com>
3606
3607         useless-if-before-free: New option: --list (-l).
3608
3609         useless-if-before-free: Don't exit immediately upon open failure.
3610         * build-aux/useless-if-before-free: Exit 2 for errors.
3611         Upon failure to open a file, don't exit immediately.
3612         Rather, just warn and continue with any remaining files.
3613
3614 2008-02-10  Bruno Haible  <bruno@clisp.org>
3615
3616         New abstract list operation 'node_set_value'.
3617         * lib/gl_list.h (gl_list_node_set_value): New function.
3618         (struct gl_list_implementation): New field node_set_value.
3619         * lib/gl_list.c (gl_list_node_set_value): New function.
3620         * lib/gl_array_list.c (gl_array_node_set_value): New function.
3621         (gl_array_list_implementation): Update.
3622         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
3623         (gl_carray_list_implementation): Update.
3624         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
3625         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3626         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3627         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
3628         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3629         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3630         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3631         Update.
3632         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3633         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
3634         (gl_sublist_list_implementation): Update.
3635
3636 2008-02-10  Bruno Haible  <bruno@clisp.org>
3637
3638         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
3639         Needed when ELEMENT is #defined to 'some_type *'.
3640
3641 2008-02-10  Jim Meyering  <meyering@redhat.com>
3642
3643         New script and module: useless-if-before-free
3644         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
3645         * build-aux/useless-if-before-free: New file.
3646         * modules/useless-if-before-free: New file.
3647
3648         * build-aux/gitlog-to-changelog: Use committer date, not author date.
3649
3650         xstrtol_error: Fix typo.
3651         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
3652         s/exit_failure/exit_status/.
3653
3654 2008-02-09  Jim Meyering  <meyering@redhat.com>
3655
3656         New script and module: gitlog-to-changelog
3657         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
3658         * modules/gitlog-to-changelog: New file.
3659         * build-aux/gitlog-to-changelog: New file.
3660
3661 2008-02-08  Jim Meyering  <meyering@redhat.com>
3662
3663         Avoid two "parameter unused" warnings.
3664         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
3665         Mark "st" as used.
3666
3667         Use "git COMMAND", not "git-COMMAND".
3668         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
3669         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
3670         * build-aux/git-version-gen: Use "git status", not "git-status".
3671
3672 2008-02-07  Bruno Haible  <bruno@clisp.org>
3673
3674         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
3675         Avoids a crash on Windows Vista.
3676         Reported by Adam Strzelecki <ono@java.pl> via
3677         Simon Josefsson <simon@josefsson.org>.
3678
3679 2008-02-06  Bruno Haible  <bruno@clisp.org>
3680
3681         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
3682         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
3683         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
3684         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
3685         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
3686         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
3687         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
3688         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
3689         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
3690         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3691         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3692         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3693         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
3694         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3695         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3696         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
3697         left-adjust flag.
3698         * tests/test-snprintf-posix.h (test_function): Likewise.
3699         * tests/test-sprintf-posix.h (test_function): Likewise.
3700         * tests/test-vasprintf-posix.c (test_function): Likewise.
3701         * doc/posix-functions/fprintf.texi: Update.
3702         * doc/posix-functions/printf.texi: Update.
3703         * doc/posix-functions/snprintf.texi: Update.
3704         * doc/posix-functions/sprintf.texi: Update.
3705         * doc/posix-functions/vfprintf.texi: Update.
3706         * doc/posix-functions/vprintf.texi: Update.
3707         * doc/posix-functions/vsnprintf.texi: Update.
3708         * doc/posix-functions/vsprintf.texi: Update.
3709         Reported by Peter Fales <psfales@alcatel-lucent.com>.
3710
3711 2008-02-06  Bruno Haible  <bruno@clisp.org>
3712
3713         Fix bug introduced on 2008-01-26.
3714         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
3715
3716 2008-02-06  Bruno Haible  <bruno@clisp.org>
3717
3718         Fix bug introduced on 2007-06-10.
3719         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
3720         !NEED_PRINTF_FLAG_ZERO.
3721
3722 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
3723
3724         getloadavg: use libperfstat on AIX5
3725         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
3726
3727 2008-02-03  Bruno Haible  <bruno@clisp.org>
3728
3729         * lib/diffseq.h: Add comments about required #includes.
3730         Reported by Michael Biggs <gnulib@doubleplum.net>.
3731
3732 2008-02-01  Bruno Haible  <bruno@clisp.org>
3733
3734         * users.txt: Add gnuit.
3735
3736 2008-01-31  Bruno Haible  <bruno@clisp.org>
3737
3738         * lib/md4.c (set_uint32): Mark as inline.
3739         * lib/md5.c (set_uint32): Likewise.
3740         * lib/sha1.c (set_uint32): Likewise.
3741         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
3742         * m4/md5.m4 (gl_MD5): Likewise.
3743         * m4/sha1.m4 (gl_SHA1): Likewise.
3744
3745 2008-01-31  Jim Meyering  <meyering@redhat.com>
3746
3747         Use "sizeof VAR", rather than a literal "4".
3748         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
3749         * lib/md4.c (md4_read_ctx): Likewise.
3750         * lib/sha1.c (sha1_read_ctx): Likewise.
3751
3752 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3753
3754         * tests/test-sha1.c: New file, based on test-md5.c.
3755
3756         * modules/crypto/sha1-tests: New file.
3757
3758 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3759
3760         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
3761
3762 2008-01-31  Jim Meyering  <meyering@redhat.com>
3763
3764         Prefer "sizeof v" over the equivalent "4".
3765         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
3766         * lib/md5.c (set_uint32): Likewise.
3767         * lib/sha1.c (set_uint32): Likewise.
3768
3769 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3770
3771         * lib/sha1.c (set_uint32): Mark function as static.
3772
3773 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3774
3775         md2: clarify comments to say that alignment is not required.
3776         * lib/md2.h: Remove warning about alignment in comment.
3777         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
3778         never been required.
3779
3780 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3781
3782         md4: adapt alignment constraint fix from sha1.
3783         * lib/md4.c (set_uint32): New function, from sha1.c
3784         (md4_read_ctx): Use it.
3785         (md4_finish_ctx): Doc fix.
3786         * lib/md4.h: Doc fix.
3787
3788 2008-01-31  Simon Josefsson  <simon@josefsson.org>
3789
3790         md5: adapt alignment constraint fix from sha1.
3791         * lib/md5.c (set_uint32): New function, from sha1.c
3792         (md5_read_ctx): Use it.
3793         (md5_finish_ctx): Doc fix.
3794         * lib/md5.h: Doc fix.
3795
3796 2008-01-30  Peter Palfrader  <weasel@debian.org>
3797
3798         sha1: remove the result buffer alignment constraint
3799         * lib/sha1.c (set_uint32): New function.
3800         (sha1_read_ctx): Rewrite to remove the result buffer alignment
3801         constraint.
3802         (sha1_finish_ctx): Remove comment warning about alignment constraint.
3803         * lib/sha1.h: Likewise.
3804
3805 2008-01-30  Andreas Schwab  <schwab@suse.de>
3806             Bruno Haible  <bruno@clisp.org>
3807
3808         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
3809         correct definition of LDBL_MIN_EXP.
3810
3811 2008-01-30  Karl Berry  <karl@gnu.org>
3812
3813         * config/srclist-update: try to preserve x bit on updates.
3814         * config/srclistvars.sh: update for karl.
3815
3816 2008-01-29  Jim Meyering  <meyering@redhat.com>
3817
3818         vasnprintf.c: Avoid warning about unused label
3819         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
3820         "overflow" label definition and associated code with the
3821         same cpp condition that guards the sole use of that label.
3822
3823 2008-01-26  Bruno Haible  <bruno@clisp.org>
3824
3825         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
3826         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
3827         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
3828         * lib/isnanl-nolibm.h (isnanl): Likewise.
3829         Reported by Paul Eggert <eggert@cs.ucla.edu>.
3830
3831 2008-01-26  Bruno Haible  <bruno@clisp.org>
3832
3833         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
3834         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
3835
3836 2008-01-26  Bruno Haible  <bruno@clisp.org>
3837
3838         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
3839         GCC >= 4.0 built-in.
3840         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
3841
3842 2008-01-26  Bruno Haible  <bruno@clisp.org>
3843
3844         Rename isnan, applicable to 'double' only, to isnand.
3845         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
3846         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
3847         (configure.ac): Update.
3848         (Include): Replace "isnan.h" with "isnand.h".
3849         * m4/isnand.m4: Renamed from m4/isnan.m4.
3850         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
3851         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
3852         instead of isnan.c.
3853         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
3854         instead of HAVE_ISNAN_IN_LIBC.
3855         (isnand): Renamed from isnan.
3856         * lib/isnand.c: New file.
3857         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
3858         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
3859         (Makefile.am): Update.
3860         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
3861         Include isnand.h instead of isnan.h.
3862         (main): Test isnand instead of isnan.
3863         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
3864         isnan-nolibm.
3865         * modules/frexp (Depends-on): Likewise.
3866         * modules/frexp-tests (Depends-on): Likewise.
3867         * modules/frexp-nolibm (Depends-on): Likewise.
3868         * modules/frexp-nolibm-tests (Depends-on): Likewise.
3869         * modules/isfinite (Depends-on): Likewise.
3870         * modules/round-tests (Depends-on): Likewise.
3871         * modules/signbit (Depends-on): Likewise.
3872         * modules/signbit-tests (Depends-on): Likewise.
3873         * modules/snprintf-posix (Depends-on): Likewise.
3874         * modules/sprintf-posix (Depends-on): Likewise.
3875         * modules/trunc-tests (Depends-on): Likewise.
3876         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
3877         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
3878         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
3879         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
3880         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
3881         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
3882         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
3883         * modules/vasnprintf-posix (Depends-on): Likewise.
3884         * modules/vasprintf-posix (Depends-on): Likewise.
3885         * modules/vfprintf-posix (Depends-on): Likewise.
3886         * modules/vsnprintf-posix (Depends-on): Likewise.
3887         * modules/vsprintf-posix (Depends-on): Likewise.
3888         * lib/frexp.c: Include isnand.h instead of isnan.h.
3889         (ISNAN): Set to isnand instead of isnan.
3890         * lib/isfinite.c: Include isnand.h instead of isnan.h.
3891         (gl_isfinited): Use isnand instead of isnan.
3892         * lib/signbitd.c: Include isnand.h instead of isnan.h.
3893         (gl_signbitd): Use isnand instead of isnan.
3894         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
3895         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
3896         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
3897         (main): Use isnand instead of isnan.
3898         * tests/test-round1.c: Include isnand.h.
3899         (main): Use isnand instead of isnan.
3900         * tests/test-round2.c: Include isnand.h instead of isnan.h.
3901         (ISNAN): Set to isnand instead of isnan.
3902         * tests/test-trunc1.c: Include isnand.h.
3903         (main): Use isnand instead of isnan.
3904         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
3905         (equal): Use isnand instead of isnan.
3906         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
3907         isnand-nolibm.
3908         * NEWS: Mention the change.
3909
3910 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
3911             Bruno Haible  <bruno@clisp.org>
3912
3913         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
3914         the GCC builtins for signbits are present and set
3915         REPLACE_SIGNBIT_USING_GCC if so.
3916         * lib/math.in.h (signbit): Define using GCC builtins if
3917         REPLACE_SIGNBIT_USING_GCC is set.
3918         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
3919         REPLACE_SIGNBIT_USING_GCC.
3920         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
3921
3922 2008-01-25  Jim Meyering  <meyering@redhat.com>
3923
3924         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
3925         * lib/poll.c: Include <config.h>, not "config.h".
3926         * tests/test-getaddrinfo.c: Likewise.
3927
3928 2008-01-25  Simon Josefsson  <simon@josefsson.org>
3929
3930         * modules/sockets-tests: New file.
3931
3932 2008-01-24  Simon Josefsson  <simon@josefsson.org>
3933
3934         * modules/sockets: New module, can be used to call WSA_Startup and
3935         WSA_Cleanup when needed.
3936
3937         * lib/sockets.h, lib/sockets.c: New files.
3938
3939         * m4/sockets.m4: New file.
3940
3941         * tests/test-sockets.c: New file.
3942
3943 2008-01-19  Bruno Haible  <bruno@clisp.org>
3944
3945         * doc/posix-headers: Renamed from doc/headers.
3946         * doc/posix-functions: Renamed from doc/functions.
3947         * doc/gnulib.texi: Update.
3948
3949 2008-01-19  Bruno Haible  <bruno@clisp.org>
3950
3951         * doc/glibc-functions/strcasestr.texi: Include contents of
3952         doc/functions/strcasestr.texi, fixing the list of platforms.
3953         * doc/functions/strcasestr.texi: Remove file.
3954
3955 2008-01-19  Bruno Haible  <bruno@clisp.org>
3956
3957         * doc/glibc-functions/memmem.texi: Include contents of
3958         doc/functions/memmem.texi.
3959         * doc/functions/memmem.texi: Remove file.
3960
3961 2008-01-18  Bruno Haible  <bruno@clisp.org>
3962
3963         * doc/glibc-functions/*.texi: New files.
3964         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
3965         to use the new files.
3966
3967 2008-01-17  Bruno Haible  <bruno@clisp.org>
3968
3969         * tests/test-gethostname.c (main): Fix printf statement.
3970
3971 2008-01-17  Simon Josefsson  <simon@josefsson.org>
3972
3973         * modules/gethostname-tests: New file.
3974
3975         * tests/test-gethostname.c: New file.
3976
3977 2008-01-17  Simon Josefsson  <simon@josefsson.org>
3978
3979         * lib/gethostname.c: Include string.h unconditionally, strncpy is
3980         used by the UNAME case.  Reported by Bruno Haible
3981         <bruno@clisp.org>.
3982
3983 2008-01-17  Eric Blake  <ebb9@byu.net>
3984
3985         Convert c-strcasestr to be more efficient.
3986         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
3987         (Depends-on): Add c-strcase, remove malloca, strnlen.
3988         * tests/test-c-strcasestr.c (main): Enhance test.
3989         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
3990
3991 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
3992
3993         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
3994         Use it in creating po/Makevars.
3995
3996 2008-01-15  Simon Josefsson  <simon@josefsson.org>
3997
3998         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
3999         Applications that requires it should initialize libgcrypt
4000         manually.
4001
4002 2008-01-16  Simon Josefsson  <simon@josefsson.org>
4003
4004         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
4005
4006 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
4007
4008         Fix problem with getdate on mingw32 reported by Simon Josefsson
4009         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
4010         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
4011         tzname", when deciding whether to declare tzname.
4012         * lib/strftime.c (tzname): Likewise.
4013
4014 2008-01-15  Bruno Haible  <bruno@clisp.org>
4015
4016         Work around a MacOS X 10.5 bug in frexpl().
4017         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
4018         * doc/functions/frexpl.texi: Document the bug.
4019         Reported by Elias Pipping <pipping@gentoo.org>.
4020
4021 2008-01-14  Eric Blake  <ebb9@byu.net>
4022
4023         Touch up previous patch.
4024         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
4025         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
4026
4027         Convert strcasestr module to use Two-Way algorithm.
4028         * modules/strcasestr-simple: New module, based on the old
4029         strcasestr, but with Two-Way rather than KMP.
4030         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
4031         * lib/string.in.h (rpl_strcasestr): Declare.
4032         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
4033         performance.
4034         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
4035         * modules/string (Makefile.am): Support strcasestr.
4036         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
4037         * modules/strcasestr-tests (Depends-on): Check for alarm.
4038         * tests/test-strcasestr.c: Augment test.
4039         * lib/str-two-way.h: Clean up stray macro.
4040         * NEWS: Document new module.
4041         * MODULES.html.sh (string handling): Likewise.
4042         * doc/functions/strcasestr.texi: New file.
4043         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
4044         here, since it is not a POSIX function.
4045
4046 2008-01-14  Colin Watson  <cjwatson@debian.org>
4047             Bruno Haible  <bruno@clisp.org>
4048
4049         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
4050         works fine; if not, set REPLACE_STRSIGNAL.
4051         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
4052         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4053         REPLACE_STRSIGNAL.
4054         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
4055         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
4056         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
4057
4058 2008-01-14  Bruno Haible  <bruno@clisp.org>
4059
4060         * modules/strsignal (Include): Change to <string.h>.
4061
4062 2008-01-14  Colin Watson  <cjwatson@debian.org>
4063
4064         * modules/argp (Notice): Add a notice recommending to change
4065         XGETTEXT_OPTIONS.
4066         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
4067
4068 2008-01-13  Colin Watson  <cjwatson@debian.org>
4069
4070         * modules/strsignal-tests: New file.
4071         * tests/test-strsignal.c: New file.
4072
4073         * lib/strsignal.c: New file, from glibc with modifications.
4074         * lib/siglist.h: New file, from glibc with modifications.
4075         * lib/string.in.h (strsignal): New declaration.
4076         * m4/strsignal.m4: New file.
4077         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4078         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
4079         * modules/strsignal: New file.
4080         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
4081         HAVE_DECL_STRSIGNAL.
4082
4083 2008-01-13  Bruno Haible  <bruno@clisp.org>
4084
4085         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
4086         locale encoding is not ASCII. Needed for OpenBSD 4.0.
4087         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
4088         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
4089
4090 2008-01-13  Bruno Haible  <bruno@clisp.org>
4091
4092         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
4093         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
4094         * lib/argp.h (__attribute__): Likewise.
4095         * lib/c-stack.c (__attribute__): Likewise.
4096         * lib/error.h (__attribute__): Likewise.
4097         * lib/fts.c (__attribute__): Likewise.
4098         * lib/openat.h (__attribute__): Likewise.
4099         * lib/stdio.in.h (__attribute__): Likewise.
4100         * lib/string.in.h (__attribute__): Likewise.
4101         * lib/utimens.c (__attribute__): Likewise.
4102         * lib/vasnprintf.h (__attribute__): Likewise.
4103         * lib/xalloc.h (__attribute__): Likewise.
4104         * lib/xprintf.h (__attribute__): Likewise.
4105         * lib/xstrtol.h (__attribute__): Likewise.
4106         * lib/xvasprintf.h (__attribute__): Likewise.
4107
4108 2008-01-12  Bruno Haible  <bruno@clisp.org>
4109
4110         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
4111         * doc/glibc-headers/a.out.texi: New file.
4112         * doc/glibc-headers/aliases.texi: New file.
4113         * doc/glibc-headers/alloca.texi: New file.
4114         * doc/glibc-headers/ar.texi: New file.
4115         * doc/glibc-headers/argp.texi: New file.
4116         * doc/glibc-headers/argz.texi: New file.
4117         * doc/glibc-headers/byteswap.texi: New file.
4118         * doc/glibc-headers/crypt.texi: New file.
4119         * doc/glibc-headers/endian.texi: New file.
4120         * doc/glibc-headers/envz.texi: New file.
4121         * doc/glibc-headers/err.texi: New file.
4122         * doc/glibc-headers/error.texi: New file.
4123         * doc/glibc-headers/execinfo.texi: New file.
4124         * doc/glibc-headers/fpu_control.texi: New file.
4125         * doc/glibc-headers/fstab.texi: New file.
4126         * doc/glibc-headers/fts.texi: New file.
4127         * doc/glibc-headers/getopt.texi: New file.
4128         * doc/glibc-headers/ieee754.texi: New file.
4129         * doc/glibc-headers/ifaddrs.texi: New file.
4130         * doc/glibc-headers/libintl.texi: New file.
4131         * doc/glibc-headers/mcheck.texi: New file.
4132         * doc/glibc-headers/mntent.texi: New file.
4133         * doc/glibc-headers/obstack.texi: New file.
4134         * doc/glibc-headers/paths.texi: New file.
4135         * doc/glibc-headers/printf.texi: New file.
4136         * doc/glibc-headers/pty.texi: New file.
4137         * doc/glibc-headers/resolv.texi: New file.
4138         * doc/glibc-headers/shadow.texi: New file.
4139         * doc/glibc-headers/sysexits.texi: New file.
4140         * doc/glibc-headers/ttyent.texi: New file.
4141
4142 2008-01-12  Jim Meyering  <meyering@redhat.com>
4143
4144         announce-gen: emit Gnulib's git-based version string.
4145         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
4146         New option --gnulib-version=V, where V is expected to be
4147         the output of running git describe in the gnulib directory.
4148         (get_tool_versions): Request feedback on xdelta.  I suspect it's
4149         not useful, and plan to stop publishing an xdelta file with each
4150         coreutils release.
4151
4152         * build-aux/announce-gen: Also check for lzma-compressed files.
4153
4154 2008-01-11  Bruno Haible  <bruno@clisp.org>
4155
4156         * tests/test-memmem.c (main): Increase maximum allowed time.
4157         * tests/test-strstr.c (main): Likewise.
4158
4159 2008-01-11  Bruno Haible  <bruno@clisp.org>
4160
4161         * doc/functions/memmem.texi: Add more precisions about platforms.
4162         * doc/functions/strstr.texi: Likewise.
4163
4164 2008-01-10  Eric Blake  <ebb9@byu.net>
4165
4166         * m4/strstr.m4: Delete cruft from copy-n-paste.
4167         Reported by Bruno Haible.
4168
4169 2008-01-10  Bruno Haible  <bruno@clisp.org>
4170
4171         Make c-strstr rely on strstr.
4172         * lib/c-strstr.c: Don't include str-kmp.h.
4173         (c_strstr): Define in terms of strstr.
4174         * modules/c-strstr (Files): Remove lib/str-kmp.h.
4175         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
4176
4177 2008-01-10  Bruno Haible  <bruno@clisp.org>
4178
4179         * doc/gnulib.texi (String Functions in C Locale): New section.
4180         * doc/c-ctype.texi: New file.
4181         * doc/c-strcase.texi: New file.
4182         * doc/c-strcaseeq.texi: New file.
4183         * doc/c-strcasestr.texi: New file.
4184         * doc/c-strstr.texi: New file.
4185         * doc/c-strtod.texi: New file.
4186         * doc/c-strtold.texi: New file.
4187
4188 2008-01-10  Eric Blake  <ebb9@byu.net>
4189
4190         * lib/relocatable.h: Fix a comment.
4191
4192 2008-01-10  Eric Blake  <ebb9@byu.net>
4193
4194         Share two-way algorithm.
4195         * lib/str-two-way.h: New file, merged from...
4196         * lib/memmem.c: ...here...
4197         * lib/strstr.c: ...and here.
4198         * modules/memmem (Files): Use it.
4199         * modules/strstr (Files): Likewise.
4200
4201         Avoid quadratic strstr implementations.
4202         * lib/strstr.c: New file.
4203         * m4/strstr.m4: Likewise.
4204         * modules/strstr: Likewise.
4205         * modules/strstr-tests: Likewise.
4206         * tests/test-strstr.c: Likewise.
4207         * lib/string.in.h (rpl_strstr): Declare.
4208         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
4209         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
4210         * modules/string (Makefile.am): Likewise.
4211         * MODULES.html.sh (string handling): Mention new module.
4212         * doc/functions/strstr.texi (strstr): Document the bug.
4213
4214 2008-01-10  Bruno Haible  <bruno@clisp.org>
4215
4216         * lib/relocatable.h (relocate): State whether result is freshly
4217         allocated or not.
4218         * lib/relocatable.c (relocate): Return a freshly allocated string
4219         instead of a pointer to a privately held string.
4220         Reported by Sylvain Beucler <beuc@gnu.org>.
4221
4222 2008-01-10  Colin Watson  <cjwatson@debian.org>
4223
4224         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
4225         s/S_ISNLK/S_ISLNK/.
4226
4227 2008-01-09  Bruno Haible  <bruno@clisp.org>
4228
4229         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
4230         and other files.
4231         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
4232         if it's only a guess.
4233         * modules/memmem: Simplify by depending on memmem-simple.
4234
4235 2008-01-09  Bruno Haible  <bruno@clisp.org>
4236
4237         Work around OpenBSD 4.0 tdelete() bug.
4238         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
4239         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
4240         macros and don't redefine the enum values.
4241         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
4242         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
4243         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
4244
4245 2008-01-09  Bruno Haible  <bruno@clisp.org>
4246
4247         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
4248         (main): Don't perform the tests if setlocale did not install a UTF-8
4249         locale. Needed on OpenBSD 4.0.
4250         * modules/wcwidth-tests (Depends-on): Add localcharset.
4251
4252 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
4253
4254         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
4255         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
4256         * NEWS: announce this.
4257         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
4258
4259 2008-01-09  Simon Josefsson  <simon@josefsson.org>
4260         and Eric Blake  <ebb9@byu.net>
4261
4262         Add memmem-simple module.
4263         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
4264         (gl_FUNC_MEMMEM): Separate performance from presence checks.
4265         * modules/memmem-simple: New file.
4266         * modules/memmem (Description): Tweak.
4267         * MODULES.html.sh (string handling): Mention new module.
4268         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
4269         addressed by memmem-simple.
4270         * NEWS: Document the difference.
4271
4272 2008-01-09  Eric Blake  <ebb9@byu.net>
4273
4274         Give gcc some memmem optimization hints.
4275         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
4276         (strcasestr): Declare as pure.
4277         * modules/memmem (Maintainer): Claim my implementation.
4278
4279 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4280
4281         Support AIX 6.1 and higher.
4282         * build-aux/config.libpath: Likewise.
4283         * build-aux/config.rpath: Likewise.
4284
4285 2008-01-08  Jim Meyering  <meyering@redhat.com>
4286             Bruno Haible  <bruno@clisp.org>
4287
4288         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
4289         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
4290         Reported by Peter Fales in
4291         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
4292
4293 2008-01-08  Bruno Haible  <bruno@clisp.org>
4294
4295         * modules/unictype/category-of (Depends-on): Add
4296         unictype/category-none.
4297         * modules/unictype/category-and-tests (Depends-on): Add
4298         unictype/category-{L,N,Lu,Nd}.
4299         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
4300         * modules/unictype/category-or-tests (Depends-on): Add
4301         unictype/category-{L,N}.
4302         * modules/unictype/category-name-tests (Depends-on): Add
4303         unictype/category-{Z,Nl}.
4304         Reported by Simon Josefsson.
4305
4306 2008-01-08  Bruno Haible  <bruno@clisp.org>
4307
4308         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
4309         convention better.
4310         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
4311         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
4312         Reported by Peter Miller <millerp@canb.auug.org.au>.
4313
4314 2008-01-08  Eric Blake  <ebb9@byu.net>
4315
4316         Rewrite memmem to guarantee linear complexity without malloc.
4317         * lib/memmem.c (memmem): Use Two-Way rather than
4318         Knuth-Morris-Pratt, to allow O(1) space usage.
4319         (critical_factorization, two_way_short_needle)
4320         (two_way_long_needle): New functions.
4321         (knuth_morris_pratt): Delete.
4322         * modules/memmem (Depends-on): No longer need malloca or stdbool.
4323         Add stdint.
4324         * tests/test-memmem.c (main): Add tests for periodic needle and
4325         sublinear performance.
4326         * doc/functions/memmem.texi (memmem): Document other deficiencies
4327         in cygwin and older glibc.
4328
4329 2008-01-08  Bruno Haible  <bruno@clisp.org>
4330
4331         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
4332         augmentation.
4333
4334 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
4335
4336         Add a configure time option: --disable-acl.
4337         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
4338         AC_ARG_ENABLE(acl).
4339
4340 2008-01-06  Simon Josefsson  <simon@josefsson.org>
4341
4342         * tests/test-localename.c: Don't include obsolete "setenv.h".
4343
4344         * modules/localename-tests (Depends-on): Need unsetenv.
4345
4346 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4347
4348         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
4349
4350 2008-01-06  Colin Watson  <cjwatson@debian.org>
4351
4352         * users.txt: Add man-db.
4353
4354 2008-01-07  Bruno Haible  <bruno@clisp.org>
4355
4356         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
4357         previous section name.
4358
4359 2008-01-07  Bruno Haible  <bruno@clisp.org>
4360
4361         * lib/progname.c (set_program_name): Don't strip off a leading
4362         "lt-" prefix outside a .libs directory.
4363         Suggested by Paul Eggert.
4364
4365 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
4366             Bruno Haible  <bruno@clisp.org>
4367
4368         Improve memory cleanup in 'relocatable' module.
4369         * lib/relocatable.h (compute_curr_prefix): Change return type to
4370         'char *'.
4371         * lib/relocatable.c (compute_curr_prefix): Change return type to
4372         'char *'. Free curr_installdir after use.
4373         (relocate): Free curr_prefix_better after use.
4374         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
4375
4376 2008-01-01  Bruno Haible  <bruno@clisp.org>
4377
4378         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
4379         failure on older glibc systems.
4380         Reported by Peter Fales <psfales@alcatel-lucent.com>.
4381
4382 2008-01-05  Eric Blake  <ebb9@byu.net>
4383
4384         Avoid quadratic system memmem.
4385         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
4386         Reported by Ralf Wildenhues.
4387
4388         Fix memmem test for mingw.
4389         * modules/memmem-tests (configure.ac): Check for alarm.
4390         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
4391         it.
4392         * doc/functions/memmem.texi: New file.
4393         * doc/gnulib.texi (Function Substitutes): Add memmem.
4394         Reported by Bruno Haible.
4395
4396 2008-01-04  Bruno Haible  <bruno@clisp.org>
4397
4398         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
4399         Require gl_HEADER_STRINGS_H_DEFAULTS, not
4400         gl_HEADER_STRING_H_DEFAULTS.
4401
4402 2008-01-04  Eric Blake  <ebb9@byu.net>
4403
4404         Shorten duration of memmem test.
4405         * tests/test-memmem.c (main): Use alarm to declare failure if test
4406         is taking too long.
4407         Reported by Ralf Wildenhues.
4408
4409 2007-12-21  Simon Josefsson  <simon@josefsson.org>
4410
4411         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
4412         string, needed by strerror.
4413
4414 2008-01-03  Colin Watson  <cjwatson@debian.org>
4415             Bruno Haible  <bruno@clisp.org>
4416
4417         * doc/gnulib-tool.texi (Localization): New section.
4418
4419 2008-01-02  Bruno Haible  <bruno@clisp.org>
4420
4421         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
4422         variables to 'unsigned char *' type.
4423         Reported by Paul Eggert.
4424
4425 2008-01-02  Jim Meyering  <jim@meyering.net>
4426
4427         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
4428
4429 2007-12-31  Jim Meyering  <jim@meyering.net>
4430
4431         Avoid use of private FTS type name.
4432         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
4433
4434 2007-12-30  Karl Berry  <karl@gnu.org>
4435
4436         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
4437         work around defect in Texinfo and/or the standalone Info browser.
4438
4439 2007-12-30  Bruno Haible  <bruno@clisp.org>
4440
4441         Unify 5 copies of the KMP code.
4442         * lib/str-kmp.h: New file.
4443         * lib/c-strcasestr.c: Include str-kmp.h.
4444         (knuth_morris_pratt): Remove function.
4445         (c_strcasestr): Update.
4446         * lib/c-strstr.c: Include str-kmp.h.
4447         (knuth_morris_pratt): Remove function.
4448         (c_strcasestr): Update.
4449         * lib/mbscasestr.c: Include str-kmp.h.
4450         (knuth_morris_pratt_unibyte): Remove function.
4451         * lib/mbsstr.c: Include str-kmp.h.
4452         (knuth_morris_pratt_unibyte): Remove function.
4453         * lib/strcasestr.c: Include str-kmp.h.
4454         (knuth_morris_pratt): Remove function.
4455         (strcasestr): Update.
4456         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
4457         * modules/c-strstr (Files): Likewise.
4458         * modules/mbscasestr (Files): Likewise.
4459         * modules/mbsstr (Files): Likewise.
4460         * modules/strcasestr (Files): Likewise.
4461         Suggested by Paul Eggert.
4462
4463 2007-12-30  Bruno Haible  <bruno@clisp.org>
4464
4465         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
4466         defined.
4467
4468 2007-12-30  Bruno Haible  <bruno@clisp.org>
4469
4470         * lib/xmalloca.h: Include xalloc.h.
4471         (xnmalloca): New macro.
4472
4473 2007-12-30  Bruno Haible  <bruno@clisp.org>
4474
4475         * lib/malloca.h (nmalloca): New macro.
4476         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
4477         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
4478         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
4479         knuth_morris_pratt_multibyte): Likewise.
4480         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
4481         knuth_morris_pratt_multibyte): Likewise.
4482         * lib/memmem.c (knuth_morris_pratt): Likewise.
4483         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
4484
4485 2007-12-25  Bruno Haible  <bruno@clisp.org>
4486
4487         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
4488         * lib/glob.c: Don't include openat.h.
4489         (link_exists2_p): Add back the code that deals with the
4490         !GLOB_ALTDIRFUNC case.
4491         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
4492         let it do the filename concatenation.
4493         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
4494         * modules/glob (Depends-on): Remove openat.
4495
4496 2007-12-31  Bruno Haible  <bruno@clisp.org>
4497
4498         * modules/dirfd (License): Change to LGPLv2+.
4499         Approved by Jim Meyering.
4500
4501 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4502
4503         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
4504         when multiplying M by sizeof (size_t).
4505
4506 2007-12-10  Martin Lambers  <marlam@marlam.de>
4507
4508         Override getpagesize on mingw.
4509         * lib/getpagesize.c: New file.
4510         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
4511         * modules/getpagesize (Files): Add lib/getpagesize.c.
4512         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
4513         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
4514         REPLACE_GETPAGESIZE.
4515         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
4516
4517 2007-12-25  Bruno Haible  <bruno@clisp.org>
4518
4519         * modules/localcharset (Notice): New field.
4520         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
4521         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
4522
4523 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
4524             Bruno Haible  <bruno@clisp.org>
4525
4526         Avoid using the syntax symbol() in formatted documentation.
4527         * MODULES.html.sh (func_module): When replacing symbol() with a
4528         hyperlink, remove the parentheses. Show an error if some remain.
4529         Recognize and render the '...' syntax.
4530         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
4531         Rework. Add paragraph about GCC's inlining.
4532         * doc/alloca.texi: Likewise.
4533         * doc/error.texi: Remove parentheses from symbol reference.
4534         * doc/gnulib-intro.texi: Likewise.
4535         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
4536         * modules/fnmatch (Description): Reword to say "the ... function".
4537         * modules/full-read (Description): Likewise.
4538         * modules/full-write (Description): Likewise.
4539         * modules/safe-read (Description): Likewise.
4540         * modules/safe-write (Description): Likewise.
4541         * modules/strchrnul (Description): Likewise.
4542         * modules/trim (Description): Likewise.
4543         * modules/error (Description): Remove parentheses from symbol
4544         references.
4545         * modules/verror (Description): Likewise.
4546         Reported by Karl Berry.
4547
4548 2007-12-25  Bruno Haible  <bruno@clisp.org>
4549
4550         Fixup after 2007-10-16 commit.
4551         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
4552
4553 2007-12-24  Bruno Haible  <bruno@clisp.org>
4554
4555         Make --enable-relocatable work with DESTDIR.
4556         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
4557         to compute installdir from destprog.
4558         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
4559         also set the RELOC_DESTDIR variable.
4560         Reported by Левашев Иван <octagram@bluebottle.com>.
4561
4562 2007-12-24  Bruno Haible  <bruno@clisp.org>
4563
4564         Fix link error due to xalloc_die().
4565         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
4566         of xreadlink.
4567         * lib/relocwrapper.c: Update comments.
4568         * build-aux/install-reloc: Remove xreadlink.c from file list.
4569         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
4570         xreadlink.c.
4571         Reported by Левашев Иван <octagram@bluebottle.com>.
4572
4573 2007-12-24  Bruno Haible  <bruno@clisp.org>
4574
4575         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
4576         * lib/setenv.h: Remove file.
4577         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
4578         lib/setenv.h.
4579         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
4580         (Depends-on): Add stdlib.
4581         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
4582         gl_FUNC_UNSETENV.
4583         (Include): Replace setenv.h with <stdlib.h>.
4584         * modules/unsetenv: New file.
4585         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
4586         * lib/unsetenv.c: Include <stdlib.h> first.
4587         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
4588         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
4589         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
4590         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
4591         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
4592         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
4593         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
4594         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
4595         * doc/functions/unsetenv.texi: Update.
4596         * modules/xsetenv (Depends-on): Add unsetenv.
4597         * modules/getdate (Depends-on): Likewise.
4598         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
4599         * lib/xsetenv.c: Don't include setenv.h.
4600         * lib/getdate.y: Likewise.
4601         * lib/relocwrapper.c: Likewise.
4602         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
4603         (Depends-on): Add stdlib.
4604         * NEWS: Mention the changes.
4605         Reported by Левашев Иван <octagram@bluebottle.com>.
4606
4607 2007-12-23  Bruno Haible  <bruno@clisp.org>
4608
4609         * lib/memmem.c (memmem): Use lowercase variable names. Tab
4610         indentation.
4611
4612 2007-12-23  Bruno Haible  <bruno@clisp.org>
4613
4614         * lib/c-strcasestr.c: Add more comments.
4615         * lib/c-strstr.c: Likewise.
4616         * lib/mbscasestr.c: Likewise.
4617         * lib/mbsstr.c: Likewise.
4618         * lib/strcasestr.c: Likewise.
4619         * lib/memmem.c: Likewise.
4620
4621 2007-12-23  Bruno Haible  <bruno@clisp.org>
4622
4623         * tests/test-memmem.c: Include <string.h> first.
4624
4625 2007-12-22  Bruno Haible  <bruno@clisp.org>
4626
4627         * gnulib-tool (func_create_testdir): Change $auxdir while generating
4628         the contents of $testsbase.
4629         Reported by Ralf Wildenhues.
4630
4631 2007-12-22  Bruno Haible  <bruno@clisp.org>
4632
4633         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
4634         two variables local_ldadd_before, local_ldadd_last.
4635
4636 2007-12-20  Eric Blake  <ebb9@byu.net>
4637
4638         Work around circular library issue when cross-compiling.
4639         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
4640         that progname.o does not need to pull in rpl_memcmp.
4641
4642 2007-12-19  Eric Blake  <ebb9@byu.net>
4643
4644         Fix memmem to avoid O(n^2) worst-case complexity.
4645         * lib/memmem.c (knuth_morris_pratt): New function.
4646         (memmem): Use it if first few naive iterations fail.
4647         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
4648         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
4649         * modules/memchr (License): Likewise.
4650         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
4651         malloca.
4652         * tests/test-memmem.c: Rewrite, borrowing ideas from
4653         test-mbsstr1.c; the old version wouldn't even compile!
4654         * modules/memmem-tests: New file.
4655         * lib/string.in.h (rpl_memmem): Add declaration.
4656         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
4657         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
4658         REPLACE_MEMMEM.
4659
4660 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
4661
4662         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
4663         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
4664         before any system include files, and undef after them all.  This
4665         should fix a problem on VMS reported by John E. Malmberg in
4666         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
4667
4668 2007-12-17  Eric Blake  <ebb9@byu.net>
4669
4670         Revert addition of verify, for BSD/OS.
4671         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
4672         can't handle large files, for the sake of obsolete platforms.
4673         * modules/fseeko (Depends-on): Remove verify.
4674         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
4675         * doc/functions/ftello.texi (ftello): Likewise.
4676         * doc/functions/fgetpos.texi (fgetpos): Likewise.
4677         Reported by Larry Jones.
4678
4679 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
4680
4681         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
4682         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
4683
4684 2007-12-17  Jim Meyering  <meyering@redhat.com>
4685
4686         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
4687         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
4688         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
4689         * modules/getcwd (Depends-on): Add openat.
4690         Reported by Petr Salinger.
4691
4692 2007-12-17  Bruno Haible  <bruno@clisp.org>
4693
4694         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
4695         avoid a segmentation fault of the configure test on x86_64 systems.
4696
4697 2007-12-15  Jim Meyering  <meyering@redhat.com>
4698
4699         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
4700
4701 2007-12-13  Eric Blake  <ebb9@byu.net>
4702
4703         Another fseek test.
4704         * tests/test-fseek.c (main): Also test ungetc handling.
4705         * tests/test-fseeko.c (main): Likewise.
4706         * modules/fseeko (Depends-on): Add verify.
4707         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
4708         large.
4709         Reported by Larry Jones.
4710
4711         Fix fseeko on mingw.
4712         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
4713         seek.
4714
4715         Beef up fseek tests.
4716         * tests/test-fseek.c (main): Also test eof handling.
4717         * tests/test-fseeko.c (main): Likewise.
4718         Reported by Larry Jones.
4719
4720 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
4721
4722         Fix fseeko on BSD-based platforms.
4723         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
4724         successful seek.
4725
4726 2007-12-12  Eric Blake  <ebb9@byu.net>
4727
4728         Allow circular dependency of separate libtests.a
4729         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
4730         when use_libtests.
4731
4732 2007-12-11  Eric Blake  <ebb9@byu.net>
4733
4734         Fix bug with -0.0L in previous patch.
4735         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
4736         * tests/test-isnan.c (main): Also test on zeroes.
4737         * tests/test-isnanf.c (main): Likewise.
4738         * tests/test-isnanl.h (main): Likewise.
4739
4740         Detect pseudo-denormals on x86 even when cross-compiling.
4741         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
4742         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
4743         invalid bit patterns that happen to satisfy ==.
4744
4745         Avoid link failures with separate libtests.a.
4746         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
4747         last, to satisfy circular dependencies.
4748
4749 2007-12-11  Eric Blake  <ebb9@byu.net>
4750         and Bruno Haible  <bruno@clisp.org>
4751
4752         Fix OpenBSD 4.0 <float.h> handling of long double.
4753         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
4754         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
4755         * doc/headers/float.texi (float.h): Document OpenBSD bug.
4756
4757 2007-12-11  Jim Meyering  <meyering@redhat.com>
4758
4759         * users.txt: Add libvirt.
4760
4761         Support versions of autoconf prior to 2.59c.
4762         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
4763         if it is not already defined.
4764
4765 2007-12-09  Bruno Haible  <bruno@clisp.org>
4766
4767         Let 'gnulib-tool --import' collect sources needed for the tests in
4768         tests/ rather than in lib/.
4769         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
4770         argument. If true, add rules to generate libtests.a, and put libtests.a
4771         into $(LDADD). Consider source files in subdirectories and set
4772         uses_subdirs.
4773         (func_emit_initmacro_start, func_emit_initmacro_end,
4774         func_emit_initmacro_done): Pass all arguments explicitly.
4775         (func_import): Determine two module lists main_modules,
4776         testsrelated_modules. Determine use_libtests. Determine two variables
4777         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
4778         instead of just sed_transform_lib_file. Determine two variables
4779         main_files and testsrelated_files. Compute 'files' as the union of
4780         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
4781         func_add_or_update. In the generated gnulib-comp.m4, collect the
4782         object files for tests/ in different variables than those for lib/.
4783         Substitute LIBTESTS_LIBDEPS.
4784         (func_create_testdir): Combine the uses_subdirs results from
4785         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
4786
4787 2007-12-09  Bruno Haible  <bruno@clisp.org>
4788
4789         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
4790         the build-aux directory.
4791
4792 2007-12-09  Bruno Haible  <bruno@clisp.org>
4793
4794         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
4795         introduced on 2006-09-09.
4796
4797 2007-12-07  Jim Meyering  <meyering@redhat.com>
4798
4799         Let these macros work also with autoconf-2.59.
4800         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
4801         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
4802         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
4803
4804 2007-12-06  Jim Meyering  <meyering@redhat.com>
4805
4806         Avoid a configure-time syntax error in gl_FUNC_ACL.
4807         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
4808         function in each branch, before testing the cache variable.
4809
4810 2007-12-04  Eric Blake  <ebb9@byu.net>
4811
4812         Make scripts executable.
4813         * build-aux/config.guess: Add execute permissions.
4814         * build-aux/config.sub: Likewise.
4815         * build-aux/gendocs.sh: Likewise.
4816
4817         Fix frexp on mingw.
4818         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
4819         cross-compiling.
4820         * doc/functions/frexp.texi (frexp): Document the bug.
4821
4822         Make cygwin fseeko check more reliable.
4823         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
4824         version numbers, rather than unrelated feature check.
4825         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
4826         * doc/functions/ftello.texi (ftello): Likewise.
4827         Reported by Bruno Haible.
4828
4829         * m4/strerror.m4: Bump version number.
4830
4831 2007-12-03  Bruno Haible  <bruno@clisp.org>
4832
4833         * doc/functions/mprotect.texi: Mention the mingw problem.
4834
4835 2007-12-03  Eric Blake  <ebb9@byu.net>
4836
4837         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
4838         REPLACE_STRERROR is initialized before this macro.
4839
4840 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
4841
4842         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
4843         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
4844         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
4845         put -lsec in even for programs other than 'ls'.  This fixes a problem
4846         for gettext reported by Bruno Haible in
4847         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
4848         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
4849         Add support for Solaris 10.  This isn't efficient, but should get the
4850         job done for now.
4851
4852 2007-12-03  James Youngman  <jay@gnu.org>
4853
4854         * doc/regexprops-generic.texi: change "an close-group" to "a
4855         close-group" and "illegal" to "not allowed".
4856
4857 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4858
4859         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
4860         pr_byname.h. Needed for the rare case when the maintainer has done
4861         "make maintainer-clean" in the source directory and then attempts a
4862         build outside the source directory.
4863         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
4864         scripts_byname.h.
4865
4866 2007-12-02  Martin Lambers <marlam@marlam.de>
4867             Bruno Haible  <bruno@clisp.org>
4868
4869         * lib/getpagesize.h: Remove file.
4870         * lib/unistd.in.h: Include declaration of getpagesize here.
4871         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
4872         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
4873         HAVE_SYS_PARAM_H.
4874         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
4875         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
4876         * modules/getpagesize (Files): Remove lib/getpagesize.h.
4877         (Depends-on): Add unistd.
4878         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
4879         (Include): Use <unistd.h> instead of getpagesize.h.
4880         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
4881         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
4882         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
4883         gl_GETPAGESIZE invocation, already handled by module dependency.
4884         * lib/pagealign_alloc.c: Don't include getpagesize.h.
4885
4886 2007-12-02  Bruno Haible  <bruno@clisp.org>
4887
4888         * modules/strings-tests: New file.
4889         * tests/test-strings.c: New file.
4890
4891         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
4892         * lib/strings.in.h: New file.
4893         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
4894         * m4/strings_h.m4: New file.
4895         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
4896         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
4897         * modules/strings: New file.
4898         * modules/string (Makefile.am): Update.
4899         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
4900         Reported by Karl Berry.
4901
4902 2007-12-01  Eric Blake  <ebb9@byu.net>
4903
4904         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
4905         accomodate fix in cygwin 1.5.25.
4906
4907 2007-12-01  Jim Meyering  <meyering@redhat.com>
4908
4909         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
4910         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
4911         that would inhibit utf8-optimization of a regexp containing line-
4912         or buffer-anchors, e.g., `^', `$'.
4913
4914 2007-11-30  Bruno Haible  <bruno@clisp.org>
4915
4916         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
4917         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
4918         glthread_recursive_lock_init.
4919         * lib/lock.c (glthread_recursive_lock_init)
4920         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
4921         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4922
4923 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
4924
4925         New function qset_acl, like set_acl but with syscall semantics.
4926         * lib/acl.h (qset_acl): New decl.
4927         * lib/acl.c (qset_acl): New function.
4928         (set_acl): Use new function.  Use more-consistent diagnostics.
4929
4930 2007-11-28  Jim Meyering  <meyering@redhat.com>
4931
4932         * modules/physmem (License): Change from GPL to LGPLv2+.
4933
4934 2007-11-26  Bruno Haible  <bruno@clisp.org>
4935
4936         * lib/vasnprintf.c (decode_long_double): Don't abort if the
4937         'long double' type has excess precision.
4938         Reported by Jim Meyering in
4939         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
4940
4941 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4942
4943         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
4944         Sync from <http://gnu.org/licenses>.
4945         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
4946         with license text from same location.
4947         * doc/maintain.texi, doc/standards.texi:  Sync from
4948         <http://savannah.gnu.org/projects/gnustandards>.
4949
4950 2007-11-22  Ondřej Vašík  <ovasik@redhat.com>
4951         and Jim Meyering  <meyering@redhat.com>
4952
4953         Adjust getdate' grammar to accept a slightly more regular language.
4954         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
4955         Before, the former was rejected.
4956         * lib/getdate.y (digits_to_date_time): New function, factored
4957         out of ...
4958         (number): ...here.  Just call digits_to_date_time.
4959         (hybrid): New non-terminal to handle an <unsigned number,
4960         signed relative offset> sequence consistently.
4961
4962 2007-11-18  Jim Meyering  <meyering@redhat.com>
4963
4964         Pull my changes from coreutils:
4965         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
4966         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
4967         use of $gnulib_tool_option_extras, so that it's separated from the
4968         preceding argument.
4969
4970         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
4971         * build-aux/bootstrap (cp_mark_as_generated): Create any required
4972         parent destination directories before copying a file into place.
4973
4974 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
4975
4976         bootstrap: work also with 4-argument variant of AC_INIT
4977         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
4978
4979 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
4980
4981         Port test-getaddrinfo to Solaris.
4982         Problem reported by Bruno Haible in
4983         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
4984         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
4985         explanation of setting 'hints'.
4986         Don't reject an implementation merely because it returns EAI_SERVICE.
4987         (EAI_SERVICE): Define to 0 if not defined.
4988
4989 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
4990
4991         The license of gnu-make and posix-shell is now "GPLed build tool".
4992         * modules/gnu-make (License): Likewise.
4993         * modules/posix-shell (License): Likewise.
4994
4995         New module posix-shell, for determining a POSIX shell
4996         or perhaps something that is close enough to a POSIX shell.
4997         * m4/posix-shell.m4: New file.
4998         * modules/posix-shell: New file.
4999
5000         * MODULES.html.sh: Mention new module.
5001
5002         New module gnu-make, for determining whether we're using GNU Make.
5003         * m4/gnu-make.m4: New file.
5004         * modules/gnu-make: New file.
5005         * MODULES.html.sh: Mention new module.
5006
5007 2007-11-14  Jim Meyering  <meyering@redhat.com>
5008
5009         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
5010         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
5011         use this macro to create a function _definition_.
5012         Remove useless "#undef ARGMATCH_DIE".
5013
5014 2007-11-14  Bruno Haible  <bruno@clisp.org>
5015
5016         * lib/config.charset: Update for OpenBSD 4.1.
5017         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
5018
5019 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
5020
5021         Document 64-bit #if problems in stdint.texi.
5022         * doc/headers/stdint.texi (stdint.h): Mention problems with
5023         64-bit-#if, and how to work around them.
5024
5025         Don't insist on 'long long int' support in the preprocessor.  It
5026         breaks too many things.  For example, PRIdMAX still uses a 'long
5027         long int' format with the latest Sun compiler, even though
5028         HAVE_LONG_LONG_INT isn't defined due to that compiler's
5029         preprocessor problem.  This causes the latest coreutils to dump
5030         core on Solaris 10 sparc with the Sun C compiler.
5031         Instead, fix the 2007-10-16 problem in a different way, by evaluating
5032         the troublesome expressions at configure-time, not at #if-time.
5033         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
5034         preprocessor.
5035         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
5036         compile-time C checks, done at 'configure'-time.
5037         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
5038         * modules/inttypes (Makefile): Substitute the new symbols that
5039         gl_INTTYPES_H now generates.
5040         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
5041
5042 2007-11-12  Bruno Haible  <bruno@clisp.org>
5043
5044         Tests for Unicode character classification functions.
5045
5046         * modules/unictype/bidicategory-byname-tests: New file.
5047         * modules/unictype/bidicategory-name-tests: New file.
5048         * modules/unictype/bidicategory-of-tests: New file.
5049         * modules/unictype/bidicategory-test-tests: New file.
5050         * modules/unictype/block-list-tests: New file.
5051         * modules/unictype/block-of-tests: New file.
5052         * modules/unictype/block-test-tests: New file.
5053         * modules/unictype/category-C-tests: New file.
5054         * modules/unictype/category-Cc-tests: New file.
5055         * modules/unictype/category-Cf-tests: New file.
5056         * modules/unictype/category-Cn-tests: New file.
5057         * modules/unictype/category-Co-tests: New file.
5058         * modules/unictype/category-Cs-tests: New file.
5059         * modules/unictype/category-L-tests: New file.
5060         * modules/unictype/category-Ll-tests: New file.
5061         * modules/unictype/category-Lm-tests: New file.
5062         * modules/unictype/category-Lo-tests: New file.
5063         * modules/unictype/category-Lt-tests: New file.
5064         * modules/unictype/category-Lu-tests: New file.
5065         * modules/unictype/category-M-tests: New file.
5066         * modules/unictype/category-Mc-tests: New file.
5067         * modules/unictype/category-Me-tests: New file.
5068         * modules/unictype/category-Mn-tests: New file.
5069         * modules/unictype/category-N-tests: New file.
5070         * modules/unictype/category-Nd-tests: New file.
5071         * modules/unictype/category-Nl-tests: New file.
5072         * modules/unictype/category-No-tests: New file.
5073         * modules/unictype/category-P-tests: New file.
5074         * modules/unictype/category-Pc-tests: New file.
5075         * modules/unictype/category-Pd-tests: New file.
5076         * modules/unictype/category-Pe-tests: New file.
5077         * modules/unictype/category-Pf-tests: New file.
5078         * modules/unictype/category-Pi-tests: New file.
5079         * modules/unictype/category-Po-tests: New file.
5080         * modules/unictype/category-Ps-tests: New file.
5081         * modules/unictype/category-S-tests: New file.
5082         * modules/unictype/category-Sc-tests: New file.
5083         * modules/unictype/category-Sk-tests: New file.
5084         * modules/unictype/category-Sm-tests: New file.
5085         * modules/unictype/category-So-tests: New file.
5086         * modules/unictype/category-Z-tests: New file.
5087         * modules/unictype/category-Zl-tests: New file.
5088         * modules/unictype/category-Zp-tests: New file.
5089         * modules/unictype/category-Zs-tests: New file.
5090         * modules/unictype/category-and-not-tests: New file.
5091         * modules/unictype/category-and-tests: New file.
5092         * modules/unictype/category-byname-tests: New file.
5093         * modules/unictype/category-name-tests: New file.
5094         * modules/unictype/category-none-tests: New file.
5095         * modules/unictype/category-of-tests: New file.
5096         * modules/unictype/category-or-tests: New file.
5097         * modules/unictype/category-test-withtable-tests: New file.
5098         * modules/unictype/combining-class-tests: New file.
5099         * modules/unictype/ctype-alnum-tests: New file.
5100         * modules/unictype/ctype-alpha-tests: New file.
5101         * modules/unictype/ctype-blank-tests: New file.
5102         * modules/unictype/ctype-cntrl-tests: New file.
5103         * modules/unictype/ctype-digit-tests: New file.
5104         * modules/unictype/ctype-graph-tests: New file.
5105         * modules/unictype/ctype-lower-tests: New file.
5106         * modules/unictype/ctype-print-tests: New file.
5107         * modules/unictype/ctype-punct-tests: New file.
5108         * modules/unictype/ctype-space-tests: New file.
5109         * modules/unictype/ctype-upper-tests: New file.
5110         * modules/unictype/ctype-xdigit-tests: New file.
5111         * modules/unictype/decimal-digit-tests: New file.
5112         * modules/unictype/digit-tests: New file.
5113         * modules/unictype/mirror-tests: New file.
5114         * modules/unictype/numeric-tests: New file.
5115         * modules/unictype/property-alphabetic-tests: New file.
5116         * modules/unictype/property-ascii-hex-digit-tests: New file.
5117         * modules/unictype/property-bidi-arabic-digit-tests: New file.
5118         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
5119         * modules/unictype/property-bidi-block-separator-tests: New file.
5120         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
5121         * modules/unictype/property-bidi-common-separator-tests: New file.
5122         * modules/unictype/property-bidi-control-tests: New file.
5123         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
5124         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
5125         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
5126         * modules/unictype/property-bidi-european-digit-tests: New file.
5127         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
5128         * modules/unictype/property-bidi-left-to-right-tests: New file.
5129         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
5130         * modules/unictype/property-bidi-other-neutral-tests: New file.
5131         * modules/unictype/property-bidi-pdf-tests: New file.
5132         * modules/unictype/property-bidi-segment-separator-tests: New file.
5133         * modules/unictype/property-bidi-whitespace-tests: New file.
5134         * modules/unictype/property-byname-tests: New file.
5135         * modules/unictype/property-combining-tests: New file.
5136         * modules/unictype/property-composite-tests: New file.
5137         * modules/unictype/property-currency-symbol-tests: New file.
5138         * modules/unictype/property-dash-tests: New file.
5139         * modules/unictype/property-decimal-digit-tests: New file.
5140         * modules/unictype/property-default-ignorable-code-point-tests: New file.
5141         * modules/unictype/property-deprecated-tests: New file.
5142         * modules/unictype/property-diacritic-tests: New file.
5143         * modules/unictype/property-extender-tests: New file.
5144         * modules/unictype/property-format-control-tests: New file.
5145         * modules/unictype/property-grapheme-base-tests: New file.
5146         * modules/unictype/property-grapheme-extend-tests: New file.
5147         * modules/unictype/property-grapheme-link-tests: New file.
5148         * modules/unictype/property-hex-digit-tests: New file.
5149         * modules/unictype/property-hyphen-tests: New file.
5150         * modules/unictype/property-id-continue-tests: New file.
5151         * modules/unictype/property-id-start-tests: New file.
5152         * modules/unictype/property-ideographic-tests: New file.
5153         * modules/unictype/property-ids-binary-operator-tests: New file.
5154         * modules/unictype/property-ids-trinary-operator-tests: New file.
5155         * modules/unictype/property-ignorable-control-tests: New file.
5156         * modules/unictype/property-iso-control-tests: New file.
5157         * modules/unictype/property-join-control-tests: New file.
5158         * modules/unictype/property-left-of-pair-tests: New file.
5159         * modules/unictype/property-line-separator-tests: New file.
5160         * modules/unictype/property-logical-order-exception-tests: New file.
5161         * modules/unictype/property-lowercase-tests: New file.
5162         * modules/unictype/property-math-tests: New file.
5163         * modules/unictype/property-non-break-tests: New file.
5164         * modules/unictype/property-not-a-character-tests: New file.
5165         * modules/unictype/property-numeric-tests: New file.
5166         * modules/unictype/property-other-alphabetic-tests: New file.
5167         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
5168         * modules/unictype/property-other-grapheme-extend-tests: New file.
5169         * modules/unictype/property-other-id-continue-tests: New file.
5170         * modules/unictype/property-other-id-start-tests: New file.
5171         * modules/unictype/property-other-lowercase-tests: New file.
5172         * modules/unictype/property-other-math-tests: New file.
5173         * modules/unictype/property-other-uppercase-tests: New file.
5174         * modules/unictype/property-paired-punctuation-tests: New file.
5175         * modules/unictype/property-paragraph-separator-tests: New file.
5176         * modules/unictype/property-pattern-syntax-tests: New file.
5177         * modules/unictype/property-pattern-white-space-tests: New file.
5178         * modules/unictype/property-private-use-tests: New file.
5179         * modules/unictype/property-punctuation-tests: New file.
5180         * modules/unictype/property-quotation-mark-tests: New file.
5181         * modules/unictype/property-radical-tests: New file.
5182         * modules/unictype/property-sentence-terminal-tests: New file.
5183         * modules/unictype/property-soft-dotted-tests: New file.
5184         * modules/unictype/property-space-tests: New file.
5185         * modules/unictype/property-terminal-punctuation-tests: New file.
5186         * modules/unictype/property-test-tests: New file.
5187         * modules/unictype/property-titlecase-tests: New file.
5188         * modules/unictype/property-unassigned-code-value-tests: New file.
5189         * modules/unictype/property-unified-ideograph-tests: New file.
5190         * modules/unictype/property-uppercase-tests: New file.
5191         * modules/unictype/property-variation-selector-tests: New file.
5192         * modules/unictype/property-white-space-tests: New file.
5193         * modules/unictype/property-xid-continue-tests: New file.
5194         * modules/unictype/property-xid-start-tests: New file.
5195         * modules/unictype/property-zero-width-tests: New file.
5196         * modules/unictype/scripts-tests: New file.
5197         * modules/unictype/syntax-c-ident-tests: New file.
5198         * modules/unictype/syntax-c-whitespace-tests: New file.
5199         * modules/unictype/syntax-java-ident-tests: New file.
5200         * modules/unictype/syntax-java-whitespace-tests: New file.
5201         * tests/unictype/test-bidi_byname.c: New file.
5202         * tests/unictype/test-bidi_name.c: New file.
5203         * tests/unictype/test-bidi_of.c: New file.
5204         * tests/unictype/test-bidi_test.c: New file.
5205         * tests/unictype/test-block_list.c: New file.
5206         * tests/unictype/test-block_of.c: New file.
5207         * tests/unictype/test-block_test.c: New file.
5208         * tests/unictype/test-categ_and.c: New file.
5209         * tests/unictype/test-categ_and_not.c: New file.
5210         * tests/unictype/test-categ_byname.c: New file.
5211         * tests/unictype/test-categ_name.c: New file.
5212         * tests/unictype/test-categ_none.c: New file.
5213         * tests/unictype/test-categ_of.c: New file.
5214         * tests/unictype/test-categ_or.c: New file.
5215         * tests/unictype/test-categ_test_withtable.c: New file.
5216         * tests/unictype/test-combining.c: New file.
5217         * tests/unictype/test-decdigit.c: New file.
5218         * tests/unictype/test-digit.c: New file.
5219         * tests/unictype/test-mirror.c: New file.
5220         * tests/unictype/test-numeric.c: New file.
5221         * tests/unictype/test-pr_byname.c: New file.
5222         * tests/unictype/test-pr_test.c: New file.
5223         * tests/unictype/test-predicate-part1.h: New file.
5224         * tests/unictype/test-predicate-part2.h: New file.
5225         * tests/unictype/test-scripts.c: New file.
5226         * tests/unictype/test-sy_c_ident.c: New file.
5227         * tests/unictype/test-sy_java_ident.c: New file.
5228
5229         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
5230         for Unicode 5.0.0.
5231         * tests/unictype/test-categ_Cc.c: Likewise.
5232         * tests/unictype/test-categ_Cf.c: Likewise.
5233         * tests/unictype/test-categ_Cn.c: Likewise.
5234         * tests/unictype/test-categ_Co.c: Likewise.
5235         * tests/unictype/test-categ_Cs.c: Likewise.
5236         * tests/unictype/test-categ_L.c: Likewise.
5237         * tests/unictype/test-categ_Ll.c: Likewise.
5238         * tests/unictype/test-categ_Lm.c: Likewise.
5239         * tests/unictype/test-categ_Lo.c: Likewise.
5240         * tests/unictype/test-categ_Lt.c: Likewise.
5241         * tests/unictype/test-categ_Lu.c: Likewise.
5242         * tests/unictype/test-categ_M.c: Likewise.
5243         * tests/unictype/test-categ_Mc.c: Likewise.
5244         * tests/unictype/test-categ_Me.c: Likewise.
5245         * tests/unictype/test-categ_Mn.c: Likewise.
5246         * tests/unictype/test-categ_N.c: Likewise.
5247         * tests/unictype/test-categ_Nd.c: Likewise.
5248         * tests/unictype/test-categ_Nl.c: Likewise.
5249         * tests/unictype/test-categ_No.c: Likewise.
5250         * tests/unictype/test-categ_P.c: Likewise.
5251         * tests/unictype/test-categ_Pc.c: Likewise.
5252         * tests/unictype/test-categ_Pd.c: Likewise.
5253         * tests/unictype/test-categ_Pe.c: Likewise.
5254         * tests/unictype/test-categ_Pf.c: Likewise.
5255         * tests/unictype/test-categ_Pi.c: Likewise.
5256         * tests/unictype/test-categ_Po.c: Likewise.
5257         * tests/unictype/test-categ_Ps.c: Likewise.
5258         * tests/unictype/test-categ_S.c: Likewise.
5259         * tests/unictype/test-categ_Sc.c: Likewise.
5260         * tests/unictype/test-categ_Sk.c: Likewise.
5261         * tests/unictype/test-categ_Sm.c: Likewise.
5262         * tests/unictype/test-categ_So.c: Likewise.
5263         * tests/unictype/test-categ_Z.c: Likewise.
5264         * tests/unictype/test-categ_Zl.c: Likewise.
5265         * tests/unictype/test-categ_Zp.c: Likewise.
5266         * tests/unictype/test-categ_Zs.c: Likewise.
5267         * tests/unictype/test-ctype_alnum.c: Likewise.
5268         * tests/unictype/test-ctype_alpha.c: Likewise.
5269         * tests/unictype/test-ctype_blank.c: Likewise.
5270         * tests/unictype/test-ctype_cntrl.c: Likewise.
5271         * tests/unictype/test-ctype_digit.c: Likewise.
5272         * tests/unictype/test-ctype_graph.c: Likewise.
5273         * tests/unictype/test-ctype_lower.c: Likewise.
5274         * tests/unictype/test-ctype_print.c: Likewise.
5275         * tests/unictype/test-ctype_punct.c: Likewise.
5276         * tests/unictype/test-ctype_space.c: Likewise.
5277         * tests/unictype/test-ctype_upper.c: Likewise.
5278         * tests/unictype/test-ctype_xdigit.c: Likewise.
5279         * tests/unictype/test-decdigit.h: Likewise.
5280         * tests/unictype/test-digit.h: Likewise.
5281         * tests/unictype/test-numeric.h: Likewise.
5282         * tests/unictype/test-pr_alphabetic.c: Likewise.
5283         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
5284         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
5285         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
5286         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
5287         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
5288         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
5289         * tests/unictype/test-pr_bidi_control.c: Likewise.
5290         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
5291         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
5292         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
5293         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
5294         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
5295         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
5296         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
5297         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
5298         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
5299         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
5300         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
5301         * tests/unictype/test-pr_combining.c: Likewise.
5302         * tests/unictype/test-pr_composite.c: Likewise.
5303         * tests/unictype/test-pr_currency_symbol.c: Likewise.
5304         * tests/unictype/test-pr_dash.c: Likewise.
5305         * tests/unictype/test-pr_decimal_digit.c: Likewise.
5306         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
5307         * tests/unictype/test-pr_deprecated.c: Likewise.
5308         * tests/unictype/test-pr_diacritic.c: Likewise.
5309         * tests/unictype/test-pr_extender.c: Likewise.
5310         * tests/unictype/test-pr_format_control.c: Likewise.
5311         * tests/unictype/test-pr_grapheme_base.c: Likewise.
5312         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
5313         * tests/unictype/test-pr_grapheme_link.c: Likewise.
5314         * tests/unictype/test-pr_hex_digit.c: Likewise.
5315         * tests/unictype/test-pr_hyphen.c: Likewise.
5316         * tests/unictype/test-pr_id_continue.c: Likewise.
5317         * tests/unictype/test-pr_id_start.c: Likewise.
5318         * tests/unictype/test-pr_ideographic.c: Likewise.
5319         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
5320         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
5321         * tests/unictype/test-pr_ignorable_control.c: Likewise.
5322         * tests/unictype/test-pr_iso_control.c: Likewise.
5323         * tests/unictype/test-pr_join_control.c: Likewise.
5324         * tests/unictype/test-pr_left_of_pair.c: Likewise.
5325         * tests/unictype/test-pr_line_separator.c: Likewise.
5326         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
5327         * tests/unictype/test-pr_lowercase.c: Likewise.
5328         * tests/unictype/test-pr_math.c: Likewise.
5329         * tests/unictype/test-pr_non_break.c: Likewise.
5330         * tests/unictype/test-pr_not_a_character.c: Likewise.
5331         * tests/unictype/test-pr_numeric.c: Likewise.
5332         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
5333         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
5334         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
5335         * tests/unictype/test-pr_other_id_continue.c: Likewise.
5336         * tests/unictype/test-pr_other_id_start.c: Likewise.
5337         * tests/unictype/test-pr_other_lowercase.c: Likewise.
5338         * tests/unictype/test-pr_other_math.c: Likewise.
5339         * tests/unictype/test-pr_other_uppercase.c: Likewise.
5340         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
5341         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
5342         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
5343         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
5344         * tests/unictype/test-pr_private_use.c: Likewise.
5345         * tests/unictype/test-pr_punctuation.c: Likewise.
5346         * tests/unictype/test-pr_quotation_mark.c: Likewise.
5347         * tests/unictype/test-pr_radical.c: Likewise.
5348         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
5349         * tests/unictype/test-pr_soft_dotted.c: Likewise.
5350         * tests/unictype/test-pr_space.c: Likewise.
5351         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
5352         * tests/unictype/test-pr_titlecase.c: Likewise.
5353         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
5354         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
5355         * tests/unictype/test-pr_uppercase.c: Likewise.
5356         * tests/unictype/test-pr_variation_selector.c: Likewise.
5357         * tests/unictype/test-pr_white_space.c: Likewise.
5358         * tests/unictype/test-pr_xid_continue.c: Likewise.
5359         * tests/unictype/test-pr_xid_start.c: Likewise.
5360         * tests/unictype/test-pr_zero_width.c: Likewise.
5361         * tests/unictype/test-sy_c_whitespace.c: Likewise.
5362         * tests/unictype/test-sy_java_whitespace.c: Likewise.
5363
5364 2007-11-12  Bruno Haible  <bruno@clisp.org>
5365
5366         Unicode character classification functions.
5367         * lib/unictype.h: New file.
5368         * modules/unictype/base: New file.
5369         * modules/unictype/category-L: New file.
5370         * modules/unictype/category-Lu: New file.
5371         * modules/unictype/category-Ll: New file.
5372         * modules/unictype/category-Lt: New file.
5373         * modules/unictype/category-Lm: New file.
5374         * modules/unictype/category-Lo: New file.
5375         * modules/unictype/category-M: New file.
5376         * modules/unictype/category-Mn: New file.
5377         * modules/unictype/category-Mc: New file.
5378         * modules/unictype/category-Me: New file.
5379         * modules/unictype/category-N: New file.
5380         * modules/unictype/category-Nd: New file.
5381         * modules/unictype/category-Nl: New file.
5382         * modules/unictype/category-No: New file.
5383         * modules/unictype/category-P: New file.
5384         * modules/unictype/category-Pc: New file.
5385         * modules/unictype/category-Pd: New file.
5386         * modules/unictype/category-Ps: New file.
5387         * modules/unictype/category-Pe: New file.
5388         * modules/unictype/category-Pi: New file.
5389         * modules/unictype/category-Pf: New file.
5390         * modules/unictype/category-Po: New file.
5391         * modules/unictype/category-S: New file.
5392         * modules/unictype/category-Sm: New file.
5393         * modules/unictype/category-Sc: New file.
5394         * modules/unictype/category-Sk: New file.
5395         * modules/unictype/category-So: New file.
5396         * modules/unictype/category-Z: New file.
5397         * modules/unictype/category-Zs: New file.
5398         * modules/unictype/category-Zl: New file.
5399         * modules/unictype/category-Zp: New file.
5400         * modules/unictype/category-C: New file.
5401         * modules/unictype/category-Cc: New file.
5402         * modules/unictype/category-Cf: New file.
5403         * modules/unictype/category-Cs: New file.
5404         * modules/unictype/category-Co: New file.
5405         * modules/unictype/category-Cn: New file.
5406         * modules/unictype/category-or: New file.
5407         * modules/unictype/category-of: New file.
5408         * modules/unictype/category-test: New file.
5409         * modules/unictype/category-test-withtable: New file.
5410         * modules/unictype/category-byname: New file.
5411         * modules/unictype/category-none: New file.
5412         * modules/unictype/category-and: New file.
5413         * modules/unictype/category-and-not: New file.
5414         * modules/unictype/category-name: New file.
5415         * modules/unictype/combining-class: New file.
5416         * modules/unictype/category-all: New file.
5417         * modules/unictype/bidicategory-all: New file.
5418         * modules/unictype/bidicategory-byname: New file.
5419         * modules/unictype/bidicategory-name: New file.
5420         * modules/unictype/bidicategory-of: New file.
5421         * modules/unictype/bidicategory-test: New file.
5422         * modules/unictype/decimal-digit: New file.
5423         * modules/unictype/digit: New file.
5424         * modules/unictype/numeric: New file.
5425         * modules/unictype/mirror: New file.
5426         * modules/unictype/property-white-space: New file.
5427         * modules/unictype/property-alphabetic: New file.
5428         * modules/unictype/property-other-alphabetic: New file.
5429         * modules/unictype/property-not-a-character: New file.
5430         * modules/unictype/property-default-ignorable-code-point: New file.
5431         * modules/unictype/property-other-default-ignorable-code-point: New
5432         file.
5433         * modules/unictype/property-deprecated: New file.
5434         * modules/unictype/property-logical-order-exception: New file.
5435         * modules/unictype/property-variation-selector: New file.
5436         * modules/unictype/property-private-use: New file.
5437         * modules/unictype/property-unassigned-code-value: New file.
5438         * modules/unictype/property-uppercase: New file.
5439         * modules/unictype/property-other-uppercase: New file.
5440         * modules/unictype/property-lowercase: New file.
5441         * modules/unictype/property-other-lowercase: New file.
5442         * modules/unictype/property-titlecase: New file.
5443         * modules/unictype/property-soft-dotted: New file.
5444         * modules/unictype/property-id-start: New file.
5445         * modules/unictype/property-other-id-start: New file.
5446         * modules/unictype/property-id-continue: New file.
5447         * modules/unictype/property-other-id-continue: New file.
5448         * modules/unictype/property-xid-start: New file.
5449         * modules/unictype/property-xid-continue: New file.
5450         * modules/unictype/property-pattern-white-space: New file.
5451         * modules/unictype/property-pattern-syntax: New file.
5452         * modules/unictype/property-join-control: New file.
5453         * modules/unictype/property-grapheme-base: New file.
5454         * modules/unictype/property-grapheme-extend: New file.
5455         * modules/unictype/property-other-grapheme-extend: New file.
5456         * modules/unictype/property-grapheme-link: New file.
5457         * modules/unictype/property-bidi-control: New file.
5458         * modules/unictype/property-bidi-left-to-right: New file.
5459         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
5460         * modules/unictype/property-bidi-arabic-right-to-left: New file.
5461         * modules/unictype/property-bidi-european-digit: New file.
5462         * modules/unictype/property-bidi-eur-num-separator: New file.
5463         * modules/unictype/property-bidi-eur-num-terminator: New file.
5464         * modules/unictype/property-bidi-arabic-digit: New file.
5465         * modules/unictype/property-bidi-common-separator: New file.
5466         * modules/unictype/property-bidi-block-separator: New file.
5467         * modules/unictype/property-bidi-segment-separator: New file.
5468         * modules/unictype/property-bidi-whitespace: New file.
5469         * modules/unictype/property-bidi-non-spacing-mark: New file.
5470         * modules/unictype/property-bidi-boundary-neutral: New file.
5471         * modules/unictype/property-bidi-pdf: New file.
5472         * modules/unictype/property-bidi-embedding-or-override: New file.
5473         * modules/unictype/property-bidi-other-neutral: New file.
5474         * modules/unictype/property-hex-digit: New file.
5475         * modules/unictype/property-ascii-hex-digit: New file.
5476         * modules/unictype/property-ideographic: New file.
5477         * modules/unictype/property-unified-ideograph: New file.
5478         * modules/unictype/property-radical: New file.
5479         * modules/unictype/property-ids-binary-operator: New file.
5480         * modules/unictype/property-ids-trinary-operator: New file.
5481         * modules/unictype/property-zero-width: New file.
5482         * modules/unictype/property-space: New file.
5483         * modules/unictype/property-non-break: New file.
5484         * modules/unictype/property-iso-control: New file.
5485         * modules/unictype/property-format-control: New file.
5486         * modules/unictype/property-dash: New file.
5487         * modules/unictype/property-hyphen: New file.
5488         * modules/unictype/property-punctuation: New file.
5489         * modules/unictype/property-line-separator: New file.
5490         * modules/unictype/property-paragraph-separator: New file.
5491         * modules/unictype/property-quotation-mark: New file.
5492         * modules/unictype/property-sentence-terminal: New file.
5493         * modules/unictype/property-terminal-punctuation: New file.
5494         * modules/unictype/property-currency-symbol: New file.
5495         * modules/unictype/property-math: New file.
5496         * modules/unictype/property-other-math: New file.
5497         * modules/unictype/property-paired-punctuation: New file.
5498         * modules/unictype/property-left-of-pair: New file.
5499         * modules/unictype/property-combining: New file.
5500         * modules/unictype/property-composite: New file.
5501         * modules/unictype/property-decimal-digit: New file.
5502         * modules/unictype/property-numeric: New file.
5503         * modules/unictype/property-diacritic: New file.
5504         * modules/unictype/property-extender: New file.
5505         * modules/unictype/property-ignorable-control: New file.
5506         * modules/unictype/property-test: New file.
5507         * modules/unictype/property-byname: New file.
5508         * modules/unictype/property-all: New file.
5509         * modules/unictype/scripts: New file.
5510         * modules/unictype/scripts-all: New file.
5511         * modules/unictype/block-of: New file.
5512         * modules/unictype/block-test: New file.
5513         * modules/unictype/block-list: New file.
5514         * modules/unictype/block-all: New file.
5515         * modules/unictype/syntax-c-whitespace: New file.
5516         * modules/unictype/syntax-java-whitespace: New file.
5517         * modules/unictype/syntax-c-ident: New file.
5518         * modules/unictype/syntax-java-ident: New file.
5519         * modules/unictype/ctype-alnum: New file.
5520         * modules/unictype/ctype-alpha: New file.
5521         * modules/unictype/ctype-cntrl: New file.
5522         * modules/unictype/ctype-digit: New file.
5523         * modules/unictype/ctype-graph: New file.
5524         * modules/unictype/ctype-lower: New file.
5525         * modules/unictype/ctype-print: New file.
5526         * modules/unictype/ctype-punct: New file.
5527         * modules/unictype/ctype-space: New file.
5528         * modules/unictype/ctype-upper: New file.
5529         * modules/unictype/ctype-xdigit: New file.
5530         * modules/unictype/ctype-blank: New file.
5531         * lib/unictype/bidi_byname.c: New file.
5532         * lib/unictype/bidi_name.c: New file.
5533         * lib/unictype/bidi_of.c: New file.
5534         * lib/unictype/bidi_test.c: New file.
5535         * lib/unictype/bitmap.h: New file.
5536         * lib/unictype/block_test.c: New file.
5537         * lib/unictype/blocks.c: New file.
5538         * lib/unictype/categ_C.c: New file.
5539         * lib/unictype/categ_Cc.c: New file.
5540         * lib/unictype/categ_Cf.c: New file.
5541         * lib/unictype/categ_Cn.c: New file.
5542         * lib/unictype/categ_Co.c: New file.
5543         * lib/unictype/categ_Cs.c: New file.
5544         * lib/unictype/categ_L.c: New file.
5545         * lib/unictype/categ_Ll.c: New file.
5546         * lib/unictype/categ_Lm.c: New file.
5547         * lib/unictype/categ_Lo.c: New file.
5548         * lib/unictype/categ_Lt.c: New file.
5549         * lib/unictype/categ_Lu.c: New file.
5550         * lib/unictype/categ_M.c: New file.
5551         * lib/unictype/categ_Mc.c: New file.
5552         * lib/unictype/categ_Me.c: New file.
5553         * lib/unictype/categ_Mn.c: New file.
5554         * lib/unictype/categ_N.c: New file.
5555         * lib/unictype/categ_Nd.c: New file.
5556         * lib/unictype/categ_Nl.c: New file.
5557         * lib/unictype/categ_No.c: New file.
5558         * lib/unictype/categ_P.c: New file.
5559         * lib/unictype/categ_Pc.c: New file.
5560         * lib/unictype/categ_Pd.c: New file.
5561         * lib/unictype/categ_Pe.c: New file.
5562         * lib/unictype/categ_Pf.c: New file.
5563         * lib/unictype/categ_Pi.c: New file.
5564         * lib/unictype/categ_Po.c: New file.
5565         * lib/unictype/categ_Ps.c: New file.
5566         * lib/unictype/categ_S.c: New file.
5567         * lib/unictype/categ_Sc.c: New file.
5568         * lib/unictype/categ_Sk.c: New file.
5569         * lib/unictype/categ_Sm.c: New file.
5570         * lib/unictype/categ_So.c: New file.
5571         * lib/unictype/categ_Z.c: New file.
5572         * lib/unictype/categ_Zl.c: New file.
5573         * lib/unictype/categ_Zp.c: New file.
5574         * lib/unictype/categ_Zs.c: New file.
5575         * lib/unictype/categ_and.c: New file.
5576         * lib/unictype/categ_and_not.c: New file.
5577         * lib/unictype/categ_byname.c: New file.
5578         * lib/unictype/categ_name.c: New file.
5579         * lib/unictype/categ_none.c: New file.
5580         * lib/unictype/categ_of.c: New file.
5581         * lib/unictype/categ_or.c: New file.
5582         * lib/unictype/categ_test.c: New file.
5583         * lib/unictype/combining.c: New file.
5584         * lib/unictype/ctype_alnum.c: New file.
5585         * lib/unictype/ctype_alpha.c: New file.
5586         * lib/unictype/ctype_blank.c: New file.
5587         * lib/unictype/ctype_cntrl.c: New file.
5588         * lib/unictype/ctype_digit.c: New file.
5589         * lib/unictype/ctype_graph.c: New file.
5590         * lib/unictype/ctype_lower.c: New file.
5591         * lib/unictype/ctype_print.c: New file.
5592         * lib/unictype/ctype_punct.c: New file.
5593         * lib/unictype/ctype_space.c: New file.
5594         * lib/unictype/ctype_upper.c: New file.
5595         * lib/unictype/ctype_xdigit.c: New file.
5596         * lib/unictype/decdigit.c: New file.
5597         * lib/unictype/digit.c: New file.
5598         * lib/unictype/identsyntaxmap.h: New file.
5599         * lib/unictype/mirror.c: New file.
5600         * lib/unictype/numeric.c: New file.
5601         * lib/unictype/pr_alphabetic.c: New file.
5602         * lib/unictype/pr_ascii_hex_digit.c: New file.
5603         * lib/unictype/pr_bidi_arabic_digit.c: New file.
5604         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
5605         * lib/unictype/pr_bidi_block_separator.c: New file.
5606         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
5607         * lib/unictype/pr_bidi_common_separator.c: New file.
5608         * lib/unictype/pr_bidi_control.c: New file.
5609         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
5610         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
5611         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
5612         * lib/unictype/pr_bidi_european_digit.c: New file.
5613         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
5614         * lib/unictype/pr_bidi_left_to_right.c: New file.
5615         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
5616         * lib/unictype/pr_bidi_other_neutral.c: New file.
5617         * lib/unictype/pr_bidi_pdf.c: New file.
5618         * lib/unictype/pr_bidi_segment_separator.c: New file.
5619         * lib/unictype/pr_bidi_whitespace.c: New file.
5620         * lib/unictype/pr_byname.c: New file.
5621         * lib/unictype/pr_byname.gperf: New file.
5622         * lib/unictype/pr_combining.c: New file.
5623         * lib/unictype/pr_composite.c: New file.
5624         * lib/unictype/pr_currency_symbol.c: New file.
5625         * lib/unictype/pr_dash.c: New file.
5626         * lib/unictype/pr_decimal_digit.c: New file.
5627         * lib/unictype/pr_default_ignorable_code_point.c: New file.
5628         * lib/unictype/pr_deprecated.c: New file.
5629         * lib/unictype/pr_diacritic.c: New file.
5630         * lib/unictype/pr_extender.c: New file.
5631         * lib/unictype/pr_format_control.c: New file.
5632         * lib/unictype/pr_grapheme_base.c: New file.
5633         * lib/unictype/pr_grapheme_extend.c: New file.
5634         * lib/unictype/pr_grapheme_link.c: New file.
5635         * lib/unictype/pr_hex_digit.c: New file.
5636         * lib/unictype/pr_hyphen.c: New file.
5637         * lib/unictype/pr_id_continue.c: New file.
5638         * lib/unictype/pr_id_start.c: New file.
5639         * lib/unictype/pr_ideographic.c: New file.
5640         * lib/unictype/pr_ids_binary_operator.c: New file.
5641         * lib/unictype/pr_ids_trinary_operator.c: New file.
5642         * lib/unictype/pr_ignorable_control.c: New file.
5643         * lib/unictype/pr_iso_control.c: New file.
5644         * lib/unictype/pr_join_control.c: New file.
5645         * lib/unictype/pr_left_of_pair.c: New file.
5646         * lib/unictype/pr_line_separator.c: New file.
5647         * lib/unictype/pr_logical_order_exception.c: New file.
5648         * lib/unictype/pr_lowercase.c: New file.
5649         * lib/unictype/pr_math.c: New file.
5650         * lib/unictype/pr_non_break.c: New file.
5651         * lib/unictype/pr_not_a_character.c: New file.
5652         * lib/unictype/pr_numeric.c: New file.
5653         * lib/unictype/pr_other_alphabetic.c: New file.
5654         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
5655         * lib/unictype/pr_other_grapheme_extend.c: New file.
5656         * lib/unictype/pr_other_id_continue.c: New file.
5657         * lib/unictype/pr_other_id_start.c: New file.
5658         * lib/unictype/pr_other_lowercase.c: New file.
5659         * lib/unictype/pr_other_math.c: New file.
5660         * lib/unictype/pr_other_uppercase.c: New file.
5661         * lib/unictype/pr_paired_punctuation.c: New file.
5662         * lib/unictype/pr_paragraph_separator.c: New file.
5663         * lib/unictype/pr_pattern_syntax.c: New file.
5664         * lib/unictype/pr_pattern_white_space.c: New file.
5665         * lib/unictype/pr_private_use.c: New file.
5666         * lib/unictype/pr_punctuation.c: New file.
5667         * lib/unictype/pr_quotation_mark.c: New file.
5668         * lib/unictype/pr_radical.c: New file.
5669         * lib/unictype/pr_sentence_terminal.c: New file.
5670         * lib/unictype/pr_soft_dotted.c: New file.
5671         * lib/unictype/pr_space.c: New file.
5672         * lib/unictype/pr_terminal_punctuation.c: New file.
5673         * lib/unictype/pr_test.c: New file.
5674         * lib/unictype/pr_titlecase.c: New file.
5675         * lib/unictype/pr_unassigned_code_value.c: New file.
5676         * lib/unictype/pr_unified_ideograph.c: New file.
5677         * lib/unictype/pr_uppercase.c: New file.
5678         * lib/unictype/pr_variation_selector.c: New file.
5679         * lib/unictype/pr_white_space.c: New file.
5680         * lib/unictype/pr_xid_continue.c: New file.
5681         * lib/unictype/pr_xid_start.c: New file.
5682         * lib/unictype/pr_zero_width.c: New file.
5683         * lib/unictype/scripts.c: New file.
5684         * lib/unictype/sy_c_ident.c: New file.
5685         * lib/unictype/sy_c_whitespace.c: New file.
5686         * lib/unictype/sy_java_ident.c: New file.
5687         * lib/unictype/sy_java_whitespace.c: New file.
5688
5689         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
5690         Unicode 5.0.0.
5691         * lib/unictype/blocks.h: Likewise.
5692         * lib/unictype/categ_C.h: Likewise.
5693         * lib/unictype/categ_Cc.h: Likewise.
5694         * lib/unictype/categ_Cf.h: Likewise.
5695         * lib/unictype/categ_Cn.h: Likewise.
5696         * lib/unictype/categ_Co.h: Likewise.
5697         * lib/unictype/categ_Cs.h: Likewise.
5698         * lib/unictype/categ_L.h: Likewise.
5699         * lib/unictype/categ_Ll.h: Likewise.
5700         * lib/unictype/categ_Lm.h: Likewise.
5701         * lib/unictype/categ_Lo.h: Likewise.
5702         * lib/unictype/categ_Lt.h: Likewise.
5703         * lib/unictype/categ_Lu.h: Likewise.
5704         * lib/unictype/categ_M.h: Likewise.
5705         * lib/unictype/categ_Mc.h: Likewise.
5706         * lib/unictype/categ_Me.h: Likewise.
5707         * lib/unictype/categ_Mn.h: Likewise.
5708         * lib/unictype/categ_N.h: Likewise.
5709         * lib/unictype/categ_Nd.h: Likewise.
5710         * lib/unictype/categ_Nl.h: Likewise.
5711         * lib/unictype/categ_No.h: Likewise.
5712         * lib/unictype/categ_P.h: Likewise.
5713         * lib/unictype/categ_Pc.h: Likewise.
5714         * lib/unictype/categ_Pd.h: Likewise.
5715         * lib/unictype/categ_Pe.h: Likewise.
5716         * lib/unictype/categ_Pf.h: Likewise.
5717         * lib/unictype/categ_Pi.h: Likewise.
5718         * lib/unictype/categ_Po.h: Likewise.
5719         * lib/unictype/categ_Ps.h: Likewise.
5720         * lib/unictype/categ_S.h: Likewise.
5721         * lib/unictype/categ_Sc.h: Likewise.
5722         * lib/unictype/categ_Sk.h: Likewise.
5723         * lib/unictype/categ_Sm.h: Likewise.
5724         * lib/unictype/categ_So.h: Likewise.
5725         * lib/unictype/categ_Z.h: Likewise.
5726         * lib/unictype/categ_Zl.h: Likewise.
5727         * lib/unictype/categ_Zp.h: Likewise.
5728         * lib/unictype/categ_Zs.h: Likewise.
5729         * lib/unictype/categ_of.h: Likewise.
5730         * lib/unictype/combining.h: Likewise.
5731         * lib/unictype/ctype_alnum.h: Likewise.
5732         * lib/unictype/ctype_alpha.h: Likewise.
5733         * lib/unictype/ctype_blank.h: Likewise.
5734         * lib/unictype/ctype_cntrl.h: Likewise.
5735         * lib/unictype/ctype_digit.h: Likewise.
5736         * lib/unictype/ctype_graph.h: Likewise.
5737         * lib/unictype/ctype_lower.h: Likewise.
5738         * lib/unictype/ctype_print.h: Likewise.
5739         * lib/unictype/ctype_punct.h: Likewise.
5740         * lib/unictype/ctype_space.h: Likewise.
5741         * lib/unictype/ctype_upper.h: Likewise.
5742         * lib/unictype/ctype_xdigit.h: Likewise.
5743         * lib/unictype/decdigit.h: Likewise.
5744         * lib/unictype/digit.h: Likewise.
5745         * lib/unictype/mirror.h: Likewise.
5746         * lib/unictype/numeric.h: Likewise.
5747         * lib/unictype/pr_alphabetic.h: Likewise.
5748         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
5749         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
5750         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
5751         * lib/unictype/pr_bidi_block_separator.h: Likewise.
5752         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
5753         * lib/unictype/pr_bidi_common_separator.h: Likewise.
5754         * lib/unictype/pr_bidi_control.h: Likewise.
5755         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
5756         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
5757         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
5758         * lib/unictype/pr_bidi_european_digit.h: Likewise.
5759         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
5760         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
5761         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
5762         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
5763         * lib/unictype/pr_bidi_pdf.h: Likewise.
5764         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
5765         * lib/unictype/pr_bidi_whitespace.h: Likewise.
5766         * lib/unictype/pr_combining.h: Likewise.
5767         * lib/unictype/pr_composite.h: Likewise.
5768         * lib/unictype/pr_currency_symbol.h: Likewise.
5769         * lib/unictype/pr_dash.h: Likewise.
5770         * lib/unictype/pr_decimal_digit.h: Likewise.
5771         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
5772         * lib/unictype/pr_deprecated.h: Likewise.
5773         * lib/unictype/pr_diacritic.h: Likewise.
5774         * lib/unictype/pr_extender.h: Likewise.
5775         * lib/unictype/pr_format_control.h: Likewise.
5776         * lib/unictype/pr_grapheme_base.h: Likewise.
5777         * lib/unictype/pr_grapheme_extend.h: Likewise.
5778         * lib/unictype/pr_grapheme_link.h: Likewise.
5779         * lib/unictype/pr_hex_digit.h: Likewise.
5780         * lib/unictype/pr_hyphen.h: Likewise.
5781         * lib/unictype/pr_id_continue.h: Likewise.
5782         * lib/unictype/pr_id_start.h: Likewise.
5783         * lib/unictype/pr_ideographic.h: Likewise.
5784         * lib/unictype/pr_ids_binary_operator.h: Likewise.
5785         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
5786         * lib/unictype/pr_ignorable_control.h: Likewise.
5787         * lib/unictype/pr_iso_control.h: Likewise.
5788         * lib/unictype/pr_join_control.h: Likewise.
5789         * lib/unictype/pr_left_of_pair.h: Likewise.
5790         * lib/unictype/pr_line_separator.h: Likewise.
5791         * lib/unictype/pr_logical_order_exception.h: Likewise.
5792         * lib/unictype/pr_lowercase.h: Likewise.
5793         * lib/unictype/pr_math.h: Likewise.
5794         * lib/unictype/pr_non_break.h: Likewise.
5795         * lib/unictype/pr_not_a_character.h: Likewise.
5796         * lib/unictype/pr_numeric.h: Likewise.
5797         * lib/unictype/pr_other_alphabetic.h: Likewise.
5798         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
5799         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
5800         * lib/unictype/pr_other_id_continue.h: Likewise.
5801         * lib/unictype/pr_other_id_start.h: Likewise.
5802         * lib/unictype/pr_other_lowercase.h: Likewise.
5803         * lib/unictype/pr_other_math.h: Likewise.
5804         * lib/unictype/pr_other_uppercase.h: Likewise.
5805         * lib/unictype/pr_paired_punctuation.h: Likewise.
5806         * lib/unictype/pr_paragraph_separator.h: Likewise.
5807         * lib/unictype/pr_pattern_syntax.h: Likewise.
5808         * lib/unictype/pr_pattern_white_space.h: Likewise.
5809         * lib/unictype/pr_private_use.h: Likewise.
5810         * lib/unictype/pr_punctuation.h: Likewise.
5811         * lib/unictype/pr_quotation_mark.h: Likewise.
5812         * lib/unictype/pr_radical.h: Likewise.
5813         * lib/unictype/pr_sentence_terminal.h: Likewise.
5814         * lib/unictype/pr_soft_dotted.h: Likewise.
5815         * lib/unictype/pr_space.h: Likewise.
5816         * lib/unictype/pr_terminal_punctuation.h: Likewise.
5817         * lib/unictype/pr_titlecase.h: Likewise.
5818         * lib/unictype/pr_unassigned_code_value.h: Likewise.
5819         * lib/unictype/pr_unified_ideograph.h: Likewise.
5820         * lib/unictype/pr_uppercase.h: Likewise.
5821         * lib/unictype/pr_variation_selector.h: Likewise.
5822         * lib/unictype/pr_white_space.h: Likewise.
5823         * lib/unictype/pr_xid_continue.h: Likewise.
5824         * lib/unictype/pr_xid_start.h: Likewise.
5825         * lib/unictype/pr_zero_width.h: Likewise.
5826         * lib/unictype/scripts.h: Likewise.
5827         * lib/unictype/scripts_byname.gperf: Likewise.
5828         * lib/unictype/sy_c_ident.h: Likewise.
5829         * lib/unictype/sy_c_whitespace.h: Likewise.
5830         * lib/unictype/sy_java_ident.h: Likewise.
5831         * lib/unictype/sy_java_whitespace.h: Likewise.
5832
5833         * lib/unictype/Makefile: New file.
5834         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
5835         glibc.
5836         * lib/unictype/3level.h: New file, copied from glibc.
5837         * lib/unictype/3levelbit.h: New file.
5838
5839 2007-11-11  Bruno Haible  <bruno@clisp.org>
5840
5841         * modules/gperf: New file.
5842         * modules/iconv_open (Depends-on): Add it.
5843         (Makefile.am): Remove the GPERF definition.
5844
5845 2007-11-11  Bruno Haible  <bruno@clisp.org>
5846
5847         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
5848         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
5849
5850 2007-11-11  Bruno Haible  <bruno@clisp.org>
5851
5852         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
5853         (usage): Remove function.
5854
5855 2007-11-11  Bruno Haible  <bruno@clisp.org>
5856
5857         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
5858         gl_FUNC_CEILF_LIBS.
5859         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
5860         gl_FUNC_CEIL_LIBS.
5861         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
5862         gl_FUNC_CEILL_LIBS.
5863         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
5864         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
5865         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
5866
5867 2007-11-11  Bruno Haible  <bruno@clisp.org>
5868
5869         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
5870         roundf were declared but do not exist on functions.
5871         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
5872         roundl were declared but do not exist on functions.
5873         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
5874         HAVE_FLOORL_AND_CEILL, respectively.
5875         Needed for Sun C on Solaris 10.
5876
5877 2007-11-11  Bruno Haible  <bruno@clisp.org>
5878
5879         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
5880         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
5881         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
5882         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
5883         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
5884         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
5885         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
5886         HAVE_DECL_ROUNDF.
5887         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
5888         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
5889         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
5890         of HAVE_DECL_ROUND*.
5891         * modules/math (Makefile.am): Update.
5892
5893 2007-11-10  Bruno Haible  <bruno@clisp.org>
5894
5895         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
5896         ptrdiff_t as m4/intl.m4.
5897
5898 2007-11-10  Jim Meyering  <meyering@redhat.com>
5899
5900         Avoid link failure for the argmatch test.
5901         * tests/test-argmatch.c (usage): Define function to avoid a link
5902         failure: argmatch_die requires a usage function.
5903
5904 2007-11-09  Bruno Haible  <bruno@clisp.org>
5905
5906         * doc/functions/snprintf.texi: Mention BeOS deficiency.
5907         * doc/functions/vsnprintf.texi: Likewise.
5908         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
5909         with a size argument < 2.
5910
5911 2007-11-09  Bruno Haible  <bruno@clisp.org>
5912
5913         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
5914         buffer. Fixes an inefficiency introduced on 2007-11-03.
5915
5916 2007-11-09  Bruno Haible  <bruno@clisp.org>
5917
5918         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
5919         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
5920
5921 2007-11-08  Jim Meyering  <meyering@redhat.com>
5922
5923         Change cache variable name prefix "jm_" to "gl_" everywhere.
5924         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
5925         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
5926         * m4/uptime.m4: s/gl_/jm_/
5927
5928 2007-11-07  Bruno Haible  <bruno@clisp.org>
5929
5930         Update to GNU gettext 0.17.
5931         * m4/intl.m4: Update to GNU gettext 0.17.
5932         * m4/po.m4: Likewise.
5933         * modules/gettext (Files): Remove m4/ulonglong.m4.
5934         (configure.ac): Require gettext infrastructure from version 0.17.
5935
5936 2007-11-06  Bruno Haible  <bruno@clisp.org>
5937
5938         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
5939         symbolic values are not defined in a public header.
5940         * lib/freadable.c (freadable) [QNX]: Likewise.
5941         * lib/freadahead.c (freadahead) [QNX]: Likewise.
5942         * lib/freading.c (freading) [QNX]: Likewise.
5943         * lib/fseterr.c (fseterr) [QNX]: Likewise.
5944         * lib/fwritable.c (fwritable) [QNX]: Likewise.
5945         * lib/fwriting.c (fwriting) [QNX]: Likewise.
5946         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
5947         Reported by Alain Magloire.
5948
5949         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
5950
5951 2007-11-05  Bruno Haible  <bruno@clisp.org>
5952
5953         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
5954         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
5955         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
5956         Reported by Eric Blake.
5957
5958 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5959             Bruno Haible  <bruno@clisp.org>
5960
5961         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
5962         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
5963         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
5964         (malloc): Undefine also before including <stdlib.h>.
5965         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
5966         Needed on OSF/1 4.0.
5967
5968 2007-11-05  Jim Meyering  <meyering@redhat.com>
5969
5970         git-version-gen: sync from coreutils.
5971         * build-aux/git-version-gen: Add comments.
5972         Change the first '-' to '.' in the snapshot version string,
5973         e.g., 6.9-377-08144 -> 6.9.377-08144
5974         Remove first parameter.
5975         Don't declare a version "-dirty" merely because a time
5976         stamp has changed.
5977
5978 2007-11-04  Bruno Haible  <bruno@clisp.org>
5979
5980         * lib/lock.h: Protect all macro definitions containing an 'if'
5981         statement through a "do { ... } while (0)".
5982         * lib/tls.h: Likewise.
5983
5984 2007-11-04  Bruno Haible  <bruno@clisp.org>
5985
5986         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
5987
5988 2007-11-04  Bruno Haible  <bruno@clisp.org>
5989
5990         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
5991         * modules/fprintf-posix (Depends-on): Add nocrash.
5992         * modules/snprintf-posix (Depends-on): Likewise.
5993         * modules/sprintf-posix (Depends-on): Likewise.
5994         * modules/vasnprintf-posix (Depends-on): Likewise.
5995         * modules/vasprintf-posix (Depends-on): Likewise.
5996         * modules/vfprintf-posix (Depends-on): Likewise.
5997         * modules/vsnprintf-posix (Depends-on): Likewise.
5998         * modules/vsprintf-posix (Depends-on): Likewise.
5999         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
6000         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6001         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6002         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6003         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6004         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6005         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6006
6007 2007-11-04  Bruno Haible  <bruno@clisp.org>
6008
6009         * modules/nocrash: New file.
6010         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
6011         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
6012
6013 2007-11-04  Bruno Haible  <bruno@clisp.org>
6014
6015         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
6016         precision handling.
6017         * tests/test-vasprintf-posix.c (test_function): Likewise.
6018         * tests/test-snprintf-posix.h (test_function): Likewise.
6019         * tests/test-sprintf-posix.h (test_function): Likewise.
6020
6021         Fix *printf behaviour for large precisions on mingw and BeOS.
6022         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
6023         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
6024         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
6025         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
6026         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6027         gl_PRINTF_PRECISION and test its result. Invoke
6028         gl_PREREQ_VASNPRINTF_PRECISION.
6029         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6030         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6031         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6032         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6033         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6034         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6035         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6036         * doc/functions/fprintf.texi: Update.
6037         * doc/functions/printf.texi: Update.
6038         * doc/functions/snprintf.texi: Update.
6039         * doc/functions/sprintf.texi: Update.
6040         * doc/functions/vfprintf.texi: Update.
6041         * doc/functions/vprintf.texi: Update.
6042         * doc/functions/vsnprintf.texi: Update.
6043         * doc/functions/vsprintf.texi: Update.
6044
6045 2007-11-04  Bruno Haible  <bruno@clisp.org>
6046
6047         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
6048
6049 2007-11-04  Bruno Haible  <bruno@clisp.org>
6050
6051         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
6052         Reported by Sylvain Beucler <beuc@gnu.org>.
6053
6054 2007-11-03  Bruno Haible  <bruno@clisp.org>
6055
6056         * tests/test-fprintf-posix2.sh: New file.
6057         * tests/test-fprintf-posix2.c: New file.
6058         * modules/fprintf-posix-tests (Files): Add them.
6059         (TESTS): Add test-fprintf-posix2.sh.
6060         (configure.ac): Check for getrlimit and setrlimit.
6061         (check_PROGRAMS): Add test-fprintf-posix2.
6062
6063         * tests/test-printf-posix2.sh: New file.
6064         * tests/test-printf-posix2.c: New file.
6065         * modules/printf-posix-tests (Files): Add them.
6066         (TESTS): Add test-printf-posix2.sh.
6067         (configure.ac): Check for getrlimit and setrlimit.
6068         (check_PROGRAMS): Add test-printf-posix2.
6069
6070         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
6071         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
6072         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
6073         (decode_double): New function, copied from decode_long_double.
6074         (scale10_round_decimal_decoded): New function, extracted from
6075         scale10_round_decimal_long_double.
6076         (scale10_round_decimal_long_double): Use it.
6077         (scale10_round_decimal_double): New function.
6078         (floorlog10): New function.
6079         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
6080         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
6081         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
6082         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6083         gl_PRINTF_ENOMEM and test its result. Invoke
6084         gl_PREREQ_VASNPRINTF_ENOMEM.
6085         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6086         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6087         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6088         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6089         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6090         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6091         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6092         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
6093         * modules/snprintf-posix (Depends-on): Likewise.
6094         * modules/sprintf-posix (Depends-on): Likewise.
6095         * modules/vasnprintf-posix (Depends-on): Likewise.
6096         * modules/vasprintf-posix (Depends-on): Likewise.
6097         * modules/vfprintf-posix (Depends-on): Likewise.
6098         * modules/vsnprintf-posix (Depends-on): Likewise.
6099         * modules/vsprintf-posix (Depends-on): Likewise.
6100         * doc/functions/fprintf.texi: Update.
6101         * doc/functions/printf.texi: Update.
6102         * doc/functions/snprintf.texi: Update.
6103         * doc/functions/sprintf.texi: Update.
6104         * doc/functions/vfprintf.texi: Update.
6105         * doc/functions/vprintf.texi: Update.
6106         * doc/functions/vsnprintf.texi: Update.
6107         * doc/functions/vsprintf.texi: Update.
6108
6109 2007-11-03  Bruno Haible  <bruno@clisp.org>
6110
6111         * modules/frexp-nolibm-tests: New file.
6112
6113         * modules/frexp-nolibm: New file.
6114         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
6115
6116 2007-11-03  Bruno Haible  <bruno@clisp.org>
6117
6118         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
6119         value is C99 compliant.
6120         Needed for OSF/1 5.1.
6121
6122 2007-11-03  Bruno Haible  <bruno@clisp.org>
6123
6124         Fix out-of-memory handling of vasnprintf.
6125         * lib/printf-parse.c: Include <errno.h>.
6126         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
6127         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
6128         is already set.
6129
6130 2007-11-02  Eric Blake  <ebb9@byu.net>
6131
6132         Fix tests on cygwin.
6133         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
6134
6135 2007-11-01  Bruno Haible  <bruno@clisp.org>
6136
6137         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
6138         warning.
6139         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
6140         needed for POSIX compatibility.
6141
6142 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
6143
6144         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
6145         for compatibility with GNU.
6146
6147 2007-11-01  Bruno Haible  <bruno@clisp.org>
6148
6149         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
6150         (putenv): Renamed from rpl_putenv. Change argument type from
6151         'const char *' to 'char *'.
6152         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
6153         of defining putenv in config.h, just set REPLACE_PUTENV.
6154         * modules/putenv (Depends-on): Add stdlib.
6155         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
6156         (Include): Use <stdlib.h>.
6157         * lib/stdlib.in.h (putenv): New declaration.
6158         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
6159         REPLACE_PUTENV.
6160         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
6161         REPLACE_PUTENV.
6162         Needed for MacOS X 10.5.0.
6163         Reported by Peter O'Gorman <peter@pogma.com>.
6164
6165 2007-11-01  Jim Meyering  <meyering@redhat.com>
6166
6167         Treat an empty date string exactly like "0".
6168         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
6169         if the remaining date string (to be parsed) is empty, use "0".
6170         Reported by Mischa Molhoek and discussed in this thread:
6171         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
6172
6173 2007-10-31  Bruno Haible  <bruno@clisp.org>
6174
6175         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
6176         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
6177         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
6178         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
6179         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
6180         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
6181
6182 2007-10-31  Bruno Haible  <bruno@clisp.org>
6183
6184         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
6185         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
6186         (AC_TYPE_LONG_LONG_INT): Use it.
6187         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
6188         it as well.
6189         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
6190         to m4/longlong.m4.
6191         * modules/stdint (Files): Remove m4/ulonglong.m4.
6192         * modules/strtoull (Files): Use m4/longlong.m4 instead of
6193         m4/ulonglong.m4.
6194         * modules/strtoumax (Files): Likewise.
6195
6196 2007-10-30  Bruno Haible  <bruno@clisp.org>
6197
6198         * modules/xvasprintf-posix: New file.
6199         Suggested by Eric Blake.
6200
6201 2007-10-30  Bruno Haible  <bruno@clisp.org>
6202
6203         * modules/xprintf-posix-tests: New file.
6204         * tests/test-xprintf-posix.sh: New file.
6205         * tests/test-xprintf-posix.c: New file.
6206         * tests/test-xfprintf-posix.c: New file.
6207
6208         * modules/xprintf-posix: New file.
6209
6210 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6211
6212         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
6213         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
6214         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
6215
6216 2007-10-29  Bruno Haible  <bruno@clisp.org>
6217
6218         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
6219         contain the special marker '_cv_'.
6220         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
6221         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
6222         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
6223         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
6224         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
6225         Reported by Ralf Wildenhues.
6226
6227 2007-10-29  Bruno Haible  <bruno@clisp.org>
6228
6229         * gnulib-tool (func_import): When --lgpl is not specified, set
6230         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
6231         GPLv3.
6232         Reported by Simon Josefsson.
6233
6234 2007-10-28  Bruno Haible  <bruno@clisp.org>
6235
6236         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
6237         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
6238         HAVE_DECL_ISFINITE.
6239         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
6240         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
6241         HAVE_DECL_ISFINITE.
6242
6243 2007-10-28  Bruno Haible  <bruno@clisp.org>
6244
6245         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
6246         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
6247
6248 2007-10-28  Bruno Haible  <bruno@clisp.org>
6249
6250         Fix link errors with Sun C 5.0 on Solaris 10.
6251         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
6252         function is declared but not present in the compiler's libm.
6253         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
6254         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
6255         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
6256         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
6257         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
6258         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
6259         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
6260         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
6261         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
6262         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
6263         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
6264         HAVE_DECL_FLOORL.
6265
6266 2007-10-28  Bruno Haible  <bruno@clisp.org>
6267
6268         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
6269         gl_FUNC_FLOORL. Cache the result.
6270         (gl_FUNC_FLOORL): Use it.
6271         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
6272         gl_FUNC_CEILL. Cache the result.
6273         (gl_FUNC_CEILL): Use it.
6274
6275         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
6276         gl_FUNC_FLOOR. Cache the result.
6277         (gl_FUNC_FLOOR): Use it.
6278         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
6279         gl_FUNC_CEIL. Cache the result.
6280         (gl_FUNC_CEIL): Use it.
6281
6282         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
6283         gl_FUNC_FLOORF. Cache the result.
6284         (gl_FUNC_FLOORF): Use it.
6285         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
6286         gl_FUNC_CEILF. Cache the result.
6287         (gl_FUNC_CEILF): Use it.
6288
6289 2007-10-28  Bruno Haible  <bruno@clisp.org>
6290
6291         * gnulib-tool: Allow specifying the LGPL version number through
6292         --lgpl=2 or --lgpl=3.
6293         (func_usage): Document --lgpl with argument.
6294         Handle --lgpl=... arguments.
6295         (func_import): Recognize also gl_LGPL calls with an argument. When
6296         --lgpl=2 is used and the module's license is just LGPL, report an
6297         error. Set sed_transform_lib_file according to the lgpl variable. In
6298         the generated files, use --lgpl or gl_LGPL invocations with argument,
6299         if necessary.
6300         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
6301         an LGPv2+ license.
6302         * doc/gnulib-tool.texi (Modified imports): Update explanation of
6303         gl_LGPL macro.
6304
6305 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6306             Bruno Haible  <bruno@clisp.org>
6307
6308         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
6309         (u16_uctomb_aux): Likewise.
6310         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
6311         !HAVE_INLINE.
6312         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
6313
6314 2007-10-28  Bruno Haible  <bruno@clisp.org>
6315
6316         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
6317         Invoke AM_GETTEXT_OPTION if it exists.
6318         * modules/vasprintf: Likewise.
6319         * modules/verror: Likewise.
6320         * modules/xprintf: Likewise.
6321         * modules/xvasprintf: Likewise.
6322
6323 2007-10-27  Ben Pfaff  <blp@gnu.org>
6324
6325         * lib/math.in.h: Define isfinite macro and prototypes for
6326         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
6327         implementations.
6328         * m4/math_h.m4: New substitutions for isfinite module.
6329         * lib/isfinite.c: New file.
6330         * m4/isfinite.m4: New file.
6331         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
6332         * modules/isfinite: New file.
6333         * modules/isfinite-tests: New file.
6334         * tests/tests-isfinite.c: New file.
6335         * doc/functions/isfinite.texi: Mention isfinite module.
6336         * MODULES.html.sh: Mention new module.
6337
6338 2007-10-27  Ben Pfaff  <blp@gnu.org>
6339
6340         Ralf Wildenhues reported that Tru64 4.0D declares the round
6341         functions but does not have definitions.
6342         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
6343         cannot be found in any library, set the output variable to
6344         "missing" instead of "".
6345         * m4/round.m4: Also use our substitute if we cannot find round in
6346         any library, even if it is declared.
6347         * m4/roundf.m4: Likewise for roundf.
6348         * m4/roundl.m4: Likewise for roundl.
6349         * lib/math.in.h: Undefine roundf, round, roundl before defining
6350         their replacements, to allow for hypothetical systems where these
6351         may be defined as macros but not available in libraries.
6352
6353 2007-10-27  Bruno Haible  <bruno@clisp.org>
6354
6355         * doc/gnulib.texi: Invoke @firstparagraphindent.
6356         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
6357         changes in gnulib.
6358         (Source changes): New section.
6359
6360 2007-10-26  Bruno Haible  <bruno@clisp.org>
6361
6362         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
6363         borrowed from autoconf.
6364
6365 2007-10-26  Bruno Haible  <bruno@clisp.org>
6366
6367         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
6368         strerror returned the empty string. Needed on HP-UX 11.00.
6369
6370 2007-10-24  Micah Cowan  <micah@cowan.name>
6371
6372         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
6373         * build-aux/bootstrap: Remove support for now-unnecessary option,
6374         --cvs-user, and envvars CVS_USER, CVS_RSH.
6375
6376 2007-10-24  Jim Meyering  <meyering@redhat.com>
6377
6378         Avoid diagnostics from sha1sum when there is no cached checksum.
6379         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
6380         if the po.s1 file hasn't been created yet.
6381
6382         * build-aux/bootstrap: Sync from coreutils:
6383         2007-10-24  Jim Meyering  <meyering@redhat.com>
6384         Get gnulib from the git repository, not from an obsolete cvs one.
6385         * build-aux/bootstrap: Suggestion from Micah Cowan.
6386         2007-10-04  Jim Meyering  <jim@meyering.net>
6387         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
6388         (update_po_files): Work also when there are no .po files in po/.
6389
6390 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
6391
6392         * README: Append ".git" to git and cg examples.
6393         Problem reported by Benoit Sigoure.
6394
6395 2007-10-23  Micah Cowan  <micah@cowan.name>
6396
6397         * users.txt: Add wget.
6398
6399 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6400
6401         Fix linking of some unistdio tests on FreeBSD.
6402         * modules/unistdio/u16-vsnprintf-tests
6403         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
6404         * modules/unistdio/u16-vsprintf-tests
6405         (test_u16_vsnprintf1_LDADD): Likewise.
6406         * modules/unistdio/u32-vsnprintf-tests
6407         (test_u32_vsnprintf1_LDADD): Likewise.
6408         * modules/unistdio/u32-vsprintf-tests
6409         (test_u32_vsprintf1_LDADD): Likewise.
6410         * modules/unistdio/u8-vsnprintf-tests
6411         (test_u8_vsnprintf1_LDADD): Likewise.
6412         * modules/unistdio/u8-vsprintf-tests
6413         (test_u8_vsprintf1_LDADD): Likewise.
6414         * modules/unistdio/ulc-vsnprintf-tests
6415         (test_ulc_vsnprintf1_LDADD): Likewise.
6416         * modules/unistdio/ulc-vsprintf-tests
6417         (test_ulc_vsprintf1_LDADD): Likewise.
6418
6419         Fix linking of some uniconv tests on FreeBSD.
6420         * modules/uniconv/u16-conv-from-enc-tests
6421         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
6422         * modules/uniconv/u16-conv-to-enc-tests
6423         (test_u16_conv_to_enc_LDADD): Likewise.
6424         * modules/uniconv/u16-strconv-from-enc-tests
6425         (test_u16_strconv_from_enc_LDADD): Likewise.
6426         * modules/uniconv/u16-strconv-to-enc-tests
6427         (test_u16_strconv_to_enc_LDADD): Likewise.
6428         * modules/uniconv/u32-conv-from-enc-tests
6429         (test_u32_conv_from_enc_LDADD): Likewise.
6430         * modules/uniconv/u32-conv-to-enc-tests
6431         (test_u32_conv_to_enc_LDADD): Likewise.
6432         * modules/uniconv/u32-strconv-from-enc-tests
6433         (test_u32_strconv_from_enc_LDADD): Likewise.
6434         * modules/uniconv/u32-strconv-to-enc-tests
6435         (test_u32_strconv_to_enc_LDADD): Likewise.
6436         * modules/uniconv/u8-conv-from-enc-tests
6437         (test_u8_conv_from_enc_LDADD): Likewise.
6438         * modules/uniconv/u8-conv-to-enc-tests
6439         (test_u8_conv_to_enc_LDADD): Likewise.
6440         * modules/uniconv/u8-strconv-from-enc-tests
6441         (test_u8_strconv_from_enc_LDADD): Likewise.
6442         * modules/uniconv/u8-strconv-to-enc-tests
6443         (test_u8_strconv_to_enc_LDADD): Likewise.
6444
6445 2007-10-22  Bruno Haible  <bruno@clisp.org>
6446
6447         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
6448         size.
6449
6450 2007-10-22  Eric Blake  <ebb9@byu.net>
6451
6452         Tweak x*printf documentation.
6453         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
6454         variable name and comments.
6455         Suggested by Bruno Haible.
6456
6457 2007-10-22  Bruno Haible  <bruno@clisp.org>
6458
6459         * lib/acl.c (copy_acl): Fix file name in comment.
6460
6461 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
6462
6463         Fix Tru64 problem with stdbool.h.
6464         * lib/stdbool.in.h (false, true):
6465         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
6466         Don't declare as an enum in this situation; it runs afoul of Tru64.
6467         Problem reported by Steven M. Schweda in
6468         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
6469
6470 2007-10-22  Eric Blake  <ebb9@byu.net>
6471
6472         Also wrap vf?printf.
6473         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
6474         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
6475         (xvprintf, xvfprintf): New functions.
6476
6477 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6478
6479         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
6480         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
6481
6482         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
6483         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
6484
6485 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
6486
6487         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
6488         by Bruno Haible.
6489
6490 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6491
6492         * lib/getloadavg.c
6493         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
6494         Undef `sys' after including sys/table.h, for Tru64 4.0D.
6495
6496         * tests/test-i-ring.c: Work for C89.
6497
6498 2007-10-22  Bruno Haible  <bruno@clisp.org>
6499
6500         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
6501         -1u, in preprocessor expression, so that we don't test for the bug
6502         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
6503         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
6504
6505 2007-10-22  Eric Blake  <ebb9@byu.net>
6506
6507         * tests/test-yesno.sh: Silence stderr during test.
6508
6509 2007-10-22  Simon Josefsson  <simon@josefsson.org>
6510
6511         * modules/crypto/gc-camellia: New file.
6512
6513         * m4/gc-camellia.m4: New file.
6514
6515         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
6516
6517         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
6518
6519 2007-10-22  Simon Josefsson  <simon@josefsson.org>
6520
6521         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
6522         --help to stdout.  Reported by sms@antinode.org (Steven
6523         M. Schweda).
6524
6525 2007-10-22  Simon Josefsson  <simon@josefsson.org>
6526
6527         * users.txt: Fix link to libksba.
6528
6529 2007-10-21  Ben Pfaff  <blp@gnu.org>
6530
6531         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
6532         round.c roundf implementation that depends on floorf and ceilf to
6533         be tested unconditionally.
6534
6535 2007-10-21  Ben Pfaff  <blp@gnu.org>
6536
6537         * m4/check-libm-func.m4: Removed.
6538         * m4/check-math-lib.m4: New file.
6539         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
6540         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
6541         definition and lack of AC_LIBOBJ([roundf]).
6542         * m4/roundl.m4: Ditto, and similarly for roundl.
6543         * modules/round: Reference new m4 file.
6544         * modules/roundf: Ditto.
6545         * modules/roundl: Ditto.
6546         * tests/test-round2.c (main): Use ROUND instead of round.
6547         Bug report from Bruno Haible.
6548
6549 2007-10-21  Bruno Haible  <bruno@clisp.org>
6550
6551         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
6552         context.
6553
6554 2007-10-21  Bruno Haible  <bruno@clisp.org>
6555
6556         * tests/test-wcwidth.c (main): Allow negative result for some control
6557         characters.
6558
6559         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
6560         Needed on OSF/1 5.1.
6561
6562 2007-10-21  Bruno Haible  <bruno@clisp.org>
6563
6564         * tests/test-floorf1.c: Include isnanf.h.
6565         (main): Use isnanf() instead of isnan().
6566         * tests/test-ceilf1.c: Include isnanf.h.
6567         (main): Use isnanf() instead of isnan().
6568         * tests/test-truncf1.c: Include isnanf.h.
6569         (main): Use isnanf() instead of isnan().
6570         * tests/test-roundf1.c: Include isnanf.h.
6571         (main): Use isnanf() instead of isnan().
6572
6573 2007-10-21  Eric Blake  <ebb9@byu.net>
6574
6575         * users.txt: Update URL for m4.
6576
6577 2007-10-21  Bruno Haible  <bruno@clisp.org>
6578
6579         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
6580
6581 2007-10-21  Bruno Haible  <bruno@clisp.org>
6582
6583         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
6584         Git's management files if the CVS files are not present.
6585
6586 2007-10-20  Bruno Haible  <bruno@clisp.org>
6587
6588         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
6589         gcc-3.4.x.
6590
6591 2007-10-20  Ben Pfaff  <blp@gnu.org>
6592
6593         * lib/math.in.h: Declare round, roundf, roundl if we are providing
6594         implementations.
6595         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
6596         * lib/round.c: New file.
6597         * lib/roundf.c: New file.
6598         * lib/roundl.c: New file.
6599         * m4/round.m4: New file.
6600         * m4/roundf.m4: New file.
6601         * m4/roundl.m4: New file.
6602         * m4/check-libm-func-m4: New file.
6603         * modules/math: Replace round, roundf, roundl related @VARS@ in
6604         math.in.h.
6605         * modules/round: New file.
6606         * modules/round-tests: New file.
6607         * modules/roundf: New file.
6608         * modules/roundf-tests: New file.
6609         * modules/roundl: New file.
6610         * modules/roundl-tests: New file.
6611         * tests/test-round1.c: New file.
6612         * tests/test-round2.c: New file.
6613         * tests/test-roundf1.c: New file.
6614         * tests/test-roundf2.c: New file.
6615         * tests/test-roundl.c: New file.
6616         * doc/functions/round.texi: Mention round module.
6617         * doc/functions/roundf.texi: Mention roundf module.
6618         * doc/functions/roundl.texi: Mention roundl module.
6619         * MODULES.html.sh: Mention new modules.
6620         Thanks to Bruno Haible for suggestions.
6621
6622 2007-10-20  Jim Meyering  <meyering@redhat.com>
6623
6624         * lib/xprintf.c: Include <config.h> unconditionally.
6625
6626         Change xprintf's license to GPL.
6627         * modules/xprintf (License): s/LGPL/GPL/, since this module
6628         depends on modules (exit and exitfail) which are GPL.
6629         Suggestion from Bruno Haible.
6630
6631         xprintf fixes.
6632         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
6633         Use a clearer diagnostic.
6634         Patch from Bruno Haible.
6635
6636 2007-10-20  Bruno Haible  <bruno@clisp.org>
6637
6638         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
6639         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
6640         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6641
6642 2007-10-20  Bruno Haible  <bruno@clisp.org>
6643
6644         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
6645         precision in the comparison result > x - 1 or similar.
6646         * tests/test-ceilf2.c (correct_result_p): Likewise.
6647         * tests/test-truncf2.c (correct_result_p): Likewise.
6648         * tests/test-trunc2.c (correct_result_p): Likewise.
6649         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6650
6651 2007-10-20  Bruno Haible  <bruno@clisp.org>
6652
6653         * modules/ceil: New file.
6654         * m4/ceil.m4: New file.
6655         * doc/functions/ceil.texi: Mention the 'ceil' module.
6656
6657 2007-10-20  Bruno Haible  <bruno@clisp.org>
6658
6659         * modules/floor: New file.
6660         * m4/floor.m4: New file.
6661         * doc/functions/floor.texi: Mention the 'floor' module.
6662
6663 2007-10-20  Bruno Haible  <bruno@clisp.org>
6664
6665         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
6666         of %a.
6667         * modules/floorf-tests (Depends-on): Likewise.
6668         * modules/truncf-tests (Depends-on): Likewise.
6669         * modules/trunc-tests (Depends-on): Likewise.
6670         Reported by Ben Pfaff.
6671
6672 2007-10-19  Jim Meyering  <meyering@redhat.com>
6673
6674         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
6675         Don't bother testing specific errno values.  Just test ferror.
6676
6677         New module: xprintf
6678         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
6679
6680 2007-10-19  Bruno Haible  <bruno@clisp.org>
6681
6682         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
6683         syntax.
6684         * modules/javaexec (Makefile.am): Likewise.
6685         * modules/relocatable-prog (Makefile.am): Likewise.
6686         Suggested by Jim Meyering.
6687
6688 2007-10-18  Bruno Haible  <bruno@clisp.org>
6689
6690         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
6691         Reported by Jim Meyering.
6692
6693 2007-10-18  Eric Blake  <ebb9@byu.net>
6694
6695         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
6696
6697 2007-10-18  Bruno Haible  <bruno@clisp.org>
6698
6699         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
6700         the format string into writable memory. Needed in Fortify conditions.
6701
6702 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
6703             Bruno Haible  <bruno@clisp.org>
6704
6705         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
6706         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
6707         * modules/trim (Depends-on): Add mbchar.
6708         (configure.ac): Add gl_FUNC_MBRTOWC.
6709         (Makefile.am): Augment lib_SOURCES.
6710
6711 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
6712
6713         Modify glob.c to use fstatat and dirfd, to simplify it.
6714         Suggested by Eric Blake.
6715         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
6716         Don't include <stdbool.h>; not used.
6717         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
6718         (link_exists_p): Simplify implementation, since we can now assume
6719         dirfd and fstatat.
6720         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
6721
6722 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6723
6724         * gnulib-tool (func_get_dependencies): Fix sed script to
6725         match only tests.
6726
6727 2007-10-17  Bruno Haible  <bruno@clisp.org>
6728
6729         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
6730         allow locale names without encoding suffix.
6731         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
6732         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
6733
6734 2007-10-16  Bruno Haible  <bruno@clisp.org>
6735
6736         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
6737         * lib/getgroups.c (getgroups): Likewise.
6738         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
6739
6740 2007-10-16  Bruno Haible  <bruno@clisp.org>
6741
6742         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
6743         * modules/malloc-posix (License): Likewise.
6744         * modules/realloc-posix (License): Likewise.
6745         * modules/calloc-posix (License): Likewise.
6746         * modules/intprops (License): Change from GPL to LGPL, with
6747         Paul Eggert's approval.
6748
6749 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
6750
6751         Merge glibc changes into lib/glob.c.
6752
6753         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
6754         2007-10-15 04:59:03 UTC.  Here are the changes:
6755
6756         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
6757
6758         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
6759
6760         * lib/glob.c: Add some branch prediction throughout.
6761
6762         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
6763
6764         [BZ #5103]
6765         * lib/glob.c (glob): Recognize patterns starting \/.
6766
6767         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
6768
6769         [BZ #3996]
6770         * lib/glob.c (attribute_hidden): Define if not defined.
6771         (glob): Unescape dirname, filename or username when needed and not
6772         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
6773         is NULL.  Handle unescaped [ in pattern without closing ].
6774         Don't pass GLOB_CHECK down to recursive glob for directories.
6775         (__glob_pattern_type): New function.
6776         (__glob_pattern_p): Implement using __glob_pattern_type.
6777         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
6778         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
6779         Remove unreachable code.
6780
6781         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
6782
6783         * lib/glob.c (glob_in_dir): Add some comments and asserts to
6784         explain why there are no leaks.
6785
6786         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
6787
6788         [BZ #3253]
6789         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
6790         time, rather allocate increasingly bigger arrays of pointers, if
6791         possible with alloca, if too large with malloc.
6792
6793 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
6794
6795         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
6796         Problem reported by H.Merijn Brand in
6797         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
6798         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
6799         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
6800
6801 2007-10-15  Bruno Haible  <bruno@clisp.org>
6802
6803         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
6804         with explicit rpl_ prefix.
6805         * lib/fopen.c (fopen): Likewise.
6806         * lib/freopen.c (freopen): Likewise.
6807         * lib/iconv.c (iconv): Likewise.
6808         * lib/iconv_close.c (iconv_close): Likewise.
6809
6810 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6811
6812         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
6813
6814 2007-10-15  Bruno Haible  <bruno@clisp.org>
6815
6816         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
6817         <stddef.h> instead of <stdlib.h> since we only need NULL.
6818         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6819
6820 2007-10-15  Bruno Haible  <bruno@clisp.org>
6821
6822         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
6823         Replace paragraph talking about LIBOBJS.
6824         Reported by Colin Watson <cjwatson@debian.org>.
6825
6826 2007-10-15  Bruno Haible  <bruno@clisp.org>
6827
6828         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
6829         <stdlib.h> before using NULL.
6830
6831 2007-10-15  Simon Josefsson  <simon@josefsson.org>
6832
6833         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
6834         Reported by Albert Chin <china@thewrittenword.com>.
6835
6836 2007-10-14  Bruno Haible  <bruno@clisp.org>
6837
6838         * modules/iconv_open-utf-tests: New file.
6839         * tests/test-iconv-utf.c: New file.
6840
6841         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
6842         * modules/iconv_open-utf: New file.
6843         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
6844         (iconv, iconv_close): New declarations.
6845         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
6846         be defined.
6847         (iconv_open): Add special handling of conversion between UTF-8 and
6848         UTF-{16,32}{BE,LE}.
6849         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
6850         * lib/iconv_close.c: New file.
6851         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
6852         gl_FUNC_ICONV_OPEN.
6853         (gl_FUNC_ICONV_OPEN): Use it.
6854         (gl_FUNC_ICONV_OPEN_UTF): New macro.
6855         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
6856         and REPLACE_ICONV_UTF.
6857         * modules/iconv_open (Depends-on): Add c-strcase.
6858         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
6859         ICONV_CONST.
6860         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
6861
6862 2007-10-13  Albert Chin  <china@thewrittenword.com>
6863             Bruno Haible  <bruno@clisp.org>
6864
6865         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
6866         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
6867
6868 2007-10-13  Bruno Haible  <bruno@clisp.org>
6869
6870         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
6871         defined, use the ISO C99 inline semantics.
6872         * lib/argp.h (ARGP_EI): Likewise.
6873
6874 2007-10-13  Bruno Haible  <bruno@clisp.org>
6875
6876         Handle 'inline' change in gcc 4.3.0.
6877         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
6878         argp_fmtstream_write, argp_fmtstream_set_lmargin,
6879         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
6880         argp_fmtstream_point): Disable 'extern' declaration if the function
6881         definition is going to be provided inline.
6882         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
6883         semantics, not the ISO C99 inline semantics.
6884         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
6885         'extern' declaration if the function definition is going to be provided
6886         inline.
6887         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
6888         the GNU C inline semantics, not the ISO C99 inline semantics. With
6889         GCC 4.2, avoid a warning.
6890
6891 2007-10-13  Bruno Haible  <bruno@clisp.org>
6892
6893         * lib/freading.h (freading): Enable the use of __freading for
6894         glibc >= 2.7.
6895         * lib/freading.c (freading): Likewise.
6896
6897 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
6898
6899         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
6900         "warning: C99 inline functions are not supported; using GNU89".
6901
6902 2007-10-12  Bruno Haible  <bruno@clisp.org>
6903
6904         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
6905         of 2.
6906         * tests/test-ceilf2.c: New file.
6907         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
6908
6909         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
6910         * modules/ceilf-tests: Update.
6911
6912 2007-10-12  Bruno Haible  <bruno@clisp.org>
6913
6914         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
6915         of 2.
6916         * tests/test-floorf2.c: New file.
6917         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
6918
6919         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
6920         * modules/floorf-tests: Update.
6921
6922 2007-10-12  Bruno Haible  <bruno@clisp.org>
6923
6924         * tests/test-trunc2.c: New file.
6925         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
6926
6927         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
6928         * modules/trunc-tests: Update.
6929
6930 2007-10-12  Bruno Haible  <bruno@clisp.org>
6931
6932         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
6933         of 2.
6934         * tests/test-truncf2.c: New file.
6935         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
6936
6937         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
6938         * modules/truncf-tests: Update.
6939
6940 2007-10-11  Eric Blake  <ebb9@byu.net>
6941
6942         Don't claim strerror is broken on Interix.
6943         * doc/functions/strerror.texi (strerror): Known broken systems are
6944         now Solaris 8, and not Interix.
6945         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
6946         Interix on cross-compile.
6947         Reported by Martin Koeppe in
6948         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
6949
6950 2007-10-11  Bruno Haible  <bruno@clisp.org>
6951
6952         * modules/i-ring-tests: New file.
6953         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
6954         instead of assert.
6955
6956 2007-10-11  Bruno Haible  <bruno@clisp.org>
6957
6958         * modules/filenamecat-tests: New file.
6959         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
6960         * lib/filenamecat.c: Remove test code.
6961
6962 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
6963
6964         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
6965
6966         * lib/strerror.c: Include <string.h> always, to test interface,
6967         and to remove the need for the dummy.
6968         Include intprops.h to compute width instead of doing it ourselves
6969         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
6970         (strerror): Define it to return NULL if there's no system strerror.
6971         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
6972         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
6973         ancient pre-strerror Unix systems well any more.  Saying "unknown
6974         system error" is enough.
6975         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
6976         simpler strerror.c implementation.
6977         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
6978         Simplify the tests to reflect the simpler strerror implementation.
6979         * modules/strerror (Depends-on): Add intprops.
6980
6981 2007-10-09  Eric Blake  <ebb9@byu.net>
6982
6983         Silence test-fpending.
6984         * modules/fpending-tests (Files): Add wrapper script.
6985         * tests/test-fpending.sh: New file.
6986
6987 2007-10-09  Bruno Haible  <bruno@clisp.org>
6988
6989         * MODULES.html.sh (func_module): Don't create a hyperlink for
6990         function names like 'printf_frexp'.
6991         (Misc): Add crc, memxor.
6992         (Characteristics of floating types): New section.
6993         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
6994         isnanf-nolibm, signbit, trunc, truncf, truncl.
6995         (Enhancements for ISO C 99 functions): New subsection Input/output.
6996         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
6997         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
6998         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
6999         (Compatibility checks for POSIX:2001 functions): Add clock-time.
7000         (Enhancements for POSIX:2001 functions): Add chdir-long.
7001         (File system functions): Add areadlink, chdir-safer, read-file.
7002         Remove cycle-check.
7003         (File system as inode set): New section.
7004         (Date and time): Add gethrxtime.
7005         (Multithreading): Add openmp.
7006         (Internationalization functions): Add localename.
7007         (Unicode string functions): Add unistr/u*-mbsnlen.
7008         (Support for maintaining and releasing projects): Add git-version-gen.
7009         (Lone files): Remove directories.
7010
7011 2007-10-08  Ben Pfaff  <blp@gnu.org>
7012
7013         * lib/xmalloca.h: Fix typo in comment.
7014
7015 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
7016
7017         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
7018         when avoiding problems with integer overflow.  Use a portable test
7019         instead.
7020
7021 2007-10-08  Simon Josefsson  <simon@josefsson.org>
7022
7023         * modules/dummy (License): Change to LGPLv2+.
7024         * modules/float (License): Likewise
7025         * modules/realloc (License): Likewise
7026         * modules/stdlib (License): Likewise
7027
7028 2007-10-07  Bruno Haible  <bruno@clisp.org>
7029
7030         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
7031         * floor.c (TWO_MANT_DIG): Likewise.
7032         * ceil.c (TWO_MANT_DIG): Likewise.
7033         Reported by Ben Pfaff.
7034
7035 2007-10-07  Bruno Haible  <bruno@clisp.org>
7036
7037         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
7038         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
7039         * lib/frexp.c (FUNC): Likewise.
7040         * lib/printf-frexp.h (printf_frexp): Likewise.
7041         * lib/printf-frexpl.h (printf_frexpl): Likewise.
7042         * lib/printf-frexp.c (FUNC): Likewise.
7043         Suggested by Jim Meyering.
7044
7045 2007-10-07  Jim Meyering  <meyering@redhat.com>
7046
7047         Make xnanosleep's integer overflow test more robust.
7048         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
7049         so that gcc-4.3.0 doesn't optimize away this test for overflow.
7050
7051 2007-10-07  Bruno Haible  <bruno@clisp.org>
7052
7053         * NEWS: Mention the license change.
7054
7055         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
7056         abbreviations in the modules files.
7057
7058         Change copyright notice from GPLv2+ to GPLv3+.
7059         * README: Change copyright notice.
7060         * MODULES.html.sh: Likewise.
7061         * build-aux/bootstrap.conf: Likewise.
7062         * build-aux/config.libpath: Likewise.
7063         * build-aux/csharpcomp.sh.in: Likewise.
7064         * build-aux/csharpexec.sh.in: Likewise.
7065         * build-aux/install-reloc: Likewise.
7066         * build-aux/javacomp.sh.in: Likewise.
7067         * build-aux/javaexec.sh.in: Likewise.
7068         * build-aux/ldd.sh.in: Likewise.
7069         * build-aux/reloc-ldflags: Likewise.
7070         * build-aux/relocatable.sh.in: Likewise.
7071         * build-aux/x-to-1.in: Likewise.
7072         * check-module: Likewise.
7073         * config/srclistvars.sh: Likewise.
7074         * gnulib-tool: Likewise.
7075         * lib/acl-internal.h: Likewise.
7076         * lib/acl.c: Likewise.
7077         * lib/acl.h: Likewise.
7078         * lib/acl_entries.c: Likewise.
7079         * lib/areadlink-with-size.c: Likewise.
7080         * lib/areadlink.c: Likewise.
7081         * lib/areadlink.h: Likewise.
7082         * lib/argmatch.c: Likewise.
7083         * lib/argmatch.h: Likewise.
7084         * lib/argp-ba.c: Likewise.
7085         * lib/argp-eexst.c: Likewise.
7086         * lib/argp-fmtstream.c: Likewise.
7087         * lib/argp-fmtstream.h: Likewise.
7088         * lib/argp-fs-xinl.c: Likewise.
7089         * lib/argp-help.c: Likewise.
7090         * lib/argp-namefrob.h: Likewise.
7091         * lib/argp-parse.c: Likewise.
7092         * lib/argp-pin.c: Likewise.
7093         * lib/argp-pv.c: Likewise.
7094         * lib/argp-pvh.c: Likewise.
7095         * lib/argp-xinl.c: Likewise.
7096         * lib/argp.h: Likewise.
7097         * lib/at-func.c: Likewise.
7098         * lib/atanl.c: Likewise.
7099         * lib/backupfile.c: Likewise.
7100         * lib/backupfile.h: Likewise.
7101         * lib/basename.c: Likewise.
7102         * lib/binary-io.h: Likewise.
7103         * lib/byteswap.in.h: Likewise.
7104         * lib/c-stack.c: Likewise.
7105         * lib/c-stack.h: Likewise.
7106         * lib/c-strcasestr.c: Likewise.
7107         * lib/c-strcasestr.h: Likewise.
7108         * lib/c-strstr.c: Likewise.
7109         * lib/c-strstr.h: Likewise.
7110         * lib/c-strtod.c: Likewise.
7111         * lib/calloc.c: Likewise.
7112         * lib/canon-host.c: Likewise.
7113         * lib/canon-host.h: Likewise.
7114         * lib/canonicalize-lgpl.c: Likewise.
7115         * lib/canonicalize.c: Likewise.
7116         * lib/canonicalize.h: Likewise.
7117         * lib/ceil.c: Likewise.
7118         * lib/ceilf.c: Likewise.
7119         * lib/ceill.c: Likewise.
7120         * lib/chdir-long.c: Likewise.
7121         * lib/chdir-long.h: Likewise.
7122         * lib/chdir-safer.c: Likewise.
7123         * lib/chdir-safer.h: Likewise.
7124         * lib/chown.c: Likewise.
7125         * lib/classpath.c: Likewise.
7126         * lib/classpath.h: Likewise.
7127         * lib/clean-temp.c: Likewise.
7128         * lib/clean-temp.h: Likewise.
7129         * lib/cloexec.c: Likewise.
7130         * lib/close-stream.c: Likewise.
7131         * lib/closein.c: Likewise.
7132         * lib/closein.h: Likewise.
7133         * lib/closeout.c: Likewise.
7134         * lib/closeout.h: Likewise.
7135         * lib/concat-filename.c: Likewise.
7136         * lib/copy-file.c: Likewise.
7137         * lib/copy-file.h: Likewise.
7138         * lib/count-one-bits.h: Likewise.
7139         * lib/crc.c: Likewise.
7140         * lib/crc.h: Likewise.
7141         * lib/creat-safer.c: Likewise.
7142         * lib/csharpcomp.c: Likewise.
7143         * lib/csharpcomp.h: Likewise.
7144         * lib/csharpexec.c: Likewise.
7145         * lib/csharpexec.h: Likewise.
7146         * lib/cycle-check.c: Likewise.
7147         * lib/cycle-check.h: Likewise.
7148         * lib/diacrit.c: Likewise.
7149         * lib/diacrit.h: Likewise.
7150         * lib/diffseq.h: Likewise.
7151         * lib/dirchownmod.c: Likewise.
7152         * lib/dirent.in.h: Likewise.
7153         * lib/dirfd.c: Likewise.
7154         * lib/dirfd.h: Likewise.
7155         * lib/dirname.c: Likewise.
7156         * lib/dirname.h: Likewise.
7157         * lib/dummy.c: Likewise.
7158         * lib/dup-safer.c: Likewise.
7159         * lib/dup2.c: Likewise.
7160         * lib/eealloc.h: Likewise.
7161         * lib/error.c: Likewise.
7162         * lib/error.h: Likewise.
7163         * lib/euidaccess.c: Likewise.
7164         * lib/exclude.c: Likewise.
7165         * lib/exclude.h: Likewise.
7166         * lib/execute.c: Likewise.
7167         * lib/execute.h: Likewise.
7168         * lib/exitfail.c: Likewise.
7169         * lib/exitfail.h: Likewise.
7170         * lib/expl.c: Likewise.
7171         * lib/fatal-signal.c: Likewise.
7172         * lib/fatal-signal.h: Likewise.
7173         * lib/fbufmode.c: Likewise.
7174         * lib/fbufmode.h: Likewise.
7175         * lib/fchdir.c: Likewise.
7176         * lib/fchmodat.c: Likewise.
7177         * lib/fchownat.c: Likewise.
7178         * lib/fcntl--.h: Likewise.
7179         * lib/fcntl-safer.h: Likewise.
7180         * lib/fcntl.in.h: Likewise.
7181         * lib/fd-safer.c: Likewise.
7182         * lib/fflush.c: Likewise.
7183         * lib/file-has-acl.c: Likewise.
7184         * lib/file-set.c: Likewise.
7185         * lib/file-type.c: Likewise.
7186         * lib/file-type.h: Likewise.
7187         * lib/fileblocks.c: Likewise.
7188         * lib/filemode.c: Likewise.
7189         * lib/filemode.h: Likewise.
7190         * lib/filename.h: Likewise.
7191         * lib/filenamecat.c: Likewise.
7192         * lib/filenamecat.h: Likewise.
7193         * lib/findprog.c: Likewise.
7194         * lib/findprog.h: Likewise.
7195         * lib/float.in.h: Likewise.
7196         * lib/floor.c: Likewise.
7197         * lib/floorf.c: Likewise.
7198         * lib/floorl.c: Likewise.
7199         * lib/fopen-safer.c: Likewise.
7200         * lib/fopen.c: Likewise.
7201         * lib/fpending.c: Likewise.
7202         * lib/fpending.h: Likewise.
7203         * lib/fprintf.c: Likewise.
7204         * lib/fprintftime.h: Likewise.
7205         * lib/fpucw.h: Likewise.
7206         * lib/fpurge.c: Likewise.
7207         * lib/fpurge.h: Likewise.
7208         * lib/freadable.c: Likewise.
7209         * lib/freadable.h: Likewise.
7210         * lib/freadahead.c: Likewise.
7211         * lib/freadahead.h: Likewise.
7212         * lib/freading.c: Likewise.
7213         * lib/freading.h: Likewise.
7214         * lib/free.c: Likewise.
7215         * lib/freopen.c: Likewise.
7216         * lib/frexp.c: Likewise.
7217         * lib/frexpl.c: Likewise.
7218         * lib/fseek.c: Likewise.
7219         * lib/fseterr.c: Likewise.
7220         * lib/fseterr.h: Likewise.
7221         * lib/fstatat.c: Likewise.
7222         * lib/fstrcmp.c: Likewise.
7223         * lib/fstrcmp.h: Likewise.
7224         * lib/fsusage.c: Likewise.
7225         * lib/fsusage.h: Likewise.
7226         * lib/ftell.c: Likewise.
7227         * lib/ftello.c: Likewise.
7228         * lib/fts-cycle.c: Likewise.
7229         * lib/fts.c: Likewise.
7230         * lib/fts_.h: Likewise.
7231         * lib/full-read.c: Likewise.
7232         * lib/full-read.h: Likewise.
7233         * lib/full-write.c: Likewise.
7234         * lib/full-write.h: Likewise.
7235         * lib/fwritable.c: Likewise.
7236         * lib/fwritable.h: Likewise.
7237         * lib/fwriteerror.c: Likewise.
7238         * lib/fwriteerror.h: Likewise.
7239         * lib/fwriting.c: Likewise.
7240         * lib/fwriting.h: Likewise.
7241         * lib/gcd.c: Likewise.
7242         * lib/gcd.h: Likewise.
7243         * lib/getcwd.c: Likewise.
7244         * lib/getdate.h: Likewise.
7245         * lib/getdate.y: Likewise.
7246         * lib/getdomainname.c: Likewise.
7247         * lib/getdomainname.h: Likewise.
7248         * lib/getgroups.c: Likewise.
7249         * lib/gethostname.c: Likewise.
7250         * lib/gethrxtime.c: Likewise.
7251         * lib/gethrxtime.h: Likewise.
7252         * lib/getloadavg.c: Likewise.
7253         * lib/getndelim2.c: Likewise.
7254         * lib/getndelim2.h: Likewise.
7255         * lib/getnline.c: Likewise.
7256         * lib/getnline.h: Likewise.
7257         * lib/getopt.c: Likewise.
7258         * lib/getopt.in.h: Likewise.
7259         * lib/getopt1.c: Likewise.
7260         * lib/getopt_int.h: Likewise.
7261         * lib/getpagesize.h: Likewise.
7262         * lib/getsubopt.c: Likewise.
7263         * lib/gettime.c: Likewise.
7264         * lib/getugroups.c: Likewise.
7265         * lib/getugroups.h: Likewise.
7266         * lib/getusershell.c: Likewise.
7267         * lib/gl_anyavltree_list1.h: Likewise.
7268         * lib/gl_anyavltree_list2.h: Likewise.
7269         * lib/gl_anyhash_list1.h: Likewise.
7270         * lib/gl_anyhash_list2.h: Likewise.
7271         * lib/gl_anylinked_list1.h: Likewise.
7272         * lib/gl_anylinked_list2.h: Likewise.
7273         * lib/gl_anyrbtree_list1.h: Likewise.
7274         * lib/gl_anyrbtree_list2.h: Likewise.
7275         * lib/gl_anytree_list1.h: Likewise.
7276         * lib/gl_anytree_list2.h: Likewise.
7277         * lib/gl_anytree_oset.h: Likewise.
7278         * lib/gl_anytreehash_list1.h: Likewise.
7279         * lib/gl_anytreehash_list2.h: Likewise.
7280         * lib/gl_array_list.c: Likewise.
7281         * lib/gl_array_list.h: Likewise.
7282         * lib/gl_array_oset.c: Likewise.
7283         * lib/gl_array_oset.h: Likewise.
7284         * lib/gl_avltree_list.c: Likewise.
7285         * lib/gl_avltree_list.h: Likewise.
7286         * lib/gl_avltree_oset.c: Likewise.
7287         * lib/gl_avltree_oset.h: Likewise.
7288         * lib/gl_avltreehash_list.c: Likewise.
7289         * lib/gl_avltreehash_list.h: Likewise.
7290         * lib/gl_carray_list.c: Likewise.
7291         * lib/gl_carray_list.h: Likewise.
7292         * lib/gl_linked_list.c: Likewise.
7293         * lib/gl_linked_list.h: Likewise.
7294         * lib/gl_linkedhash_list.c: Likewise.
7295         * lib/gl_linkedhash_list.h: Likewise.
7296         * lib/gl_list.c: Likewise.
7297         * lib/gl_list.h: Likewise.
7298         * lib/gl_oset.c: Likewise.
7299         * lib/gl_oset.h: Likewise.
7300         * lib/gl_rbtree_list.c: Likewise.
7301         * lib/gl_rbtree_list.h: Likewise.
7302         * lib/gl_rbtree_oset.c: Likewise.
7303         * lib/gl_rbtree_oset.h: Likewise.
7304         * lib/gl_rbtreehash_list.c: Likewise.
7305         * lib/gl_rbtreehash_list.h: Likewise.
7306         * lib/gl_sublist.c: Likewise.
7307         * lib/gl_sublist.h: Likewise.
7308         * lib/group-member.c: Likewise.
7309         * lib/group-member.h: Likewise.
7310         * lib/hard-locale.c: Likewise.
7311         * lib/hard-locale.h: Likewise.
7312         * lib/hash-pjw.c: Likewise.
7313         * lib/hash-pjw.h: Likewise.
7314         * lib/hash-triple.c: Likewise.
7315         * lib/hash.c: Likewise.
7316         * lib/hash.h: Likewise.
7317         * lib/human.c: Likewise.
7318         * lib/human.h: Likewise.
7319         * lib/i-ring.c: Likewise.
7320         * lib/i-ring.h: Likewise.
7321         * lib/idcache.c: Likewise.
7322         * lib/imaxabs.c: Likewise.
7323         * lib/imaxdiv.c: Likewise.
7324         * lib/inet_pton.c: Likewise.
7325         * lib/inet_pton.h: Likewise.
7326         * lib/intprops.h: Likewise.
7327         * lib/inttostr.c: Likewise.
7328         * lib/inttostr.h: Likewise.
7329         * lib/inttypes.in.h: Likewise.
7330         * lib/isapipe.c: Likewise.
7331         * lib/isdir.c: Likewise.
7332         * lib/isnan.c: Likewise.
7333         * lib/isnan.h: Likewise.
7334         * lib/isnanf.c: Likewise.
7335         * lib/isnanf.h: Likewise.
7336         * lib/isnanl-nolibm.h: Likewise.
7337         * lib/isnanl.c: Likewise.
7338         * lib/isnanl.h: Likewise.
7339         * lib/javacomp.c: Likewise.
7340         * lib/javacomp.h: Likewise.
7341         * lib/javaexec.c: Likewise.
7342         * lib/javaexec.h: Likewise.
7343         * lib/javaversion.c: Likewise.
7344         * lib/javaversion.h: Likewise.
7345         * lib/javaversion.java: Likewise.
7346         * lib/lbrkprop.h: Likewise.
7347         * lib/lchmod.h: Likewise.
7348         * lib/lchown.c: Likewise.
7349         * lib/ldexpl.c: Likewise.
7350         * lib/linebreak.c: Likewise.
7351         * lib/linebreak.h: Likewise.
7352         * lib/linebuffer.c: Likewise.
7353         * lib/linebuffer.h: Likewise.
7354         * lib/locale.in.h: Likewise.
7355         * lib/logl.c: Likewise.
7356         * lib/long-options.c: Likewise.
7357         * lib/long-options.h: Likewise.
7358         * lib/lstat.c: Likewise.
7359         * lib/lstat.h: Likewise.
7360         * lib/math.in.h: Likewise.
7361         * lib/mbchar.c: Likewise.
7362         * lib/mbchar.h: Likewise.
7363         * lib/mbfile.h: Likewise.
7364         * lib/mbiter.h: Likewise.
7365         * lib/mbscasecmp.c: Likewise.
7366         * lib/mbscasestr.c: Likewise.
7367         * lib/mbschr.c: Likewise.
7368         * lib/mbscspn.c: Likewise.
7369         * lib/mbslen.c: Likewise.
7370         * lib/mbsncasecmp.c: Likewise.
7371         * lib/mbsnlen.c: Likewise.
7372         * lib/mbspbrk.c: Likewise.
7373         * lib/mbspcasecmp.c: Likewise.
7374         * lib/mbsrchr.c: Likewise.
7375         * lib/mbssep.c: Likewise.
7376         * lib/mbsspn.c: Likewise.
7377         * lib/mbsstr.c: Likewise.
7378         * lib/mbstok_r.c: Likewise.
7379         * lib/mbswidth.c: Likewise.
7380         * lib/mbswidth.h: Likewise.
7381         * lib/mbuiter.h: Likewise.
7382         * lib/memcasecmp.c: Likewise.
7383         * lib/memcasecmp.h: Likewise.
7384         * lib/memchr.c: Likewise.
7385         * lib/memcmp.c: Likewise.
7386         * lib/memcoll.c: Likewise.
7387         * lib/memcoll.h: Likewise.
7388         * lib/memcpy.c: Likewise.
7389         * lib/memrchr.c: Likewise.
7390         * lib/mkancesdirs.c: Likewise.
7391         * lib/mkdir-p.c: Likewise.
7392         * lib/mkdir-p.h: Likewise.
7393         * lib/mkdir.c: Likewise.
7394         * lib/mkdirat.c: Likewise.
7395         * lib/mkdtemp.c: Likewise.
7396         * lib/mkstemp-safer.c: Likewise.
7397         * lib/mkstemp.c: Likewise.
7398         * lib/modechange.c: Likewise.
7399         * lib/modechange.h: Likewise.
7400         * lib/mountlist.c: Likewise.
7401         * lib/mountlist.h: Likewise.
7402         * lib/mpsort.c: Likewise.
7403         * lib/nanosleep.c: Likewise.
7404         * lib/obstack.c: Likewise.
7405         * lib/obstack.h: Likewise.
7406         * lib/open-safer.c: Likewise.
7407         * lib/open.c: Likewise.
7408         * lib/openat-die.c: Likewise.
7409         * lib/openat-priv.h: Likewise.
7410         * lib/openat-proc.c: Likewise.
7411         * lib/openat.c: Likewise.
7412         * lib/openat.h: Likewise.
7413         * lib/pagealign_alloc.c: Likewise.
7414         * lib/pagealign_alloc.h: Likewise.
7415         * lib/physmem.c: Likewise.
7416         * lib/physmem.h: Likewise.
7417         * lib/pipe-safer.c: Likewise.
7418         * lib/pipe.c: Likewise.
7419         * lib/pipe.h: Likewise.
7420         * lib/posixtm.c: Likewise.
7421         * lib/posixtm.h: Likewise.
7422         * lib/posixver.c: Likewise.
7423         * lib/printf-frexp.c: Likewise.
7424         * lib/printf-frexp.h: Likewise.
7425         * lib/printf-frexpl.c: Likewise.
7426         * lib/printf-frexpl.h: Likewise.
7427         * lib/printf.c: Likewise.
7428         * lib/progname.c: Likewise.
7429         * lib/progname.h: Likewise.
7430         * lib/progreloc.c: Likewise.
7431         * lib/putenv.c: Likewise.
7432         * lib/quote.c: Likewise.
7433         * lib/quote.h: Likewise.
7434         * lib/quotearg.c: Likewise.
7435         * lib/quotearg.h: Likewise.
7436         * lib/raise.c: Likewise.
7437         * lib/readline.c: Likewise.
7438         * lib/readline.h: Likewise.
7439         * lib/readlink.c: Likewise.
7440         * lib/readtokens.c: Likewise.
7441         * lib/readtokens.h: Likewise.
7442         * lib/readtokens0.c: Likewise.
7443         * lib/readtokens0.h: Likewise.
7444         * lib/readutmp.c: Likewise.
7445         * lib/readutmp.h: Likewise.
7446         * lib/realloc.c: Likewise.
7447         * lib/relocwrapper.c: Likewise.
7448         * lib/rename-dest-slash.c: Likewise.
7449         * lib/rename.c: Likewise.
7450         * lib/rmdir.c: Likewise.
7451         * lib/rpmatch.c: Likewise.
7452         * lib/safe-read.c: Likewise.
7453         * lib/safe-read.h: Likewise.
7454         * lib/safe-write.c: Likewise.
7455         * lib/safe-write.h: Likewise.
7456         * lib/same-inode.h: Likewise.
7457         * lib/same.c: Likewise.
7458         * lib/same.h: Likewise.
7459         * lib/save-cwd.c: Likewise.
7460         * lib/save-cwd.h: Likewise.
7461         * lib/savedir.c: Likewise.
7462         * lib/savedir.h: Likewise.
7463         * lib/savewd.c: Likewise.
7464         * lib/savewd.h: Likewise.
7465         * lib/search.in.h: Likewise.
7466         * lib/setenv.c: Likewise.
7467         * lib/setenv.h: Likewise.
7468         * lib/settime.c: Likewise.
7469         * lib/sh-quote.c: Likewise.
7470         * lib/sh-quote.h: Likewise.
7471         * lib/sig2str.c: Likewise.
7472         * lib/sig2str.h: Likewise.
7473         * lib/signal.in.h: Likewise.
7474         * lib/signbitd.c: Likewise.
7475         * lib/signbitf.c: Likewise.
7476         * lib/signbitl.c: Likewise.
7477         * lib/sigprocmask.c: Likewise.
7478         * lib/sincosl.c: Likewise.
7479         * lib/sleep.c: Likewise.
7480         * lib/sprintf.c: Likewise.
7481         * lib/sqrtl.c: Likewise.
7482         * lib/stat-time.h: Likewise.
7483         * lib/stdio--.h: Likewise.
7484         * lib/stdio-safer.h: Likewise.
7485         * lib/stdlib--.h: Likewise.
7486         * lib/stdlib-safer.h: Likewise.
7487         * lib/stdlib.in.h: Likewise.
7488         * lib/stpcpy.c: Likewise.
7489         * lib/stpncpy.c: Likewise.
7490         * lib/strchrnul.c: Likewise.
7491         * lib/strcspn.c: Likewise.
7492         * lib/strerror.c: Likewise.
7493         * lib/strftime.c: Likewise.
7494         * lib/strftime.h: Likewise.
7495         * lib/striconveh.c: Likewise.
7496         * lib/striconveh.h: Likewise.
7497         * lib/striconveha.c: Likewise.
7498         * lib/striconveha.h: Likewise.
7499         * lib/stripslash.c: Likewise.
7500         * lib/strnlen1.c: Likewise.
7501         * lib/strnlen1.h: Likewise.
7502         * lib/strtod.c: Likewise.
7503         * lib/strtoimax.c: Likewise.
7504         * lib/strtok_r.c: Likewise.
7505         * lib/strtol.c: Likewise.
7506         * lib/strtoll.c: Likewise.
7507         * lib/strtoul.c: Likewise.
7508         * lib/strtoull.c: Likewise.
7509         * lib/sysexits.in.h: Likewise.
7510         * lib/tempname.c: Likewise.
7511         * lib/tempname.h: Likewise.
7512         * lib/timespec.h: Likewise.
7513         * lib/tls.c: Likewise.
7514         * lib/tls.h: Likewise.
7515         * lib/tmpdir.c: Likewise.
7516         * lib/tmpdir.h: Likewise.
7517         * lib/tmpfile-safer.c: Likewise.
7518         * lib/tmpfile.c: Likewise.
7519         * lib/trigl.c: Likewise.
7520         * lib/trigl.h: Likewise.
7521         * lib/trim.c: Likewise.
7522         * lib/trim.h: Likewise.
7523         * lib/trunc.c: Likewise.
7524         * lib/truncf.c: Likewise.
7525         * lib/truncl.c: Likewise.
7526         * lib/tsearch.c: Likewise.
7527         * lib/unicodeio.c: Likewise.
7528         * lib/unicodeio.h: Likewise.
7529         * lib/unistd--.h: Likewise.
7530         * lib/unistd-safer.h: Likewise.
7531         * lib/unistdio/ulc-fprintf.c: Likewise.
7532         * lib/unistdio/ulc-vfprintf.c: Likewise.
7533         * lib/unlinkdir.c: Likewise.
7534         * lib/unlinkdir.h: Likewise.
7535         * lib/unlocked-io.h: Likewise.
7536         * lib/unsetenv.c: Likewise.
7537         * lib/userspec.c: Likewise.
7538         * lib/utime.c: Likewise.
7539         * lib/utimecmp.c: Likewise.
7540         * lib/utimecmp.h: Likewise.
7541         * lib/utimens.c: Likewise.
7542         * lib/verify.h: Likewise.
7543         * lib/verror.c: Likewise.
7544         * lib/verror.h: Likewise.
7545         * lib/version-etc-fsf.c: Likewise.
7546         * lib/version-etc.c: Likewise.
7547         * lib/version-etc.h: Likewise.
7548         * lib/vfprintf.c: Likewise.
7549         * lib/vprintf.c: Likewise.
7550         * lib/vsprintf.c: Likewise.
7551         * lib/w32spawn.h: Likewise.
7552         * lib/wait-process.c: Likewise.
7553         * lib/wait-process.h: Likewise.
7554         * lib/wcwidth.c: Likewise.
7555         * lib/write-any-file.c: Likewise.
7556         * lib/xalloc-die.c: Likewise.
7557         * lib/xalloc.h: Likewise.
7558         * lib/xasprintf.c: Likewise.
7559         * lib/xgetcwd.c: Likewise.
7560         * lib/xgetcwd.h: Likewise.
7561         * lib/xgetdomainname.c: Likewise.
7562         * lib/xgetdomainname.h: Likewise.
7563         * lib/xgethostname.c: Likewise.
7564         * lib/xmalloc.c: Likewise.
7565         * lib/xmalloca.c: Likewise.
7566         * lib/xmalloca.h: Likewise.
7567         * lib/xmemcoll.c: Likewise.
7568         * lib/xnanosleep.c: Likewise.
7569         * lib/xreadlink.c: Likewise.
7570         * lib/xreadlink.h: Likewise.
7571         * lib/xsetenv.c: Likewise.
7572         * lib/xsetenv.h: Likewise.
7573         * lib/xstriconv.c: Likewise.
7574         * lib/xstriconv.h: Likewise.
7575         * lib/xstrndup.c: Likewise.
7576         * lib/xstrndup.h: Likewise.
7577         * lib/xstrtod.c: Likewise.
7578         * lib/xstrtod.h: Likewise.
7579         * lib/xstrtol-error.c: Likewise.
7580         * lib/xstrtol.c: Likewise.
7581         * lib/xstrtol.h: Likewise.
7582         * lib/xtime.h: Likewise.
7583         * lib/xvasprintf.c: Likewise.
7584         * lib/xvasprintf.h: Likewise.
7585         * lib/yesno.c: Likewise.
7586         * lib/yesno.h: Likewise.
7587         * posix-modules: Likewise.
7588         * tests/test-alloca-opt.c: Likewise.
7589         * tests/test-arcfour.c: Likewise.
7590         * tests/test-arctwo.c: Likewise.
7591         * tests/test-argmatch.c: Likewise.
7592         * tests/test-argp-2.sh: Likewise.
7593         * tests/test-argp.c: Likewise.
7594         * tests/test-arpa_inet.c: Likewise.
7595         * tests/test-array_list.c: Likewise.
7596         * tests/test-array_oset.c: Likewise.
7597         * tests/test-atexit.c: Likewise.
7598         * tests/test-avltree_list.c: Likewise.
7599         * tests/test-avltree_oset.c: Likewise.
7600         * tests/test-avltreehash_list.c: Likewise.
7601         * tests/test-base64.c: Likewise.
7602         * tests/test-binary-io.c: Likewise.
7603         * tests/test-byteswap.c: Likewise.
7604         * tests/test-c-ctype.c: Likewise.
7605         * tests/test-c-strcasecmp.c: Likewise.
7606         * tests/test-c-strcasestr.c: Likewise.
7607         * tests/test-c-strncasecmp.c: Likewise.
7608         * tests/test-c-strstr.c: Likewise.
7609         * tests/test-canonicalize-lgpl.c: Likewise.
7610         * tests/test-canonicalize.c: Likewise.
7611         * tests/test-carray_list.c: Likewise.
7612         * tests/test-ceilf.c: Likewise.
7613         * tests/test-ceill.c: Likewise.
7614         * tests/test-count-one-bits.c: Likewise.
7615         * tests/test-crc.c: Likewise.
7616         * tests/test-dirname.c: Likewise.
7617         * tests/test-fbufmode.c: Likewise.
7618         * tests/test-fcntl.c: Likewise.
7619         * tests/test-fflush.c: Likewise.
7620         * tests/test-floorf.c: Likewise.
7621         * tests/test-floorl.c: Likewise.
7622         * tests/test-fopen.c: Likewise.
7623         * tests/test-fprintf-posix.c: Likewise.
7624         * tests/test-fprintf-posix.h: Likewise.
7625         * tests/test-fpurge.c: Likewise.
7626         * tests/test-freadable.c: Likewise.
7627         * tests/test-freadahead.c: Likewise.
7628         * tests/test-freading.c: Likewise.
7629         * tests/test-freopen.c: Likewise.
7630         * tests/test-frexp.c: Likewise.
7631         * tests/test-frexpl.c: Likewise.
7632         * tests/test-fseek.c: Likewise.
7633         * tests/test-fseeko.c: Likewise.
7634         * tests/test-fseterr.c: Likewise.
7635         * tests/test-fstrcmp.c: Likewise.
7636         * tests/test-ftell.c: Likewise.
7637         * tests/test-ftello.c: Likewise.
7638         * tests/test-fwritable.c: Likewise.
7639         * tests/test-fwriting.c: Likewise.
7640         * tests/test-getaddrinfo.c: Likewise.
7641         * tests/test-getpass.c: Likewise.
7642         * tests/test-gettimeofday.c: Likewise.
7643         * tests/test-hmac-md5.c: Likewise.
7644         * tests/test-hmac-sha1.c: Likewise.
7645         * tests/test-iconv.c: Likewise.
7646         * tests/test-iconvme.c: Likewise.
7647         * tests/test-inttypes.c: Likewise.
7648         * tests/test-isnan.c: Likewise.
7649         * tests/test-isnanf.c: Likewise.
7650         * tests/test-isnanl-nolibm.c: Likewise.
7651         * tests/test-isnanl.c: Likewise.
7652         * tests/test-isnanl.h: Likewise.
7653         * tests/test-ldexpl.c: Likewise.
7654         * tests/test-linked_list.c: Likewise.
7655         * tests/test-linkedhash_list.c: Likewise.
7656         * tests/test-locale.c: Likewise.
7657         * tests/test-localename.c: Likewise.
7658         * tests/test-lock.c: Likewise.
7659         * tests/test-lseek.c: Likewise.
7660         * tests/test-malloca.c: Likewise.
7661         * tests/test-math.c: Likewise.
7662         * tests/test-mbscasecmp.c: Likewise.
7663         * tests/test-mbscasestr1.c: Likewise.
7664         * tests/test-mbscasestr2.c: Likewise.
7665         * tests/test-mbscasestr3.c: Likewise.
7666         * tests/test-mbscasestr4.c: Likewise.
7667         * tests/test-mbschr.c: Likewise.
7668         * tests/test-mbscspn.c: Likewise.
7669         * tests/test-mbsncasecmp.c: Likewise.
7670         * tests/test-mbspbrk.c: Likewise.
7671         * tests/test-mbspcasecmp.c: Likewise.
7672         * tests/test-mbsrchr.c: Likewise.
7673         * tests/test-mbsspn.c: Likewise.
7674         * tests/test-mbsstr1.c: Likewise.
7675         * tests/test-mbsstr2.c: Likewise.
7676         * tests/test-mbsstr3.c: Likewise.
7677         * tests/test-md5.c: Likewise.
7678         * tests/test-memmem.c: Likewise.
7679         * tests/test-netinet_in.c: Likewise.
7680         * tests/test-open.c: Likewise.
7681         * tests/test-printf-frexp.c: Likewise.
7682         * tests/test-printf-frexpl.c: Likewise.
7683         * tests/test-printf-posix.c: Likewise.
7684         * tests/test-printf-posix.h: Likewise.
7685         * tests/test-rbtree_list.c: Likewise.
7686         * tests/test-rbtree_oset.c: Likewise.
7687         * tests/test-rbtreehash_list.c: Likewise.
7688         * tests/test-read-file.c: Likewise.
7689         * tests/test-rijndael.c: Likewise.
7690         * tests/test-search.c: Likewise.
7691         * tests/test-signbit.c: Likewise.
7692         * tests/test-sleep.c: Likewise.
7693         * tests/test-snprintf-posix.c: Likewise.
7694         * tests/test-snprintf-posix.h: Likewise.
7695         * tests/test-snprintf.c: Likewise.
7696         * tests/test-sprintf-posix.c: Likewise.
7697         * tests/test-sprintf-posix.h: Likewise.
7698         * tests/test-stat-time.c: Likewise.
7699         * tests/test-stdbool.c: Likewise.
7700         * tests/test-stdint.c: Likewise.
7701         * tests/test-stdio.c: Likewise.
7702         * tests/test-stdlib.c: Likewise.
7703         * tests/test-stpncpy.c: Likewise.
7704         * tests/test-strcasestr.c: Likewise.
7705         * tests/test-striconv.c: Likewise.
7706         * tests/test-striconveh.c: Likewise.
7707         * tests/test-striconveha.c: Likewise.
7708         * tests/test-string.c: Likewise.
7709         * tests/test-sys_select.c: Likewise.
7710         * tests/test-sys_socket.c: Likewise.
7711         * tests/test-sys_stat.c: Likewise.
7712         * tests/test-sys_time.c: Likewise.
7713         * tests/test-sysexits.c: Likewise.
7714         * tests/test-time.c: Likewise.
7715         * tests/test-tls.c: Likewise.
7716         * tests/test-trunc.c: Likewise.
7717         * tests/test-truncf.c: Likewise.
7718         * tests/test-truncl.c: Likewise.
7719         * tests/test-unistd.c: Likewise.
7720         * tests/test-vasnprintf-posix.c: Likewise.
7721         * tests/test-vasnprintf-posix2.c: Likewise.
7722         * tests/test-vasnprintf.c: Likewise.
7723         * tests/test-vasprintf-posix.c: Likewise.
7724         * tests/test-vasprintf.c: Likewise.
7725         * tests/test-verify.c: Likewise.
7726         * tests/test-vfprintf-posix.c: Likewise.
7727         * tests/test-vprintf-posix.c: Likewise.
7728         * tests/test-vsnprintf-posix.c: Likewise.
7729         * tests/test-vsnprintf.c: Likewise.
7730         * tests/test-vsprintf-posix.c: Likewise.
7731         * tests/test-wchar.c: Likewise.
7732         * tests/test-wctype.c: Likewise.
7733         * tests/test-wcwidth.c: Likewise.
7734         * tests/test-xstrtol.c: Likewise.
7735         * tests/test-xvasprintf.c: Likewise.
7736         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
7737         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
7738         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
7739         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
7740         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
7741         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
7742         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
7743         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
7744         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
7745         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
7746         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
7747         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
7748         * tests/uniname/test-uninames.c: Likewise.
7749         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
7750         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
7751         * tests/unistdio/test-u16-printf1.h: Likewise.
7752         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
7753         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
7754         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
7755         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
7756         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
7757         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
7758         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
7759         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
7760         * tests/unistdio/test-u32-printf1.h: Likewise.
7761         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
7762         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
7763         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
7764         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
7765         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
7766         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
7767         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
7768         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
7769         * tests/unistdio/test-u8-printf1.h: Likewise.
7770         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
7771         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
7772         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
7773         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
7774         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
7775         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
7776         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
7777         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
7778         * tests/unistdio/test-ulc-printf1.h: Likewise.
7779         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
7780         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
7781         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
7782         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
7783         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
7784         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
7785         * tests/uniwidth/test-u16-strwidth.c: Likewise.
7786         * tests/uniwidth/test-u16-width.c: Likewise.
7787         * tests/uniwidth/test-u32-strwidth.c: Likewise.
7788         * tests/uniwidth/test-u32-width.c: Likewise.
7789         * tests/uniwidth/test-u8-strwidth.c: Likewise.
7790         * tests/uniwidth/test-u8-width.c: Likewise.
7791         * tests/uniwidth/test-uc_width.c: Likewise.
7792         * config/srclist-update: Likewise.
7793         (fixlicense): Update to GPLv3+.
7794
7795         Change copyright notice from LGPLv2.1+ to LGPLv3+.
7796         * tests/test-tsearch.c: Change copyright notice.
7797
7798         Change copyright notice from LGPLv2.0+ to LGPLv3+.
7799         * lib/c-strcaseeq.h: Change copyright notice.
7800         * lib/streq.h: Likewise.
7801         * lib/uniconv.h: Likewise.
7802         * lib/uniconv/u-conv-from-enc.h: Likewise.
7803         * lib/uniconv/u-conv-to-enc.h: Likewise.
7804         * lib/uniconv/u-strconv-from-enc.h: Likewise.
7805         * lib/uniconv/u-strconv-to-enc.h: Likewise.
7806         * lib/uniconv/u16-conv-from-enc.c: Likewise.
7807         * lib/uniconv/u16-conv-to-enc.c: Likewise.
7808         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
7809         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
7810         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
7811         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
7812         * lib/uniconv/u32-conv-from-enc.c: Likewise.
7813         * lib/uniconv/u32-conv-to-enc.c: Likewise.
7814         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
7815         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
7816         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
7817         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
7818         * lib/uniconv/u8-conv-from-enc.c: Likewise.
7819         * lib/uniconv/u8-conv-to-enc.c: Likewise.
7820         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
7821         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
7822         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
7823         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
7824         * lib/uniname.h: Likewise.
7825         * lib/uniname/uniname.c: Likewise.
7826         * lib/unistdio.h: Likewise.
7827         * lib/unistdio/u-asnprintf.h: Likewise.
7828         * lib/unistdio/u-asprintf.h: Likewise.
7829         * lib/unistdio/u-printf-args.c: Likewise.
7830         * lib/unistdio/u-printf-args.h: Likewise.
7831         * lib/unistdio/u-printf-parse.h: Likewise.
7832         * lib/unistdio/u-snprintf.h: Likewise.
7833         * lib/unistdio/u-sprintf.h: Likewise.
7834         * lib/unistdio/u-vasprintf.h: Likewise.
7835         * lib/unistdio/u-vsnprintf.h: Likewise.
7836         * lib/unistdio/u-vsprintf.h: Likewise.
7837         * lib/unistdio/u16-asnprintf.c: Likewise.
7838         * lib/unistdio/u16-asprintf.c: Likewise.
7839         * lib/unistdio/u16-printf-parse.c: Likewise.
7840         * lib/unistdio/u16-snprintf.c: Likewise.
7841         * lib/unistdio/u16-sprintf.c: Likewise.
7842         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
7843         * lib/unistdio/u16-u16-asprintf.c: Likewise.
7844         * lib/unistdio/u16-u16-snprintf.c: Likewise.
7845         * lib/unistdio/u16-u16-sprintf.c: Likewise.
7846         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
7847         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
7848         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
7849         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
7850         * lib/unistdio/u16-vasnprintf.c: Likewise.
7851         * lib/unistdio/u16-vasprintf.c: Likewise.
7852         * lib/unistdio/u16-vsnprintf.c: Likewise.
7853         * lib/unistdio/u16-vsprintf.c: Likewise.
7854         * lib/unistdio/u32-asnprintf.c: Likewise.
7855         * lib/unistdio/u32-asprintf.c: Likewise.
7856         * lib/unistdio/u32-printf-parse.c: Likewise.
7857         * lib/unistdio/u32-snprintf.c: Likewise.
7858         * lib/unistdio/u32-sprintf.c: Likewise.
7859         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
7860         * lib/unistdio/u32-u32-asprintf.c: Likewise.
7861         * lib/unistdio/u32-u32-snprintf.c: Likewise.
7862         * lib/unistdio/u32-u32-sprintf.c: Likewise.
7863         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
7864         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
7865         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
7866         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
7867         * lib/unistdio/u32-vasnprintf.c: Likewise.
7868         * lib/unistdio/u32-vasprintf.c: Likewise.
7869         * lib/unistdio/u32-vsnprintf.c: Likewise.
7870         * lib/unistdio/u32-vsprintf.c: Likewise.
7871         * lib/unistdio/u8-asnprintf.c: Likewise.
7872         * lib/unistdio/u8-asprintf.c: Likewise.
7873         * lib/unistdio/u8-printf-parse.c: Likewise.
7874         * lib/unistdio/u8-snprintf.c: Likewise.
7875         * lib/unistdio/u8-sprintf.c: Likewise.
7876         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
7877         * lib/unistdio/u8-u8-asprintf.c: Likewise.
7878         * lib/unistdio/u8-u8-snprintf.c: Likewise.
7879         * lib/unistdio/u8-u8-sprintf.c: Likewise.
7880         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
7881         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
7882         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
7883         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
7884         * lib/unistdio/u8-vasnprintf.c: Likewise.
7885         * lib/unistdio/u8-vasprintf.c: Likewise.
7886         * lib/unistdio/u8-vsnprintf.c: Likewise.
7887         * lib/unistdio/u8-vsprintf.c: Likewise.
7888         * lib/unistdio/ulc-asnprintf.c: Likewise.
7889         * lib/unistdio/ulc-asprintf.c: Likewise.
7890         * lib/unistdio/ulc-printf-parse.c: Likewise.
7891         * lib/unistdio/ulc-snprintf.c: Likewise.
7892         * lib/unistdio/ulc-sprintf.c: Likewise.
7893         * lib/unistdio/ulc-vasnprintf.c: Likewise.
7894         * lib/unistdio/ulc-vasprintf.c: Likewise.
7895         * lib/unistdio/ulc-vsnprintf.c: Likewise.
7896         * lib/unistdio/ulc-vsprintf.c: Likewise.
7897         * lib/unistr.h: Likewise.
7898         * lib/unistr/u-cpy-alloc.h: Likewise.
7899         * lib/unistr/u-cpy.h: Likewise.
7900         * lib/unistr/u-endswith.h: Likewise.
7901         * lib/unistr/u-move.h: Likewise.
7902         * lib/unistr/u-set.h: Likewise.
7903         * lib/unistr/u-startswith.h: Likewise.
7904         * lib/unistr/u-stpcpy.h: Likewise.
7905         * lib/unistr/u-stpncpy.h: Likewise.
7906         * lib/unistr/u-strcat.h: Likewise.
7907         * lib/unistr/u-strcpy.h: Likewise.
7908         * lib/unistr/u-strcspn.h: Likewise.
7909         * lib/unistr/u-strdup.h: Likewise.
7910         * lib/unistr/u-strlen.h: Likewise.
7911         * lib/unistr/u-strncat.h: Likewise.
7912         * lib/unistr/u-strncpy.h: Likewise.
7913         * lib/unistr/u-strnlen.h: Likewise.
7914         * lib/unistr/u-strpbrk.h: Likewise.
7915         * lib/unistr/u-strspn.h: Likewise.
7916         * lib/unistr/u-strstr.h: Likewise.
7917         * lib/unistr/u-strtok.h: Likewise.
7918         * lib/unistr/u16-check.c: Likewise.
7919         * lib/unistr/u16-chr.c: Likewise.
7920         * lib/unistr/u16-cmp.c: Likewise.
7921         * lib/unistr/u16-cpy-alloc.c: Likewise.
7922         * lib/unistr/u16-cpy.c: Likewise.
7923         * lib/unistr/u16-endswith.c: Likewise.
7924         * lib/unistr/u16-mblen.c: Likewise.
7925         * lib/unistr/u16-mbsnlen.c: Likewise.
7926         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7927         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7928         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7929         * lib/unistr/u16-mbtouc.c: Likewise.
7930         * lib/unistr/u16-mbtoucr.c: Likewise.
7931         * lib/unistr/u16-move.c: Likewise.
7932         * lib/unistr/u16-next.c: Likewise.
7933         * lib/unistr/u16-prev.c: Likewise.
7934         * lib/unistr/u16-set.c: Likewise.
7935         * lib/unistr/u16-startswith.c: Likewise.
7936         * lib/unistr/u16-stpcpy.c: Likewise.
7937         * lib/unistr/u16-stpncpy.c: Likewise.
7938         * lib/unistr/u16-strcat.c: Likewise.
7939         * lib/unistr/u16-strchr.c: Likewise.
7940         * lib/unistr/u16-strcmp.c: Likewise.
7941         * lib/unistr/u16-strcpy.c: Likewise.
7942         * lib/unistr/u16-strcspn.c: Likewise.
7943         * lib/unistr/u16-strdup.c: Likewise.
7944         * lib/unistr/u16-strlen.c: Likewise.
7945         * lib/unistr/u16-strmblen.c: Likewise.
7946         * lib/unistr/u16-strmbtouc.c: Likewise.
7947         * lib/unistr/u16-strncat.c: Likewise.
7948         * lib/unistr/u16-strncmp.c: Likewise.
7949         * lib/unistr/u16-strncpy.c: Likewise.
7950         * lib/unistr/u16-strnlen.c: Likewise.
7951         * lib/unistr/u16-strpbrk.c: Likewise.
7952         * lib/unistr/u16-strrchr.c: Likewise.
7953         * lib/unistr/u16-strspn.c: Likewise.
7954         * lib/unistr/u16-strstr.c: Likewise.
7955         * lib/unistr/u16-strtok.c: Likewise.
7956         * lib/unistr/u16-to-u32.c: Likewise.
7957         * lib/unistr/u16-to-u8.c: Likewise.
7958         * lib/unistr/u16-uctomb-aux.c: Likewise.
7959         * lib/unistr/u16-uctomb.c: Likewise.
7960         * lib/unistr/u32-check.c: Likewise.
7961         * lib/unistr/u32-chr.c: Likewise.
7962         * lib/unistr/u32-cmp.c: Likewise.
7963         * lib/unistr/u32-cpy-alloc.c: Likewise.
7964         * lib/unistr/u32-cpy.c: Likewise.
7965         * lib/unistr/u32-endswith.c: Likewise.
7966         * lib/unistr/u32-mblen.c: Likewise.
7967         * lib/unistr/u32-mbsnlen.c: Likewise.
7968         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7969         * lib/unistr/u32-mbtouc.c: Likewise.
7970         * lib/unistr/u32-mbtoucr.c: Likewise.
7971         * lib/unistr/u32-move.c: Likewise.
7972         * lib/unistr/u32-next.c: Likewise.
7973         * lib/unistr/u32-prev.c: Likewise.
7974         * lib/unistr/u32-set.c: Likewise.
7975         * lib/unistr/u32-startswith.c: Likewise.
7976         * lib/unistr/u32-stpcpy.c: Likewise.
7977         * lib/unistr/u32-stpncpy.c: Likewise.
7978         * lib/unistr/u32-strcat.c: Likewise.
7979         * lib/unistr/u32-strchr.c: Likewise.
7980         * lib/unistr/u32-strcmp.c: Likewise.
7981         * lib/unistr/u32-strcpy.c: Likewise.
7982         * lib/unistr/u32-strcspn.c: Likewise.
7983         * lib/unistr/u32-strdup.c: Likewise.
7984         * lib/unistr/u32-strlen.c: Likewise.
7985         * lib/unistr/u32-strmblen.c: Likewise.
7986         * lib/unistr/u32-strmbtouc.c: Likewise.
7987         * lib/unistr/u32-strncat.c: Likewise.
7988         * lib/unistr/u32-strncmp.c: Likewise.
7989         * lib/unistr/u32-strncpy.c: Likewise.
7990         * lib/unistr/u32-strnlen.c: Likewise.
7991         * lib/unistr/u32-strpbrk.c: Likewise.
7992         * lib/unistr/u32-strrchr.c: Likewise.
7993         * lib/unistr/u32-strspn.c: Likewise.
7994         * lib/unistr/u32-strstr.c: Likewise.
7995         * lib/unistr/u32-strtok.c: Likewise.
7996         * lib/unistr/u32-to-u16.c: Likewise.
7997         * lib/unistr/u32-to-u8.c: Likewise.
7998         * lib/unistr/u32-uctomb.c: Likewise.
7999         * lib/unistr/u8-check.c: Likewise.
8000         * lib/unistr/u8-chr.c: Likewise.
8001         * lib/unistr/u8-cmp.c: Likewise.
8002         * lib/unistr/u8-cpy-alloc.c: Likewise.
8003         * lib/unistr/u8-cpy.c: Likewise.
8004         * lib/unistr/u8-endswith.c: Likewise.
8005         * lib/unistr/u8-mblen.c: Likewise.
8006         * lib/unistr/u8-mbsnlen.c: Likewise.
8007         * lib/unistr/u8-mbtouc-aux.c: Likewise.
8008         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
8009         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
8010         * lib/unistr/u8-mbtouc.c: Likewise.
8011         * lib/unistr/u8-mbtoucr.c: Likewise.
8012         * lib/unistr/u8-move.c: Likewise.
8013         * lib/unistr/u8-next.c: Likewise.
8014         * lib/unistr/u8-prev.c: Likewise.
8015         * lib/unistr/u8-set.c: Likewise.
8016         * lib/unistr/u8-startswith.c: Likewise.
8017         * lib/unistr/u8-stpcpy.c: Likewise.
8018         * lib/unistr/u8-stpncpy.c: Likewise.
8019         * lib/unistr/u8-strcat.c: Likewise.
8020         * lib/unistr/u8-strchr.c: Likewise.
8021         * lib/unistr/u8-strcmp.c: Likewise.
8022         * lib/unistr/u8-strcpy.c: Likewise.
8023         * lib/unistr/u8-strcspn.c: Likewise.
8024         * lib/unistr/u8-strdup.c: Likewise.
8025         * lib/unistr/u8-strlen.c: Likewise.
8026         * lib/unistr/u8-strmblen.c: Likewise.
8027         * lib/unistr/u8-strmbtouc.c: Likewise.
8028         * lib/unistr/u8-strncat.c: Likewise.
8029         * lib/unistr/u8-strncmp.c: Likewise.
8030         * lib/unistr/u8-strncpy.c: Likewise.
8031         * lib/unistr/u8-strnlen.c: Likewise.
8032         * lib/unistr/u8-strpbrk.c: Likewise.
8033         * lib/unistr/u8-strrchr.c: Likewise.
8034         * lib/unistr/u8-strspn.c: Likewise.
8035         * lib/unistr/u8-strstr.c: Likewise.
8036         * lib/unistr/u8-strtok.c: Likewise.
8037         * lib/unistr/u8-to-u16.c: Likewise.
8038         * lib/unistr/u8-to-u32.c: Likewise.
8039         * lib/unistr/u8-uctomb-aux.c: Likewise.
8040         * lib/unistr/u8-uctomb.c: Likewise.
8041         * lib/unitypes.h: Likewise.
8042         * lib/uniwidth.h: Likewise.
8043         * lib/uniwidth/cjk.h: Likewise.
8044         * lib/uniwidth/u16-strwidth.c: Likewise.
8045         * lib/uniwidth/u16-width.c: Likewise.
8046         * lib/uniwidth/u32-strwidth.c: Likewise.
8047         * lib/uniwidth/u32-width.c: Likewise.
8048         * lib/uniwidth/u8-strwidth.c: Likewise.
8049         * lib/uniwidth/u8-width.c: Likewise.
8050         * lib/uniwidth/width.c: Likewise.
8051
8052 2007-10-07  Bruno Haible  <bruno@clisp.org>
8053
8054         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
8055         The file is still under LGPL (see modules/inttypes).
8056
8057 2007-10-06  Bruno Haible  <bruno@clisp.org>
8058
8059         * modules/trunc (Dependencies): Add 'extensions'.
8060         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
8061         Reported by Ben Pfaff <blp@gnu.org>.
8062
8063 2007-10-06  Bruno Haible  <bruno@clisp.org>
8064
8065         * modules/freopen-tests: New file.
8066         * tests/test-freopen.c: New file.
8067
8068         * modules/fopen-tests: New file.
8069         * tests/test-fopen.c: New file.
8070
8071         * modules/fopen: New file.
8072         * lib/fopen.c: New file.
8073         * m4/fopen.m4: New file.
8074         * modules/freopen: New file.
8075         * lib/freopen.c: New file.
8076         * m4/freopen.m4: New file.
8077         * lib/stdio.in.h (fopen, freopen): New declarations.
8078         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
8079         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
8080         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
8081         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
8082         * doc/functions/fopen.texi: Mention the 'fopen' module.
8083         * doc/functions/freopen.texi: Mention the 'freopen' module.
8084
8085 2007-10-06  Bruno Haible  <bruno@clisp.org>
8086
8087         * modules/open-tests: New file.
8088         * tests/test-open.c: New file.
8089
8090         * modules/open: New file.
8091         * lib/open.c: New file.
8092         * m4/open.m4: New file.
8093         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
8094         lib/open.c does.
8095         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
8096         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
8097         macros.
8098         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
8099         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
8100         REPLACE_OPEN.
8101         * doc/functions/open.texi: Mention the 'open' module.
8102
8103 2007-10-04  Bruno Haible  <bruno@clisp.org>
8104
8105         * modules/ceill-tests: New file.
8106         * tests/test-ceill.c: New file.
8107
8108         * modules/ceill: New file.
8109         * lib/ceill.c: Replace entire file.
8110         * m4/ceill.m4: New file.
8111         * lib/math.in.h (ceill): Replace declaration.
8112         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
8113         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
8114         * doc/functions/ceill.texi: Mention the 'ceill' module.
8115         * modules/mathl (Files): Remove lib/ceill.c.
8116         (Depends-on): Add ceill.
8117
8118 2007-10-04  Bruno Haible  <bruno@clisp.org>
8119
8120         * modules/ceilf-tests: New file.
8121         * tests/test-ceilf.c: New file.
8122
8123         * modules/ceilf: New file.
8124         * lib/ceil.c: New file.
8125         * lib/ceilf.c: New file.
8126         * m4/ceilf.m4: New file.
8127         * lib/math.in.h (ceilf): New declaration.
8128         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
8129         HAVE_DECL_CEILF.
8130         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
8131         HAVE_DECL_CEILF.
8132         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
8133
8134 2007-10-04  Bruno Haible  <bruno@clisp.org>
8135
8136         * modules/floorl-tests: New file.
8137         * tests/test-floorl.c: New file.
8138
8139         * modules/floorl: New file.
8140         * lib/floorl.c: Replace entire file.
8141         * m4/floorl.m4: New file.
8142         * lib/math.in.h (floorl): Replace declaration.
8143         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
8144         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
8145         * doc/functions/floorl.texi: Mention the 'floorl' module.
8146         * modules/mathl (Files): Remove lib/floorl.c.
8147         (Depends-on): Add floorl.
8148
8149 2007-10-04  Bruno Haible  <bruno@clisp.org>
8150
8151         * modules/floorf-tests: New file.
8152         * tests/test-floorf.c: New file.
8153
8154         * modules/floorf: New file.
8155         * lib/floor.c: New file.
8156         * lib/floorf.c: New file.
8157         * m4/floorf.m4: New file.
8158         * lib/math.in.h (floorf): New declaration.
8159         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
8160         HAVE_DECL_FLOORF.
8161         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
8162         HAVE_DECL_FLOORF.
8163         * doc/functions/floorf.texi: Mention the 'floorf' module.
8164
8165 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
8166             Bruno Haible  <bruno@clisp.org>
8167
8168         Advertise for the Git server instead of the CVS server.
8169         * doc/gnulib-intro.texi (Steady Development): Mention the Git
8170         repository instead of the CVS one.
8171         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
8172         about all VCS systems generically.
8173         * doc/gnulib.texi (Introduction): Capitalize `Git'.
8174
8175 2007-10-04  Bruno Haible  <bruno@clisp.org>
8176
8177         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
8178         means.
8179         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
8180
8181 2007-10-04  Bruno Haible  <bruno@clisp.org>
8182
8183         * modules/truncl-tests: New file.
8184         * tests/test-truncl.c: New file.
8185
8186         * modules/truncl: New file.
8187         * lib/truncl.c: New file.
8188         * m4/truncl.m4: New file.
8189         * lib/math.in.h (truncl): New declaration.
8190         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
8191         HAVE_DECL_TRUNCL.
8192         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
8193         HAVE_DECL_TRUNCL.
8194         * doc/functions/truncl.texi: Mention the 'truncl' module.
8195
8196 2007-10-04  Bruno Haible  <bruno@clisp.org>
8197
8198         * modules/truncf-tests: New file.
8199         * tests/test-truncf.c: New file.
8200
8201         * modules/truncf: New file.
8202         * lib/trunc.c: Make paramerizable through USE_* macros.
8203         * lib/truncf.c: New file.
8204         * m4/truncf.m4: New file.
8205         * lib/math.in.h (truncf): New declaration.
8206         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
8207         HAVE_DECL_TRUNCF.
8208         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
8209         HAVE_DECL_TRUNCF.
8210         * doc/functions/truncf.texi: Mention the 'truncf' module.
8211
8212 2007-10-03  Bruno Haible  <bruno@clisp.org>
8213
8214         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
8215         augmentation also for tests modules.
8216         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
8217         * modules/atexit-tests (Makefile.am): Likewise.
8218         * modules/binary-io-tests (Makefile.am): Likewise.
8219         * modules/c-strcase-tests (Makefile.am): Likewise.
8220         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
8221         * modules/canonicalize-tests (Makefile.am): Likewise.
8222         * modules/closein-tests (Makefile.am): Likewise.
8223         * modules/fprintf-posix-tests (Makefile.am): Likewise.
8224         * modules/freadahead-tests (Makefile.am): Likewise.
8225         * modules/fseek-tests (Makefile.am): Likewise.
8226         * modules/fseeko-tests (Makefile.am): Likewise.
8227         * modules/ftell-tests (Makefile.am): Likewise.
8228         * modules/ftello-tests (Makefile.am): Likewise.
8229         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
8230         * modules/isnanl-tests (Makefile.am): Likewise.
8231         * modules/lseek-tests (Makefile.am): Likewise.
8232         * modules/mbscasecmp-tests (Makefile.am): Likewise.
8233         * modules/mbscasestr-tests (Makefile.am): Likewise.
8234         * modules/mbschr-tests (Makefile.am): Likewise.
8235         * modules/mbscspn-tests (Makefile.am): Likewise.
8236         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
8237         * modules/mbspbrk-tests (Makefile.am): Likewise.
8238         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
8239         * modules/mbsrchr-tests (Makefile.am): Likewise.
8240         * modules/mbsspn-tests (Makefile.am): Likewise.
8241         * modules/mbsstr-tests (Makefile.am): Likewise.
8242         * modules/printf-posix-tests (Makefile.am): Likewise.
8243         * modules/snprintf-posix-tests (Makefile.am): Likewise.
8244         * modules/sprintf-posix-tests (Makefile.am): Likewise.
8245         * modules/tsearch-tests (Makefile.am): Likewise.
8246         * modules/uniname/uniname-tests (Makefile.am): Likewise.
8247         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
8248         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
8249         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
8250         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
8251         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
8252         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
8253         * modules/vprintf-posix-tests (Makefile.am): Likewise.
8254         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
8255         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
8256         * modules/xstrtoimax-tests (Makefile.am): Likewise.
8257         * modules/xstrtol-tests (Makefile.am): Likewise.
8258         * modules/xstrtoumax-tests (Makefile.am): Likewise.
8259         * modules/yesno-tests (Makefile.am): Likewise.
8260
8261 2007-10-03  Bruno Haible  <bruno@clisp.org>
8262
8263         * modules/trunc-tests: New file.
8264         * tests/test-trunc.c: New file.
8265
8266         * modules/trunc: New file.
8267         * lib/trunc.c: New file.
8268         * m4/trunc.m4: New file.
8269         * lib/math.in.h (trunc): New declaration.
8270         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
8271         HAVE_DECL_TRUNC.
8272         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
8273         HAVE_DECL_TRUNC.
8274         * doc/functions/trunc.texi: Mention the 'trunc' module.
8275
8276 2007-10-03  Bruno Haible  <bruno@clisp.org>
8277
8278         * tests/test-fpending.c: New file, mostly copied
8279         from coreutils/lib/t-fpending.c.
8280         * modules/fpending-tests: New file.
8281
8282 2007-10-03  Bruno Haible  <bruno@clisp.org>
8283
8284         Port the stdio extensions to QNX (untested).
8285         * lib/fseterr.c (fseterr): Add support for QNX.
8286         * lib/fbufmode.c (fbufmode): Likewise.
8287         * lib/freadable.c (freadable): Likewise.
8288         * lib/fwritable.c (fwritable): Likewise.
8289         * lib/freading.c (freading): Likewise.
8290         * lib/fwriting.c (fwriting): Likewise.
8291         * lib/freadahead.c (freadahed): Likewise.
8292         * lib/fpurge.c (fpurge): Likewise.
8293         * lib/fseeko.c (rpl_fseeko): Likewise.
8294
8295 2007-10-03  Bruno Haible  <bruno@clisp.org>
8296             Jim Meyering  <jim@meyering.net>
8297             Eric Blake  <ebb9@byu.net>
8298
8299         * doc/relocatable.texi: Use @command instead of @program.
8300
8301 2007-10-02  Jim Meyering  <jim@meyering.net>
8302
8303         Perform one more "_.h" -> ".in.h" substitution.
8304         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
8305         instead of unistd_.h here, too.
8306
8307 2007-10-01  Bruno Haible  <bruno@clisp.org>
8308
8309         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
8310         Needed for the alloca-opt module.
8311
8312 2007-09-30  Bruno Haible  <bruno@clisp.org>
8313
8314         * lib/alloca.in.h: Renamed from lib/alloca_.h.
8315         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
8316         alloca_.h.
8317         * lib/argz.in.h: Renamed from lib/argz_.h.
8318         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
8319         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
8320         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
8321         byteswap_.h.
8322         * lib/dirent.in.h: Renamed from lib/dirent_.h.
8323         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
8324         dirent_.h.
8325         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
8326         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
8327         fcntl_.h.
8328         * lib/float.in.h: Renamed from lib/float_.h.
8329         * modules/float (Files, Makefile.am): Use float.in.h instead of
8330         float_.h.
8331         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
8332         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
8333         fnmatch_.h.
8334         * lib/getopt.in.h: Renamed from lib/getopt_.h.
8335         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
8336         getopt_.h.
8337         * lib/glob.in.h: Renamed from lib/glob_.h.
8338         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
8339         * lib/iconv.in.h: Renamed from lib/iconv_.h.
8340         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
8341         iconv_.h.
8342         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
8343         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
8344         inttypes_.h.
8345         * lib/locale.in.h: Renamed from lib/locale_.h.
8346         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
8347         locale_.h.
8348         * lib/math.in.h: Renamed from lib/math_.h.
8349         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
8350         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
8351         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
8352         of netinet_in_.h. Add dependency.
8353         * lib/poll.in.h: Renamed from lib/poll_.h.
8354         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
8355         * lib/search.in.h: Renamed from lib/search_.h.
8356         * modules/search (Files, Makefile.am): Use search.in.h instead of
8357         search_.h.
8358         * lib/signal.in.h: Renamed from lib/signal_.h.
8359         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
8360         _signal.h.
8361         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
8362         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
8363         stdbool_.h.
8364         * lib/stdint.in.h: Renamed from lib/stdint_.h.
8365         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
8366         stdint_.h.
8367         * lib/stdio.in.h: Renamed from lib/stdio_.h.
8368         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
8369         stdio_.h.
8370         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
8371         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
8372         stdlib_.h.
8373         * lib/string.in.h: Renamed from lib/string_.h.
8374         * modules/string (Files, Makefile.am): Use string.in.h instead of
8375         string_.h.
8376         * doc/gnulib-tool.texi (Initial import): Update.
8377         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
8378         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
8379         of sys_select_.h. Add dependency.
8380         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
8381         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
8382         of sys_socket_.h.
8383         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
8384         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
8385         sys_stat_.h.
8386         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
8387         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
8388         sys_time_.h.
8389         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
8390         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
8391         sysexits_.h.
8392         * lib/time.in.h: Renamed from lib/time_.h.
8393         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
8394         * lib/unistd.in.h: Renamed from lib/unistd_.h.
8395         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
8396         unistd_.h.
8397         * lib/wchar.in.h: Renamed from lib/wchar_.h.
8398         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
8399         wchar_.h.
8400         * lib/wctype.in.h: Renamed from lib/wctype_.h.
8401         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
8402         wctype_.h.
8403         * build-aux/bootstrap (slurp): Update.
8404         * lib/.cppi-disable: Update.
8405
8406 2007-09-30  Bruno Haible  <bruno@clisp.org>
8407
8408         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
8409         Needed on BeOS.
8410
8411 2007-09-30  Bruno Haible  <bruno@clisp.org>
8412
8413         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
8414
8415 2007-09-29  Bruno Haible  <bruno@clisp.org>
8416
8417         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
8418
8419 2007-09-29  Bruno Haible  <bruno@clisp.org>
8420
8421         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
8422         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
8423         * build-aux/install-reloc: Compile also areadlink.c.
8424         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
8425
8426 2007-09-29  Bruno Haible  <bruno@clisp.org>
8427
8428         * gnulib-tool (func_emit_initmacro_done): Indentation.
8429
8430 2007-09-29  Bruno Haible  <bruno@clisp.org>
8431
8432         * README: Add CVS checkout update instructions.
8433         Info from Bob Proulx <bob@proulx.com>.
8434
8435 2007-09-28  Eric Blake  <ebb9@byu.net>
8436
8437         Provide move-if-change.
8438         * build-aux/move-if-change: New file, based on best practice
8439         rather than any canonical upstream location.
8440
8441 2007-09-28  Jim Meyering  <jim@meyering.net>
8442
8443         Fix canonicalize loop-detection corner case.
8444         Do not attempt to stat the symlink values stored via seen_triple.
8445         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
8446         on linux-2.6.18, (but not 2.6.22).
8447         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
8448         triple_compare.  The former compares dev,ino,filename, while the latter
8449         would actually stat dirname(filename) when dev and ino were equal.
8450         * lib/hash-triple.c: Install <string.h>.
8451         (STREQ): Define.
8452         (triple_compare_ino_str): New function.
8453         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
8454
8455 2007-09-28  Eric Blake  <ebb9@byu.net>
8456
8457         Enforce that AC_REPLACE_FUNCS files exist.
8458         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
8459         override check for typos.
8460
8461         Fix test-closein on Solaris 10.
8462         * tests/test-closein.c (main): Don't assume stdin can be inherited
8463         closed on all systems.
8464         * tests/test-closein.sh: Likewise.
8465         Reported by Piotr Tarnowski.
8466
8467 2007-09-28  Jim Meyering  <jim@meyering.net>
8468
8469         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
8470
8471 2007-09-27  Jim Meyering  <jim@meyering.net>
8472
8473         canonicalize: Avoid a false-positive cycle failure.
8474         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
8475         Sort.  Remove cycle-check.
8476         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
8477         not cycle-check.h.
8478         (seen_triple): New function.
8479         (canonicalize_filename_mode): Use it instead of cycle-check.
8480         * tests/test-canonicalize.c: Add a test for this bug.
8481         * tests/test-canonicalize.sh: Set up and run the test.
8482
8483         New module, file-set, from coreutils.
8484         * modules/file-set: Define it.
8485         * lib/file-set.c, lib/file-set.h: Implement.
8486
8487         New module, hash-triple, from coreutils.
8488         * modules/hash-triple: Define it.
8489         * lib/hash-triple.c, lib/hash-triple.h: Implement.
8490
8491 2007-09-25  Eric Blake  <ebb9@byu.net>
8492
8493         Fix strerror on Interix.
8494         * lib/string_.h (strerror): Declare replacement.
8495         * doc/functions/strerror.texi (strerror): Document the Interix
8496         shortcoming.
8497         * modules/string (Makefile.am): Support new hooks.
8498         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
8499         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
8500         gl_FUNC_STRERROR_SEPARATE.
8501         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
8502         * lib/strerror.c (rpl_strerror): Provide replacement.
8503         * modules/strerror (Depends-on): Add string.
8504         (configure.ac): Detect use of module.
8505         * tests/test-strerror.c: New file.
8506         * modules/strerror-tests: New test module.
8507         * modules/argp (Depends-on): Add strerror.
8508         * modules/error (Depends-on): Likewise.
8509         Reported by Martin Koeppe.
8510
8511 2007-09-24  Bruno Haible  <bruno@clisp.org>
8512
8513         * README: Update git instructions.
8514
8515 2007-09-24  Eric Blake  <ebb9@byu.net>
8516
8517         Revert fpending breakage from 2007-09-08.
8518         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
8519         __fpending.c.
8520
8521 2007-09-24  Jim Meyering  <jim@meyering.net>
8522
8523         filenamecat.c: Add a test.
8524         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
8525         showing how the function works when DIR is the empty string.
8526
8527 2007-09-21  Simon Josefsson  <simon@josefsson.org>
8528
8529         * tests/test-canonicalize.sh: Turn on executable bit.
8530
8531 2007-09-19  Eric Blake  <ebb9@byu.net>
8532
8533         * README: Update CVS instructions.
8534
8535 2007-09-18  Bruno Haible  <bruno@clisp.org>
8536
8537         * modules/areadlink: New file.
8538         * lib/areadlink.h (areadlink): New declaration.
8539         * lib/areadlink.c: New file, based on lib/xreadlink.c.
8540
8541 2007-09-17  Jim Meyering  <jim@meyering.net>
8542
8543         * lib/savewd.c (ESTALE) [!defined]: Define.
8544         Reported to be required on Interix by Martin Koeppe.
8545
8546 2007-09-17  Bruno Haible  <bruno@clisp.org>
8547
8548         * gnulib-tool (func_version): Use $version.
8549
8550 2007-09-16  Bruno Haible  <bruno@clisp.org>
8551
8552         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
8553         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
8554         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
8555         Reported by Greg Schafer <gschafer@zip.com.au>.
8556
8557 2007-09-15  Bruno Haible  <bruno@clisp.org>
8558
8559         * gnulib-tool (sed): Try a little harder to make bash understand the
8560         alias.
8561         Reported by Bruce Korb <bruce.korb@gmail.com>.
8562
8563 2007-09-13  Eric Blake  <ebb9@byu.net>
8564
8565         * ChangeLog: Remove conflict markers.
8566
8567 2007-09-13  Simon Josefsson  <simon@josefsson.org>
8568
8569         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
8570         Reported by Bruno Haible <bruno@clisp.org>.
8571
8572 2007-09-12  Bruno Haible  <bruno@clisp.org>
8573
8574         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
8575         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
8576         is not defined.
8577
8578 2007-09-12  Eric Blake  <ebb9@byu.net>
8579
8580         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
8581         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
8582         Autoconf definition.
8583         * modules/euidaccess (Depends-on): Add extensions, for
8584         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
8585         * modules/fnmatch (Depends-on): Likewise.
8586         * modules/getaddrinfo (Depends-on): Likewise.
8587         * modules/getdelim (Depends-on): Likewise.
8588         * modules/getline (Depends-on): Likewise.
8589         * modules/getsubopt (Depends-on): Likewise.
8590         * modules/gettext (Depends-on): Likewise.
8591         * modules/group-member (Depends-on): Likewise.
8592         * modules/mbchar (Depends-on): Likewise.
8593         * modules/memmem (Depends-on): Likewise.
8594         * modules/mempcpy (Depends-on): Likewise.
8595         * modules/memrchr (Depends-on): Likewise.
8596         * modules/pagealign_alloc (Depends-on): Likewise.
8597         * modules/readutmp (Depends-on): Likewise.
8598         * modules/stpcpy (Depends-on): Likewise.
8599         * modules/stpncpy (Depends-on): Likewise.
8600         * modules/strchrnul (Depends-on): Likewise.
8601         * modules/strndup (Depends-on): Likewise.
8602         * modules/strsep (Depends-on): Likewise.
8603         * modules/strverscmp (Depends-on): Likewise.
8604         * modules/vasprintf (Depends-on): Likewise.
8605         * modules/wcwidth (Depends-on): Likewise.
8606         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
8607         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
8608         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
8609         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
8610         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
8611         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
8612         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
8613         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
8614         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
8615         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
8616         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
8617         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
8618         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
8619         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
8620         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
8621         * m4/readutmp.m4 (gl_READUTMP): Likewise.
8622         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
8623         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
8624         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
8625         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
8626         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
8627         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
8628         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
8629         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
8630         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
8631         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
8632         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
8633         so that lock.m4 can be used in gettext without extensions module.
8634
8635 2007-09-11  Bruno Haible  <bruno@clisp.org>
8636
8637         * m4/isc-posix.m4: Remove file.
8638         Suggested by Eric Blake.
8639
8640 2007-09-11  Eric Blake  <ebb9@byu.net>
8641
8642         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
8643
8644 2007-09-10  Bruno Haible  <bruno@clisp.org>
8645
8646         * posix-modules: Fix typo in error message.
8647         Reported by Matt <mkraai@beckman.com>.
8648
8649 2007-09-09  Bruno Haible  <bruno@clisp.org>
8650
8651         * doc/functions/getdelim.texi: Update list of platforms lacking the
8652         function.
8653         * doc/functions/getline.texi: Likewise.
8654
8655 2007-09-09  Jim Meyering  <jim@meyering.net>
8656
8657         * lib/hash.c (hash_initialize): Detect calloc failure.
8658         Reported by Bruno Haible.
8659
8660 2007-09-09  Bruno Haible  <bruno@clisp.org>
8661
8662         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
8663         malloc or realloc fails.
8664
8665 2007-09-09  Bruno Haible  <bruno@clisp.org>
8666
8667         * modules/getcwd (Depends-on): Add malloc-posix.
8668         * modules/glob (Depends-on): Likewise.
8669         * modules/putenv (Depends-on): Likewise.
8670         * modules/strdup (Depends-on): Likewise.
8671         * modules/getdelim (Depends-on): Add realloc-posix.
8672         * modules/read-file (Depends-on): Likewise.
8673
8674 2007-09-09  Bruno Haible  <bruno@clisp.org>
8675
8676         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
8677         (gl_FUNC_MALLOC_POSIX): Require it.
8678         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
8679         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
8680         * modules/realloc (Files): Add m4/malloc.m4.
8681         * modules/calloc (Files): Likewise.
8682
8683 2007-09-09  Bruno Haible  <bruno@clisp.org>
8684
8685         * modules/malloc-posix: New file.
8686         * modules/malloc (Depends-on): Add malloc-posix.
8687         * lib/malloc.c: Include errno.h.
8688         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
8689         and a POSIX-compatible malloc into a single function. Set ENOMEM
8690         when returning NULL.
8691         * m4/malloc.m4: New file.
8692         * doc/functions/malloc.texi: Mention the malloc-posix module.
8693         * lib/stdlib_.h (malloc): New declaration.
8694         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
8695         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
8696         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
8697         and HAVE_MALLOC_POSIX.
8698
8699 2007-09-09  Bruno Haible  <bruno@clisp.org>
8700
8701         * modules/realloc-posix: New file.
8702         * modules/realloc (Depends-on): Add realloc-posix.
8703         * lib/realloc.c: Include errno.h.
8704         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
8705         and a POSIX-compatible realloc into a single function. Set ENOMEM
8706         when returning NULL.
8707         * m4/realloc.m4: New file.
8708         * doc/functions/realloc.texi: Mention the realloc-posix module.
8709         * lib/stdlib_.h (realloc): New declaration.
8710         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
8711         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
8712         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
8713         and HAVE_REALLOC_POSIX.
8714
8715 2007-09-09  Bruno Haible  <bruno@clisp.org>
8716
8717         * modules/calloc-posix: New file.
8718         * modules/calloc (Depends-on): Add calloc-posix.
8719         * lib/calloc.c: Include errno.h.
8720         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
8721         and a POSIX-compatible calloc into a single function. Set ENOMEM
8722         when returning NULL.
8723         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
8724         * doc/functions/calloc.texi: Mention the calloc-posix module.
8725         * lib/stdlib_.h (calloc): New declaration.
8726         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
8727         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
8728         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
8729         and HAVE_CALLOC_POSIX.
8730
8731 2007-09-09  Bruno Haible  <bruno@clisp.org>
8732
8733         Allow for modules to show an arbitrary notice.
8734         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
8735         * gnulib-tool: New option --extract-notice.
8736         (func_usage): Document it.
8737         (sed_extract_prog): Update.
8738         (func_get_notice): New function.
8739         (func_modules_notice): New function.
8740         (func_import, func_create_testdir): Invoke it.
8741         Suggested by Jim Meyering.
8742
8743 2007-09-09  Bruno Haible  <bruno@clisp.org>
8744
8745         * gnulib-tool: New options --verbose, --quiet.
8746         (func_usage): Document them.
8747         (verbose): New variable.
8748         (func_execute_command): New function.
8749         (func_import): Don't show the module list and the file list if
8750         $verbose < 0.
8751         (func_create_testdir): Likewise. Use func_execute_command.
8752         (func_create_megatestdir): Use func_execute_command.
8753
8754 2007-09-08  Bruno Haible  <bruno@clisp.org>
8755
8756         * gnulib-tool (func_import): Prefer rsync over wget when available,
8757         for fetching the PO files.
8758
8759 2007-09-08  Bruno Haible  <bruno@clisp.org>
8760
8761         * posix-modules: New file. Portions copied from gnulib-tool.
8762         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
8763
8764 2007-09-08  Jim Meyering  <jim@meyering.net>
8765
8766         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
8767         * lib/fpending.h: Rename from __fpending.h.
8768         * lib/fpending.c: Rename from __fpending.c.
8769         Include "fpending.h", not "__fpending.h".
8770         * lib/__fpending.h, lib/__fpending.c: Remove files.
8771         * modules/fpending (Files): Reflect new file names.
8772         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
8773
8774 2007-09-08  Bruno Haible  <bruno@clisp.org>
8775
8776         * m4/inttypes-h.m4: Remove stub file.
8777
8778 2007-09-07  Simon Josefsson  <simon@josefsson.org>
8779
8780         * doc/headers/stdint.texi: Discuss #include_next issue.
8781
8782 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8783
8784         * build-aux/bootstrap: Remove obsolete comment about wget --help.
8785
8786 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8787
8788         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
8789         in variable name.
8790
8791 2007-09-03  Jim Meyering  <jim@meyering.net>
8792
8793         New module: git-version-gen.
8794         * modules/git-version-gen: New file.
8795
8796         Import changes from coreutils for bootstrap script.
8797
8798         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
8799
8800         bootstrap: uses rsync to download the .po files
8801         * build-aux/bootstrap (po_download_command_format): New global.
8802         (download_po_files): Use rsync.
8803         (update_po_files): Don't remove .po files after download,
8804         so future rsync runs can take advantage of the copies.
8805
8806         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
8807
8808         Solve the unnecessary-.po-file-regeneration problem once and for all.
8809         * build-aux/bootstrap (download_po_files): New function, renamed from
8810         get_translations.  Now, downloads, but doesn't update LINGUAS.
8811         (update_po_files): New function.
8812
8813         bootstrap: Ignore more.
8814         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
8815         uniwidth to e.g., lib/.gitignore.
8816         (slurp): Handle the sys_stat_.h -> sys mapping, too.
8817
8818         * build-aux/bootstrap: New setting: vc_ignore.
8819         (insert_sorted_if_absent): Create $file if absent.
8820         Adapt to new, possibly empty, list: $vc_ignore.
8821
8822         bootstrap: generate more ignorable names
8823         * build-aux/bootstrap (slurp): When generating ignorable names,
8824         also map .sin to .sed, .gperf to .c, and .y to .c.
8825
8826 2007-09-03  Jim Meyering  <jim@meyering.net>
8827
8828         * build-aux/git-version-gen: New file, from coreutils.  For details, see
8829         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
8830
8831 2007-09-02  Bruno Haible  <bruno@clisp.org>
8832
8833         Fix mis-recognition of 'mcs' on QNX 6.
8834         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
8835         output contains the string "Mono".
8836         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
8837         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
8838
8839 2007-09-01  Bruno Haible  <bruno@clisp.org>
8840
8841         Fix collision between uniwidth/* and linebreak modules.
8842         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
8843         u32_width): Remove declarations.
8844         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
8845         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
8846         streq3, streq2, streq1, streq0): Remove functions.
8847         (STREQ): Remove macro.
8848         (is_cjk_encoding): Remove function.
8849         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
8850         (uc_width, u8_width, u16_width, u32_width): Remove functions.
8851         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
8852         * NEWS: Document the change.
8853
8854 2007-09-01  Bruno Haible  <bruno@clisp.org>
8855
8856         * lib/streq.h: Add double-inclusion guard.
8857
8858 2007-09-01  Karl Berry  <karl@gnu.org>
8859
8860         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
8861
8862 2007-08-28  Jim Meyering  <jim@meyering.net>
8863
8864         Rename mreadlink_with_size to areadlink_with_size.
8865         * NEWS: Document the change.
8866         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
8867         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
8868         * lib/mreadlink.h: Rename this to...
8869         * lib/areadlink.h: ...this.
8870         * modules/mreadlink-with-size: Rename this to...
8871         * modules/areadlink-with-size: ...this.
8872         * lib/canonicalize.c: Reflect the renaming.
8873         * modules/canonicalize: Likewise.
8874
8875 2007-08-26  Bruno Haible  <bruno@clisp.org>
8876
8877         * gnulib-tool (func_import): When deciding which files to remove,
8878         consider also dangling symbolic links.
8879         Reported by Eric Blake.
8880
8881 2007-08-26  Bruno Haible  <bruno@clisp.org>
8882
8883         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
8884
8885 2007-08-23  Simon Josefsson  <simon@josefsson.org>
8886
8887         * lib/readline.c: Don't include getline.h, the prototype is now
8888         found in stdio.h.
8889
8890 2007-08-23  Jim Meyering  <jim@meyering.net>
8891
8892         Getdelim touchup.
8893         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
8894         around the funlockfile call, since funlockfile never sets errno.
8895         Don't set errno upon failed realloc.
8896
8897 2007-08-22  Eric Blake  <ebb9@byu.net>
8898
8899         Getline touchups.
8900         * lib/getdelim.c (getdelim): Revert regression that required *n to
8901         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
8902         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
8903         getdelim, rather than whether implementation is missing.
8904         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
8905         * lib/stdio_.h (getline): Also declare if replacement is
8906         required.
8907         * doc/functions/getdelim.texi: New file.
8908         * doc/functions/getline.texi: Likewise.
8909         * doc/gnulib.texi (Function Substitutes): Add new files.
8910         Reported by Bruno Haible.
8911
8912 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
8913
8914         * users.txt: Add Guile.
8915
8916 2007-08-22  Eric Blake  <ebb9@byu.net>
8917
8918         * tests/test-getdelim.c (main): Use remove, not unlink.
8919         * tests/test-getline.c (main): Likewise.
8920
8921         Move getline and getdelim into stdio.h, per POSIX 200x.
8922         * modules/getline (Files): Remove getline.h.
8923         (Depends-on): Add stdio.
8924         (configure.ac): Add module indicator.
8925         * modules/getdelim (Files): Remove getdelim.h.
8926         (Depends-on): Add stdio.
8927         (configure.ac): Add module indicator.
8928         * modules/stdio (Makefile.am): Work with new indicators.
8929         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
8930         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
8931         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
8932         * lib/getdelim.h: Delete.
8933         * lib/getline.h: Delete.
8934         * lib/stdio_.h (getdelim, getline): Declare.
8935         * modules/getdelim-tests: New module.
8936         * modules/getline-tests: Likewise.
8937         * tests/test-getdelim.c: New file.
8938         * tests/test-getline.c: Likewise.
8939         * NEWS: Document the change.
8940         * lib/getline.c: Update choice of header.
8941         * lib/csharpcomp.c: Likewise.
8942         * lib/getpass.c: Likewise.
8943         * lib/javacomp.c: Likewise.
8944         * lib/javaversion.c: Likewise.
8945         * lib/yesno.c: Likewise.
8946         * lib/getdelim.c: Likewise.
8947         (getdelim): Set errno on failure, and avoid memory leak.
8948
8949 2007-08-19  Bruno Haible  <bruno@clisp.org>
8950
8951         * modules/closein (Depends-on): Add freadahead.
8952         * lib/closein.c: Include freadahead.h.
8953         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
8954         is zero.
8955
8956 2007-08-19  Bruno Haible  <bruno@clisp.org>
8957
8958         * modules/freadahead-tests: New file.
8959         * tests/test-freadahead.sh: New file.
8960         * tests/test-freadahead.c: New file.
8961
8962         * modules/freadahead: New file.
8963         * lib/freadahead.h: New file.
8964         * lib/freadahead.c: New file.
8965         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
8966         fbufmode, fpurge, freadable, fwritable.
8967
8968 2007-08-19  Eric Blake  <ebb9@byu.net>
8969
8970         Test yesno in combination with closein.
8971         * lib/yesno.c (yesno): Document use of stdin.
8972         * modules/yesno-tests (Files): New module.
8973         * tests/test-yesno.c (main): New file.
8974         * tests/test-yesno.sh: Likewise.
8975
8976 2007-08-19  Bruno Haible  <bruno@clisp.org>
8977
8978         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
8979         * lib/fseeko.c (rpl_fseeko): Likewise.
8980         * lib/fseterr.c (fseterr): Likewise.
8981
8982 2007-08-19  Bruno Haible  <bruno@clisp.org>
8983
8984         * tests/test-lseek.c (main): Disable a test for BeOS.
8985         * doc/functions/lseek.texi: Document the BeOS bug.
8986
8987 2007-08-19  Bruno Haible  <bruno@clisp.org>
8988             Eric Blake  <ebb9@byu.net>
8989
8990         * lib/lseek.c: Include <sys/stat.h>.
8991         (rpl_lseek): Add workaround code also for Unix platforms.
8992         Needed for BeOS.
8993         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
8994         * doc/functions/lseek.texi: Document BeOS definiency.
8995
8996 2007-08-18  Bruno Haible  <bruno@clisp.org>
8997
8998         * modules/fstrcmp-tests: New file.
8999         * tests/test-fstrcmp.c: New file.
9000
9001 2007-08-18  Bruno Haible  <bruno@clisp.org>
9002
9003         * modules/fstrcmp: New file, from GNU gettext with modifications.
9004         * lib/fstrcmp.h: New file, from GNU gettext.
9005         * lib/fstrcmp.c: New file, from GNU gettext.
9006         * MODULES.html.sh (String handling): Add fstrcmp.
9007
9008 2007-08-18  Bruno Haible  <bruno@clisp.org>
9009
9010         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
9011         'bool'.
9012         (diag, compareseq): Remove const from the ctxt argument.
9013         (USE_HEURISTIC): Undefine at the end.
9014
9015 2007-08-18  Jim Meyering  <jim@meyering.net>
9016
9017         New file: lib/idcache.h
9018         * NEWS: Mention the addition.
9019         * modules/idcache (Files): Add lib/idcache.h
9020         * lib/idcache.c: Include "idcache.h".
9021         Don't include <sys/types.h>.
9022         Add a FIXME comment.
9023         Move file-scoped "static" declarations to the top.
9024         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
9025
9026 2007-08-17  Bruno Haible  <bruno@clisp.org>
9027         and Paul Eggert  <eggert@cs.ucla.edu>
9028
9029         * MODULES.html.sh: Add diffseq.
9030         * modules/diffseq: New file.
9031         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
9032         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
9033
9034 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9035
9036         Import changes from coreutils for bootstrap script.
9037
9038         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
9039
9040         * build-aux/bootstrap (slurp): Work even in environments where
9041         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
9042         current code does not slurp files whose names start with ".", and
9043         this looks like it might be a troublesome area.
9044
9045         2007-07-11  Jim Meyering  <jim@meyering.net>
9046
9047         If there's a GPL vN copyright comment, require that N == 3.
9048
9049         2007-07-08  Jim Meyering  <jim@meyering.net>
9050
9051         Run the coreutils-specific code only if tests/Makefile.am.in exists.
9052         * build-aux/bootstrap (mam_template): Move definition out of loop.
9053
9054         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
9055
9056         * build-aux/bootstrap (symlink_to_dir): Rename function from
9057         symlink_to_gnulib.  Add a directory parameter.  Update all
9058         callers.
9059         (cp_mark_as_generated): Also check for -- and link to -- files in
9060         gl/.
9061
9062         2007-07-08  Jim Meyering  <jim@meyering.net>
9063
9064         Adapt to deeper hierarchy in gnulib.
9065         * build-aux/bootstrap (symlink_to_dir): If the destination
9066         directory doesn't exist, create it. This is required at least for
9067         "lib/uniwidth/cjk.h".
9068
9069         2007-05-15  Jim Meyering  <jim@meyering.net>
9070
9071         * build-aux/bootstrap: Now that generated Makefile.am files
9072         are no longer under version control, they must be created at
9073         bootstrap time.
9074
9075 2007-08-14  Ben Pfaff  <blp@gnu.org>
9076
9077         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
9078
9079 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
9080
9081         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
9082         given the changes below.
9083         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
9084         even on hosts that have padding bits beyond the supported 64.
9085
9086 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
9087
9088         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
9089         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
9090         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
9091         depends on it.
9092         (xstrtol_error): Remove.
9093         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
9094         but with a different signature.
9095         (ATTRIBUTE_NORETURN, __attribute__): New macros.
9096         * lib/xstrtol-error.c: Include exitfail.h.
9097         (xstrtol_fatal): New function, with a different signature from the
9098         old xstrtol_error, so that the caller need not worry about passing
9099         in an exit status, or about storage management of the option argument.
9100         (xstrtol_error): Now a static function.  Redo signature to
9101         implement xstrtol_fatal.  Output the correct number of hyphens in
9102         front of the option so that the caller need not worry about
9103         storage management.
9104         (N_): New macro.
9105         (_): Remove; not used now.
9106         * modules/xstrtol: Depend on getopt.
9107         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
9108         of old STRTOL_FATAL_ERROR macro.
9109         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
9110         of test program.
9111         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
9112         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
9113
9114 2007-08-08  Eric Blake  <ebb9@byu.net>
9115
9116         * lib/xstrtol-error.c: Add missing include.
9117
9118         Move xstrtol messages into gnulib domain, when --pobase is used.
9119         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
9120         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
9121         * modules/xstrtol (Files): Distribute new file.
9122         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
9123         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
9124         * tests/test-xstrtol.c: ...into new file.
9125         * tests/test-xstrtoul.c: Also test xstrtoul.
9126         * tests/test-xstrtoimax.c: Also test xstrtoimax.
9127         * tests/test-xstrtoumax.c: Also test xstrtoumax.
9128         * tests/test-xstrtol.sh: Drive the tests.
9129         * tests/test-xstrtoimax.sh: Likewise.
9130         * tests/test-xstrtoumax.sh: Likewise.
9131         * modules/xstrtol-tests: New module.
9132         * modules/xstrtoimax-tests: Likewise.
9133         * modules/xstrtoumax-tests: Likewise.
9134
9135 2007-08-08  Jim Meyering  <jim@meyering.net>
9136
9137         New function: mfile_name_concat.
9138         * lib/filenamecat.c (mfile_name_concat): New function, just like
9139         file_name_concat, but return NULL upon failure rather than exiting
9140         with a diagnostic.
9141         * lib/filenamecat.h: Declare it.
9142
9143 2007-08-07  Bruno Haible  <bruno@clisp.org>
9144
9145         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
9146         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
9147         warning from gcc.
9148         Reported by Eric Blake.
9149
9150 2007-08-07  Simon Josefsson  <simon@josefsson.org>
9151
9152         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
9153         * modules/crypto/arcfour (License): Likewise.
9154         * modules/crypto/des-tests (License): Likewise.
9155         * modules/crypto/gc-arctwo-tests (License): Likewise.
9156         * modules/crypto/gc-des-tests (License): Likewise.
9157         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
9158         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
9159         * modules/crypto/gc-md2-tests (License): Likewise.
9160         * modules/crypto/gc-md4-tests (License): Likewise.
9161         * modules/crypto/gc-md5-tests (License): Likewise.
9162         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
9163         * modules/crypto/gc-rijndael-tests (License): Likewise.
9164         * modules/crypto/gc-sha1-tests (License): Likewise.
9165         * modules/crypto/gc-tests (License): Likewise.
9166         * modules/crypto/hmac-md5 (License): Likewise.
9167         * modules/crypto/hmac-sha1 (License): Likewise.
9168         * modules/crypto/md2-tests (License): Likewise.
9169         * modules/crypto/md4-tests (License): Likewise.
9170         * modules/crypto/md5 (License): Likewise.
9171         * modules/crypto/rijndael (License): Likewise.
9172         * modules/crypto/sha1 (License): Likewise.
9173         * modules/memxor (License): Likewise.
9174
9175 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
9176         and Bruno Haible  <bruno@clisp.org>
9177
9178         * NEWS: Describe interface changes to human, xstrtol.
9179         * lib/human.h: Include <xstrtol.h>.
9180         (human_options): Return enum strtol_error, not int.  Remove
9181         bool arg; take int * instead.
9182         * lib/human.c: Don't include "gettext.h".
9183         (_): Remove; no longer used.
9184         Don't include <xstrtol.h>, since human.h does it.
9185         (human_options): Adjust to abovementioned interface changes.
9186         Do not report error to stderr; that's now the caller's
9187         responsibility.
9188         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
9189         interface change.
9190         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
9191         Str, Argument_type_string.  All uses changed.  Put " argument"
9192         in diagnostics to make them clearer.  Change wording of suffix
9193         message for clarity.
9194         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
9195         Argument_type_string.
9196         (STRTOL_FATAL_WARN): Remove; no longer used.
9197         * modules/human (Depends-on): Remove gettext-h.
9198
9199 2007-08-06  Simon Josefsson  <simon@josefsson.org>
9200
9201         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
9202
9203 2007-07-31  Bruno Haible  <bruno@clisp.org>
9204
9205         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
9206         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
9207         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
9208
9209 2007-07-31  Bruno Haible  <bruno@clisp.org>
9210
9211         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
9212         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
9213
9214 2007-07-30  Bruno Haible  <bruno@clisp.org>
9215
9216         * modules/base64 (License): Use the synonymous term "LGPLv2+".
9217         * modules/c-ctype (License): Likewise.
9218         * modules/c-strcase (License): Likewise.
9219         * modules/check-version (License): Likewise.
9220         * modules/iconv (License): Likewise.
9221         * modules/iconv_open (License): Likewise.
9222         * modules/read-file (License): Likewise.
9223         * modules/striconv (License): Likewise.
9224         * modules/strverscmp (License): Likewise.
9225         * modules/vasprintf (License): Likewise.
9226         * modules/crypto/des (License): Likewise.
9227         * modules/crypto/gc (License): Likewise.
9228         * modules/crypto/gc-arcfour (License): Likewise.
9229         * modules/crypto/gc-arctwo (License): Likewise.
9230         * modules/crypto/gc-des (License): Likewise.
9231         * modules/crypto/gc-hmac-md5 (License): Likewise.
9232         * modules/crypto/gc-hmac-sha1 (License): Likewise.
9233         * modules/crypto/gc-md2 (License): Likewise.
9234         * modules/crypto/gc-md4 (License): Likewise.
9235         * modules/crypto/gc-md5 (License): Likewise.
9236         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
9237         * modules/crypto/gc-random (License): Likewise.
9238         * modules/crypto/gc-rijndael (License): Likewise.
9239         * modules/crypto/gc-sha1 (License): Likewise.
9240         * modules/crypto/md2 (License): Likewise.
9241         * modules/crypto/md4 (License): Likewise.
9242
9243 2007-07-30  Jim Meyering  <jim@meyering.net>
9244
9245         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
9246         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
9247         it has valid stat data.  This bug would cause du not to count the
9248         sizes of inaccessible directories.
9249         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
9250         in <http://bugzilla.redhat.com/250077>.
9251
9252 2007-07-25  Peter O'Gorman  <peter@pogma.com>
9253             Bruno Haible  <bruno@clisp.org>
9254
9255         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
9256         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
9257         #include_next, gives a diagnostic about it, but reports no error in
9258         the exit code.
9259         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
9260
9261 2007-07-24  Ben Pfaff  <blp@gnu.org>
9262
9263         Improve name: "count-one-bits" is better than "popcount".
9264         * MODULES.html.sh: Update name.
9265         * lib/popcount.h: Renamed lib/count-one-bits.h.
9266         (popcount): Renamed count_one_bits.
9267         (popcountl): Renamed count_one_bits_l.
9268         (popcountll): Renamed count_one_bits_ll.
9269         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
9270         * modules/popcount: Renamed module/count-one-bits.
9271         * modules/popcount-tests: Renamed module/count-one-bits-tests.
9272         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
9273
9274 2007-07-23  Ben Pfaff  <blp@gnu.org>
9275
9276         * lib/popcount.h (popcount32): Reduce size of constants, to allow
9277         better code generation, and add U to large constants to avoid
9278         warnings, in non-GCC case.
9279         Suggested by Bruno Haible.
9280
9281 2007-07-23  Ben Pfaff  <blp@gnu.org>
9282
9283         * lib/popcount.h: Use verify_true instead of if...abort.
9284         * modules/popcount: Depend on verify module.
9285         Suggested by Jim Meyering.
9286
9287 2007-07-23  Bruno Haible  <bruno@clisp.org>
9288
9289         * gnulib-tool (func_import): Create a .cvsignore file also when the
9290         directory is not yet in CVS but the toplevel directory is. When
9291         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
9292         Reported by Karl Berry.
9293
9294 2007-07-22  Ben Pfaff  <blp@gnu.org>
9295
9296         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
9297         case.
9298         Suggested by Eric Blake.
9299
9300 2007-07-22  Ben Pfaff  <blp@gnu.org>
9301
9302         New module: popcount.
9303         * MODULES.html.sh: Add popcount.
9304         * modules/popcount: New file.
9305         * modules/popcount-tests: New file.
9306         * tests/test-popcount.c: New file.
9307         * lib/popcount.h: New file.
9308         * m4/popcount.m4: New file.
9309
9310 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
9311
9312         * build-aux/announce-gen: Update to GPLv3.
9313
9314         * build-aux/config.guess: Update from config.
9315
9316 2007-07-21  Bruno Haible  <bruno@clisp.org>
9317
9318         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
9319         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
9320
9321 2007-07-20  Jim Meyering  <jim@meyering.net>
9322
9323         * check-module: Diagnose a self-dependency.
9324
9325 2007-07-19  Bruno Haible  <bruno@clisp.org>
9326
9327         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
9328         empty.
9329         Reported by Eric Blake.
9330
9331 2007-07-18  Bruno Haible  <bruno@clisp.org>
9332
9333         * gnulib-tool: New options --po-base, --po-domain.
9334         (func_usage): Document them.
9335         (pobase, po_domain): New variables.
9336         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
9337         DEFAULT_TEXT_DOMAIN.
9338         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
9339         (func_import): Consider pobase and po_domain. Create a po/ directory.
9340         (func_create_testdir): Set pobase and po_domain to empty.
9341         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
9342         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
9343
9344 2007-07-18  Bruno Haible  <bruno@clisp.org>
9345
9346         * gnulib-tool (func_get_automake_snippet): Synthesize also an
9347         EXTRA_DIST augmentation for files in build-aux/.
9348
9349 2007-07-16  Bruno Haible  <bruno@clisp.org>
9350
9351         * modules/lseek (License): Use the synonymous term "LGPLv2+".
9352         * modules/getdelim (License): Likewise.
9353
9354 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9355
9356         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
9357         * modules/d-type (License): Likewise.
9358         * modules/extensions (License): Likewise.
9359         * modules/fnmatch (License): Likewise.
9360         * modules/fseeko (License): Likewise.
9361         * modules/getaddrinfo (License): Likewise.
9362         * modules/getline (License): Likewise.
9363         * modules/getlogin_r (License): Likewise.
9364         * modules/getpass (License): Likewise.
9365         * modules/gettimeofday (License): Likewise.
9366         * modules/glob (License): Likewise.
9367         * modules/inet_ntop (License): Likewise.
9368         * modules/malloc (License): Likewise.
9369         * modules/malloca (License): Likewise.
9370         * modules/memmem (License): Likewise.
9371         * modules/mempcpy (License): Likewise.
9372         * modules/memset (License): Likewise.
9373         * modules/minmax (License): Likewise.
9374         * modules/mktime (License): Likewise.
9375         * modules/netinet_in (License): Likewise.
9376         * modules/pathmax (License): Likewise.
9377         * modules/poll (License): Likewise.
9378         * modules/regex (License): Likewise.
9379         * modules/snprintf (License): Likewise.
9380         * modules/stdbool (License): Likewise.
9381         * modules/stdint (License): Likewise.
9382         * modules/stdio (License): Likewise.
9383         * modules/strcase (License): Likewise.
9384         * modules/strcasestr (License): Likewise.
9385         * modules/strdup (License): Likewise.
9386         * modules/string (License): Likewise.
9387         * modules/strndup (License): Likewise.
9388         * modules/strnlen (License): Likewise.
9389         * modules/strpbrk (License): Likewise.
9390         * modules/strptime (License): Likewise.
9391         * modules/strsep (License): Likewise.
9392         * modules/sys_select (License): Likewise.
9393         * modules/sys_socket (License): Likewise.
9394         * modules/sys_stat (License): Likewise.
9395         * modules/sys_time (License): Likewise.
9396         * modules/time (License): Likewise.
9397         * modules/time_r (License): Likewise.
9398         * modules/timegm (License): Likewise.
9399         * modules/unistd (License): Likewise.
9400         * modules/vsnprintf (License): Likewise.
9401         * modules/wctype (License): Likewise.
9402
9403 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9404
9405         * modules/argz (License): LGPLv2+.
9406
9407 2007-07-15  Karl Berry  <karl@gnu.org>
9408
9409         * doc/gnulib.texi: revise node structure per new fdl.texi.
9410
9411 2007-07-14  Bruno Haible  <bruno@clisp.org>
9412
9413         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
9414         the output file.
9415         * lib/uniname/uninames.h: Regenerated.
9416
9417 2007-07-14  Karl Berry  <karl@gnu.org>
9418
9419         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
9420         omitting sectioning and index commands.
9421
9422 2007-07-13  Bruno Haible  <bruno@clisp.org>
9423
9424         New gnulib-tool option --more-symlinks.
9425         * gnulib-tool (func_usage): Document --more-symlinks.
9426         (do_copyrights): New variable.
9427         Recognize option --more-symlinks.
9428         (func_import): Don't add a copyright notice transform to
9429         sed_transform_lib_file if do_copyrights is empty.
9430
9431 2007-07-13  Bruno Haible  <bruno@clisp.org>
9432
9433         * lib/vasnprintf.c (decimal_point_char): Define also if
9434         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
9435         && !NEED_PRINTF_DIRECTIVE_A.
9436         Reported by Clemens Koller <clemens.koller@anagramm.de> via
9437         Gary V. Vaughan <gary@gnu.org>.
9438
9439 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
9440
9441         * lib/inttypes_.h: Undo previous change, since it was fixed
9442         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
9443
9444 2007-07-13  Bruno Haible  <bruno@clisp.org>
9445
9446         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
9447         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
9448
9449 2007-07-13  Jim Meyering  <jim@meyering.net>
9450
9451         df: Don't fail for Tru64's "file-on-file mount".
9452         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
9453         so we fall through and use statfs instead.  Details here:
9454         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
9455         Reported by Albert Chin.
9456
9457 2007-07-13  Bruno Haible  <bruno@clisp.org>
9458
9459         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
9460         * modules/configmake (License): Likewise.
9461         * modules/gettext (License): Likewise.
9462         * modules/gettext-h (License): Likewise.
9463         * modules/include_next (License): Likewise.
9464         * modules/link-warning (License): Likewise.
9465         * modules/localcharset (License): Likewise.
9466         * modules/localename (License): Likewise.
9467         * modules/lock (License): Likewise.
9468         * modules/relocatable-lib-lgpl (License): Likewise.
9469         * modules/size_max (License): Likewise.
9470         * modules/vasnprintf (License): Likewise.
9471         * modules/wchar (License): Likewise.
9472         * modules/xsize (License): Likewise.
9473
9474 2007-07-13  Bruno Haible  <bruno@clisp.org>
9475
9476         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
9477         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
9478
9479 2007-07-12  Bruno Haible  <bruno@clisp.org>
9480
9481         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
9482         in the modules files.
9483
9484 2007-07-11  Karl Berry  <karl@gnu.org>
9485
9486         * MODULES.html.sh (func_module): use
9487          sed -e '\|^'"${includefile}"'$|d'
9488          instead of /.../d, to avoid errors on $includefile's containing /.
9489
9490 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9491
9492         * gnulib-tool (func_import): Avoid duplication of --avoid
9493         statements
9494         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
9495         names to `_' in variable names.
9496
9497 2007-07-10  Eric Blake  <ebb9@byu.net>
9498
9499         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
9500         * NEWS: Document this change.
9501
9502 2007-07-08  Bruno Haible  <bruno@clisp.org>
9503
9504         Update to Unicode 5.0.
9505         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
9506         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
9507         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
9508         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
9509         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
9510         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
9511         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
9512         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
9513         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
9514         U+10A3F, U+1D242..U+1D244.
9515         (nonspacing_table_ind): Update.
9516         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
9517         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
9518
9519 2007-07-08  Bruno Haible  <bruno@clisp.org>
9520
9521         Update to Unicode 5.0.
9522         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
9523         code transform. Extend the name index field of unicode_name_to_code and
9524         unicode_code_to_name from 16 to 24 bits.
9525         * lib/uniname/uniname.c (unicode_character_name,
9526         unicode_name_character): Add the range 0x12xxx to the code transform.
9527         * lib/uniname/uninames.h: Regenerated.
9528         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
9529
9530 2007-07-07  Bruno Haible  <bruno@clisp.org>
9531
9532         * modules/wcwidth-tests: New file.
9533         * tests/test-wcwidth.c: New file.
9534
9535         Work around MacOS X wcwidth() bug.
9536         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
9537         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
9538         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
9539         original wcwidth in non-UTF-8 locales.
9540         * modules/wcwidth (Depends-on): Add localcharset, streq,
9541         uniwidth/width.
9542         * doc/functions/wcwidth.texi: Update.
9543
9544 2007-07-07  Bruno Haible  <bruno@clisp.org>
9545
9546         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
9547         (wcwidth): New declaration.
9548         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
9549         macros.
9550         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
9551         here. Prepare for creating <wchar.h> unconditionally.
9552         * modules/wchar (Depends-on): Add link-warning.
9553         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
9554         REPLACE_WCWIDTH, and GL_LINK_WARNING.
9555         * lib/wcwidth.h: Remove file.
9556         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
9557         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
9558         * modules/wcwidth (Files): Remove lib/wcwidth.h.
9559         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
9560         (Include): Replace wcwidth.h with <wchar.h>.
9561         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
9562         * lib/mbchar.h: Don't include wcwidth.h.
9563         * lib/mbswidth.c: Likewise.
9564         * NEWS: Mention the change.
9565
9566 2007-07-07  Bruno Haible  <bruno@clisp.org>
9567
9568         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
9569         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
9570         definition with an external declaration.
9571         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
9572         defined as a function. Remove AC_C_INLINE requirement.
9573         * modules/wcwidth (Files): Add lib/wcwidth.c.
9574         (Makefile.am): Remove redundant statement.
9575
9576 2007-07-07  Bruno Haible  <bruno@clisp.org>
9577
9578         * MODULES.html.sh (Unicode string functions): Add the new modules.
9579
9580         * tests/uniwidth/test-u32-strwidth.c: New file.
9581         * modules/uniwidth/u32-strwidth-tests: New file.
9582
9583         * lib/uniwidth/u32-strwidth.c: New file.
9584         * modules/uniwidth/u32-strwidth: New file.
9585
9586         * tests/uniwidth/test-u16-strwidth.c: New file.
9587         * modules/uniwidth/u16-strwidth-tests: New file.
9588
9589         * lib/uniwidth/u16-strwidth.c: New file.
9590         * modules/uniwidth/u16-strwidth: New file.
9591
9592         * tests/uniwidth/test-u8-strwidth.c: New file.
9593         * modules/uniwidth/u8-strwidth-tests: New file.
9594
9595         * lib/uniwidth/u8-strwidth.c: New file.
9596         * modules/uniwidth/u8-strwidth: New file.
9597
9598         * tests/uniwidth/test-u32-width.c: New file.
9599         * modules/uniwidth/u32-width-tests: New file.
9600
9601         * lib/uniwidth/u32-width.c: New file.
9602         * modules/uniwidth/u32-width: New file.
9603
9604         * tests/uniwidth/test-u16-width.c: New file.
9605         * modules/uniwidth/u16-width-tests: New file.
9606
9607         * lib/uniwidth/u16-width.c: New file.
9608         * modules/uniwidth/u16-width: New file.
9609
9610         * tests/uniwidth/test-u8-width.c: New file.
9611         * modules/uniwidth/u8-width-tests: New file.
9612
9613         * lib/uniwidth/u8-width.c: New file.
9614         * modules/uniwidth/u8-width: New file.
9615
9616         * tests/uniwidth/test-uc_width.c: New file.
9617         * modules/uniwidth/width-tests: New file.
9618
9619         * lib/uniwidth/width.c: New file, from GNU libiconv.
9620         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
9621         * modules/uniwidth/width: New file.
9622
9623         * lib/uniwidth.h: New file, from GNU libiconv.
9624         * modules/uniwidth/base: New file.
9625
9626 2007-07-07  Bruno Haible  <bruno@clisp.org>
9627
9628         * lib/uniname.h: New file, from GNU gettext.
9629         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
9630         * lib/uniname/uninames.h: New file, from GNU gettext.
9631         * lib/uniname/uniname.c: New file, from GNU gettext.
9632         * tests/uniname/test-uninames.sh: New file.
9633         * tests/uniname/test-uninames.c: New file, from GNU gettext.
9634         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
9635         * modules/uniname/base: New file.
9636         * modules/uniname/uniname: New file.
9637         * modules/uniname/uniname-tests: New file.
9638         * MODULES.html.sh (Unicode string functions): Add the new modules.
9639
9640 2007-07-06  Bruno Haible  <bruno@clisp.org>
9641
9642         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
9643
9644 2007-07-06  Bruno Haible  <bruno@clisp.org>
9645
9646         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
9647         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
9648         includes <cygwin/sys_time.h> which includes <sys/select.h> which
9649         include <sys/time.h>.
9650         Reported by Eric Blake.
9651
9652 2007-07-06  Eric Blake  <ebb9@byu.net>
9653
9654         Fix testing canonicalize on cygwin.
9655         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
9656         Revert patch from 2007-06-19.
9657         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
9658         canonicalize module is also in use.
9659         * tests/test-canonicalize.c: New file.
9660         * tests/test-canonicalize.sh: Likewise.
9661         * modules/canonicalize-tests: Likewise.
9662
9663 2007-07-06  Jim Meyering  <jim@meyering.net>
9664
9665         * lib/getugroups.c (getugroups): Detect getgrent failure.
9666         Adjust comment to reflect reality: this function may return -1.
9667
9668 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
9669
9670         * build-aux/bootstrap (TP_URL,get_translations): Update to use
9671         the new TP address.
9672         (usage): Fix typo
9673         (gnulib_mk): New variable.
9674
9675 2007-07-05  Jim Meyering  <jim@meyering.net>
9676
9677         Don't let endgrent clobber errno, no matter how improbable.
9678         * lib/getugroups.c (getugroups): Save and restore errno around
9679         endgrent call.
9680
9681         Close the group DB even when failing with 2^31 or more members.
9682         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
9683
9684 2007-07-04  Jim Meyering  <jim@meyering.net>
9685
9686         * lib/getugroups.h: New file.
9687         * lib/getugroups.c: Include "getugroups.h".
9688         Remove uses of "register" keyword.
9689         Move local variable, "cp", down into scope where used.
9690         Give "username" parameter the "const" attribute.
9691         * modules/getugroups (Files): Add lib/getugroups.h
9692
9693 2007-07-04  Karl Berry  <karl@gnu.org>
9694
9695         * MODULES.html.sh (func_all_modules): Complete rename of
9696         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
9697
9698 2007-07-02  Bruno Haible  <bruno@clisp.org>
9699
9700         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
9701         mode, when inttypes.h comes from gnulib.
9702         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
9703
9704 2007-07-02  Simon Josefsson  <simon@josefsson.org>
9705
9706         * NEWS: Mention lgpl module name change.
9707
9708         * modules/lgpl-2.1: Renamed from lgpl.
9709
9710         * NEWS: Mention gpl module name change.
9711
9712         * modules/gpl-3.0: New file, based on gpl-2.0.
9713
9714         * modules/gpl-2.0: Renamed from gpl.
9715
9716         * modules/gpl: Fix filename, doc/gpl.texi is now found at
9717         doc/gpl-2.0.texi.
9718
9719 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
9720
9721         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
9722         #define __STDC_LIMIT_MACROS temporarily while including
9723         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
9724         Problem reported by Joel E. Denny in
9725         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
9726
9727 2007-07-01  Bruno Haible  <bruno@clisp.org>
9728
9729         * lib/unistdio.h: New file.
9730         * lib/unistdio/u-asnprintf.h: New file.
9731         * lib/unistdio/u-asprintf.h: New file.
9732         * lib/unistdio/u-printf-args.c: New file.
9733         * lib/unistdio/u-printf-args.h: New file.
9734         * lib/unistdio/u-printf-parse.h: New file.
9735         * lib/unistdio/u-snprintf.h: New file.
9736         * lib/unistdio/u-sprintf.h: New file.
9737         * lib/unistdio/u-vasprintf.h: New file.
9738         * lib/unistdio/u-vsnprintf.h: New file.
9739         * lib/unistdio/u-vsprintf.h: New file.
9740         * lib/unistdio/ulc-asnprintf.c: New file.
9741         * lib/unistdio/ulc-asprintf.c: New file.
9742         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
9743         * lib/unistdio/ulc-printf-parse.c: New file.
9744         * lib/unistdio/ulc-snprintf.c: New file.
9745         * lib/unistdio/ulc-sprintf.c: New file.
9746         * lib/unistdio/ulc-vasnprintf.c: New file.
9747         * lib/unistdio/ulc-vasprintf.c: New file.
9748         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
9749         * lib/unistdio/ulc-vsnprintf.c: New file.
9750         * lib/unistdio/ulc-vsprintf.c: New file.
9751         * lib/unistdio/u8-asnprintf.c: New file.
9752         * lib/unistdio/u8-asprintf.c: New file.
9753         * lib/unistdio/u8-printf-parse.c: New file.
9754         * lib/unistdio/u8-snprintf.c: New file.
9755         * lib/unistdio/u8-sprintf.c: New file.
9756         * lib/unistdio/u8-vasnprintf.c: New file.
9757         * lib/unistdio/u8-vasprintf.c: New file.
9758         * lib/unistdio/u8-vsnprintf.c: New file.
9759         * lib/unistdio/u8-vsprintf.c: New file.
9760         * lib/unistdio/u8-u8-asnprintf.c: New file.
9761         * lib/unistdio/u8-u8-asprintf.c: New file.
9762         * lib/unistdio/u8-u8-snprintf.c: New file.
9763         * lib/unistdio/u8-u8-sprintf.c: New file.
9764         * lib/unistdio/u8-u8-vasnprintf.c: New file.
9765         * lib/unistdio/u8-u8-vasprintf.c: New file.
9766         * lib/unistdio/u8-u8-vsnprintf.c: New file.
9767         * lib/unistdio/u8-u8-vsprintf.c: New file.
9768         * lib/unistdio/u16-asnprintf.c: New file.
9769         * lib/unistdio/u16-asprintf.c: New file.
9770         * lib/unistdio/u16-printf-parse.c: New file.
9771         * lib/unistdio/u16-snprintf.c: New file.
9772         * lib/unistdio/u16-sprintf.c: New file.
9773         * lib/unistdio/u16-vasnprintf.c: New file.
9774         * lib/unistdio/u16-vasprintf.c: New file.
9775         * lib/unistdio/u16-vsnprintf.c: New file.
9776         * lib/unistdio/u16-vsprintf.c: New file.
9777         * lib/unistdio/u16-u16-asnprintf.c: New file.
9778         * lib/unistdio/u16-u16-asprintf.c: New file.
9779         * lib/unistdio/u16-u16-snprintf.c: New file.
9780         * lib/unistdio/u16-u16-sprintf.c: New file.
9781         * lib/unistdio/u16-u16-vasnprintf.c: New file.
9782         * lib/unistdio/u16-u16-vasprintf.c: New file.
9783         * lib/unistdio/u16-u16-vsnprintf.c: New file.
9784         * lib/unistdio/u16-u16-vsprintf.c: New file.
9785         * lib/unistdio/u32-asnprintf.c: New file.
9786         * lib/unistdio/u32-asprintf.c: New file.
9787         * lib/unistdio/u32-printf-parse.c: New file.
9788         * lib/unistdio/u32-snprintf.c: New file.
9789         * lib/unistdio/u32-sprintf.c: New file.
9790         * lib/unistdio/u32-vasnprintf.c: New file.
9791         * lib/unistdio/u32-vasprintf.c: New file.
9792         * lib/unistdio/u32-vsnprintf.c: New file.
9793         * lib/unistdio/u32-vsprintf.c: New file.
9794         * lib/unistdio/u32-u32-asnprintf.c: New file.
9795         * lib/unistdio/u32-u32-asprintf.c: New file.
9796         * lib/unistdio/u32-u32-snprintf.c: New file.
9797         * lib/unistdio/u32-u32-sprintf.c: New file.
9798         * lib/unistdio/u32-u32-vasnprintf.c: New file.
9799         * lib/unistdio/u32-u32-vasprintf.c: New file.
9800         * lib/unistdio/u32-u32-vsnprintf.c: New file.
9801         * lib/unistdio/u32-u32-vsprintf.c: New file.
9802         * tests/unistdio/test-ulc-asnprintf1.c: New file.
9803         * tests/unistdio/test-ulc-asnprintf1.h: New file.
9804         * tests/unistdio/test-ulc-printf1.h: New file.
9805         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
9806         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
9807         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
9808         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
9809         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
9810         * tests/unistdio/test-ulc-vasprintf1.c: New file.
9811         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
9812         * tests/unistdio/test-ulc-vsprintf1.c: New file.
9813         * tests/unistdio/test-u8-asnprintf1.c: New file.
9814         * tests/unistdio/test-u8-asnprintf1.h: New file.
9815         * tests/unistdio/test-u8-printf1.h: New file.
9816         * tests/unistdio/test-u8-vasnprintf1.c: New file.
9817         * tests/unistdio/test-u8-vasnprintf2.c: New file.
9818         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
9819         * tests/unistdio/test-u8-vasnprintf3.c: New file.
9820         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
9821         * tests/unistdio/test-u8-vasprintf1.c: New file.
9822         * tests/unistdio/test-u8-vsnprintf1.c: New file.
9823         * tests/unistdio/test-u8-vsprintf1.c: New file.
9824         * tests/unistdio/test-u16-asnprintf1.c: New file.
9825         * tests/unistdio/test-u16-asnprintf1.h: New file.
9826         * tests/unistdio/test-u16-printf1.h: New file.
9827         * tests/unistdio/test-u16-vasnprintf1.c: New file.
9828         * tests/unistdio/test-u16-vasnprintf2.c: New file.
9829         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
9830         * tests/unistdio/test-u16-vasnprintf3.c: New file.
9831         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
9832         * tests/unistdio/test-u16-vasprintf1.c: New file.
9833         * tests/unistdio/test-u16-vsnprintf1.c: New file.
9834         * tests/unistdio/test-u16-vsprintf1.c: New file.
9835         * tests/unistdio/test-u32-asnprintf1.c: New file.
9836         * tests/unistdio/test-u32-asnprintf1.h: New file.
9837         * tests/unistdio/test-u32-printf1.h: New file.
9838         * tests/unistdio/test-u32-vasnprintf1.c: New file.
9839         * tests/unistdio/test-u32-vasnprintf2.c: New file.
9840         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
9841         * tests/unistdio/test-u32-vasnprintf3.c: New file.
9842         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
9843         * tests/unistdio/test-u32-vasprintf1.c: New file.
9844         * tests/unistdio/test-u32-vsnprintf1.c: New file.
9845         * tests/unistdio/test-u32-vsprintf1.c: New file.
9846         * modules/unistdio/base: New file.
9847         * modules/unistdio/u-printf-args: New file.
9848         * modules/unistdio/ulc-asnprintf: New file.
9849         * modules/unistdio/ulc-asprintf: New file.
9850         * modules/unistdio/ulc-fprintf: New file.
9851         * modules/unistdio/ulc-printf-parse: New file.
9852         * modules/unistdio/ulc-snprintf: New file.
9853         * modules/unistdio/ulc-sprintf: New file.
9854         * modules/unistdio/ulc-vasnprintf: New file.
9855         * modules/unistdio/ulc-vasprintf: New file.
9856         * modules/unistdio/ulc-vfprintf: New file.
9857         * modules/unistdio/ulc-vsnprintf: New file.
9858         * modules/unistdio/ulc-vsprintf: New file.
9859         * modules/unistdio/u8-asnprintf: New file.
9860         * modules/unistdio/u8-asprintf: New file.
9861         * modules/unistdio/u8-printf-parse: New file.
9862         * modules/unistdio/u8-snprintf: New file.
9863         * modules/unistdio/u8-sprintf: New file.
9864         * modules/unistdio/u8-vasnprintf: New file.
9865         * modules/unistdio/u8-vasprintf: New file.
9866         * modules/unistdio/u8-vsnprintf: New file.
9867         * modules/unistdio/u8-vsprintf: New file.
9868         * modules/unistdio/u8-u8-asnprintf: New file.
9869         * modules/unistdio/u8-u8-asprintf: New file.
9870         * modules/unistdio/u8-u8-snprintf: New file.
9871         * modules/unistdio/u8-u8-sprintf: New file.
9872         * modules/unistdio/u8-u8-vasnprintf: New file.
9873         * modules/unistdio/u8-u8-vasprintf: New file.
9874         * modules/unistdio/u8-u8-vsnprintf: New file.
9875         * modules/unistdio/u8-u8-vsprintf: New file.
9876         * modules/unistdio/u16-asnprintf: New file.
9877         * modules/unistdio/u16-asprintf: New file.
9878         * modules/unistdio/u16-printf-parse: New file.
9879         * modules/unistdio/u16-snprintf: New file.
9880         * modules/unistdio/u16-sprintf: New file.
9881         * modules/unistdio/u16-vasnprintf: New file.
9882         * modules/unistdio/u16-vasprintf: New file.
9883         * modules/unistdio/u16-vsnprintf: New file.
9884         * modules/unistdio/u16-vsprintf: New file.
9885         * modules/unistdio/u16-u16-asnprintf: New file.
9886         * modules/unistdio/u16-u16-asprintf: New file.
9887         * modules/unistdio/u16-u16-snprintf: New file.
9888         * modules/unistdio/u16-u16-sprintf: New file.
9889         * modules/unistdio/u16-u16-vasnprintf: New file.
9890         * modules/unistdio/u16-u16-vasprintf: New file.
9891         * modules/unistdio/u16-u16-vsnprintf: New file.
9892         * modules/unistdio/u16-u16-vsprintf: New file.
9893         * modules/unistdio/u32-asnprintf: New file.
9894         * modules/unistdio/u32-asprintf: New file.
9895         * modules/unistdio/u32-printf-parse: New file.
9896         * modules/unistdio/u32-snprintf: New file.
9897         * modules/unistdio/u32-sprintf: New file.
9898         * modules/unistdio/u32-vasnprintf: New file.
9899         * modules/unistdio/u32-vasprintf: New file.
9900         * modules/unistdio/u32-vsnprintf: New file.
9901         * modules/unistdio/u32-vsprintf: New file.
9902         * modules/unistdio/u32-u32-asnprintf: New file.
9903         * modules/unistdio/u32-u32-asprintf: New file.
9904         * modules/unistdio/u32-u32-snprintf: New file.
9905         * modules/unistdio/u32-u32-sprintf: New file.
9906         * modules/unistdio/u32-u32-vasnprintf: New file.
9907         * modules/unistdio/u32-u32-vasprintf: New file.
9908         * modules/unistdio/u32-u32-vsnprintf: New file.
9909         * modules/unistdio/u32-u32-vsprintf: New file.
9910         * modules/unistdio/ulc-asnprintf-tests: New file.
9911         * modules/unistdio/ulc-vasnprintf-tests: New file.
9912         * modules/unistdio/ulc-vasprintf-tests: New file.
9913         * modules/unistdio/ulc-vsnprintf-tests: New file.
9914         * modules/unistdio/ulc-vsprintf-tests: New file.
9915         * modules/unistdio/u8-asnprintf-tests: New file.
9916         * modules/unistdio/u8-vasnprintf-tests: New file.
9917         * modules/unistdio/u8-vasprintf-tests: New file.
9918         * modules/unistdio/u8-vsnprintf-tests: New file.
9919         * modules/unistdio/u8-vsprintf-tests: New file.
9920         * modules/unistdio/u16-asnprintf-tests: New file.
9921         * modules/unistdio/u16-vasnprintf-tests: New file.
9922         * modules/unistdio/u16-vasprintf-tests: New file.
9923         * modules/unistdio/u16-vsnprintf-tests: New file.
9924         * modules/unistdio/u16-vsprintf-tests: New file.
9925         * modules/unistdio/u32-asnprintf-tests: New file.
9926         * modules/unistdio/u32-vasnprintf-tests: New file.
9927         * modules/unistdio/u32-vasprintf-tests: New file.
9928         * modules/unistdio/u32-vsnprintf-tests: New file.
9929         * modules/unistdio/u32-vsprintf-tests: New file.
9930         * MODULES.html.sh (Unicode string functions): Add the new modules.
9931
9932 2007-07-01  Bruno Haible  <bruno@clisp.org>
9933
9934         * lib/sprintf.c (sprintf): Limit the available length estimation,
9935         to avoid address wraparound.
9936         * lib/vsprintf.c (vsprintf): Likewise.
9937         * modules/sprintf-posix (Dependencies): Add stdint.
9938         * modules/vsprintf-posix (Dependencies): Likewise.
9939
9940 2007-07-01  Bruno Haible  <bruno@clisp.org>
9941
9942         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
9943         Windows PATH as well. Conservative double-quoting. Comments.
9944
9945 2007-07-01  Bruno Haible  <bruno@clisp.org>
9946             Eric Blake  <ebb9@byu.net>
9947             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9948
9949         * gnulib-tool (self_abspathname): Fix algorithm to cope with
9950         empty components in $PATH, denoting '.'.
9951
9952 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9953
9954         * gnulib-tool: Fix indentation.
9955         (func_create_megatestdir): Likewise.
9956         Report by Bruno Haible.
9957
9958 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9959
9960         Sync from Automake.
9961         * build-aux/gnupload: Fix shell portability issues with for loops.
9962         Report by Karl Berry.
9963
9964 2007-06-29  Simon Josefsson  <simon@josefsson.org>
9965
9966         * build-aux/maint.mk (POURL): Use translationproject.org.
9967
9968 2007-06-27  Simon Josefsson  <simon@josefsson.org>
9969             Bruno Haible  <bruno@clisp.org>
9970
9971         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
9972         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
9973         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
9974         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
9975         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
9976
9977 2007-06-27  Bruno Haible  <bruno@clisp.org>
9978
9979         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
9980         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
9981
9982 2007-06-26  Karl Berry  <karl@gnu.org>
9983
9984         * MODULES.html.sh: remove xreadlink-with-size.
9985
9986 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
9987
9988         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
9989         method that I hope also handles the double-include problem noted
9990         by Bruno Haible in
9991         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
9992
9993 2007-06-23  Bruno Haible  <bruno@clisp.org>
9994
9995         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9996         Don't let the 'mostlyclean' target fail if the last subdirectory could
9997         not be removed.
9998         Reported by Karl Berry.
9999
10000 2007-06-23  Bruno Haible  <bruno@clisp.org>
10001
10002         * gnulib-tool (echo): Add a speedier workaround for ksh.
10003         * tests/test-echo.sh: Likewise.
10004
10005 2007-06-23  Bruno Haible  <bruno@clisp.org>
10006
10007         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
10008         * tests/test-echo.sh: Likewise.
10009
10010 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10011
10012         * gnulib-tool (IFS): Initialize early, so we don't set it to
10013         empty later.
10014         (self_abspathname): Rewrite algorithm to set it, reindent.
10015         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
10016         (func_create_megatestdir): Merge some sed scripts.
10017
10018 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10019
10020         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
10021         exposed by Sun Studio 11 cc on Solaris 8.
10022
10023 2007-06-22  Bruno Haible  <bruno@clisp.org>
10024
10025         * gnulib-tool (echo): Ensure the echo primitive does not interpret
10026         backslashes.
10027         * tests/test-echo.sh: New file.
10028
10029 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10030
10031         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
10032         simplify `sed_replace_build_aux' scripts, they are portable but
10033         echoing them with `echo' is not.
10034         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
10035
10036 2007-06-21  Karl Berry  <karl@gnu.org>
10037
10038         * config/srclist.txt: guess we can't handle the licenses via
10039         srclist at the moment.
10040
10041 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
10042
10043         * MODULES.html.sh: Add include_next.
10044         * modules/include_next: New file.
10045
10046 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
10047
10048         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
10049         INCLUDE_NEXT.
10050         (gl_CHECK_NEXT_HEADERS): New macro.
10051         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
10052         the obsolescent gl_ABSOLUTE_HEADER.
10053         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
10054         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
10055         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
10056         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
10057         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
10058         * m4/math_h.m4 (gl_MATH_H): Likewise.
10059         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
10060         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
10061         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
10062         * m4/stdint.m4 (gl_STDINT_H): Likewise.
10063         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
10064         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
10065         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
10066         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
10067         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
10068         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
10069         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
10070         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
10071         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
10072         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
10073         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
10074         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
10075         * m4/inttypes.m4 (gl_INTTYPES_H): Define
10076         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
10077         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
10078         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
10079         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
10080         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
10081         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
10082         * lib/float_.h: Likewise.
10083         * lib/inttypes_.h: Likewise.
10084         * lib/math_.h: Likewise.
10085         * lib/search_.h: Likewise.
10086         * lib/signal_.h: Likewise.
10087         * lib/stdint_.h: Likewise.
10088         * lib/stdio_.h: Likewise.
10089         * lib/stdlib_.h: Likewise.
10090         * lib/string_.h: Likewise.
10091         * lib/sys_stat_.h: Likewise.
10092         * lib/sys_time_.h: Likewise.
10093         * lib/time_.h: Likewise.
10094         * lib/unistd_.h: Likewise.
10095         * lib/wchar_.h: Likewise.
10096         * lib/wctype_.h: Likewise.
10097         * lib/dirent_.h: Likewise.
10098         * lib/iconv_.h: Likewise.
10099         * lib/locale_.h: Likewise.
10100         * lib/netinet_in_.h: Likewise.
10101         * lib/sys_select_.h: Likewise.
10102         * lib/sys_socket_.h: Likewise.
10103         * lib/sysexits_.h: Likewise.
10104         * modules/fcntl (Depends-on): Depend on include_next, not
10105         absolute_header.
10106         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
10107         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
10108         * modules/fchdir: Likewise.
10109         * modules/float: Likewise.
10110         * modules/iconv_open: Likewise.
10111         * modules/inttypes: Likewise.
10112         * modules/locale: Likewise.
10113         * modules/math: Likewise.
10114         * modules/netinet_in: Likewise.
10115         * modules/search: Likewise.
10116         * modules/signal: Likewise.
10117         * modules/stdint: Likewise.
10118         * modules/stdio: Likewise.
10119         * modules/stdlib: Likewise.
10120         * modules/string: Likewise.
10121         * modules/sys_select: Likewise.
10122         * modules/sys_socket: Likewise.
10123         * modules/sys_stat: Likewise.
10124         * modules/sys_time: Likewise.
10125         * modules/sysexits: Likewise.
10126         * modules/time: Likewise.
10127         * modules/unistd: Likewise.
10128         * modules/wchar: Likewise.
10129         * modules/wctype: Likewise.
10130         * modules/sys_stat: Change maintainer to "all".
10131         * modules/unistd: Likewise.
10132
10133 2007-06-20  Karl Berry  <karl@gnu.org>
10134
10135         * config/srclist.txt: track www changes in license files.
10136
10137 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
10138
10139         * build-aux/bootstrap: Remove stray dot.
10140         Make sure build_aux settings are honored when linking
10141         gnulib_extra_files.
10142
10143 2007-06-19  Eric Blake  <ebb9@byu.net>
10144
10145         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
10146         Allow compilation on cygwin.
10147
10148 2007-06-19  Jim Meyering  <jim@meyering.net>
10149
10150         xreadlink-with-size: Remove module.  No longer used.
10151         Ex-callers now use xreadlink or mreadlink-with-size.
10152         * modules/xreadlink-with-size: Remove module.
10153         * lib/xreadlink-with-size.c: Remove file.
10154         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
10155         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
10156         just before the function definition *is* accurate.
10157
10158         Eliminate one way canonicalize_filename_mode could exit.
10159         * lib/canonicalize.c (canonicalize_filename_mode):
10160         Use mreadlink_with_size, not xreadlink_with_size.
10161
10162 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
10163
10164         Detect porting problems to FreeBSD/arm, which has time_t wider than
10165         long int.  Original problem reported for GNU diff by Xin Li in
10166         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
10167         * modules/getdate (Depends-on): Add intprops, verify.
10168         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
10169         is an integer type no wider than long int.
10170
10171 2007-06-18  Jim Meyering  <jim@meyering.net>
10172
10173         New module: mreadlink-with-size.
10174         * MODULES.html.sh: Add mreadlink-with-size.
10175         * modules/mreadlink-with-size: New module
10176         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
10177         not xreadlink-with-size.
10178         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
10179
10180 2007-06-16  Bruno Haible  <bruno@clisp.org>
10181
10182         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
10183         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
10184         Reported by Gary V. Vaughan <gary@gnu.org>.
10185
10186 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
10187
10188         Revamp lchown so that it lives in unistd.h where it belongs.
10189         * lib/lchown.h: Remove.
10190         * lib/dirchownmod.c: Don't include lib/lchown.h.
10191         * lib/fchownat.c: Likewise.
10192         * lib/openat.c: Likewise.
10193         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
10194         does not follow symlinks.
10195         (EOPNOTSUPP): Define if not defined.
10196         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
10197         is defined to 0.
10198         (lchown): New decl.
10199         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
10200         Do not check for lchown decl.
10201         Set REPLACE_LCHOWN.
10202         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
10203         REPLACE_LCHOWN.
10204         * modules/chown: Make it clear it follows symlinks.
10205         * modules/lchown: Make it clear it doesn't follow symlinks.
10206         (Files): Remove lib/lchown.h
10207         (Depends-on): Add unistd.
10208         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
10209         (Include): Include <unistd.h>, not "lchown.h".
10210         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
10211         REPLACE_LCHOWN.
10212
10213 2007-06-15  Jim Meyering  <jim@meyering.net>
10214
10215         Change license (GPL to LGPL) of fsusage and dependents.
10216         * modules/fsusage (License): Change to LGPL.
10217         * modules/full-read (License): Likewise.
10218         * modules/full-write (License): Likewise.
10219         * modules/safe-read (License): Likewise.
10220         * modules/safe-write (License): Likewise.
10221
10222 2007-06-14  Ben Pfaff  <blp@gnu.org>
10223
10224         Missing part of allocsa -> malloca transition.
10225         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
10226         gl_MALLOCA.
10227
10228 2007-06-12  Bruno Haible  <bruno@clisp.org>
10229
10230         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
10231         to ia64, x86_64, i386.
10232         Reported by Eric Blake.
10233
10234 2007-06-12  Bruno Haible  <bruno@clisp.org>
10235
10236         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
10237         cross-compiling to x86_64.
10238
10239 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
10240
10241         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
10242         glitch reported by Ralf Wildenhues in
10243         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
10244
10245         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
10246         Vin Shelton.
10247
10248 2007-06-11  Bruno Haible  <bruno@clisp.org>
10249
10250         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
10251         replacement string.
10252         Reported by Eric Blake.
10253
10254 2007-06-10  Bruno Haible  <bruno@clisp.org>
10255
10256         Prepare vasnprintf code for use with Unicode strings.
10257         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
10258         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
10259         TYPE_U32_STRING.
10260         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
10261         a_u32_string variants.
10262         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
10263         * lib/printf-args.c: Don't include config.h and the specification
10264         header if PRINTF_FETCHARGS is already defined.
10265         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
10266         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
10267         TYPE_U16_STRING, TYPE_U32_STRING.
10268         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
10269         u16_directive, u16_directives, u32_directive, u32_directives): New
10270         types.
10271         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
10272         New declarations.
10273         * lib/printf-parse.c: Don't include config.h and the specification
10274         header if PRINTF_PARSE is already defined. Eliminate the set of
10275         parameters for WIDE_CHAR_VERSION; the user of this file must provide
10276         them now. Include c-ctype.h.
10277         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
10278         directive and CHAR_T_ONLY_ASCII.
10279         * lib/vasnprintf.c: Don't include config.h and the specification header
10280         if VASNPRINTF is already defined.
10281         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
10282         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
10283         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
10284         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
10285         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
10286         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
10287         code accordingly.
10288         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
10289         pad_ourselves also in this case, with the 'c' and 's' directives, and
10290         with a different notion of "width".
10291         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
10292
10293 2007-06-10  Bruno Haible  <bruno@clisp.org>
10294
10295         * modules/unistr/u32-mbsnlen: New file.
10296         * lib/unistr/u32-mbsnlen.c: New file.
10297
10298         * modules/unistr/u16-mbsnlen: New file.
10299         * lib/unistr/u16-mbsnlen.c: New file.
10300
10301         * modules/unistr/u8-mbsnlen: New file.
10302         * lib/unistr/u8-mbsnlen.c: New file.
10303
10304         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
10305         declarations.
10306
10307 2007-06-10  Bruno Haible  <bruno@clisp.org>
10308
10309         * lib/string_.h (mbsnlen): New declaration.
10310         * lib/mbsnlen.c: New file.
10311         * m4/mbsnlen.m4: New file.
10312         * modules/mbsnlen: New file.
10313         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
10314         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
10315         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
10316
10317 2007-06-10  Bruno Haible  <bruno@clisp.org>
10318
10319         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
10320
10321 2007-06-10  Bruno Haible  <bruno@clisp.org>
10322
10323         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
10324         * lib/mbuiter.h: Likewise.
10325
10326 2007-06-10  Bruno Haible  <bruno@clisp.org>
10327
10328         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
10329         declaration.
10330
10331 2007-06-10  Karl Berry  <karl@gnu.org>
10332
10333         * config/srclist.txt: remove gettext entries, Bruno prefers
10334         to update individually.
10335
10336 2007-06-10  Bruno Haible  <bruno@clisp.org>
10337
10338         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
10339         'maxlen'. Ensure only length + width bytes are allocated, not
10340         length + 1 + width.
10341
10342 2007-06-09  Bruno Haible  <bruno@clisp.org>
10343
10344         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
10345         (CHAR_T): Remove macro.
10346         (VASNPRINTF): Update.
10347
10348 2007-06-09  Bruno Haible  <bruno@clisp.org>
10349
10350         * MODULES.html.sh (Unicode string functions): Add the new modules.
10351
10352         * modules/uniconv/u32-conv-to-enc: New file.
10353         * lib/uniconv/u32-conv-to-enc.c: New file.
10354         * modules/uniconv/u32-conv-to-enc-tests: New file.
10355         * tests/uniconv/test-u32-conv-to-enc.c: New file.
10356
10357         * modules/uniconv/u16-conv-to-enc: New file.
10358         * lib/uniconv/u16-conv-to-enc.c: New file.
10359         * lib/uniconv/u-conv-to-enc.h: New file.
10360         * modules/uniconv/u16-conv-to-enc-tests: New file.
10361         * tests/uniconv/test-u16-conv-to-enc.c: New file.
10362
10363         * modules/uniconv/u8-conv-to-enc: New file.
10364         * lib/uniconv/u8-conv-to-enc.c: New file.
10365         * modules/uniconv/u8-conv-to-enc-tests: New file.
10366         * tests/uniconv/test-u8-conv-to-enc.c: New file.
10367
10368         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
10369         u32_conv_to_encoding): New declarations.
10370
10371 2007-06-09  Bruno Haible  <bruno@clisp.org>
10372
10373         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
10374
10375 2007-06-09  Bruno Haible  <bruno@clisp.org>
10376
10377         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
10378         * modules/malloca: Renamed from modules/allocsa, updated.
10379         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
10380         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
10381         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
10382         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
10383         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
10384         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
10385         * modules/xmalloca: Renamed from modules/xallocsa, updated.
10386         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
10387         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
10388         * modules/c-strcasestr (Depends-on): Update.
10389         * lib/c-strcasestr.c: Update.
10390         * modules/c-strstr (Depends-on): Update.
10391         * lib/c-strstr.c: Update.
10392         * modules/canonicalize-lgpl (Depends-on): Update.
10393         * lib/canonicalize-lgpl.c: Update.
10394         * modules/clean-temp (Depends-on): Update.
10395         * lib/clean-temp.c: Update.
10396         * modules/csharpcomp (Depends-on): Update.
10397         * lib/csharpcomp.c: Update.
10398         * modules/csharpexec (Depends-on): Update.
10399         * lib/csharpexec.c: Update.
10400         * modules/javacomp (Depends-on): Update.
10401         * lib/javacomp.c: Update.
10402         * modules/javaexec (Depends-on): Update.
10403         * lib/javaexec.c: Update.
10404         * modules/mbscasestr (Depends-on): Update.
10405         * lib/mbscasestr.c: Update.
10406         * modules/mbsstr (Depends-on): Update.
10407         * lib/mbsstr.c: Update.
10408         * modules/setenv (Depends-on): Update.
10409         * lib/setenv.c: Update.
10410         * modules/strcasestr (Depends-on): Update.
10411         * lib/strcasestr.c: Update.
10412         * modules/striconveha (Depends-on): Update.
10413         * lib/striconveha.c: Update.
10414         * modules/relocatable-prog-wrapper (Files): Update.
10415         * lib/relocwrapper.c: Update.
10416         * build-aux/install-reloc: Update.
10417         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
10418
10419 2007-06-08  Bruno Haible  <bruno@clisp.org>
10420
10421         Port to uClibc.
10422         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
10423         * lib/fpurge.c (fpurge): Likewise.
10424         * lib/freading.c (freading): Likewise.
10425         * lib/fseeko.c (rpl_fseeko): Likewise.
10426         * lib/fseterr.c (fseterr): Likewise.
10427         * lib/fwriting.c (fwriting): Likewise.
10428         * tests/test-fflush.c (main): Avoid a failure on uClibc.
10429
10430 2007-06-08  Bruno Haible  <bruno@clisp.org>
10431
10432         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
10433         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
10434         * modules/gettext (Files): Add m4/intlmacosx.m4.
10435
10436 2007-06-07  Bruno Haible  <bruno@clisp.org>
10437
10438         * modules/localename-tests: New file.
10439         * tests/test-localename.c: New file.
10440
10441         New module 'localename'.
10442         * lib/localename.h: New file.
10443         * lib/localename.c: New file, from GNU gettext.
10444         * m4/localename.m4: New file.
10445         * modules/localename: New file.
10446
10447 2007-06-07  Bruno Haible  <bruno@clisp.org>
10448
10449         Work around the lack of <wchar.h> on some builds of uClibc.
10450         * doc/headers/wchar.texi: Update.
10451         * lib/wchar_.h: Include <wchar.h> only if it exists.
10452         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
10453         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
10454         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
10455         doesn't exist.
10456         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
10457         * modules/mbfile (Depends-on): Add wchar.
10458         * modules/mbiter (Depends-on): Likewise.
10459         * modules/mbuiter (Depends-on): Likewise.
10460         Reported by Simon Josefsson.
10461
10462 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
10463
10464         Work around problem reported by Steven M. Schweda in
10465         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
10466         Tru64 5.1B with the Compaq compiler environment installed declares
10467         an 'isblank' function but does not define it in the C library.
10468         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
10469         * lib/regex_internal.h (isblank): Likewise.
10470         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
10471         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10472
10473 2007-06-05  Bruno Haible  <bruno@clisp.org>
10474
10475         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
10476         ia64.
10477         * modules/printf-safe: New file.
10478         * modules/fprintf-posix (Depends-on): Add printf-safe.
10479         * modules/printf-posix (Depends-on): Likewise.
10480         * modules/snprintf-posix (Depends-on): Likewise.
10481         * modules/sprintf-posix (Depends-on): Likewise.
10482         * modules/vasnprintf-posix (Depends-on): Likewise.
10483         * modules/vasprintf-posix (Depends-on): Likewise.
10484         * modules/vfprintf-posix (Depends-on): Likewise.
10485         * modules/vprintf-posix (Depends-on): Likewise.
10486         * modules/vsnprintf-posix (Depends-on): Likewise.
10487         * modules/vsprintf-posix (Depends-on): Likewise.
10488         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
10489         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
10490         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
10491         "no" on i386, x86_64, ia64.
10492         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
10493         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
10494         on i386, x86_64, ia64.
10495         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
10496         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
10497         on i386, x86_64, ia64.
10498         * tests/test-vasnprintf-posix.c: Include float.h.
10499         (LDBL80_WORDS): New macro.
10500         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
10501         on i386, x86_64, ia64.
10502         * tests/test-vasprintf-posix.c: Include float.h.
10503         (LDBL80_WORDS): New macro.
10504         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
10505         on i386, x86_64, ia64.
10506         * tests/test-snprintf-posix.c: Include float.h.
10507         * tests/test-sprintf-posix.c: Likewise.
10508         * tests/test-vsnprintf-posix.c: Likewise.
10509         * tests/test-vsprintf-posix.c: Likewise.
10510
10511 2007-06-05  Bruno Haible  <bruno@clisp.org>
10512
10513         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
10514         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
10515         non-IEEE numbers on i386, x86_64, ia64.
10516         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
10517         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
10518         * tests/test-isnanl.h: Include float.h.
10519         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
10520
10521 2007-06-05  Bruno Haible  <bruno@clisp.org>
10522
10523         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
10524         also the %a / %A. Handle the %a / %A code before this extra handling.
10525
10526 2007-06-05  Bruno Haible  <bruno@clisp.org>
10527
10528         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
10529         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
10530
10531 2007-06-05  Bruno Haible  <bruno@clisp.org>
10532
10533         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
10534         typo in variable name.
10535
10536 2007-06-05  Eric Blake  <ebb9@byu.net>
10537
10538         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
10539         Reported by Simon Josefsson.
10540
10541 2007-06-04  Bruno Haible  <bruno@clisp.org>
10542
10543         Avoid test failures on some PowerPC platforms.
10544         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
10545         Define differently for PowerPC.
10546         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
10547         Reported by Gary V. Vaughan <gary@gnu.org>.
10548
10549 2007-06-02  Bruno Haible  <bruno@clisp.org>
10550
10551         Fix test-stdint failure on FreeBSD/ia64.
10552         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
10553         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
10554         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
10555         * doc/headers/stdint.texi: Update.
10556
10557 2007-06-01  Bruno Haible  <bruno@clisp.org>
10558
10559         * tests/test-binary-io.c (main): Pass a third argument to open().
10560         Reported by Gary V. Vaughan <gary@gnu.org>.
10561
10562 2007-06-01  Bruno Haible  <bruno@clisp.org>
10563
10564         * doc/functions/frexpl.texi: Update for mingw.
10565
10566 2007-06-01  Bruno Haible  <bruno@clisp.org>
10567
10568         * tests/test-lseek.c (main): Disable test of errno for invalid third
10569         argument.
10570         * doc/functions/lseek.texi: Update.
10571         Reported by Gary V. Vaughan <gary@gnu.org>.
10572
10573 2007-05-28  Bruno Haible  <bruno@clisp.org>
10574
10575         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
10576
10577 2007-05-31  Eric Blake  <ebb9@byu.net>
10578
10579         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
10580         cross compiling.
10581
10582 2007-05-30  Eric Blake  <ebb9@byu.net>
10583         and Bruno Haible  <bruno@clisp.org>
10584
10585         Work around mingw test failures exposed by m4-1.4.9b.
10586         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
10587         * tests/test-unistd.c: Disable uid_t and git_t tests for the
10588         moment.
10589
10590 2007-05-30  Bruno Haible  <bruno@clisp.org>
10591
10592         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
10593         assuming that they are closed. Needed on HP-UX 11.
10594
10595 2007-05-29  Bruno Haible  <bruno@clisp.org>
10596
10597         Fix a problem with #include_next.
10598         * lib/dirent_.h: Split the double-inclusion guard.
10599         * lib/fcntl_.h: Likewise.
10600         * lib/float_.h: Likewise.
10601         * lib/iconv_.h: Likewise.
10602         * lib/inttypes_.h: Likewise.
10603         * lib/locale_.h: Likewise.
10604         * lib/math_.h: Likewise.
10605         * lib/netinet_in_.h: Likewise.
10606         * lib/search_.h: Likewise.
10607         * lib/signal_.h: Likewise.
10608         * lib/stdint_.h: Likewise.
10609         * lib/stdio_.h: Likewise.
10610         * lib/stdlib_.h: Likewise.
10611         * lib/string_.h: Likewise.
10612         * lib/sys_select_.h: Likewise.
10613         * lib/sys_socket_.h: Likewise.
10614         * lib/sys_stat_.h: Likewise.
10615         * lib/sys_time_.h: Likewise.
10616         * lib/sysexits_.h: Likewise.
10617         * lib/time_.h: Likewise.
10618         * lib/unistd_.h: Likewise.
10619         * lib/wchar_.h: Likewise.
10620         * lib/wctype_.h: Likewise.
10621
10622 2007-05-29  Bruno Haible  <bruno@clisp.org>
10623
10624         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
10625         for the moment.
10626
10627 2007-05-29  Bruno Haible  <bruno@clisp.org>
10628
10629         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
10630         invocation.
10631         Reported by Eric Blake.
10632
10633 2007-05-29  Bruno Haible  <bruno@clisp.org>
10634
10635         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
10636         compiling case.
10637
10638 2007-05-29  Eric Blake  <ebb9@byu.net>
10639             Bruno Haible  <bruno@clisp.org>
10640
10641         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
10642         cross compiles.
10643
10644 2007-05-28  Eric Blake  <ebb9@byu.net>
10645
10646         * modules/closein-tests (test_closein_LDADD): Support test on
10647         cygwin with libtool.
10648
10649 2007-05-28  Bruno Haible  <bruno@clisp.org>
10650
10651         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
10652         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
10653         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
10654         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
10655         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
10656         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
10657         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
10658         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
10659         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
10660
10661 2007-05-28  Eric Blake  <ebb9@byu.net>
10662
10663         Unconditionally include <config.h> in unit tests.
10664         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
10665         * tests/test-allocsa.c, tests/test-arcfour.c,
10666         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
10667         tests/test-array_list.c, tests/test-array_oset.c,
10668         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
10669         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
10670         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
10671         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
10672         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
10673         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
10674         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
10675         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
10676         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
10677         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
10678         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
10679         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
10680         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
10681         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
10682         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
10683         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
10684         test-md5.c, test-memmem.c, test-printf-posix.c,
10685         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
10686         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
10687         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
10688         test-strcasestr.c, test-striconv.c, test-striconveh.c,
10689         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
10690         test-vasnprintf-posix2.c, test-vasnprintf.c,
10691         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
10692         test-vfprintf-posix.c, test-vprintf-posix.c,
10693         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
10694         test-xvasprintf.c: Likewise.
10695
10696 2007-05-28  Bruno Haible  <bruno@clisp.org>
10697
10698         * gnulib-tool (func_import): Remember the --with-tests command-line
10699         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
10700         Reported by Eric Blake.
10701
10702 2007-05-28  Bruno Haible  <bruno@clisp.org>
10703
10704         * modules/ftell-tests: New file.
10705         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
10706         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
10707
10708         * lib/ftell.c: New file.
10709         * modules/ftell: New file.
10710         * m4/ftell.m4: New file.
10711         * doc/functions/ftell.texi: Update.
10712         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
10713         REPLACE_FTELL.
10714         * lib/stdio_.h (rpl_ftell): New declaration.
10715         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
10716         REPLACE_FTELL.
10717
10718 2007-05-28  Eric Blake  <ebb9@byu.net>
10719
10720         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
10721
10722 2007-05-28  Bruno Haible  <bruno@clisp.org>
10723
10724         * modules/fseek-tests: New file.
10725         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
10726         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
10727
10728         * lib/fseek.c: New file.
10729         * modules/fseek: New file.
10730         * m4/fseek.m4: New file.
10731         * doc/functions/fseek.texi: Update.
10732         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
10733         REPLACE_FSEEK.
10734         * lib/stdio_.h (rpl_fseek): New declaration.
10735         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
10736         REPLACE_FSEEK.
10737
10738 2007-05-28  Bruno Haible  <bruno@clisp.org>
10739
10740         * lib/stdio_.h (fflush): More comments.
10741
10742 2007-05-28  Bruno Haible  <bruno@clisp.org>
10743
10744         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
10745         runtime test.
10746
10747 2007-05-28  Eric Blake  <ebb9@byu.net>
10748
10749         Improve lseek module.
10750         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
10751         * lib/unistd_.h (lseek): Scale back link warning message.
10752         * tests/test-lseek.c: Beef up test.
10753         * tests/test-lseek.sh: Exercise more facets of lseek.
10754         Reported by Bruno Haible.
10755
10756 2007-05-28  Bruno Haible  <bruno@clisp.org>
10757
10758         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
10759         to define.
10760
10761 2007-05-27  Bruno Haible  <bruno@clisp.org>
10762
10763         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
10764
10765 2007-05-27  Bruno Haible  <bruno@clisp.org>
10766
10767         * modules/openmp: New file.
10768         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
10769         Noah Misch.
10770
10771 2007-05-26  Bruno Haible  <bruno@clisp.org>
10772
10773         * modules/chdir-long (Depends-on): Add fchdir.
10774         * modules/chdir-safer (Depends-on): Likewise.
10775         * modules/fts (Depends-on): Likewise.
10776         * modules/fts-lgpl (Depends-on): Likewise.
10777         * modules/openat (Depends-on): Likewise.
10778         * modules/savewd (Depends-on): Likewise.
10779
10780 2007-05-24  Eric Blake  <ebb9@byu.net>
10781
10782         Fix lseek on mingw.
10783         * modules/lseek: New module.
10784         * m4/lseek.m4: New file.
10785         * lib/lseek.c: New file.
10786         * modules/lseek-tests: New file.
10787         * tests/test-lseek.c: New file.
10788         * tests/test-lseek.sh: New file.
10789         * MODULES.html.sh: Document lseek module.
10790         * modules/fflush (Depends-on): Add lseek, fseeko.
10791         * modules/fseeko (Depends-on): Likewise.
10792         * modules/ftello (Depends-on): Likewise.
10793         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
10794         broken.
10795         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
10796         broken.
10797         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
10798         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
10799         * lib/ftello.c (rpl_ftello): Likewise.
10800         * tests/test-fseeko.c (main): Test this.
10801         * tests/test-fseeko.sh: Likewise.
10802         * tests/test-ftello.c (main): Likewise.
10803         * tests/test-ftello.sh: Likewise.
10804         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
10805         implies replacing fseek.
10806         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
10807         HAVE_FTELLO.
10808         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
10809         * modules/unistd (Makefile.am): Likewise.
10810         * lib/unistd_.h (lseek): Declare a replacement.
10811         * doc/functions/lseek.texi (lseek): Document this fix.
10812         * doc/functions/fseek.texi (fseek): Likewise.
10813         * doc/functions/ftell.texi (ftell): Likewise.
10814
10815 2007-05-24  Bruno Haible  <bruno@clisp.org>
10816
10817         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
10818         in the printed representation of a NaN.
10819         * tests/test-vasprintf-posix.c (test_function): Likewise.
10820         * tests/test-snprintf-posix.h (test_function): Likewise.
10821         * tests/test-sprintf-posix.h (test_function): Likewise.
10822         Reported by Eric Blake.
10823
10824 2007-05-23  Eric Blake  <ebb9@byu.net>
10825
10826         Fix fseeko/ftello on cygwin 1.5.24.
10827         * doc/functions/fseeko.texi (fseeko): Document the fix.
10828         * doc/functions/ftello.texi (ftello): Document the fix.
10829         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
10830         * doc/functions/stdout.text (stdout): New file.
10831         * doc/functions/stderr.text (stderr): New file.
10832         * doc/gnulib.texi (Function Substitutes): Use new files.
10833         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
10834         prior to 1.7.0.
10835         * tests/test-ftello.c (main): Likewise for ftello.
10836         * tests/test-fseeko.sh: New file.
10837         * tests/test-ftello.sh: New file.
10838         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
10839         with seekable stdin.
10840         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
10841         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
10842         (gl_REPLACE_FSEEKO): New macro.
10843         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
10844         * modules/fseeko (Files): Distribute fseeko.c.
10845         * modules/ftello (Files): Distribute ftello.c.
10846         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
10847         mode.
10848         * lib/ftello.c (rpl_ftello): New file.
10849         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
10850         fseeko, ftello.
10851         (gl_STDIN_LARGE_OFFSET): New macro.
10852         * modules/stdio (Makefile.am): Perform the replacement.
10853         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
10854
10855 2007-05-23  Bruno Haible  <bruno@clisp.org>
10856
10857         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
10858         GNULIB_POSIXCHECK is defined.
10859
10860 2007-05-21  Bruno Haible  <bruno@clisp.org>
10861
10862         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
10863         Check also the output for NaN arguments. When cross-compiling, guess
10864         no on IRIX.
10865         * lib/vasnprintf.c: Update comments.
10866         * tests/test-vasnprintf-posix.c (strisnan): New function.
10867         (test_function): Use it.
10868         * tests/test-vasprintf-posix.c (strisnan): New function.
10869         (test_function): Use it.
10870         * tests/test-snprintf-posix.h (strisnan): New function.
10871         (test_function): Use it.
10872         * tests/test-sprintf-posix.h (strisnan): New function.
10873         (test_function): Use it.
10874         Reported by Eric Blake.
10875
10876 2007-05-20  Bruno Haible  <bruno@clisp.org>
10877
10878         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
10879         numbers that fails on BeOS.
10880         * doc/functions/frexpl.texi: Update.
10881
10882 2007-05-20  Jim Meyering  <jim@meyering.net>
10883
10884         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
10885         forced upon us by glibc-2.6.
10886
10887 2007-05-20  Bruno Haible  <bruno@clisp.org>
10888
10889         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
10890         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
10891         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
10892         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
10893         NEED_PRINTF_INFINITE.
10894         (is_infinitel): New function.
10895         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
10896         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
10897         gl_PREREQ_VASNPRINTF_INFINITE.
10898         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
10899         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10900         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
10901         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
10902         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
10903         gl_PREREQ_VASNPRINTF_INFINITE.
10904         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
10905         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10906         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10907         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10908         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10909         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10910         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10911         * doc/functions/fprintf.texi: Update.
10912         * doc/functions/printf.texi: Update.
10913         * doc/functions/snprintf.texi: Update.
10914         * doc/functions/sprintf.texi: Update.
10915         * doc/functions/vfprintf.texi: Update.
10916         * doc/functions/vprintf.texi: Update.
10917         * doc/functions/vsnprintf.texi: Update.
10918         * doc/functions/vsprintf.texi: Update.
10919
10920 2007-05-20  Bruno Haible  <bruno@clisp.org>
10921
10922         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
10923         was not found in libc.
10924         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
10925
10926 2007-05-20  Bruno Haible  <bruno@clisp.org>
10927
10928         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
10929         printed as "-nan" instead of "nan".
10930         * tests/test-vasprintf-posix.c (test_function): Likewise.
10931         * tests/test-snprintf-posix.h (test_function): Likewise.
10932         * tests/test-sprintf-posix.h (test_function): Likewise.
10933         Needed for HP-UX 11.
10934
10935 2007-05-20  Jim Meyering  <jim@meyering.net>
10936
10937         Fix buggy test for the fchownat-deref bug.
10938         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
10939         symlink required for the run-test.  Without it, this test would
10940         always declare that fchownat doesn't work, and client code would
10941         unnecessarily use the replacement function with fixed libc.
10942         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
10943         Reported by Greg Schafer.
10944
10945 2007-05-19  Bruno Haible  <bruno@clisp.org>
10946
10947         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
10948         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
10949         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
10950         Needed for IRIX 6.5 and Solaris 2.5.1.
10951
10952 2007-05-19  Bruno Haible  <bruno@clisp.org>
10953
10954         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
10955         (test_function): Skip tests involving -0.0 on platforms where
10956         -0.0 = 0.0.
10957         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
10958         (test_function): Skip tests involving -0.0 on platforms where
10959         -0.0 = 0.0.
10960         * tests/test-snprintf-posix.h (have_minus_zero): New function.
10961         (test_function): Skip tests involving -0.0 on platforms where
10962         -0.0 = 0.0.
10963         * tests/test-sprintf-posix.h (have_minus_zero): New function.
10964         (test_function): Skip tests involving -0.0 on platforms where
10965         -0.0 = 0.0.
10966         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
10967         tests.
10968         * tests/test-printf-posix.h (test_function): Likewise.
10969         * tests/test-printf-posix.output: Remove all -0.0 related results.
10970         Needed for IRIX 6.5.
10971
10972 2007-05-19  Bruno Haible  <bruno@clisp.org>
10973
10974         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
10975         printed as "nan0x7fffffff" instead of "nan".
10976         * tests/test-vasprintf-posix.c (test_function): Likewise.
10977         * tests/test-snprintf-posix.h (test_function): Likewise.
10978         * tests/test-sprintf-posix.h (test_function): Likewise.
10979         * tests/test-fprintf-posix.h (NaN): Remove macro.
10980         (test_function): Remove all NaN related tests.
10981         * tests/test-printf-posix.h (NaN): Remove macro.
10982         (test_function): Remove all NaN related tests.
10983         * tests/test-printf-posix.output: Remove all NaN related results.
10984         Needed for IRIX 6.5.
10985
10986 2007-05-19  Bruno Haible  <bruno@clisp.org>
10987
10988         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
10989         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
10990
10991 2007-05-19  Bruno Haible  <bruno@clisp.org>
10992
10993         * lib/float_.h: New file.
10994         * m4/float_h.m4: New file.
10995         * modules/float: New file.
10996         * modules/isnanl (Dependencies): Add float.
10997         * modules/isnanl-nolibm (Dependencies): Likewise.
10998         * modules/mathl (Dependencies): Likewise.
10999         * modules/printf-frexpl (Dependencies): Likewise.
11000         * modules/signbit (Dependencies): Likewise.
11001         * modules/vasnprintf (Dependencies): Likewise.
11002         * doc/headers/float.texi: Update.
11003
11004 2007-05-19  Jim Meyering  <jim@meyering.net>
11005
11006         * lib/utimens.c (gl_futimens): Rename from futimens,
11007         now that glibc-2.6 declares futimens.
11008         * lib/utimens.h: Likewise.
11009
11010 2007-05-19  Bruno Haible  <bruno@clisp.org>
11011
11012         Avoid test failures on mingw.
11013         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
11014         * tests/test-printf-posix.sh: Likewise.
11015         * tests/test-vfprintf-posix.sh: Likewise.
11016         * tests/test-vprintf-posix.sh: Likewise.
11017
11018 2007-05-19  Bruno Haible  <bruno@clisp.org>
11019
11020         Fix *printf result for NaN, Inf, -0.0 on mingw.
11021         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
11022         * lib/vasnprintf.c: Include math.h and isnan.h.
11023         (is_infinite_or_zero): New function.
11024         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
11025         values in the %f, %F, %e, %E, %g, %G directives.
11026         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
11027         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
11028         gl_PRINTF_INFINITE and test its result. Invoke
11029         gl_PREREQ_VASNPRINTF_INFINITE.
11030         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
11031         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11032         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11033         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11034         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11035         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11036         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11037         * doc/functions/fprintf.texi: Update.
11038         * doc/functions/printf.texi: Update.
11039         * doc/functions/snprintf.texi: Update.
11040         * doc/functions/sprintf.texi: Update.
11041         * doc/functions/vfprintf.texi: Update.
11042         * doc/functions/vprintf.texi: Update.
11043         * doc/functions/vsnprintf.texi: Update.
11044         * doc/functions/vsprintf.texi: Update.
11045
11046 2007-05-19  Bruno Haible  <bruno@clisp.org>
11047
11048         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
11049         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
11050         Instead of multiplying with 10^k, set extra_zeroes to k.
11051         (scale10_round_long_double): Remove function.
11052
11053 2007-05-18  Bruno Haible  <bruno@clisp.org>
11054
11055         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
11056         introduced on 2007-05-06.
11057
11058 2007-05-18  Bruno Haible  <bruno@clisp.org>
11059
11060         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
11061         %g directives.
11062         * tests/test-vasprintf-posix.c (test_function): Likewise.
11063         * tests/test-snprintf-posix.h (test_function): Likewise.
11064         * tests/test-sprintf-posix.h (test_function): Likewise.
11065
11066 2007-05-18  Bruno Haible  <bruno@clisp.org>
11067
11068         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
11069         (strmatch): New function.
11070         (test_function): Test the %f directive on numbers of various exponents.
11071         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
11072         (strmatch): New function.
11073         (test_function): Test the %f directive on numbers of various exponents.
11074         * tests/test-snprintf-posix.h (strmatch): New function.
11075         (test_function): Test the %f directive on numbers of various exponents.
11076         * tests/test-sprintf-posix.h (strmatch): New function.
11077         (test_function): Test the %f directive on numbers of various exponents.
11078         * tests/test-snprintf-posix.c (SIZEOF): New macro.
11079         * tests/test-sprintf-posix.c (SIZEOF): New macro.
11080         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
11081         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
11082
11083 2007-05-18  Bruno Haible  <bruno@clisp.org>
11084
11085         Add support for 'long double' number output.
11086         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
11087         * lib/vasnprintf.c: Include math.h and float+.h.
11088         (mp_limb_t): New type.
11089         (GMP_LIMB_BITS): New macro.
11090         (mp_twolimb_t): New type.
11091         (GMP_TWOLIMB_BITS): New macro.
11092         (mpn_t): New type.
11093         (multiply, divide, convert_to_decimal, decode_long_double,
11094         scale10_round_long_double, scale10_round_decimal_long_double,
11095         floorlog10l): New functions.
11096         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
11097         for the %f, %F, %e, %E, %g, %G directives.
11098         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
11099         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
11100         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
11101         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
11102         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
11103         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11104         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11105         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11106         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11107         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11108         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11109         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
11110         * modules/snprintf-posix (Depends-on): Likewise.
11111         * modules/sprintf-posix (Depends-on): Likewise.
11112         * modules/vasnprintf-posix (Depends-on): Likewise.
11113         * modules/vasprintf-posix (Depends-on): Likewise.
11114         * modules/vfprintf-posix (Depends-on): Likewise.
11115         * modules/vsnprintf-posix (Depends-on): Likewise.
11116         * modules/vsprintf-posix (Depends-on): Likewise.
11117         * modules/vasnprintf (Files): Add lib/float+.h.
11118         * doc/functions/fprintf.texi: Update.
11119         * doc/functions/printf.texi: Update.
11120         * doc/functions/snprintf.texi: Update.
11121         * doc/functions/sprintf.texi: Update.
11122         * doc/functions/vfprintf.texi: Update.
11123         * doc/functions/vprintf.texi: Update.
11124         * doc/functions/vsnprintf.texi: Update.
11125         * doc/functions/vsprintf.texi: Update.
11126
11127 2007-05-18  Bruno Haible  <bruno@clisp.org>
11128
11129         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
11130
11131 2007-05-18  Bruno Haible  <bruno@clisp.org>
11132
11133         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
11134         for printing 64-bit integers. Needed for mingw.
11135
11136 2007-05-18  Bruno Haible  <bruno@clisp.org>
11137
11138         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
11139         gl_FUNC_FREXPL_WORKS.
11140         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
11141
11142 2007-05-18  Bruno Haible  <bruno@clisp.org>
11143
11144         * modules/frexpl-nolibm-tests: New file.
11145
11146         * modules/frexpl-nolibm: New file.
11147         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
11148
11149 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
11150
11151         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
11152         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
11153         GCC 4.2, which otherwise issues a lot of warnings.
11154         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
11155         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
11156         Likewise.
11157         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
11158         * modules/iconv_open (iconv.h): Likewise.
11159         * modules/locale (locale.h): Likewise.
11160         * modules/netinet_in (netinet/in.h): Likewise.
11161         * modules/sys_select (sys_select.h): Likewise.
11162         * modules/sys_socket (sys/socket.h): Likewise.
11163         * modules/sys_stat (sys/stat.h): Likewise.
11164         * modules/sysexits (sysexits.h): Likewise.
11165         * modules/unistd (unistd.h): Likewise.
11166
11167 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11168
11169         * modules/closein-tests (Makefile.am): Distribute
11170         `test-closein.sh'.
11171
11172 2007-05-17  Bruno Haible  <bruno@clisp.org>
11173
11174         * tests/test-printf-posix.output: Renamed from
11175         tests/test-fprintf-posix.out.
11176         * modules/fprintf-posix-tests: Update.
11177         * modules/printf-posix-tests: Update.
11178         * modules/vfprintf-posix-tests: Update.
11179         * modules/vprintf-posix-tests: Update.
11180         * tests/test-fprintf-posix.sh: Update.
11181         * tests/test-printf-posix.sh: Update.
11182         * tests/test-vfprintf-posix.sh: Update.
11183         * tests/test-vprintf-posix.sh: Update.
11184         Reported by Ralf Wildenhues.
11185
11186 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
11187
11188         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
11189         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
11190         GCC 4.2, which otherwise issues a lot of warnings.
11191         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
11192         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
11193         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
11194         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
11195         it should no longer be needed.
11196         * lib/string_.h: Likewise.
11197         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
11198         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
11199         * modules/inttypes (inttypes.h): Likewise.
11200         * modules/math (math.h): Likewise.
11201         * modules/search (search.h): Likewise.
11202         * modules/signal (signal.h): Likewise.
11203         * modules/stdint (stdint.h): Likewise.
11204         * modules/stdio (stdio.h): Likewise.
11205         * modules/stdlib (stdlib.h): Likewise.
11206         * modules/string (string.h): Likewise.
11207         * modules/sys_time (sys/time.h): Likewise.
11208         * modules/time (time.h): Likewise.
11209         * modules/wchar (wchar.h): Likewise.
11210         * modules/wctype (wtype.h): Likewise.
11211
11212 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
11213
11214         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
11215
11216 2007-05-13  Bruno Haible  <bruno@clisp.org>
11217
11218         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
11219         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
11220         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
11221         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
11222         (gl_PREREQ_STRTOK_R): Don't require it here.
11223
11224 2007-05-13  Bruno Haible  <bruno@clisp.org>
11225
11226         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
11227         when used in C++ mode.
11228
11229 2007-05-12  Bruno Haible  <bruno@clisp.org>
11230
11231         * lib/linebuffer.h: Tweak doc.
11232         * lib/linebuffer.c: Likewise.
11233
11234 2007-05-12  James Youngman  <jay@gnu.org>
11235
11236         * lib/linebuffer.c (readlinebuffer_delim): New function,
11237         like readlinebuffer, but use a caller-specified delimiter.
11238         (readlinebuffer): Just call readlinebuffer_delim with '\n'
11239         as the delimiter.
11240         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
11241
11242 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11243
11244         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
11245         * modules/openat (Files): Remove openat-die.c.
11246         (Depends-on): Add openat-die.
11247         * modules/openat-die: New module.
11248
11249 2007-05-06  Bruno Haible  <bruno@clisp.org>
11250
11251         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
11252         Update with info about Cygwin.
11253         * doc/functions/fprintf.texi: Update.
11254         * doc/functions/printf.texi: Update.
11255         * doc/functions/snprintf.texi: Update.
11256         * doc/functions/sprintf.texi: Update.
11257         * doc/functions/vfprintf.texi: Update.
11258         * doc/functions/vprintf.texi: Update.
11259         * doc/functions/vsnprintf.texi: Update.
11260         * doc/functions/vsprintf.texi: Update.
11261         Reported by Eric Blake.
11262
11263 2007-05-06  Bruno Haible  <bruno@clisp.org>
11264
11265         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
11266         padding ourselves for the floating-point directives.
11267         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
11268         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
11269         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
11270         gl_PRINTF_FLAG_ZERO and test its result. Invoke
11271         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
11272         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11273         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
11274         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11275         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11276         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11277         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11278         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11279         * tests/test-snprintf-posix.h (test_function): Also check the width
11280         and some flags in the %f directive.
11281         * tests/test-sprintf-posix.h (test_function): Likewise.
11282         * tests/test-vasnprintf-posix.c (test_function): Likewise.
11283         * tests/test-vasprintf-posix.c (test_function): Likewise.
11284         * doc/functions/fprintf.texi: Update.
11285         * doc/functions/printf.texi: Update.
11286         * doc/functions/snprintf.texi: Update.
11287         * doc/functions/sprintf.texi: Update.
11288         * doc/functions/vfprintf.texi: Update.
11289         * doc/functions/vprintf.texi: Update.
11290         * doc/functions/vsnprintf.texi: Update.
11291         * doc/functions/vsprintf.texi: Update.
11292
11293 2007-05-06  Bruno Haible  <bruno@clisp.org>
11294
11295         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
11296         pass the ' flag character to sprintf or snprintf.
11297         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
11298         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
11299         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
11300         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
11301         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
11302         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11303         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
11304         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11305         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11306         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11307         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11308         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11309         * tests/test-snprintf-posix.h (test_function): Also check the grouping
11310         flag.
11311         * tests/test-sprintf-posix.h (test_function): Likewise.
11312         * tests/test-vasnprintf-posix.c (test_function): Likewise.
11313         * tests/test-vasprintf-posix.c (test_function): Likewise.
11314         * doc/functions/fprintf.texi: Update.
11315         * doc/functions/printf.texi: Update.
11316         * doc/functions/snprintf.texi: Update.
11317         * doc/functions/sprintf.texi: Update.
11318         * doc/functions/vfprintf.texi: Update.
11319         * doc/functions/vprintf.texi: Update.
11320         * doc/functions/vsnprintf.texi: Update.
11321         * doc/functions/vsprintf.texi: Update.
11322
11323 2007-05-01  Bruno Haible  <bruno@clisp.org>
11324
11325         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
11326
11327 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
11328
11329         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
11330         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
11331
11332 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
11333
11334         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
11335         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
11336         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
11337
11338 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
11339
11340         * lib/argp-help.c (struct hol_entry): New member `ord'.
11341         (HOL_ENTRY_PTRCMP): Use ord for comparison
11342         (hol_sort): Initialize ord.
11343
11344 2007-05-01  Bruno Haible  <bruno@clisp.org>
11345
11346         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
11347         Reported by Eric Blake.
11348         * doc/gnulib.texi (Function Substitutes): Update.
11349
11350 2007-05-01  Bruno Haible  <bruno@clisp.org>
11351
11352         * doc/functions.texi: Remove file, now redundant through
11353         doc/functions/*.texi.
11354
11355 2007-05-01  Bruno Haible  <bruno@clisp.org>
11356
11357         * modules/argp (Depends-on): Add sleep.
11358
11359 2007-05-01  Bruno Haible  <bruno@clisp.org>
11360
11361         * modules/sleep-tests: New file.
11362         * tests/test-sleep.c: New file.
11363
11364         * modules/sleep: New file.
11365         * lib/sleep.c: New file.
11366         * m4/sleep.m4: New file.
11367         * lib/unistd_.h (sleep): New declaration.
11368         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
11369         HAVE_SLEEP.
11370         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
11371         * doc/functions/sleep.texi: Document the sleep module.
11372
11373 2007-05-01  Bruno Haible  <bruno@clisp.org>
11374
11375         * lib/sigprocmask.h: Remove file.
11376         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
11377         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
11378         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
11379         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
11380         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
11381         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
11382         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
11383         HAVE_SIGSET_T as a shell variable.
11384         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
11385         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
11386         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
11387         (Depends-on): Add signal. Remove verify.
11388         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
11389         (Include): Mention <signal.h> instead of sigprocmask.h.
11390         * NEWS: Mention the change.
11391         * lib/fatal-signal.c: Don't include sigprocmask.h.
11392
11393 2007-05-01  Bruno Haible  <bruno@clisp.org>
11394
11395         * modules/signal: New file.
11396         * lib/signal_.h: New file.
11397         * m4/signal_h.m4: New file.
11398
11399 2007-05-01  Bruno Haible  <bruno@clisp.org>
11400
11401         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
11402         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
11403         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
11404         HAVE_WCTYPE_CTMP_BUG into wctype.h.
11405
11406 2007-05-01  Bruno Haible  <bruno@clisp.org>
11407
11408         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
11409         configure time.
11410         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
11411         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
11412         * modules/sys_stat (Makefile.am): Substitute their values into
11413         sys/stat.h.
11414
11415 2007-05-01  Bruno Haible  <bruno@clisp.org>
11416
11417         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
11418         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
11419         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
11420
11421 2007-05-01  Bruno Haible  <bruno@clisp.org>
11422
11423         * doc/header/assert.texi: Undo last change: don't mention the gnulib
11424         'assert' module here.
11425
11426 2007-05-01  Bruno Haible  <bruno@clisp.org>
11427
11428         * doc/functions/*.texi: New files.
11429         * doc/functions/google-ranking.txt: New file.
11430         * doc/gnulib.texi (Function Substitutes): New chapter.
11431         (ctime, inet_ntoa): Remove sections.
11432         * doc/ctime.texi: Remove file.
11433         * doc/inet_ntoa.texi: Remove file.
11434         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
11435         dependencies.
11436         (%.info): New rule, specifying a --reference-limit.
11437
11438 2007-05-01  Bruno Haible  <bruno@clisp.org>
11439
11440         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
11441
11442 2007-05-01  Bruno Haible  <bruno@clisp.org>
11443
11444         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
11445         the portability of 'mkdir' to mingw systems.
11446
11447 2007-05-01  Bruno Haible  <bruno@clisp.org>
11448
11449         * doc/headers/google-ranking.txt: New file.
11450
11451 2007-04-30  Eric Blake  <ebb9@byu.net>
11452
11453         Prefer fseeko to fseek.
11454         * modules/getpass (Depends-on): Add fseeko.
11455         * lib/getpass.c (getpass): Use fseeko, not fseek.
11456
11457 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
11458
11459         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
11460         assumes the sorting is stable, while most qsort implementations
11461         are not.  Use argument addresses to ensure they never compare as
11462         equal.
11463
11464         * tests/test-argp-2.sh (usage-indent test): Fix output
11465         (func_compare): Restore diff options
11466         * tests/test-argp.c: Restore #include "progname.h"
11467
11468 2007-04-29  Bruno Haible  <bruno@clisp.org>
11469
11470         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
11471         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
11472         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
11473         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11474         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
11475         (configure.ac): Define CHECK_SNPRINTF_POSIX.
11476         (TESTS, check_PROGRAMS): Add test-snprintf.
11477         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
11478         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
11479         (TESTS, check_PROGRAMS): Add test-vsnprintf.
11480         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
11481         assertions that fail on HP-UX, OSF/1, or IRIX.
11482         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
11483
11484 2007-04-29  Bruno Haible  <bruno@clisp.org>
11485
11486         * MODULES.html.sh (posix_functions): Remove 'contents'.
11487
11488 2007-04-29  Karl Berry  <karl@gnu.org>
11489
11490         * config/srclist.txt (gendocs_template_min): new entry.
11491
11492 2007-04-29  Bruno Haible  <bruno@clisp.org>
11493
11494         Work around fpurge bug on BSD systems.
11495         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
11496         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
11497         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
11498         fpurge to rpl_fpurge if the system already has this function.
11499         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
11500         the case where the system already has this function. Correct invariants
11501         on BSD systems.
11502         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
11503         BSD systems.
11504
11505 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
11506
11507         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
11508         proposed by Sven Verdoolaege.
11509
11510         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
11511         options.
11512         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
11513         (usage and help tests): Update
11514
11515 2007-04-29  Bruno Haible  <bruno@clisp.org>
11516
11517         * tests/test-fflush.c (main): Use a file of size 17, not 10.
11518         Print more information in case of failure. Disable a test on BeOS.
11519
11520 2007-04-29  Bruno Haible  <bruno@clisp.org>
11521
11522         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
11523         This helps debugging on systems on which no gdb is available.
11524
11525 2007-04-29  Bruno Haible  <bruno@clisp.org>
11526
11527         * lib/freading.h: Improve comments.
11528         * lib/fwriting.h: Likewise.
11529         * tests/test-freading.c (main): Don't check freading immediately after
11530         repositioning. Needed for glibc.
11531
11532 2007-04-29  Bruno Haible  <bruno@clisp.org>
11533
11534         * lib/freading.c (freading): Trivial simplification.
11535
11536 2007-04-28  Bruno Haible  <bruno@clisp.org>
11537
11538         * tests/test-fwriting.c (main): Also test the interaction between
11539         fflush and fwriting.
11540         * modules/fwriting-tests (Depends-on): Add fflush.
11541
11542         * tests/test-freading.c (main): Also test the interaction between
11543         fflush and freading.
11544         * modules/freading-tests (Depends-on): Add fflush.
11545
11546 2007-04-28  Bruno Haible  <bruno@clisp.org>
11547
11548         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
11549         fseeko and ftello.
11550         Suggested by Eric Blake.
11551
11552 2007-04-28  Jim Meyering  <jim@meyering.net>
11553
11554         Avoid false-negative in gl_STDINT_H's C99 conformance test.
11555         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
11556         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
11557
11558 2007-04-27  Eric Blake  <ebb9@byu.net>
11559
11560         * doc/headers/assert.texi (assert.h): Document assert module use.
11561
11562 2007-04-27  Bruno Haible  <bruno@clisp.org>
11563
11564         * doc/headers/*.texi: New files.
11565         * doc/gnulib.texi (Header File Substitutes): New chapter.
11566         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
11567         dependencies.
11568         (standards.info ,standards.html, standards.dvi): Update dependencies.
11569         (mostlyclean, clean): New targets.
11570
11571 2007-04-27  Bruno Haible  <bruno@clisp.org>
11572
11573         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
11574         * modules/sysexits (Files, Makefile.am): Update.
11575
11576         * lib/sys_socket_.h: Renamed from lib/socket_.h.
11577         * modules/sys_socket (Files, Makefile.am): Update.
11578
11579         * lib/sys_stat_.h: Renamed from lib/stat_.h.
11580         * modules/sys_stat (Files, Makefile.am): Update.
11581
11582 2007-04-27  Eric Blake  <ebb9@byu.net>
11583
11584         * lib/freading.h: Improve comments.
11585         * lib/fwriting.h: Likewise.
11586         * lib/fflush.c: Likewise.
11587
11588         Fix closein for mingw.
11589         * modules/closein-tests: Add tests for closein.
11590         * tests/test-closein.c: New file.
11591         * tests/test-closein.sh: Likewise.
11592         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
11593         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
11594
11595 2007-04-27  Bruno Haible  <bruno@clisp.org>
11596
11597         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
11598         version is < 6.
11599         * lib/math_.h [__DECC]: Likewise.
11600         * lib/stdio_.h [__DECC]: Likewise.
11601         * lib/stdlib_.h [__DECC]: Likewise.
11602         * lib/string_.h [__DECC]: Likewise.
11603         * lib/time_.h [__DECC]: Likewise.
11604         * lib/wchar_.h [__DECC]: Likewise.
11605         * lib/wctype_.h [__DECC]: Likewise.
11606
11607 2007-04-27  Bruno Haible  <bruno@clisp.org>
11608
11609         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
11610
11611 2007-04-27  Bruno Haible  <bruno@clisp.org>
11612
11613         * lib/fflush.c: Add comments.
11614         * modules/fpurge-tests (Depends-on): Add fflush.
11615         * modules/freadable-tests (Depends-on): Likewise.
11616         * modules/fwritable-tests (Depends-on): Likewise.
11617
11618 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
11619
11620         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
11621         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
11622         Report by Bruno Haible <bruno@clisp.org>.
11623
11624 2007-04-26  Eric Blake  <ebb9@byu.net>
11625
11626         Fix fflush on mingw.
11627         * modules/fflush (Depends-on): Add freading.
11628         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
11629         but unread data.
11630
11631 2007-04-26  Eric Blake  <ebb9@byu.net>
11632         and Bruno Haible  <bruno@clisp.org>
11633
11634         Implement freading and fwriting.
11635         * lib/freading.c: New file.
11636         * lib/freading.h: Likewise.
11637         * m4/freading.m4: Likewise.
11638         * modules/freading: Likewise.
11639         * modules/freading-tests: Likewise.
11640         * tests/test-freading.c: Likewise.
11641         * lib/fwriting.c: New file.
11642         * lib/fwriting.h: Likewise.
11643         * m4/fwriting.m4: Likewise.
11644         * modules/fwriting: Likewise.
11645         * modules/fwriting-tests: Likewise.
11646         * tests/test-fwriting.c: Likewise.
11647         * MODULES.html.sh (File stream based Input/Output): Mention them.
11648
11649 2007-04-26  Bruno Haible  <bruno@clisp.org>
11650
11651         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
11652         'long' when we assume it.
11653         Suggested by Eric Blake.
11654
11655 2007-04-26  Bruno Haible  <bruno@clisp.org>
11656
11657         Ensure fseeko, ftello are declared on glibc systems.
11658         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
11659         * modules/fseeko (configure.ac-early): Likewise.
11660         * modules/ftello (configure.ac-early): Likewise.
11661         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
11662         AC_FUNC_FSEEKO for this.
11663         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
11664         (gl_CHECK_FSEEKO): Remove macro.
11665
11666 2007-04-26  Bruno Haible  <bruno@clisp.org>
11667
11668         * tests/test-fflush.c (main): Also check the ftell result after
11669         fflush and fseek/fseeko.
11670         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
11671         file descriptor position cache in the stream.
11672         * lib/fseeko.c (rpl_fseeko): Likewise.
11673
11674 2007-04-26  Bruno Haible  <bruno@clisp.org>
11675
11676         * modules/fflush-tests (Depends-on): Add fseeko.
11677
11678 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
11679             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11680
11681         * lib/argz_.h: ensure error_t definition is obtained in same
11682         mechanism system argz.h would have.
11683         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
11684         argz facilities are known bad.  Err on the side of caution if
11685         cross-compiling.
11686
11687 2007-04-25  Eric Blake  <ebb9@byu.net>
11688
11689         * lib/fpurge.c (includes): Use stdlib.h for free.
11690         * tests/test-fflush.c (main): Also test fflush-fseeko.
11691
11692 2007-04-25  Bruno Haible  <bruno@clisp.org>
11693
11694         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
11695         * lib/fseeko.c: New file.
11696         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
11697         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
11698         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
11699         gl_FUNC_FSEEKO.
11700         (gl_FUNC_FSEEKO): Invoke it.
11701         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
11702         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
11703         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
11704
11705 2007-04-25  Bruno Haible  <bruno@clisp.org>
11706
11707         * modules/fflush (Depends-on): Add ftello.
11708
11709 2007-04-25  Bruno Haible  <bruno@clisp.org>
11710
11711         * modules/ftello-tests: New file.
11712         * tests/test-ftello.c: New file.
11713
11714         * modules/ftello: New file.
11715         * m4/ftello.m4: New file.
11716         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
11717         HAVE_FTELLO.
11718         * lib/stdio_.h (ftello): New declaration.
11719         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
11720         HAVE_FTELLO.
11721
11722 2007-04-25  Bruno Haible  <bruno@clisp.org>
11723
11724         * modules/fseeko-tests: New file.
11725         * tests/test-fseeko.c: New file.
11726
11727         * modules/fseeko: New file.
11728         * m4/fseeko.m4: New file.
11729         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
11730         HAVE_FSEEKO.
11731         * lib/stdio_.h (fseeko): New declaration.
11732         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
11733         HAVE_FSEEKO.
11734
11735 2007-04-25  Bruno Haible  <bruno@clisp.org>
11736
11737         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
11738
11739 2007-04-25  Bruno Haible  <bruno@clisp.org>
11740
11741         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
11742         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
11743         * tests/test-unistd.c: Likewise.
11744         * tests/test-fcntl.c: Likewise.
11745
11746 2007-04-23  Eric Blake  <ebb9@byu.net>
11747
11748         * lib/fflush.c: Fix missing include.
11749         Reported by Bruno Haible.
11750
11751 2007-04-23  Bruno Haible  <bruno@clisp.org>
11752
11753         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
11754         Reported by Eric Blake.
11755
11756 2007-04-23  Bruno Haible  <bruno@clisp.org>
11757
11758         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
11759
11760 2007-04-23  Bruno Haible  <bruno@clisp.org>
11761
11762         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
11763
11764 2007-04-23  Bruno Haible  <bruno@clisp.org>
11765
11766         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
11767         Needed on HP-UX 11.
11768
11769 2007-04-16  Eric Blake  <ebb9@byu.net>
11770
11771         Make fflush rely on fpurge.
11772         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
11773         open coding all variants.
11774         * modules/fflush (Depends-on): Add fpurge and unistd.
11775         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
11776         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
11777
11778         Fix --with-tests compilation on cygwin.
11779         * modules/argmatch-tests (Makefile.am): List gnulib library first
11780         in LDADD.
11781         * modules/argp-tests (Makefile.am): Likewise.
11782         * modules/array-list-tests (Makefile.am): Likewise.
11783         * modules/array-oset-tests (Makefile.am): Likewise.
11784         * modules/avltree-list-tests (Makefile.am): Likewise.
11785         * modules/avltree-oset-tests (Makefile.am): Likewise.
11786         * modules/avltreehash-list-tests (Makefile.am): Likewise.
11787         * modules/carray-list-tests (Makefile.am): Likewise.
11788         * modules/dirname-tests (Makefile.am): Likewise.
11789         * modules/frexp-tests (Makefile.am): Likewise.
11790         * modules/isnanl-tests (Makefile.am): Likewise.
11791         * modules/linked-list-tests (Makefile.am): Likewise.
11792         * modules/linkedhash-list-tests (Makefile.am): Likewise.
11793         * modules/lock-tests (Makefile.am): Likewise.
11794         * modules/rbtree-list-tests (Makefile.am): Likewise.
11795         * modules/rbtree-oset-tests (Makefile.am): Likewise.
11796         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
11797         * modules/tls-tests (Makefile.am): Likewise.
11798         * modules/tsearch-tests (Makefile.am): Likewise.
11799         * modules/xvasprintf-tests (Makefile.am): Likewise.
11800
11801         Fix fpurge for cygwin.
11802         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
11803         value.
11804         * modules/fpurge-tests (Depends-on): Clean up trash.
11805
11806 2007-04-16  Simon Josefsson  <simon@josefsson.org>
11807
11808         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
11809
11810         * m4/autobuild.m4: Re-indent.
11811
11812 2007-04-13  Bruno Haible  <bruno@clisp.org>
11813
11814         * modules/fpurge-tests: New file.
11815         * tests/test-fpurge.c: New file.
11816
11817         * modules/fpurge: New file.
11818         * lib/fpurge.h: New file.
11819         * lib/fpurge.c: New file.
11820         * m4/fpurge.m4: New file.
11821
11822 2007-04-13  Bruno Haible  <bruno@clisp.org>
11823
11824         * modules/fbufmode-tests: New file.
11825         * tests/test-fbufmode.c: New file.
11826
11827         * modules/fbufmode: New file.
11828         * lib/fbufmode.h: New file.
11829         * lib/fbufmode.c: New file.
11830         * m4/fbufmode.m4: New file.
11831
11832 2007-04-13  Bruno Haible  <bruno@clisp.org>
11833
11834         * modules/fwritable-tests: New file.
11835         * tests/test-fwritable.c: New file.
11836
11837         * modules/fwritable: New file.
11838         * lib/fwritable.h: New file.
11839         * lib/fwritable.c: New file.
11840         * m4/fwritable.m4: New file.
11841
11842 2007-04-13  Bruno Haible  <bruno@clisp.org>
11843
11844         * modules/freadable-tests: New file.
11845         * tests/test-freadable.c: New file.
11846
11847         * modules/freadable: New file.
11848         * lib/freadable.h: New file.
11849         * lib/freadable.c: New file.
11850         * m4/freadable.m4: New file.
11851
11852 2007-04-13  Bruno Haible  <bruno@clisp.org>
11853
11854         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
11855         MOSTLYCLEANFILES.
11856
11857 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
11858
11859         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
11860         gzip bootstrap.conf to avoid dragging in i18n machinery.
11861         (gnulib_tool_option): Use it.
11862
11863 2007-04-13  Bruno Haible  <bruno@clisp.org>
11864
11865         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
11866         %F directives.
11867         * tests/test-vasprintf-posix.c (test_function): Likewise.
11868         * tests/test-snprintf-posix.h (test_function): Likewise.
11869         * tests/test-sprintf-posix.h (test_function): Likewise.
11870         * tests/test-fprintf-posix.h (test_function): Likewise.
11871         * tests/test-printf-posix.h (test_function): Likewise.
11872         * tests/test-fprintf-posix.out: Likewise.
11873
11874 2007-04-13  Bruno Haible  <bruno@clisp.org>
11875
11876         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
11877         * modules/tls-tests (configure.ac): Likewise.
11878         Reported by Arto C. Nirkko <anirkko@insel.ch>.
11879
11880 2007-04-13  Bruno Haible  <bruno@clisp.org>
11881
11882         * lib/tls.c (glthread_tls_get): Fix return type.
11883         Patch by Arto C. Nirkko <anirkko@insel.ch>.
11884
11885 2007-04-12  Eric Blake  <ebb9@byu.net>
11886
11887         * modules/gettime (Depends-on): Remove gettime.
11888         Reported by Dmitry V. Levin.
11889
11890 2007-04-12  Bruno Haible  <bruno@clisp.org>
11891
11892         * modules/fflush (Include): Mention <stdio.h>.
11893         * modules/strtoimax (Include): Mention <inttypes.h>.
11894         * modules/strtoumax (Include): Likewise.
11895
11896 2007-04-12  Eric Blake  <ebb9@byu.net>
11897
11898         * .cvsignore: New file.
11899         * .gitignore: Likewise.
11900
11901 2007-04-12  Bruno Haible  <bruno@clisp.org>
11902
11903         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
11904         not before, since $(LDADD) often contains libgnu.a.
11905         * modules/striconv-tests (test_striconv_LDADD): Likewise.
11906         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
11907         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
11908         Needed on Cygwin.
11909
11910 2007-04-12  Eric Blake  <ebb9@byu.net>
11911
11912         Work around glibc's failure to flush stdin on fclose.
11913         * lib/closein.c (close_stdin): Flush stdin before closing.
11914
11915         Work around glibc's failure to reset seekable stdin on exit.
11916         * modules/closein: New module.
11917         * lib/closein.c: New file.
11918         * lib/closein.h: Likewise.
11919         * m4/closein.m4: Likewise.
11920         * MODULES.html.sh (File stream based Input/Output): Document it.
11921
11922 2007-04-12  Simon Josefsson  <simon@josefsson.org>
11923
11924         * gnulib-tool: Rename generated 'autobuild' script to
11925         'do-autobuild' in --create-megatestdir output.
11926
11927         * doc/gnulib.texi (Build robot for gnulib): Fix.
11928
11929 2007-04-12  Simon Josefsson  <simon@josefsson.org>
11930
11931         * modules/sysexits (Depends-on): Add absolute-header.
11932
11933 2007-04-12  Eric Blake  <ebb9@byu.net>
11934
11935         No need to preserve errno on success.
11936         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
11937         Reported by Bruno Haible.
11938
11939 2007-04-12  Simon Josefsson  <simon@josefsson.org>
11940
11941         * MODULES.html.sh (Support for maintaining and releasing
11942         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
11943
11944 2007-04-12  Simon Josefsson  <simon@josefsson.org>
11945
11946         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
11947
11948 2007-04-12  Simon Josefsson  <simon@josefsson.org>
11949
11950         * modules/autobuild: New module.
11951
11952         * m4/autobuild.m4: New file.
11953
11954 2007-04-11  Bruno Haible  <bruno@clisp.org>
11955
11956         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
11957         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
11958         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
11959         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
11960         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
11961         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11962         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11963         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
11964         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11965         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11966         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
11967         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11968         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11969         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
11970         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11971         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11972         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
11973         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11974         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11975         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
11976         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11977         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11978         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
11979         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11980         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11981         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
11982         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
11983         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
11984         Reported by Eric Blake.
11985
11986 2007-04-11  Bruno Haible  <bruno@clisp.org>
11987
11988         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
11989
11990 2007-04-10  Bruno Haible  <bruno@clisp.org>
11991
11992         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
11993         for NaN and Infinity. Needed on FreeBSD 6.1.
11994         * tests/test-vasnprintf-posix.c (test_function): Undo last change
11995         regarding results for "%010a" of Infinity and NaN.
11996         * tests/test-vasprintf-posix.c (test_function): Likewise.
11997         * tests/test-snprintf-posix.h (test_function): Likewise.
11998         * tests/test-sprintf-posix.h (test_function): Likewise.
11999         * tests/test-fprintf-posix.h (test_function): Likewise.
12000         * tests/test-printf-posix.h (test_function): Likewise.
12001         * tests/test-fprintf-posix.out: Likewise.
12002
12003 2007-04-10  Bruno Haible  <bruno@clisp.org>
12004
12005         * modules/locale-tests: New file.
12006         * tests/test-locale.c: New file.
12007
12008         * modules/locale: New file.
12009         * lib/locale_.h: New file.
12010         * m4/locale_h.m4: New file.
12011
12012 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
12013             Bruno Haible  <bruno@clisp.org>
12014
12015         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
12016         be determined, test for availability of the copysignf, copysign,
12017         copysignl functions.
12018         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
12019         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
12020         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
12021
12022 2007-04-09  Eric Blake  <ebb9@byu.net>
12023
12024         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
12025         * modules/stdio (Makefile.am): Support fflush.
12026         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
12027         * modules/fflush: New file.
12028         * lib/fflush.c: Likewise.
12029         * m4/fflush.m4: Likewise.
12030         * modules/fflush-tests: New test.
12031         * tests/test-fflush.c: Likewise.
12032         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
12033
12034 2007-04-06  Bruno Haible  <bruno@clisp.org>
12035
12036         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
12037         (VASNPRINTF): Use signbit for faster determination whether to print a
12038         minus sign.
12039         * modules/vasnprintf (Files): Remove lib/float+.h.
12040         * modules/fprintf-posix (Depends-on): Add signbit.
12041         * modules/snprintf-posix (Depends-on): Likewise.
12042         * modules/sprintf-posix (Depends-on): Likewise.
12043         * modules/vasnprintf-posix (Depends-on): Likewise.
12044         * modules/vasprintf-posix (Depends-on): Likewise.
12045         * modules/vfprintf-posix (Depends-on): Likewise.
12046         * modules/vsnprintf-posix (Depends-on): Likewise.
12047         * modules/vsprintf-posix (Depends-on): Likewise.
12048
12049 2007-04-06  Bruno Haible  <bruno@clisp.org>
12050
12051         * tests/test-frexp.c (main): Test also the sign bit of zero results.
12052         * tests/test-frexpl.c (main): Likewise.
12053         * tests/test-ldexpl.c (main): Likewise.
12054         * modules/frexp-tests (Depends-on): Add signbit.
12055         * modules/frexpl-tests (Depdends-on): Likewise.
12056         * modules/ldexpl-tests (Depdends-on): Likewise.
12057
12058 2007-04-06  Bruno Haible  <bruno@clisp.org>
12059
12060         * modules/signbit-tests: New file.
12061         * tests/test-signbit.c: New file.
12062
12063         * modules/signbit: New file.
12064         * lib/signbitf.c: New file.
12065         * lib/signbitd.c: New file.
12066         * lib/signbitl.c: New file.
12067         * m4/signbit.m4: New file.
12068         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
12069         (signbit): New macro.
12070         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
12071         REPLACE_SIGNBIT.
12072         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
12073         REPLACE_FREXPL into math.h.
12074
12075 2007-04-06  Bruno Haible  <bruno@clisp.org>
12076
12077         * modules/isnanf-nolibm-tests: New file.
12078         * tests/test-isnanf.c: New file.
12079
12080         * modules/isnanf-nolibm: New file.
12081         * lib/isnanf.h: New file.
12082         * lib/isnanf.c: New file.
12083         * lib/isnan.c: Consider the USE_FLOAT macro.
12084         * m4/isnanf.m4: New file.
12085
12086 2007-04-06  Bruno Haible  <bruno@clisp.org>
12087
12088         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
12089         (Link): New section.
12090
12091         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
12092
12093 2007-04-06  Bruno Haible  <bruno@clisp.org>
12094
12095         Assume the 'long double' type.
12096         * m4/longdouble.m4: Remove file.
12097         * config/srclist.txt: Don't mention longdouble.m4.
12098         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
12099         * lib/float+.h: Likewise.
12100         * lib/frexp.c: Likewise.
12101         * lib/printf-args.h: Likewise.
12102         * lib/printf-args.c: Likewise.
12103         * lib/printf-frexp.c: Likewise.
12104         * lib/printf-parse.c: Likewise.
12105         * lib/vasnprintf.c: Likewise.
12106         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
12107         * m4/intl.m4: Likewise.
12108         * m4/isnanl.m4: Likewise.
12109         * m4/printf.m4: Likewise.
12110         * m4/printf-frexpl.m4: Likewise.
12111         * m4/vasnprintf.m4: Likewise.
12112         * modules/allocsa (Files): Remove m4/longdouble.m4.
12113         * modules/gettext (Files): Likewise.
12114         * modules/relocatable-prog-wrapper (Files): Likewise.
12115         * modules/vasnprintf (Files): Likewise.
12116         * modules/isnanl (Files): Likewise.
12117         (Include): Simplify.
12118         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
12119         (Include): Simplify.
12120         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
12121         (Include): Simplify.
12122         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
12123         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12124         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
12125         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12126         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
12127         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12128         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
12129         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12130         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
12131         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12132         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
12133         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
12134         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
12135         * tests/test-isnanl.c: Likewise.
12136         * tests/test-snprintf-posix.h: Likewise.
12137         * tests/test-sprintf-posix.h: Likewise.
12138         * tests/test-vasnprintf-posix.c: Likewise.
12139         * tests/test-vasnprintf-posix2.c: Likewise.
12140         * tests/test-vasprintf-posix.c: Likewise.
12141
12142 2007-04-06  Bruno Haible  <bruno@clisp.org>
12143
12144         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
12145         * lib/math_.h [__DECC]: Include the overridden include file through
12146         #include_next, outside the double-inclusion guard.
12147         * lib/stdio_.h [__DECC]: Likewise.
12148         * lib/stdlib_.h [__DECC]: Likewise.
12149         * lib/string_.h [__DECC]: Likewise.
12150         * lib/time_.h [__DECC]: Likewise.
12151         * lib/wchar_.h [__DECC]: Likewise.
12152         * lib/wctype_.h [__DECC]: Likewise.
12153         * lib/inttypes_.h [__DECC]: Likewise.
12154         Reported by Albert Chin <china@thewrittenword.com> in
12155         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
12156
12157 2007-04-04  Eric Blake  <ebb9@byu.net>
12158
12159         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
12160         1.5.x.
12161
12162 2007-04-04  Bruno Haible  <bruno@clisp.org>
12163
12164         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
12165         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
12166
12167 2007-04-04  Bruno Haible  <bruno@clisp.org>
12168
12169         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
12170         results for "%010a" of Infinity and NaN.
12171         * tests/test-vasprintf-posix.c (test_function): Likewise.
12172         * tests/test-snprintf-posix.h (test_function): Likewise.
12173         * tests/test-sprintf-posix.h (test_function): Likewise.
12174         * tests/test-fprintf-posix.h (test_function): Remove these tests.
12175         * tests/test-printf-posix.h (test_function): Likewise.
12176         * tests/test-fprintf-posix.out: Update.
12177         Needed for FreeBSD 6.1.
12178
12179 2007-04-04  Bruno Haible  <bruno@clisp.org>
12180
12181         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
12182         directly used by the gnulib modules nor by gnulib-tool.
12183
12184 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
12185
12186         * DEPENDENCIES: Give overall description of version dependency
12187         desirability.  Use more-typical names for apps.
12188         Add shell, coreutils, diffutils, grep, tar, gzip.
12189
12190 2007-04-04  Simon Josefsson  <simon@josefsson.org>
12191
12192         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
12193
12194 2007-04-04  Karl Berry  <karl@gnu.org>
12195
12196         * MODULES.html.sh (func_module): missing '.
12197
12198 2007-04-03  Bruno Haible  <bruno@clisp.org>
12199
12200         * modules/argmatch-tests (Makefile.am): New variable
12201         test_argmatch_LDADD.
12202         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
12203         * modules/array-list-tests (Makefile.am): New variable
12204         test_array_list_LDADD.
12205         * modules/array-oset-tests (Makefile.am): New variable
12206         test_array_oset_LDADD.
12207         * modules/avltree-list-tests (Makefile.am): New variable
12208         test_avltree_list_LDADD.
12209         * modules/avltree-oset-tests (Makefile.am): New variable
12210         test_avltree_oset_LDADD.
12211         * modules/avltreehash-list-tests (Makefile.am): New variable
12212         test_avltreehash_list_LDADD.
12213         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
12214         test_canonicalize_lgpl_LDADD.
12215         * modules/carray-list-tests (Makefile.am): New variable
12216         test_carray_list_LDADD.
12217         * modules/dirname-tests (Makefile.am): New variable
12218         test_dirname_LDADD.
12219         * modules/linked-list-tests (Makefile.am): New variable
12220         test_linked_list_LDADD.
12221         * modules/linkedhash-list-tests (Makefile.am): New variable
12222         test_linkedhash_list_LDADD.
12223         * modules/rbtree-list-tests (Makefile.am): New variable
12224         test_rbtree_list_LDADD.
12225         * modules/rbtree-oset-tests (Makefile.am): New variable
12226         test_rbtree_oset_LDADD.
12227         * modules/rbtreehash-list-tests (Makefile.am): New variable
12228         test_rbtreehash_list_LDADD.
12229         * modules/xvasprintf-tests (Makefile.am): New variable
12230         test_xvasprintf_LDADD.
12231         Reported by Eric Blake.
12232
12233 2007-04-03  Eric Blake  <ebb9@byu.net>
12234
12235         * DEPENDENCIES: Weaken m4 requirements.
12236
12237 2007-04-03  Bruno Haible  <bruno@clisp.org>
12238
12239         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
12240         * modules/isnanl-tests (configure.ac): Likewise.
12241
12242 2007-04-03  Ben Pfaff  <blp@gnu.org>
12243
12244         * modules/iconv_open: Add $(srcdir)/ to source directory
12245         references in Makefile fragments that call gperf, to fix VPATH
12246         builds.
12247
12248 2007-04-03  Bruno Haible  <bruno@clisp.org>
12249
12250         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
12251         * lib/ldexpl.c: Undo last change.
12252
12253 2007-04-03  Bruno Haible  <bruno@clisp.org>
12254
12255         * modules/printf-frexpl (Depends-on): Undo last change.
12256         (Files): Add m4/ldexpl.m4.
12257
12258 2007-04-03  Bruno Haible  <bruno@clisp.org>
12259
12260         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
12261         * modules/isnanl (Link): New section.
12262
12263         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
12264         * modules/frexp (Link): New section.
12265
12266         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
12267         * modules/frexpl (Link): New section.
12268
12269         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
12270         * modules/ldexpl (Link): New section.
12271
12272 2007-04-03  Bruno Haible  <bruno@clisp.org>
12273
12274         * modules/TEMPLATE-EXTENDED: New file.
12275         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
12276
12277 2007-04-03  Bruno Haible  <bruno@clisp.org>
12278
12279         * DEPENDENCIES: New file.
12280         Suggested by Simon Josefsson.
12281
12282 2007-04-03  Bruno Haible  <bruno@clisp.org>
12283
12284         * doc/gnulib.texi: Escape @.
12285
12286 2007-04-03  James Youngman  <jay@gnu.org>
12287         and Paul Eggert  <eggert@cs.ucla.edu>
12288
12289         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
12290         birthtime on all systems that have birthtime, not just those which
12291         use st_birthtimensec rather than st_birthtim.  Putting zero in
12292         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
12293         that the birth time is not available for files on an NFS mount.
12294
12295 2007-04-03  Simon Josefsson  <simon@josefsson.org>
12296
12297         * modules/memxor: Move back from crypto/, suggested by Bruno.
12298         * modules/crypto/hmac-sha1: Fix memxor dependency.
12299
12300         * modules/crypto/gc: Moved from ../.
12301
12302 2007-04-02  Eric Blake  <ebb9@byu.net>
12303
12304         * lib/ldexpl.c (includes): Avoid libm.
12305
12306         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
12307
12308 2007-04-02  Bruno Haible  <bruno@clisp.org>
12309
12310         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
12311         on IRIX.
12312
12313 2007-04-02  Bruno Haible  <bruno@clisp.org>
12314
12315         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
12316         x86 or x86_64 platforms running MacOS X.
12317         Reported by Ryan Schmidt <@ryandesign.com>.
12318
12319 2007-04-02  Bruno Haible  <bruno@clisp.org>
12320
12321         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
12322         i386.
12323
12324 2007-04-01  Simon Josefsson  <simon@josefsson.org>
12325
12326         * modules/crypto/arcfour: Moved from ../.
12327         * modules/crypto/arcfour-tests: Moved from ../.
12328         * modules/crypto/arctwo: Moved from ../.
12329         * modules/crypto/arctwo-tests: Moved from ../.
12330         * modules/crypto/des: Moved from ../.
12331         * modules/crypto/des-tests: Moved from ../.
12332         * modules/crypto/gc-arcfour: Moved from ../.
12333         * modules/crypto/gc-arcfour-tests: Moved from ../.
12334         * modules/crypto/gc-arctwo: Moved from ../.
12335         * modules/crypto/gc-arctwo-tests: Moved from ../.
12336         * modules/crypto/gc-des: Moved from ../.
12337         * modules/crypto/gc-des-tests: Moved from ../.
12338         * modules/crypto/gc-hmac-md5: Moved from ../.
12339         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
12340         * modules/crypto/gc-hmac-sha1: Moved from ../.
12341         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
12342         * modules/crypto/gc-md2: Moved from ../.
12343         * modules/crypto/gc-md2-tests: Moved from ../.
12344         * modules/crypto/gc-md4: Moved from ../.
12345         * modules/crypto/gc-md4-tests: Moved from ../.
12346         * modules/crypto/gc-md5: Moved from ../.
12347         * modules/crypto/gc-md5-tests: Moved from ../.
12348         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
12349         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
12350         * modules/crypto/gc-random: Moved from ../.
12351         * modules/crypto/gc-rijndael: Moved from ../.
12352         * modules/crypto/gc-rijndael-tests: Moved from ../.
12353         * modules/crypto/gc-sha1: Moved from ../.
12354         * modules/crypto/gc-sha1-tests: Moved from ../.
12355         * modules/crypto/gc-tests: Moved from ../.
12356         * modules/crypto/hmac-md5: Moved from ../.
12357         * modules/crypto/hmac-md5-tests: Moved from ../.
12358         * modules/crypto/hmac-sha1: Moved from ../.
12359         * modules/crypto/hmac-sha1-tests: Moved from ../.
12360         * modules/crypto/md2: Moved from ../.
12361         * modules/crypto/md2-tests: Moved from ../.
12362         * modules/crypto/md4: Moved from ../.
12363         * modules/crypto/md4-tests: Moved from ../.
12364         * modules/crypto/md5: Moved from ../.
12365         * modules/crypto/md5-tests: Moved from ../.
12366         * modules/crypto/memxor: Moved from ../.
12367         * modules/crypto/rijndael: Moved from ../.
12368         * modules/crypto/rijndael-tests: Moved from ../.
12369         * modules/crypto/sha1: Moved from ../.
12370
12371 2007-03-30  James Youngman  <jay@gnu.org>
12372
12373         * tests/test-stat-time.c (prepare_test): use chmod() rather than
12374         rename() to change the ctime of a file (because ctime is unaffected
12375         by rename on jfs2 on AIX 5.1).
12376         (main): Start by doing cleanup, in case a previous run failed leaving
12377         test files behind.
12378
12379 2007-03-31  Bruno Haible  <bruno@clisp.org>
12380
12381         Support old proprietary implementations of iconv.
12382         * modules/iconv_open: New file.
12383         * lib/iconv_.h: New file.
12384         * m4/iconv_h.m4: New file.
12385         * lib/iconv_open.c: New file.
12386         * lib/iconv_open-aix.gperf: New file.
12387         * lib/iconv_open-hpux.gperf: New file.
12388         * lib/iconv_open-irix.gperf: New file.
12389         * lib/iconv_open-osf.gperf: New file.
12390         * m4/iconv_open.m4: New file.
12391         * modules/linebreak (Depends-on): Add iconv_open.
12392         * modules/striconv (Depends-on): Likewise.
12393         * modules/striconveh (Depends-on): Likewise.
12394         * modules/unicodeio (Depends-on): Likewise.
12395         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
12396         (iconv_t)(-1).
12397         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
12398         conversion if cd is (iconv_t)(-1).
12399         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
12400         is not possible.
12401
12402 2007-03-31  Bruno Haible  <bruno@clisp.org>
12403
12404         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
12405         work on Solaris either. Protect also second use of "autodetect_jp".
12406
12407 2007-03-31  Bruno Haible  <bruno@clisp.org>
12408
12409         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
12410         the function is not present.
12411
12412 2007-03-31  Bruno Haible  <bruno@clisp.org>
12413
12414         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
12415         the function is not present.
12416
12417 2007-03-31  Bruno Haible  <bruno@clisp.org>
12418
12419         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
12420         a bug in HP-UX iconv_open().
12421
12422 2007-03-31  Bruno Haible  <bruno@clisp.org>
12423
12424         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
12425         (Mathematics <math.h>): New section, add fpieee.
12426         (Input/output <stdio.h>): Add fseterr.
12427         (Mathematics <math.h>): New section, add printf-frexp.
12428         (Container data structures): Add sublist.
12429         (Core language properties): Add fpucw, inline.
12430         (Functions for greatest-width integer types <inttypes.h>): Add
12431         imaxabs, imaxdiv, inttypes.
12432         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
12433         isnanl-nolibm, ldexp.
12434         (Mathematics <math.h>): New section, add printf-frexpl.
12435         (Support for systems lacking POSIX:2001): Add fprintf-posix,
12436         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
12437         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
12438         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
12439         (Unicode string functions): Add unistr/u*-mbtoucr.
12440         (Java): Add javacomp-script, javaexec-script.
12441         (C#): Add csharpcomp-script, csharpexec-script.
12442         (Support for building libraries and executables): Add havelib,
12443         relocatable-*.
12444         (Support for maintaining and releasing projects): Renamed from
12445         'Support for maintaining and release projects'. Add announce-gen.
12446
12447 2007-03-31  Bruno Haible  <bruno@clisp.org>
12448
12449         * README: Talk primarily about git.
12450         (git and CVS): Renamed from CVS.
12451         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
12452         gnulib is available through git.
12453         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
12454
12455 2007-03-30  Bruno Haible  <bruno@clisp.org>
12456
12457         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
12458         * lib/poll_.h: Likewise.
12459         * lib/stat_.h: Likewise.
12460         * lib/sys_time_.h: Likewise.
12461         * lib/sysexit_.h: Likewise.
12462         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
12463         * lib/stdbool_.h: Likewise.
12464         * lib/byteswap_.h: Add double-inclusion guard.
12465
12466 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
12467
12468         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
12469
12470 2007-03-30  Karl Berry  <karl@gnu.org>
12471
12472         * config/srclist-update: double space after USA in the license
12473         substitution, since that's how it's usually (?) written.
12474
12475 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
12476
12477         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
12478         reported by Bruno Haible.
12479
12480 2007-03-29  Bruno Haible  <bruno@clisp.org>
12481
12482         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
12483         a bug in AIX iconv().
12484
12485 2007-03-29  Bruno Haible  <bruno@clisp.org>
12486
12487         * modules/ldexpl-tests: New file.
12488         * tests/test-ldexpl.c: New file.
12489
12490 2007-03-29  Bruno Haible  <bruno@clisp.org>
12491
12492         * lib/ldexpl.c: Include fpucw.h.
12493         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
12494         multiplication.
12495         * modules/ldexpl (Depends-on): Add fpucw.
12496
12497 2007-03-29  Bruno Haible  <bruno@clisp.org>
12498
12499         * modules/ldexpl: New file.
12500         * m4/ldexpl.m4: New file.
12501         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
12502         set.
12503         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
12504         REPLACE_LDEXPL.
12505         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
12506         REPLACE_LDEXPL.
12507         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
12508         gl_FUNC_LDEXPL_WORKS.
12509         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
12510         * modules/mathl (Files): Remove lib/ldexpl.c.
12511         (Depends-on): Add ldexpl.
12512
12513 2007-03-29  Bruno Haible  <bruno@clisp.org>
12514
12515         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
12516
12517 2007-03-29  Bruno Haible  <bruno@clisp.org>
12518
12519         * tests/test-striconveh.c (main): Don't assume that a direct conversion
12520         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
12521         and possibly also HP-UX.
12522         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
12523         work on AIX, IRIX, HP-UX, OSF/1.
12524         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
12525         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
12526         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
12527         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
12528         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
12529         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
12530
12531 2007-03-29  Bruno Haible  <bruno@clisp.org>
12532
12533         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
12534
12535 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
12536
12537         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
12538         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
12539
12540 2007-03-29  Eric Blake  <ebb9@byu.net>
12541
12542         * lib/acl-internal.h: Remove redundant include.
12543         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
12544         Cygwin when a file is locked.
12545
12546 2007-03-29  Bruno Haible  <bruno@clisp.org>
12547
12548         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
12549         file.
12550         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
12551
12552 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
12553
12554         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
12555         try to remove a parent directory if the child couldn't be removed
12556         (except for the first rmdir, which could fail because the child
12557         doesn't exist).  Problem reported by Jeff Blaine in
12558         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
12559
12560 2007-03-28  Bruno Haible  <bruno@clisp.org>
12561
12562         * lib/striconveh.c (utf8conv_carefully): New function.
12563         (mem_cd_iconveh_internal): Invoke it.
12564
12565 2007-03-28  Bruno Haible  <bruno@clisp.org>
12566
12567         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
12568         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
12569         input.
12570         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
12571         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
12572         unistr/u8-uctomb.
12573
12574 2007-03-28  Bruno Haible  <bruno@clisp.org>
12575
12576         * modules/unistr/u8-mbtoucr: New file.
12577         * lib/unistr/u8-mbtoucr.c: New file.
12578         * modules/unistr/u16-mbtoucr: New file.
12579         * lib/unistr/u16-mbtoucr.c: New file.
12580         * modules/unistr/u16-mbtoucr: New file.
12581         * lib/unistr/u16-mbtoucr.c: New file.
12582         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
12583
12584 2007-03-27  Simon Josefsson  <simon@josefsson.org>
12585             Bruno Haible  <bruno@clisp.org>
12586
12587         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
12588         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
12589         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
12590
12591         * m4/stdio_h.m4: Add stubs for vasprintf too.
12592
12593         * modules/stdio: Support vasprintf in sed command.
12594
12595         * modules/vasprintf: Depend on stdio for prototypes.  Remove
12596         vasprintf.h.  Add stdio module indicator.
12597
12598         * lib/stdio_.h: Declare asprintf and vasprintf, based on
12599         vasprintf.h.
12600
12601         * lib/vasprintf.h: File removed.
12602
12603         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
12604         * lib/vasprintf.c: Ditto.
12605         * lib/xvasprintf.c: Ditto.
12606         * tests/test-vasprintf-posix.c: Ditto.
12607         * tests/test-vasprintf.c: Ditto.
12608
12609 2007-03-27  Bruno Haible  <bruno@clisp.org>
12610
12611         Make vasnprintf multithread-safe.
12612         * lib/vasnprintf.c (decimal_point_char): New function.
12613         (VASNPRINTF): Use it.
12614         Suggested by Simon Josefsson.
12615
12616 2007-03-27  Eric Blake  <ebb9@byu.net>
12617
12618         Support sub-second birthtime on cygwin.
12619         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
12620         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
12621         (get_stat_birthtime): Also work with st_birthtim.
12622
12623 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
12624
12625         * lib/stat-time.h (USE_BIRTHTIME): Remove.
12626         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
12627         (get_stat_birthtime_ns): Do not try to use "spare" fields.
12628         (get_stat_birthtime_ns): Simplify compile-time tests.
12629         (get_stat_birthtime): Change the API to look like
12630         get_stat_mtime etc., except return a negative tv_nsec on error.
12631         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
12632         Don't check for "spare" fields.
12633         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
12634         or for struct stat.st_birthtime, as these tests aren't used.
12635         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
12636
12637 2007-03-27  Bruno Haible  <bruno@clisp.org>
12638
12639         * lib/stat-time.h: Include <sys/stat.h>.
12640
12641 2007-03-27  James Youngman  <jay@gnu.org>
12642
12643         * lib/stat-time.h (get_stat_birthtime): New function for
12644           retrieving st_birthtime as provided by UFS2 (hence *BSD).
12645         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
12646           and its variants.
12647         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
12648         * modules/stat-time-test: New file.
12649         * tests/test-stat-time.c: New test, devised by Bruno Haible.
12650
12651 2007-03-26  Bruno Haible  <bruno@clisp.org>
12652
12653         Better support of signalling NaNs.
12654         * lib/atanl.c: Include isnanl.h.
12655         (atanl): Perform test for NaN at the beginning of the function and
12656         through a call to isnanl.
12657         * lib/cosl.c: Include isnanl.h.
12658         (cosl): Perform test for NaN at the beginning of the function and
12659         through a call to isnanl.
12660         * lib/ldexpl.c: Include isnanl.h.
12661         (ldexpl): Perform test for NaN through a call to isnanl.
12662         * lib/logl.c: Include isnanl.h.
12663         (logl): Perform test for NaN at the beginning of the function and
12664         through a call to isnanl.
12665         * lib/sinl.c: Include isnanl.h.
12666         (sinl): Perform test for NaN at the beginning of the function and
12667         through a call to isnanl.
12668         * lib/sqrtl.c: Include isnanl.h.
12669         (sqrtl): Perform test for NaN at the beginning of the function and
12670         through a call to isnanl.
12671         * lib/tanl.c: Include isnanl.h.
12672         (tanl): Perform test for NaN at the beginning of the function and
12673         through a call to isnanl.
12674         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
12675         * modules/mathl (Depends-on): Add isnanl.
12676
12677 2007-03-26  Eric Blake  <ebb9@byu.net>
12678
12679         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
12680         regression in logic sense of previous patch.
12681
12682 2007-03-26  Bruno Haible  <bruno@clisp.org>
12683
12684         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
12685         unportable shell command "if ! ...".
12686         Reported by Ralf Wildenhues.
12687
12688 2007-03-25  Bruno Haible  <bruno@clisp.org>
12689
12690         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
12691         <sysexits.h> file, and only add EX_CONFIG.
12692         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
12693         absolute file name and whether it is sufficient. Substitute also
12694         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
12695         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
12696         ABSOLUTE_SYSEXITS_H into sysexits.h.
12697
12698 2007-03-25  Bruno Haible  <bruno@clisp.org>
12699
12700         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
12701         hints is NULL.
12702
12703 2007-03-25  Bruno Haible  <bruno@clisp.org>
12704
12705         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
12706         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
12707
12708 2007-03-25  Bruno Haible  <bruno@clisp.org>
12709
12710         * lib/vasnprintf.c: Include langinfo.h.
12711         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
12712         multithread-safe.
12713         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
12714         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
12715         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
12716         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
12717         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
12718         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
12719         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
12720         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
12721         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12722         Reported by Simon Josefsson.
12723
12724 2007-03-25  Bruno Haible  <bruno@clisp.org>
12725
12726         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
12727         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
12728         * modules/vasnprintf (Depends-on): Add stdint.
12729
12730 2007-03-25  Bruno Haible  <bruno@clisp.org>
12731
12732         * modules/fpieee: New file.
12733         * m4/fpieee.m4: New file.
12734         * modules/isnan-nolibm (Depends-on): Add fpieee.
12735         * modules/isnanl-nolibm (Depends-on): Add fpieee.
12736         * modules/isnanl (Depends-on): Add fpieee.
12737
12738 2007-03-25  Bruno Haible  <bruno@clisp.org>
12739
12740         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
12741
12742 2007-03-25  Bruno Haible  <bruno@clisp.org>
12743
12744         Avoid test failures on IRIX 6.5.
12745         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
12746         (main): Use it.
12747         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
12748         macros.
12749         (main): Use them.
12750
12751 2007-03-25  Bruno Haible  <bruno@clisp.org>
12752
12753         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
12754         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
12755         exists but doesn't work.
12756         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
12757         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
12758         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
12759         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
12760
12761 2007-03-25  Bruno Haible  <bruno@clisp.org>
12762
12763         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
12764         returns inf. Needed on IRIX 6.5.
12765
12766 2007-03-25  Bruno Haible  <bruno@clisp.org>
12767
12768         * tests/test-frexpl.c: Include isnanl-nolibm.h.
12769         (main): Use isnanl instead of x != x idiom.
12770         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
12771
12772         * tests/test-frexp.c: Include isnan.h.
12773         (main): Use isnan instead of x != x idiom.
12774         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
12775
12776 2007-03-25  Bruno Haible  <bruno@clisp.org>
12777
12778         * tests/test-frexp.c (NaN): New function/macro.
12779         (main): Use it instead of 0.0 / 0.0.
12780         * tests/test-isnan.c (NaN): New function/macro.
12781         (main): Use it instead of 0.0 / 0.0.
12782         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
12783         (test_function): Use it instead of 0.0 / 0.0.
12784         * tests/test-vasprintf-posix.c (NaN): New function/macro.
12785         (test_function): Use it instead of 0.0 / 0.0.
12786         * tests/test-snprintf-posix.h (NaN): New function/macro.
12787         (test_function): Use it instead of 0.0 / 0.0.
12788         * tests/test-sprintf-posix.h (NaN): New function/macro.
12789         (test_function): Use it instead of 0.0 / 0.0.
12790         * tests/test-fprintf-posix.h (NaN): New function/macro.
12791         (test_function): Use it instead of 0.0 / 0.0.
12792         * tests/test-printf-posix.h (NaN): New function/macro.
12793         (test_function): Use it instead of 0.0 / 0.0.
12794
12795         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
12796
12797 2007-03-25  Bruno Haible  <bruno@clisp.org>
12798
12799         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
12800
12801 2007-03-25  Bruno Haible  <bruno@clisp.org>
12802
12803         * lib/regexec.c (merge_state_with_log): Make static.
12804
12805 2007-03-25  Bruno Haible  <bruno@clisp.org>
12806
12807         * lib/trigl.c (kernel_rem_pio2): Make static.
12808
12809 2007-03-25  Bruno Haible  <bruno@clisp.org>
12810
12811         * lib/sincosl.c (sincosl_table): Make static.
12812
12813 2007-03-25  Bruno Haible  <bruno@clisp.org>
12814
12815         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
12816         if the compiler does not support C99.
12817
12818 2007-03-25  Bruno Haible  <bruno@clisp.org>
12819
12820         * modules/time (Makefile.am): Ensure all rule action lines start with a
12821         tab.
12822
12823 2007-03-24  Bruno Haible  <bruno@clisp.org>
12824
12825         * modules/tsearch-tests: New file.
12826         * tests/test-tsearch.sh: New file.
12827         * tests/test-tsearch.c: New file, mostly copied from glibc.
12828
12829         * modules/search-tests: New file.
12830         * tests/test-search.c: New file.
12831
12832         * modules/search: New file.
12833         * lib/search_.h: New file, incorporating lib/tsearch.h.
12834         * m4/search_h.m4: New file.
12835         * lib/tsearch.h: Remove file.
12836         * lib/tsearch.c: Include search.h instead of tsearch.h.
12837         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
12838         HAVE_TSEARCH.
12839         * modules/tsearch (Files): Remove lib/tsearch.h.
12840         (Depends-on): Add search.
12841         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
12842         (Include): Change tsearch.h into search.h.
12843
12844 2007-03-24  Bruno Haible  <bruno@clisp.org>
12845
12846         * modules/fpucw: New file.
12847         * lib/fpucw.h: New file.
12848         * lib/frexp.c: Include fpucw.h.
12849         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
12850         (FUNC): Use them.
12851         * lib/printf-frexp.c: Include fpucw.h.
12852         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
12853         (FUNC): Use them.
12854         * lib/vasnprintf.c: Include fpucw.h.
12855         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
12856         'long double' calculations.
12857         * tests/test-frexpl.c: Include fpucw.h.
12858         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
12859         * tests/test-printf-frexpl.c: Include fpucw.h.
12860         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
12861         * modules/frexpl (Depends-on): Add fpucw.
12862         * modules/printf-frexpl (Depends-on): Likewise.
12863         * modules/fprintf-posix (Depends-on): Likewise.
12864         * modules/snprintf-posix (Depends-on): Likewise.
12865         * modules/sprintf-posix (Depends-on): Likewise.
12866         * modules/vasnprintf-posix (Depends-on): Likewise.
12867         * modules/vasprintf-posix (Depends-on): Likewise.
12868         * modules/vfprintf-posix (Depends-on): Likewise.
12869         * modules/vsnprintf-posix (Depends-on): Likewise.
12870         * modules/vsprintf-posix (Depends-on): Likewise.
12871         * modules/frexpl-tests (Depends-on): Likewise.
12872         * modules/printf-frexpl-tests (Depends-on): Likewise.
12873
12874 2007-03-24  Bruno Haible  <bruno@clisp.org>
12875
12876         * lib/float+.h: New file.
12877         * lib/isnan.c: Include float+.h.
12878         (SIZE): New macro.
12879         (FUNC): Compare only SIZE bytes of the value.
12880         * lib/vasnprintf.c: Include float+.h.
12881         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
12882         SIZEOF_LDBL or SIZEOF_DBL bytes.
12883         * modules/isnan-nolibm (Files): Add lib/float+.h.
12884         * modules/isnanl-nolibm (Files): Add lib/float+.h.
12885         * modules/isnanl (Files): Add lib/float+.h.
12886         * modules/vasnprintf (Files): Add lib/float+.h.
12887
12888 2007-03-24  Bruno Haible  <bruno@clisp.org>
12889
12890         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
12891         include isnanl-nolibm.h.
12892
12893 2007-03-24  Bruno Haible  <bruno@clisp.org>
12894
12895         * tests/test-read-file.c (main): Don't produce spurious output for
12896         expected situations. Make the test fail if it encountered unexpected
12897         results.
12898
12899 2007-03-24  Bruno Haible  <bruno@clisp.org>
12900
12901         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
12902         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
12903
12904 2007-03-24  Bruno Haible  <bruno@clisp.org>
12905
12906         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
12907
12908 2007-03-24  Bruno Haible  <bruno@clisp.org>
12909
12910         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
12911         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
12912
12913         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
12914         * modules/utf8-ucs4: Turn into a symbolic link to module
12915         unistr/u8-mbtouc.
12916
12917         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
12918         utf8-ucs4-unsafe.
12919         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
12920         unistr/u8-mbtouc-unsafe.
12921
12922         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
12923         * modules/utf16-ucs4: Turn into a symbolic link to module
12924         unistr/u16-mbtouc.
12925
12926         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
12927         utf16-ucs4-unsafe.
12928         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
12929         unistr/u16-mbtouc-unsafe.
12930
12931         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
12932         * modules/ucs4-utf8: Turn into a symbolic link to module
12933         unistr/u8-ubtomb.
12934
12935         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
12936         * modules/ucs4-utf16: Turn into a symbolic link to module
12937         unistr/u16-ubtomb.
12938
12939 2007-03-24  Bruno Haible  <bruno@clisp.org>
12940
12941         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
12942         Enable the function only if HAVE_INLINE.
12943         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
12944         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
12945         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
12946         Enable the function only if HAVE_INLINE.
12947         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
12948         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
12949         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
12950         Enable the function only if HAVE_INLINE.
12951         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
12952         Enable the function only if HAVE_INLINE.
12953         * modules/utf8-ucs4: Update.
12954         * modules/utf8-ucs4-unsafe: Update.
12955         * modules/utf16-ucs4: Update.
12956         * modules/utf16-ucs4-unsafe: Update.
12957         * modules/ucs4-utf8: Update.
12958         * modules/ucs4-utf16: Update.
12959
12960 2007-03-24  Bruno Haible  <bruno@clisp.org>
12961
12962         * lib/utf8-ucs4.h: Remove file.
12963         * lib/utf8-ucs4-unsafe.h: Remove file.
12964         * lib/utf16-ucs4.h: Remove file.
12965         * lib/utf16-ucs4-unsafe.h: Remove file.
12966         * lib/ucs4-utf8.h: Remove file.
12967         * lib/ucs4-utf16.h: Remove file.
12968         * lib/unistr.h: Include their previous contents.
12969         * m4/utf-ucs4.m4: Remove file.
12970         * m4/ucs4-utf.m4: Remove file.
12971         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
12972         (Depends-on): Add unistr/base.
12973         (configure.ac): Remove gl_UTF_UCS4.
12974         (Makefile.am): Update.
12975         (Include): Change to unistr.h.
12976         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
12977         (Depends-on): Add unistr/base.
12978         (configure.ac): Remove gl_UTF_UCS4.
12979         (Makefile.am): Update.
12980         (Include): Change to unistr.h.
12981         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
12982         (Depends-on): Add unistr/base.
12983         (configure.ac): Remove gl_UTF_UCS4.
12984         (Makefile.am): Update.
12985         (Include): Change to unistr.h.
12986         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
12987         (Depends-on): Add unistr/base.
12988         (configure.ac): Remove gl_UTF_UCS4.
12989         (Makefile.am): Update.
12990         (Include): Change to unistr.h.
12991         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
12992         (Depends-on): Add unistr/base.
12993         (configure.ac): Remove gl_UCS4_UTF.
12994         (Makefile.am): Update.
12995         (Include): Change to unistr.h.
12996         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
12997         (Depends-on): Add unistr/base.
12998         (configure.ac): Remove gl_UCS4_UTF.
12999         (Makefile.am): Update.
13000         (Include): Change to unistr.h.
13001         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
13002         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
13003         utf8-ucs4-unsafe.h.
13004         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
13005         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
13006         utf16-ucs4-unsafe.h.
13007         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
13008         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
13009         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
13010         * lib/unistr/u8-strchr.c: Likewise.
13011         * lib/unistr/u8-strrchr.c: Likewise.
13012         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
13013         * lib/unistr/u16-strchr.c: Likewise.
13014         * lib/unistr/u16-strrchr.c: Likewise.
13015         * lib/striconveh.c: Update.
13016         * lib/linebreak.c: Update.
13017
13018 2007-03-24  Bruno Haible  <bruno@clisp.org>
13019
13020         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
13021         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
13022
13023 2007-03-22  Bruno Haible  <bruno@clisp.org>
13024
13025         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
13026
13027 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13028
13029         * MODULES.html.sh (File system functions): New module write-any-file.
13030         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
13031         * m4/write-any-file.m4: New files.
13032
13033 2007-03-23  Eric Blake  <ebb9@byu.net>
13034
13035         * gnulib-tool: Rearrange space-tab sequences, since some editors
13036         like to eat them.
13037
13038 2007-03-23  Eric Blake  <ebb9@byu.net>
13039
13040         * lib/version-etc.c (version_etc_va): Update license wording to
13041         be more concise.  Recommended by Richard Stallman.
13042
13043 2007-03-22  Bruno Haible  <bruno@clisp.org>
13044
13045         * lib/poll.c (MSG_PEEK): New fallback definition.
13046
13047 2007-03-22  Bruno Haible  <bruno@clisp.org>
13048
13049         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
13050         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
13051         (main): Update.
13052         Fixes a compilation error on BeOS.
13053
13054 2007-03-22  Bruno Haible  <bruno@clisp.org>
13055
13056         * modules/frexpl-tests: New file.
13057         * tests/test-frexpl.c: New file.
13058
13059         * modules/frexpl: New file.
13060         * m4/frexpl.m4: New file.
13061         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
13062         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
13063         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
13064         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
13065         (Depends-on): Add frexpl. Remove isnanl-nolibm.
13066         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
13067
13068 2007-03-22  Bruno Haible  <bruno@clisp.org>
13069
13070         * lib/frexpl.c: Share code with lib/frexp.c.
13071         * modules/mathl (Files): Add lib/frexp.c.
13072         (Depends-on): Add isnanl-nolibm.
13073
13074 2007-03-22  Bruno Haible  <bruno@clisp.org>
13075
13076         * modules/printf-frexp (Files): Add m4/frexp.m4.
13077         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
13078         only if the found frexp function actually works.
13079
13080 2007-03-22  Bruno Haible  <bruno@clisp.org>
13081
13082         * lib/frexp.c: Remove older implementation that uses divisions.
13083
13084 2007-03-21  Bruno Haible  <bruno@clisp.org>
13085
13086         * modules/frexp-tests: New file.
13087         * tests/test-frexp.c: New file.
13088
13089         * modules/frexp: New file.
13090         * lib/frexp.c: New file.
13091         * m4/frexp.m4: New file.
13092         * lib/math_.h (frexp): New declaration.
13093         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
13094         REPLACE_FREXP.
13095         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
13096
13097 2007-03-21  Bruno Haible  <bruno@clisp.org>
13098
13099         * modules/isnanl-tests: New file.
13100         * tests/test-isnanl.c: New file.
13101
13102         * modules/isnanl: New file.
13103         * lib/isnanl.h: New file.
13104         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
13105         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
13106         gl_FUNC_ISNANL_WORKS.
13107         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
13108         New macros.
13109
13110 2007-03-21  Bruno Haible  <bruno@clisp.org>
13111
13112         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
13113         lib/isnanl.h.
13114         (Include): Update.
13115         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
13116         * lib/vasnprintf.c: Update.
13117         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
13118         tests/test-isnanl.h, remove tests/test-isnanl.c.
13119         (Makefile.am): Update.
13120         * tests/test-isnanl-nolibm.c: New file.
13121         * tests/test-isnanl.h: New file.
13122         * tests/test-isnanl.c: Remove file.
13123
13124 2007-03-21  Jim Meyering  <jim@meyering.net>
13125
13126         When trying to open ".", treat ESTALE like EACCES.
13127         * lib/savewd.c (savewd_save): Resort to forking not just upon
13128         failure with EACCES, but also when errno is ESTALE.
13129
13130 2007-03-20  Bruno Haible  <bruno@clisp.org>
13131
13132         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
13133         Needed on AIX 5.1. Reported by Matthew Woehlke.
13134
13135 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
13136
13137         Suggestions by Bruno Haible:
13138         * lib/acl-internal.h: Include "gettext.h" rather than rolling
13139         our own.
13140         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
13141         * modules/acl (Depends-on): Add gettext.
13142
13143 2007-03-19  Bruno Haible  <bruno@clisp.org>
13144
13145         * modules/iconvme: Remove file.
13146         * lib/iconvme.h: Remove file.
13147         * lib/iconvme.c: Remove file.
13148         * m4/iconvme.m4: Remove file.
13149
13150 2007-03-19  Bruno Haible  <bruno@clisp.org>
13151
13152         * doc/relocatable-maint.texi: Break long shell script line.
13153         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
13154
13155 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
13156
13157         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
13158         handle file_has_acl.
13159         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
13160         * lib/acl.c: Move header inclusions and related macro defns into
13161         lib/acl-internal.h.
13162         (S_ISLNK): Remove defn, since that's now done for us.
13163         (file_has_acl): Move to lib/file-has-acl.c.
13164         Call acl_trivial if available.  This is the crucial part of the fix.
13165         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
13166         shared within the library.  Rewrite a bit, partly to make it compatible
13167         with the GNU coding style.
13168         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
13169         Remove unnecessary double-quotes.
13170         Don't test for acl_to_text; the build will catch that.
13171         Replace acl_entries if it doesn't exist and it is needed.
13172         Check for -lsec and acl_trivial (as used on Solaris 10).
13173         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
13174         lib/file-has-acl.c.
13175         (Depends-on): Add sys_stat, for S_ISLNK.
13176
13177 2007-03-19  Ben Pfaff  <blp@gnu.org>
13178
13179         * doc/gnulib.texi: Fix typos.
13180         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
13181
13182 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
13183
13184         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
13185         If size is zero here, buf must be zero.
13186
13187 2007-03-19  Simon Josefsson  <simon@josefsson.org>
13188
13189         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
13190         <bruno@clisp.org>.
13191
13192 2007-03-18  Bruno Haible  <bruno@clisp.org>
13193
13194         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
13195         Suggested by Eric Blake.
13196
13197 2007-03-18  Ben Pfaff  <blp@gnu.org>
13198
13199         * doc/relocatable.texi: Recommend using as prefix a directory
13200         that does not exist and will never be created.  Based on
13201         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
13202         and others.
13203
13204 2007-03-17  Bruno Haible  <bruno@clisp.org>
13205
13206         * lib/fchownat.c: Include lchown.h.
13207
13208 2007-03-17  Bruno Haible  <bruno@clisp.org>
13209
13210         Fix endless loop when the given allocated size was > INT_MAX.
13211         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
13212         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
13213         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
13214         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
13215         * lib/sprintf.c (sprintf): Likewise.
13216
13217 2007-03-17  Bruno Haible  <bruno@clisp.org>
13218
13219         * tests/test-argp-2.sh (func_compare): Output a context diff.
13220
13221 2007-03-17  Bruno Haible  <bruno@clisp.org>
13222
13223         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
13224         locale's decimal-point character.
13225
13226 2007-03-17  Bruno Haible  <bruno@clisp.org>
13227
13228         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
13229         before comparing it. Needed because on some platforms (e.g. x86) a
13230         'long double' occupies less bytes than sizeof (long double).
13231
13232 2007-03-17  Bruno Haible  <bruno@clisp.org>
13233
13234         * tests/test-crc.c (main): Make printf statements 64-bit clean.
13235         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
13236         * tests/test-getaddrinfo.c (simple): Likewise.
13237         * tests/test-read-file.c (main): Likewise.
13238
13239 2007-03-17  Bruno Haible  <bruno@clisp.org>
13240
13241         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
13242
13243 2007-03-17  Bruno Haible  <bruno@clisp.org>
13244
13245         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
13246         unused variable.
13247
13248 2007-03-17  Bruno Haible  <bruno@clisp.org>
13249
13250         * tests/test-c-strcasecmp.c: Include c-strcase.h.
13251         * tests/test-c-strncasecmp.c: Likewise.
13252
13253 2007-03-17  Bruno Haible  <bruno@clisp.org>
13254
13255         * modules/stdlib (Depends-on): Add unistd.
13256         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
13257         Needed for MacOS X 10.3.
13258
13259 2007-03-17  Bruno Haible  <bruno@clisp.org>
13260
13261         * lib/unistr/u-strdup.h: Include <stdlib.h>.
13262
13263 2007-03-17  Bruno Haible  <bruno@clisp.org>
13264
13265         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
13266
13267 2007-03-17  Bruno Haible  <bruno@clisp.org>
13268
13269         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
13270         to reflect files copied from gnulib (with or without modifications).
13271         Suggested by Jim Meyering.
13272
13273 2007-03-17  Eric Blake  <ebb9@byu.net>
13274
13275         * NEWS: Document stdlib change from 2007-02-18.
13276
13277 2007-03-17  Jim Meyering  <jim@meyering.net>
13278
13279         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
13280         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
13281         someone uses a name containing shell meta-characters.
13282         Reported by Alfred M. Szmidt.
13283
13284         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
13285
13286 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
13287
13288         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
13289         and copy gettext configuration files only if configure.ac contains
13290         a use of AM_GNU_GETTEXT_VERSION.
13291
13292 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
13293
13294         * build-aux/bootstrap (gnulib_name): New variable.
13295         (gnulib_tool_options): Use it.
13296
13297 2007-03-13  Simon Josefsson  <simon@josefsson.org>
13298
13299         * tests/test-des.c: Use new namespace.
13300
13301 2007-03-15  Bruno Haible  <bruno@clisp.org>
13302
13303         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
13304         Reported by James Youngman <jay@gnu.org>.
13305
13306 2007-03-15  Bruno Haible  <bruno@clisp.org>
13307
13308         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
13309         declared prototype. Needed with cc on OSF/1 5.1.
13310
13311 2007-03-15  Bruno Haible  <bruno@clisp.org>
13312
13313         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
13314         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
13315         (struct gl_list_implementation): Add dispose_fn argument to the
13316         'create_empty', 'create' methods.
13317         (struct gl_list_impl_base): Add field 'dispose_fn'.
13318         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
13319         argument.
13320         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
13321         dispose_fn argument.
13322         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
13323         dispose_fn on the dropped values.
13324         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
13325         dispose_fn argument.
13326         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
13327         dropped values.
13328         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
13329         (gl_tree_remove_node): Call dispose_fn on the dropped value.
13330         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
13331         (gl_tree_remove_node): Call dispose_fn on the dropped value.
13332         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
13333         argument.
13334         (gl_tree_list_free): Call dispose_fn on the dropped values.
13335         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
13336         the dropped values.
13337         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
13338         Add dispose_fn argument.
13339         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
13340         Call dispose_fn on the dropped values.
13341         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
13342         Add dispose_fn argument.
13343         (gl_sublist_create): Initialize the 'dispose_fn' field.
13344         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
13345         * tests/test-array_list.c (main): Update.
13346         * tests/test-carray_list.c (main): Update.
13347         * tests/test-avltree_list.c (main): Update.
13348         * tests/test-rbtree_list.c (main): Update.
13349         * tests/test-avltreehash_list.c (main): Update.
13350         * tests/test-rbtreehash_list.c (main): Update.
13351         * tests/test-linked_list.c (main): Update.
13352         * tests/test-linkedhash_list.c (main): Update.
13353         * tests/test-array_oset.c (main): Update.
13354
13355 2007-03-15  Bruno Haible  <bruno@clisp.org>
13356
13357         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
13358         (gl_oset_create_empty): Add dispose_fn argument.
13359         (struct gl_oset_implementation): Add dispose_fn argument to
13360         'create_empty' method.
13361         (struct gl_oset_impl_base): Add dispose_fn field.
13362         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
13363         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
13364         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
13365         values.
13366         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
13367         (gl_tree_oset_free): Call dispose_fn on the dropped values.
13368         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
13369         dropped value.
13370         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
13371         dropped value.
13372         * tests/test-array_oset.c (main): Update.
13373         * tests/test-avltree_oset.c (main): Update.
13374         * tests/test-rbtree_oset.c (main): Update.
13375         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
13376
13377 2007-03-13  Bruno Haible  <bruno@clisp.org>
13378
13379         * tests/test-stdbool.c (i): Update after last patch.
13380
13381 2007-03-12  Bruno Haible  <bruno@clisp.org>
13382
13383         * lib/quotearg.c: Include <wctype.h> early, before the definition of
13384         the iswprint macro. Needed on Solaris 2.5.1.
13385
13386 2007-03-12  Bruno Haible  <bruno@clisp.org>
13387
13388         * tests/test-printf-frexp.c (main): Declare x as volatile.
13389
13390 2007-03-12  Simon Josefsson  <simon@josefsson.org>
13391
13392         * doc/gnulib.texi (Build robot for gnulib): New section.
13393
13394 2007-03-12  Jim Meyering  <jim@meyering.net>
13395
13396         * build-aux/bootstrap: New file.
13397         * build-aux/bootstrap.conf: New file, from coreutils.
13398
13399 2007-03-11  Bruno Haible  <bruno@clisp.org>
13400
13401         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
13402
13403 2007-03-12  Simon Josefsson  <simon@josefsson.org>
13404
13405         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
13406         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
13407         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
13408
13409 2007-03-11  Bruno Haible  <bruno@clisp.org>
13410
13411         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
13412         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
13413
13414 2007-03-11  Bruno Haible  <bruno@clisp.org>
13415
13416         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
13417         formula. Needed for SunPRO C 5.0.
13418
13419 2007-03-11  Bruno Haible  <bruno@clisp.org>
13420
13421         * modules/long-options (Depends-on): Add getopt.
13422
13423 2007-03-11  Bruno Haible  <bruno@clisp.org>
13424
13425         * modules/modechange (Depends-on): Add stdbool.
13426
13427 2007-03-11  Bruno Haible  <bruno@clisp.org>
13428
13429         * modules/i-ring (Depends-on): Add stdbool.
13430
13431 2007-03-11  Bruno Haible  <bruno@clisp.org>
13432
13433         * modules/gc-des (Depends-on): Add stdbool.
13434
13435 2007-03-11  Bruno Haible  <bruno@clisp.org>
13436
13437         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
13438
13439 2007-03-11  Bruno Haible  <bruno@clisp.org>
13440
13441         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
13442
13443 2007-03-11  Bruno Haible  <bruno@clisp.org>
13444
13445         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
13446
13447 2007-03-11  Bruno Haible  <bruno@clisp.org>
13448
13449         * lib/vasnprintf.c (sprintf): Undefine.
13450
13451 2007-03-11  Bruno Haible  <bruno@clisp.org>
13452
13453         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
13454         initializers in SunPRO C and Compaq C compilers.
13455
13456 2007-03-11  Bruno Haible  <bruno@clisp.org>
13457
13458         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
13459         decrementing code ANSI C compliant.
13460
13461 2007-03-11  Bruno Haible  <bruno@clisp.org>
13462
13463         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
13464         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
13465
13466 2007-03-11  Bruno Haible  <bruno@clisp.org>
13467
13468         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
13469         <stdbool.h> substitute doesn't pass.
13470
13471 2007-03-11  Bruno Haible  <bruno@clisp.org>
13472
13473         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
13474
13475 2007-03-11  Bruno Haible  <bruno@clisp.org>
13476
13477         * gnulib-tool (func_create_megatestdir): Create also an autobuild
13478         script, for submission to autobuild.josefsson.org.
13479
13480 2007-03-10  Bruno Haible  <bruno@clisp.org>
13481
13482         * modules/canonicalize-lgpl-tests: New file.
13483         * tests/test-canonicalize-lgpl.sh: New file.
13484         * tests/test-canonicalize-lgpl.c: New file.
13485
13486         * modules/c-strcase-tests: New file.
13487         * tests/test-c-strcase.sh: New file.
13488         * tests/test-c-strcasecmp.c: New file.
13489         * tests/test-c-strncasecmp.c: New file.
13490
13491         * modules/atexit-tests: New file.
13492         * tests/test-atexit.sh: New file.
13493         * tests/test-atexit.c: New file.
13494
13495 2007-03-10  Bruno Haible  <bruno@clisp.org>
13496
13497         * tests/test-binary-io.sh: Use temporary filenames that are not so
13498         likely to clash with those of other tests (in a parallel make).
13499         * tests/test-binary-io.c: Likewise.
13500
13501 2007-03-10  Bruno Haible  <bruno@clisp.org>
13502
13503         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
13504         fallback; use #error instead.
13505         Suggested by Simon Josefsson.
13506
13507 2007-03-10  Bruno Haible  <bruno@clisp.org>
13508
13509         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
13510         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
13511         first and the last.
13512
13513 2007-03-10  Bruno Haible  <bruno@clisp.org>
13514
13515         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
13516
13517 2007-03-10  Bruno Haible  <bruno@clisp.org>
13518
13519         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
13520         "make distcheck".
13521         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
13522         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
13523         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
13524
13525 2007-03-10  Bruno Haible  <bruno@clisp.org>
13526
13527         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
13528         variable.
13529         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
13530         variable.
13531
13532 2007-03-09  Eric Blake  <ebb9@byu.net>
13533         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
13534
13535         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
13536         types are not being provided by gnulib.
13537         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
13538         types are supported.
13539
13540 2007-03-10  Bruno Haible  <bruno@clisp.org>
13541
13542         * lib/stdio_.h (__attribute__): New macro.
13543         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
13544         vsprintf): Specify __attribute__ __format__ for GCC.
13545         Suggested by Eric Blake.
13546
13547 2007-03-09  Bruno Haible  <bruno@clisp.org>
13548
13549         * modules/printf-posix-tests: New file.
13550         * tests/test-printf-posix.sh: New file.
13551         * tests/test-printf-posix.c: New file.
13552
13553         * modules/printf-posix: New file.
13554         * lib/printf.c: New file.
13555         * m4/printf-posix-rpl.m4: New file.
13556         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
13557         REPLACE_PRINTF.
13558         * lib/stdio_.h (printf): New declaration.
13559         (format, __format__, ____printf____, ____scanf____, ____strftime____,
13560         ____strfmon____): New macros.
13561         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
13562         REPLACE_PRINTF.
13563
13564 2007-03-09  Bruno Haible  <bruno@clisp.org>
13565
13566         * tests/test-vasnprintf-posix2.sh: New file.
13567         * tests/test-vasnprintf-posix2.c: New file.
13568         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
13569         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
13570         (Makefile.am): Activate test-vasnprintf-posix2.sh.
13571
13572         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
13573         a locale dependent decimal point, rather than always '.'.
13574
13575 2007-03-09  Eric Blake  <ebb9@byu.net>
13576
13577         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
13578         spite of platforms like Tandem/NSK that define it to -1.
13579
13580 2007-03-08  Bruno Haible  <bruno@clisp.org>
13581
13582         * modules/vprintf-posix-tests: New file.
13583         * tests/test-vprintf-posix.sh: New file.
13584         * tests/test-vprintf-posix.c: New file.
13585         * tests/test-printf-posix.h: New file.
13586
13587         * modules/vprintf-posix: New file.
13588         * lib/vprintf.c: New file.
13589         * m4/vprintf-posix.m4: New file.
13590         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
13591         REPLACE_VPRINTF.
13592         * lib/stdio_.h (vprintf): New declaration.
13593         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
13594         REPLACE_VPRINTF.
13595
13596 2007-03-08  Bruno Haible  <bruno@clisp.org>
13597
13598         * modules/fprintf-posix-tests: New file.
13599         * tests/test-fprintf-posix.sh: New file.
13600         * tests/test-fprintf-posix.c: New file.
13601
13602         * modules/fprintf-posix: New file.
13603         * lib/fprintf.c: New file.
13604         * m4/fprintf-posix.m4: New file.
13605         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
13606         REPLACE_FPRINTF.
13607         * lib/stdio_.h (fprintf): New declaration.
13608         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
13609         REPLACE_FPRINTF.
13610
13611 2007-03-08  Bruno Haible  <bruno@clisp.org>
13612
13613         * modules/vfprintf-posix-tests: New file.
13614         * tests/test-vfprintf-posix.sh: New file.
13615         * tests/test-vfprintf-posix.c: New file.
13616         * tests/test-fprintf-posix.h: New file.
13617         * tests/test-fprintf-posix.out: New file.
13618
13619         * modules/vfprintf-posix: New file.
13620         * lib/vfprintf.c: New file.
13621         * m4/vfprintf-posix.m4: New file.
13622         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
13623         REPLACE_VFPRINTF.
13624         * lib/stdio_.h (vfprintf): New declaration.
13625         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
13626         REPLACE_VFPRINTF.
13627
13628 2007-03-08  Bruno Haible  <bruno@clisp.org>
13629
13630         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
13631
13632 2007-03-08  Bruno Haible  <bruno@clisp.org>
13633
13634         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
13635         instead of 'expr' invocations.
13636         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13637         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13638         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13639         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13640         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13641         Suggested by Paul Eggert.
13642
13643 2007-03-08  Bruno Haible  <bruno@clisp.org>
13644
13645         * modules/fseterr-tests: New file.
13646         * tests/test-fseterr.c: New file.
13647
13648         * modules/fseterr: New file.
13649         * lib/fseterr.h: New file.
13650         * lib/fseterr.c: New file.
13651
13652 2007-03-08  Bruno Haible  <bruno@clisp.org>
13653
13654         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
13655         * lib/getopt_.h: Likewise.
13656         * lib/mbswidth.h: Likewise.
13657         * lib/setenv.h: Likewise.
13658         * lib/vasnprintf.h: Likewise.
13659         * lib/vasprintf.h: Likewise.
13660         * lib/verror.h: Likewise.
13661         * lib/xsetenv.h: Likewise.
13662         * lib/xvasprintf.h: Likewise.
13663
13664 2007-03-08  Jim Meyering  <jim@meyering.net>
13665
13666         * users.txt: Add parted.
13667
13668         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
13669
13670 2007-03-07  Bruno Haible  <bruno@clisp.org>
13671
13672         * m4/printf.m4: Make the shell script snippets copy&pastable.
13673
13674 2007-03-02  Bruno Haible  <bruno@clisp.org>
13675
13676         * lib/netinet_in_.h: New file.
13677         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
13678         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
13679         * modules/netinet_in (Files): Add lib/netinet_in_.h.
13680         (Depends-on): Add absolute-header.
13681         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
13682         into netinet/in.h.
13683
13684 2007-03-03  Bruno Haible  <bruno@clisp.org>
13685
13686         * lib/sys_select_.h: New file.
13687         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
13688         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
13689         * modules/sys_select (Files): Add lib/sys_select_.h.
13690         (Depends-on): Add absolute-header.
13691         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
13692         into sys/select.h.
13693
13694 2007-03-02  Bruno Haible  <bruno@clisp.org>
13695
13696         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
13697         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
13698         values.
13699         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
13700         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
13701         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
13702         * modules/sys_socket (Depends-on): Add absolute-header.
13703         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
13704         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
13705         (Include): Remove requirement of inclusion of <sys/types.h>.
13706
13707 2007-03-02  Bruno Haible  <bruno@clisp.org>
13708
13709         * lib/byteswap_.h (bswap_32): Fix formula.
13710
13711 2007-03-06  Bruno Haible  <bruno@clisp.org>
13712
13713         * modules/sprintf-posix-tests: New file.
13714         * tests/test-sprintf-posix.c: New file.
13715
13716         * modules/sprintf-posix: New file.
13717         * lib/sprintf.c: New file.
13718         * m4/sprintf-posix.m4: New file.
13719         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
13720         REPLACE_SPRINTF.
13721         * lib/stdio_.h (sprintf): New declaration.
13722         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
13723         REPLACE_SPRINTF.
13724
13725 2007-03-06  Bruno Haible  <bruno@clisp.org>
13726
13727         * modules/vsprintf-posix-tests: New file.
13728         * tests/test-vsprintf-posix.c: New file.
13729         * tests/test-sprintf-posix.h: New file.
13730
13731         * modules/vsprintf-posix: New file.
13732         * lib/vsprintf.c: New file.
13733         * m4/vsprintf-posix.m4: New file.
13734         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
13735         REPLACE_VSPRINTF.
13736         * lib/stdio_.h (vsprintf): New declaration.
13737         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
13738         REPLACE_VSPRINTF.
13739
13740 2007-03-06  Bruno Haible  <bruno@clisp.org>
13741
13742         * modules/vsnprintf (Depend-on): Remove minmax.
13743
13744 2007-03-06  Bruno Haible  <bruno@clisp.org>
13745
13746         * modules/snprintf-posix-tests: New file.
13747         * tests/test-snprintf-posix.c: New file.
13748
13749         * modules/snprintf-posix: New file.
13750         * m4/snprintf-posix.m4: New file.
13751         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
13752         gl_FUNC_SNPRINTF.
13753         (gl_FUNC_SNPRINTF): Invoke it.
13754         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
13755         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
13756         is set.
13757         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
13758
13759 2007-03-06  Bruno Haible  <bruno@clisp.org>
13760
13761         * modules/vsnprintf-posix-tests: New file.
13762         * tests/test-vsnprintf-posix.c: New file.
13763         * tests/test-snprintf-posix.h: New file.
13764
13765         * modules/vsnprintf-posix: New file.
13766         * m4/vsnprintf-posix.m4: New file.
13767         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
13768         gl_FUNC_VSNPRINTF.
13769         (gl_FUNC_VSNPRINTF): Invoke it.
13770         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
13771         * lib/stdio_.h (vsnprintf): Define as a replacement if
13772         REPLACE_VSNPRINTF is set.
13773         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
13774
13775 2007-03-06  Bruno Haible  <bruno@clisp.org>
13776
13777         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
13778         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
13779
13780 2007-03-06  Bruno Haible  <bruno@clisp.org>
13781
13782         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
13783         (asinl): Declare also if HAVE_DECL_ASINL is set.
13784         (atanl): Declare also if HAVE_DECL_ATANL is set.
13785         (ceill): Declare also if HAVE_DECL_CEILL is set.
13786         (cosl): Declare also if HAVE_DECL_COSL is set.
13787         (expl): Declare also if HAVE_DECL_EXPL is set.
13788         (floorl): Declare also if HAVE_DECL_FLOORL is set.
13789         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
13790         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
13791         (logl): Declare also if HAVE_DECL_LOGL is set.
13792         (sinl): Declare also if HAVE_DECL_SINL is set.
13793         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
13794         (tanl): Declare also if HAVE_DECL_TANL is set.
13795         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
13796         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
13797         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
13798         declaration of frexpl, ldexpl.
13799         * modules/printf-frexpl (Depends-on): Add math.
13800         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
13801
13802 2007-03-05  Bruno Haible  <bruno@clisp.org>
13803
13804         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
13805         frexpl and ldexpl are declared.
13806         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
13807
13808 2007-03-05  Bruno Haible  <bruno@clisp.org>
13809
13810         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
13811         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
13812
13813 2007-03-05  Bruno Haible  <bruno@clisp.org>
13814
13815         * lib/stdio_.h: Include <stddef.h>.
13816
13817 2007-03-05  Bruno Haible  <bruno@clisp.org>
13818
13819         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
13820
13821 2007-03-05  Bruno Haible  <bruno@clisp.org>
13822
13823         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
13824         NetBSD 4, from Ralf Wildenhues.
13825
13826 2007-03-04  Bruno Haible  <bruno@clisp.org>
13827
13828         * lib/vasprintf.h: Update #if logic for the case when the functions
13829         exist but are overridden.
13830
13831 2007-03-04  Bruno Haible  <bruno@clisp.org>
13832
13833         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
13834         implementations: glibc-2.4 and MacOS X 10.3.
13835         * tests/test-vasnprintf-posix.c (test_function): Test also the case
13836         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
13837         * tests/test-vasprintf-posix.c (test_function): Likewise.
13838
13839 2007-03-04  Bruno Haible  <bruno@clisp.org>
13840
13841         * modules/vasprintf-posix-tests: New file.
13842         * tests/test-vasprintf-posix.c: New file.
13843
13844         * modules/vasprintf-posix: New file.
13845         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
13846         defined.
13847         * m4/vasprintf-posix.m4: New file.
13848         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
13849         gl_FUNC_VASPRINTF.
13850         (gl_FUNC_VASPRINTF): Invoke it.
13851         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
13852         here.
13853         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
13854
13855 2007-03-04  Bruno Haible  <bruno@clisp.org>
13856
13857         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
13858         REPLACE_GETTIMEOFDAY.
13859         * modules/sys_time (Makefile.am): Likewise.
13860         * m4/sys_time_h.m4: Likewise.
13861         * m4/gettimeofday.m4: Likewise.
13862
13863 2007-03-04  Bruno Haible  <bruno@clisp.org>
13864
13865         * modules/vasnprintf-posix-tests: New file.
13866         * tests/test-vasnprintf-posix.c: New file.
13867
13868         * modules/vasnprintf-posix: New file.
13869         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
13870         printf-frexpl.h.
13871         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
13872         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
13873         REPLACE_VASNPRINTF is defined.
13874         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
13875         gl_FUNC_VASNPRINTF.
13876         (gl_FUNC_VASNPRINTF): Invoke it.
13877         * m4/vasnprintf-posix.m4: New file.
13878         * m4/printf.m4: New file.
13879
13880 2007-03-04  Bruno Haible  <bruno@clisp.org>
13881
13882         Compile progreloc.c only if --enable-relocatable is specified.
13883         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
13884         if --enable-relocatable was specified.
13885         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
13886         lib_SOURCES.
13887
13888 2007-03-04  Jim Meyering  <jim@meyering.net>
13889
13890         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
13891         Use it consistently, rather than enumerating errno constants.
13892
13893 2007-03-04  Bruno Haible  <bruno@clisp.org>
13894
13895         * modules/xvasprintf-tests: New file.
13896         * tests/test-xvasprintf.c: New file.
13897
13898         * modules/vasprintf-tests: New file.
13899         * tests/test-vasprintf.c: New file.
13900
13901         * modules/vasnprintf-tests: New file.
13902         * tests/test-vasnprintf.c: New file.
13903
13904         * modules/vsnprintf-tests: New file.
13905         * tests/test-vsnprintf.c: New file.
13906
13907         * modules/snprintf-tests: New file.
13908         * tests/test-snprintf.c: New file.
13909
13910 2007-03-04  Bruno Haible  <bruno@clisp.org>
13911
13912         Compile relocatable.c only if --enable-relocatable is specified.
13913         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
13914         gl_RELOCATABLE_LIBRARY.
13915         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
13916         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
13917         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
13918         gl_RELOCATABLE_LIBRARY.
13919         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
13920         (Makefile.am): Remove lib_SOURCES.
13921         * modules/relocatable-lib-lgpl (configure.ac): Invoke
13922         gl_RELOCATABLE_LIBRARY.
13923         (Makefile.am): Remove lib_SOURCES.
13924         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
13925         always.
13926         * modules/relocatable-prog-wrapper (configure.ac): Invoke
13927         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
13928
13929 2007-03-04  Bruno Haible  <bruno@clisp.org>
13930
13931         * modules/argmatch-tests: New file.
13932         * tests/test-argmatch.c: New file.
13933
13934         * tests/test-allocsa.c (main): Halve the number of loop runs.
13935
13936         * modules/alloca-opt-tests: New file.
13937         * tests/test-alloca-opt.c: New file.
13938
13939 2007-03-04  Jim Meyering  <jim@meyering.net>
13940
13941         Work around difference between Linux ACLs and Solaris 10 ZFS.
13942         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
13943         for EINVAL.
13944
13945 2007-03-03  Bruno Haible  <bruno@clisp.org>
13946
13947         * modules/relocatable-prog (Depends-on): Add back progreloc's
13948         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
13949
13950 2007-03-03  Bruno Haible  <bruno@clisp.org>
13951
13952         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
13953         * modules/relocatable-lib: New file.
13954
13955 2007-03-03  Bruno Haible  <bruno@clisp.org>
13956
13957         * modules/relocatable-prog: Renamed from modules/relocatable.
13958         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
13959
13960 2007-03-03  Bruno Haible  <bruno@clisp.org>
13961
13962         * modules/relocatable-script (Files): Add doc/relocatable.texi,
13963         m4/relocatable-lib.m4.
13964         (Depends-on): Remove 'relocatable'.
13965         (configure.ac): Add gl_RELOCATABLE_NOP.
13966
13967 2007-03-03  Bruno Haible  <bruno@clisp.org>
13968
13969         * modules/relocatable-prog-wrapper: New file.
13970         * modules/relocatable (Depends-on): Add it. Remove all other
13971         dependencies except progname.
13972         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
13973
13974         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
13975         (gl_FUNC_STRERROR): Nop.
13976         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
13977
13978         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
13979         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
13980
13981         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
13982         (gl_FUNC_READLINK): Update.
13983
13984         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
13985
13986 2007-03-03  Bruno Haible  <bruno@clisp.org>
13987
13988         * lib/xreadlink.c: Include <unistd.h> unconditionally.
13989         * modules/xreadlink (Depends-on): Add unistd.
13990         * modules/xreadlink-with-size (Depends-on): Likewise.
13991
13992 2007-03-03  Bruno Haible  <bruno@clisp.org>
13993
13994         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
13995         extracted from gt_FUNC_SETENV.
13996         (gt_FUNC_SETENV): Remove macro.
13997         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
13998         remove gt_FUNC_SETENV.
13999
14000 2007-03-03  Bruno Haible  <bruno@clisp.org>
14001
14002         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
14003         ENABLE_RELOCATABLE here.
14004         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
14005
14006 2007-03-03  Bruno Haible  <bruno@clisp.org>
14007
14008         * modules/rbtreehash-list-tests (Depends-on): Add progname.
14009         * tests/test-rbtreehash_list.c: Include progname.h.
14010         (main): Call set_program_name.
14011
14012         * modules/rbtree-oset-tests (Depends-on): Add progname.
14013         * tests/test-rbtree_oset.c: Include progname.h.
14014         (main): Call set_program_name.
14015
14016         * modules/rbtree-list-tests (Depends-on): Add progname.
14017         * tests/test-rbtree_list.c: Include progname.h.
14018         (main): Call set_program_name.
14019
14020         * modules/linked-list-tests (Depends-on): Add progname.
14021         * tests/test-linked_list.c: Include progname.h.
14022         (main): Call set_program_name.
14023
14024 2007-03-03  Bruno Haible  <bruno@clisp.org>
14025
14026         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
14027         All uses of __restrict changed to _Restrict_.
14028         * lib/glob_.h (__restrict): Remove macro.
14029
14030 2007-03-02  Bruno Haible  <bruno@clisp.org>
14031
14032         * modules/gettext (configure.ac): Require gettext infrastructure
14033         from version 0.16.1.
14034
14035 2007-03-02  Bruno Haible  <bruno@clisp.org>
14036
14037         * modules/linkedhash-list-tests (Depends-on): Add progname.
14038         * tests/test-linkedhash_list.c: Include progname.h.
14039         (main): Call set_program_name.
14040
14041         * modules/carray-list-tests (Depends-on): Add progname.
14042         * tests/test-carray_list.c: Include progname.h.
14043         (main): Call set_program_name.
14044
14045         * modules/avltreehash-list-tests (Depends-on): Add progname.
14046         * tests/test-avltreehash_list.c: Include progname.h.
14047         (main): Call set_program_name.
14048
14049         * modules/avltree-oset-tests (Depends-on): Add progname.
14050         * tests/test-avltree_oset.c: Include progname.h.
14051         (main): Call set_program_name.
14052
14053         * modules/avltree-list-tests (Depends-on): Add progname.
14054         * tests/test-avltree_list.c: Include progname.h.
14055         (main): Call set_program_name.
14056
14057         * modules/array-oset-tests (Depends-on): Add progname.
14058         * tests/test-array_oset.c: Include progname.h.
14059         (main): Call set_program_name.
14060
14061         * modules/array-list-tests (Depends-on): Add progname.
14062         * tests/test-array_list.c: Include progname.h.
14063         (main): Call set_program_name.
14064
14065         * modules/argp-tests (Depends-on): Add progname.
14066         * tests/test-argp.c: Include argp.h first. Include progname.h.
14067         (main): Call set_program_name.
14068
14069 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
14070
14071         * doc/gnulib-tool.texi (Initial import): Reword description of
14072         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
14073         limited effect even if defined after the first system include.
14074
14075 2007-03-01  Bruno Haible  <bruno@clisp.org>
14076
14077         * build-aux/config.libpath: Update to libtool-1.5.22.
14078         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14079
14080 2007-03-01  Bruno Haible  <bruno@clisp.org>
14081
14082         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
14083         foo_CFLAGS.
14084         Reported by Ralf Wildenhues.
14085
14086 2007-03-01  Bruno Haible  <bruno@clisp.org>
14087
14088         * build-aux/install-reloc: Remove object files left over by some
14089         compilers.
14090         Reported by Ralf Wildenhues.
14091
14092 2007-03-01  Bruno Haible  <bruno@clisp.org>
14093
14094         * build-aux/install-reloc: Break long lines.
14095
14096 2007-03-01  Bruno Haible  <bruno@clisp.org>
14097
14098         * doc/relocatable.texi: Document that it may not work on OpenBSD.
14099         Reported by Ralf Wildenhues.
14100
14101 2007-03-01  Bruno Haible  <bruno@clisp.org>
14102
14103         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
14104         include ordering constraints.
14105
14106 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14107
14108         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
14109         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
14110         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
14111         as another example.
14112         * lib/time_.h: Fix misspelling.
14113         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
14114         Require gl_HEADER_TIME_H_DEFAULTS.
14115         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
14116         * m4/time_r.m4 (gl_TIME_R): Likewise.
14117         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
14118
14119 2007-03-01  Bruno Haible  <bruno@clisp.org>
14120
14121         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
14122         * m4/utimens.m4 (gl_UTIMENS): Likewise.
14123
14124 2007-03-01  Jim Meyering  <jim@meyering.net>
14125
14126         * modules/xreadlink (Maintainer): Add my name.
14127         * modules/xreadlink-with-size (Depends-on): Alphabetize.
14128
14129 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
14130             Bruno Haible  <bruno@clisp.org>
14131
14132         * build-aux/install-reloc: Compile also c-ctype.c.
14133         * build-aux/relocatable.sh.in: New file.
14134         * doc/relocatable.texi: New file.
14135         * doc/relocatable-maint.texi: New file.
14136         * doc/gnulib.texi: Include relocatable-maint.texi.
14137         * lib/progreloc.c: Include unistd.h unconditionally.
14138         * lib/relocwrapper.c: Include unistd.h unconditionally.
14139         Include c-ctype.h.
14140         (add_dotbin): Use c_tolower.
14141         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
14142         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
14143         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
14144         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
14145         to m4/relocatable-lib.m4.
14146         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
14147         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
14148         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
14149         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
14150         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
14151         * modules/relocatable: New file.
14152         * modules/relocatable-lib: New file.
14153         * modules/relocatable-script: New file.
14154
14155 2007-02-28  Bruno Haible  <bruno@clisp.org>
14156
14157         Import --enable-relocatable infrastructure.
14158         * build-aux/config.libpath: New file, from GNU gettext.
14159         * build-aux/install-reloc: New file, from GNU gettext.
14160         * build-aux/reloc-ldflags: New file, from GNU gettext.
14161         * lib/relocatable.h: New file, from GNU gettext.
14162         * lib/relocatable.c: New file, from GNU gettext.
14163         * lib/relocwrapper.c: New file, from GNU gettext.
14164         * m4/relocatable.m4: New file, from GNU gettext.
14165
14166 2007-02-28  Bruno Haible  <bruno@clisp.org>
14167
14168         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
14169
14170         * modules/xreadlink: New file, from GNU gettext with modifications.
14171         * lib/xreadlink.c: New file, from GNU gettext.
14172         * lib/xreadlink.h: Add comments.
14173         (xreadlink): New declaration.
14174
14175         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
14176         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
14177         lib/xreadlink-with-size.c.
14178         (configure.ac): Remove gl_XREADLINK invocation.
14179         (Makefile.am): Augment lib_SOURCES.
14180         * m4/xreadlink.m4: Remove file.
14181         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
14182         (xreadlink_with_size): Renamed from xreadink.
14183         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
14184         * modules/canonicalize (Depends-on): Replace xreadlink with
14185         xreadlink-with-size.
14186         * lib/canonicalize.c (canonicalize_filename_mode): Update.
14187
14188 2007-02-25  Jim Meyering  <jim@meyering.net>
14189
14190         * build-aux/announce-gen: When complaining about excess arguments,
14191         list them.
14192
14193 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14194
14195         * README: Document signed integer overflow situation more
14196         accurately.
14197
14198 2007-02-25  Bruno Haible  <bruno@clisp.org>
14199
14200         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
14201         'a' or 'A' conversion.
14202
14203 2007-02-25  Bruno Haible  <bruno@clisp.org>
14204
14205         * modules/filename: Renamed from modules/pathname.
14206         (Files): Replace lib/pathname.h with lib/filename.h. Replace
14207         lib/concatpath.c with lib/concat-filename.c.
14208         (Makefile.am): Update.
14209         (Include): Replace pathname.h with filename.h.
14210         * lib/filename.h: Renamed from lib/pathname.h.
14211         (concatenated_filename): Renamed from concatenated_pathname.
14212         * lib/concat-filename.c: Renamed from lib/concatpath.c.
14213         (concatenated_filename): Renamed from concatenated_pathname.
14214         * lib/findprog.c: Include filename.h instead of pathname.h.
14215         (find_in_path): Update.
14216         * lib/javacomp.c: Include filename.h instead of pathname.h.
14217         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
14218         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
14219         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
14220         is_oldgcj_14_13_usable, is_javac_usable): Update.
14221         * lib/javaexec.c: Include filename.h instead of pathname.h.
14222         (execute_java_class): Update.
14223         * modules/findprog: Update.
14224         * modules/javacomp: Update.
14225         * modules/javaexec: Update.
14226         * MODULES.html.sh (File system functions): Add 'filename', remove
14227         'pathname'.
14228
14229 2007-02-25  Bruno Haible  <bruno@clisp.org>
14230
14231         * modules/printf-frexpl-tests: New file.
14232         * tests/test-printf-frexpl.c: New file.
14233
14234         * modules/printf-frexpl: New file.
14235         * lib/printf-frexpl.h: New file.
14236         * lib/printf-frexpl.c: New file.
14237         * m4/printf-frexpl.m4: New file.
14238
14239 2007-02-25  Bruno Haible  <bruno@clisp.org>
14240
14241         * modules/printf-frexp-tests: New file.
14242         * tests/test-printf-frexp.c: New file.
14243
14244         * modules/printf-frexp: New file.
14245         * lib/printf-frexp.h: New file.
14246         * lib/printf-frexp.c: New file.
14247         * m4/printf-frexp.m4: New file.
14248
14249 2007-02-25  Bruno Haible  <bruno@clisp.org>
14250
14251         Assume automake >= 1.10 for the tests.
14252         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
14253         * modules/arctwo-tests: Likewise.
14254         * modules/argp-tests: Likewise.
14255         * modules/avltree-list-tests: Likewise.
14256         * modules/avltree-oset-tests: Likewise.
14257         * modules/avltreehash-list-tests: Likewise.
14258         * modules/carray-list-tests: Likewise.
14259         * modules/crc-tests: Likewise.
14260         * modules/des-tests: Likewise.
14261         * modules/gc-arcfour-tests: Likewise.
14262         * modules/gc-arctwo-tests: Likewise.
14263         * modules/gc-des-tests: Likewise.
14264         * modules/gc-hmac-md5-tests: Likewise.
14265         * modules/gc-hmac-sha1-tests: Likewise.
14266         * modules/gc-md2-tests: Likewise.
14267         * modules/gc-md4-tests: Likewise.
14268         * modules/gc-md5-tests: Likewise.
14269         * modules/gc-pbkdf2-sha1-tests: Likewise.
14270         * modules/gc-rijndael-tests: Likewise.
14271         * modules/gc-sha1-tests: Likewise.
14272         * modules/gc-tests: Likewise.
14273         * modules/getaddrinfo-tests: Likewise.
14274         * modules/hmac-md5-tests: Likewise.
14275         * modules/hmac-sha1-tests: Likewise.
14276         * modules/linked-list-tests: Likewise.
14277         * modules/linkedhash-list-tests: Likewise.
14278         * modules/lock-tests: Likewise.
14279         * modules/md2-tests: Likewise.
14280         * modules/md4-tests: Likewise.
14281         * modules/md5-tests: Likewise.
14282         * modules/rbtree-list-tests: Likewise.
14283         * modules/rbtree-oset-tests: Likewise.
14284         * modules/rbtreehash-list-tests: Likewise.
14285         * modules/read-file-tests: Likewise.
14286         * modules/rijndael-tests: Likewise.
14287         * modules/stdint-tests: Likewise.
14288         * modules/tls-tests: Likewise.
14289
14290 2007-02-24  Bruno Haible  <bruno@clisp.org>
14291
14292         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
14293         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
14294         function; instead check whether isnan with a double argument links.
14295         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
14296         function; instead check whether isnan with a 'long double' argument
14297         links.
14298         Reported by Eric Blake <ebb9@byu.net>.
14299
14300 2007-02-24  Bruno Haible  <bruno@clisp.org>
14301
14302         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
14303         defined.
14304         * lib/isnanl.c: Remove all code. Just include isnan.c.
14305         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
14306
14307 2007-02-25  Jim Meyering  <jim@meyering.net>
14308
14309         Avoid conflicting types for 'unsetenv' on FreeBSD.
14310         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
14311         conflicting with FreeBSD's (5.0 and 6.1) function declaration
14312         in stdlib.h.
14313
14314 2007-02-24  Bruno Haible  <bruno@clisp.org>
14315
14316         * modules/isnanl-nolibm-tests: New file.
14317         * tests/test-isnanl.c: New file.
14318
14319         * modules/isnanl-nolibm: New file.
14320         * lib/isnanl.h: New file.
14321         * lib/isnanl.c: New file.
14322         * m4/isnanl.m4: New file.
14323
14324 2007-02-24  Bruno Haible  <bruno@clisp.org>
14325
14326         * modules/isnan-nolibm-tests: New file.
14327         * tests/test-isnan.c: New file.
14328
14329         * modules/isnan-nolibm: New file.
14330         * lib/isnan.h: New file.
14331         * lib/isnan.c: New file.
14332         * m4/isnan.m4: New file.
14333
14334 2007-02-24  Bruno Haible  <bruno@clisp.org>
14335
14336         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
14337         assume that an exponent fits in 20 bits.
14338
14339 2007-02-24  Jim Meyering  <jim@meyering.net>
14340
14341         * m4/regex.m4: Update the description of the configure-time option,
14342         --without-included-regex, to state accurately what the defaults are,
14343         and perhaps to give people an idea why using this option is risky.
14344
14345 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
14346
14347         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
14348         loops on small arguments.  This attempts to avoid the problem
14349         Bruno Haible reported for AIX 4.3.2 in
14350         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
14351
14352 2007-02-23  Bruno Haible  <bruno@clisp.org>
14353
14354         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
14355         Needed for help2man.
14356
14357 2007-02-23  Karl Berry  <karl@gnu.org>
14358
14359         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
14360         exists, foo.h should be cvs-ignored, not committed.
14361
14362 2007-02-23  Eric Blake  <ebb9@byu.net>
14363
14364         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
14365         * lib/stat-time.h (includes): Likewise.
14366         * lib/utimecmp.c (includes): Likewise.
14367         * lib/utimens.h (includes): Likewise.
14368         * lib/getdate.y (includes): Also include "timespec.h" for use
14369         internal to the module.
14370         * modules/utimens (Depends-on): Revert yesterday's patch.
14371         * modules/nanosleep (Depends-on): Add missing dependency.
14372
14373 2007-02-22  Bruno Haible  <bruno@clisp.org>
14374
14375         * lib/glob.c: Don't include getlogin_r.h.
14376
14377 2007-02-22  Jim Meyering  <jim@meyering.net>
14378
14379         * modules/utimens (Depends-on): Add timespec, required for
14380         utimens.h's inclusion of timespec.h.
14381
14382 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
14383
14384         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
14385         long unreadable paths in GNU/Linux.  Problem reported by Andreas
14386         Schwab in
14387         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
14388         I'll try to think of a better way to fix the Solaris problem.
14389
14390         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
14391         like glibc; on Solaris 10, it fails with errno == EINVAL.
14392         POSIX says the behavior is unspecified if the first argument is NULL,
14393         so play it safe and never pass NULL to the system getcwd.
14394
14395 2007-02-21  Jim Meyering  <jim@meyering.net>
14396
14397         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
14398         of gettimeofday.  It would conflict with the one now always
14399         provided via sys_time_.h.  Reported by Matthew Woehlke, as
14400         an IRIX 6.5 build failure.
14401
14402 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         Minor fixups to port to Solaris 10 with Sun C 5.8.
14405         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
14406         * modules/getcwd (Depends-on): Add dirfd.
14407         * lib/putenv.c (putenv): #undef it.
14408         (rpl_putenv): New decl.
14409         (malloc, free): Include <stdlib.h> rather than prototyping separately.
14410
14411 2007-02-20  Bruno Haible  <bruno@clisp.org>
14412
14413         * modules/stdio-tests: New file.
14414         * tests/test-stdio.c: New file.
14415
14416         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
14417         (Depends-on): Add stdio.
14418         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
14419         (Include): Use <stdio.h> instead of vsnprintf.h.
14420         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
14421         HAVE_DECL_VSNPRINTF.
14422         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
14423
14424         * modules/snprintf (Files): Remove lib/snprintf.h.
14425         (Depends-on): Add stdio.
14426         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
14427         (Include): Use <stdio.h> instead of snprintf.h.
14428         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
14429         HAVE_DECL_SNPRINTF.
14430         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
14431         * lib/getaddrinfo.c: Likewise.
14432
14433         * modules/stdio: New file.
14434         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
14435         * lib/snprintf.h: Remove file.
14436         * lib/vsnprintf.h: Remove file.
14437         * lib/.cppi-disable: Remove snprintf.h.
14438         * m4/stdio_h.m4: New file.
14439         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
14440
14441 2007-02-20  Jim Meyering  <jim@meyering.net>
14442
14443         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
14444         used by e.g., mingw.  From Bruno Haible.
14445
14446 2007-02-19  Bruno Haible  <bruno@clisp.org>
14447
14448         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
14449         warnings.
14450         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14451
14452 2007-02-19  Bruno Haible  <bruno@clisp.org>
14453
14454         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
14455         from mingw users.
14456
14457 2007-02-19  Bruno Haible  <bruno@clisp.org>
14458
14459         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
14460         warnings.
14461         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
14462
14463 2007-02-19  Jim Meyering  <jim@meyering.net>
14464
14465         Don't use FD after a successful "fdopendir (fd)".
14466         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
14467         Reset it by calling dirfd on the just-obtained DIR*.
14468
14469         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
14470         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
14471
14472 2007-02-18  Bruno Haible  <bruno@clisp.org>
14473
14474         * lib/readlink.c: Include <unistd.h>.
14475         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
14476         HAVE_READLINK.
14477         * modules/readlink (Depends-on): Add unistd.
14478         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14479         (Include): Add <unistd.h>.
14480
14481         * lib/getlogin_r.h: Remove file.
14482         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
14483         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
14484         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
14485         HAVE_DECL_GETLOGIN_R.
14486         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
14487         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14488         (Include): Use <unistd.h> instead of getlogin_r.h.
14489
14490         * lib/getcwd.h: Remove file.
14491         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
14492         * lib/xgetcwd.c: Likewise.
14493         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
14494         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
14495         * modules/getcwd (Files): Remove lib/getcwd.h.
14496         (Depends-on): Add unistd.
14497         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14498         (Include): Use <unistd.h> instad of getcwd.h.
14499
14500         * lib/ftruncate.c: Include <unistd.h> first.
14501         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
14502         Set HAVE_FTRUNCATE.
14503         * modules/ftruncate (Depends-on): Add unistd.
14504         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14505
14506         * lib/fchdir.c: Include <unistd.h> first.
14507         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
14508         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
14509         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
14510         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14511         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
14512
14513         * lib/dup2.c: Include <unistd.h> first.
14514         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
14515         HAVE_DUP2.
14516         * modules/dup2 (Depends-on): Add unistd.
14517         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14518
14519         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
14520         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
14521         REPLACE_CHOWN. Don't define chown as a macro here.
14522         * modules/chown (Depends-on): Add unistd.
14523         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14524
14525         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
14526         Add definition for GL_LINK_WARNING.
14527         (chown, dup2): New declarations.
14528         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
14529         link warning.
14530         (ftruncate): New declaration.
14531         (getcwd): New declaration, taken from old getcwd.h.
14532         (getlogin_r): New declaration, taken from old getlogin_r.h.
14533         (readlink): New declaration.
14534         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
14535         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
14536         (gl_PREREQ_UNISTD): Remove macro.
14537         (gl_UNISTD_MODULE_INDICATOR): New macro.
14538         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
14539         many new variables. Don't set UNISTD_H.
14540         * modules/unistd (Description): Change.
14541         (Depends-on): Add link-warning.
14542         (configure.ac): Update.
14543         (Makefile.am): Create unistd.h always. Substitute many new variables
14544         into it.
14545
14546 2007-02-18  Bruno Haible  <bruno@clisp.org>
14547
14548         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
14549         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
14550         HAVE_GETSUBOPT.
14551         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
14552         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
14553         * lib/getsubopt.h: Remove file.
14554         * modules/getsubopt (Files): Remove lib/getsubopt.h.
14555         (Depends-on): Add stdlib.
14556         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14557         (Includes): Use <stdlib.h> instead of getsubopt.h.
14558         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
14559         Set HAVE_GETSUBOPT.
14560         * lib/getsubopt.c: Don't include getsubopt.h.
14561
14562 2007-02-18  Bruno Haible  <bruno@clisp.org>
14563
14564         * modules/fchdir (Depends-on): Add dup2.
14565
14566 2007-02-18  Bruno Haible  <bruno@clisp.org>
14567
14568         * lib/stdlib_.h: Handle glibc's special invocation convention
14569         specially.
14570
14571 2007-02-18  Bruno Haible  <bruno@clisp.org>
14572
14573         * modules/stdlib-tests: New file.
14574         * tests/test-stdlib.c: New file.
14575
14576         * modules/mkstemp (Files): Remove lib/mkstemp.h.
14577         (Depends-on): Add stdlib.
14578         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14579         (Includes): Use <stdlib.h> instead of mkstemp.h.
14580         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
14581         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
14582         * lib/mkstemp.c: Don't include mkstemp.h.
14583         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
14584         * lib/stdlib--.h: Don't include mkstemp.h.
14585
14586         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
14587         (Depends-on): Add stdlib.
14588         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14589         (Includes): Use <stdlib.h> instead of mkdtemp.h.
14590         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
14591         HAVE_MKDTEMP.
14592         * lib/mkdtemp.c: Don't include mkdtemp.h.
14593         * lib/clean-temp.c: Don't include mkdtemp.h.
14594
14595         * modules/exit (Files): Remove lib/exit.h.
14596         (Depends-on): Add stdlib.
14597         (Makefile.am): Remove lib_SOURCES.
14598         (Include): Use <stdlib.h> instead of exit.h.
14599         * lib/argmatch.c: Don't include exit.h.
14600         * lib/execute.c: Likewise.
14601         * lib/pagealign_alloc.c: Likewise.
14602         * lib/pipe.c: Likewise.
14603         * lib/wait-process.c: Likewise.
14604         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
14605         * lib/exitfail.c: Likewise.
14606         * lib/savewd.c: Likewise.
14607         * lib/xsetenv.c: Likewise.
14608
14609         * modules/stdlib: New file.
14610         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
14611         and extra comments about mkstemp().
14612         * lib/exit.h: Remove file.
14613         * lib/mkdtemp.h: Remove file.
14614         * lib/mkstemp.h: Remove file.
14615         * m4/stdlib_h.m4: New file.
14616         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
14617
14618 2007-02-18  Bruno Haible  <bruno@clisp.org>
14619
14620         * modules/math-tests: New file.
14621         * tests/test-math.c: New file.
14622
14623         * modules/math: New file.
14624         * modules/mathl (Files): Remove lib/mathl.h.
14625         (Depends-on): Add math.
14626         (Makefile.am): Don't mention mathl.h.
14627         (Include): Use <math.h> instead of mathl.h.
14628         * lib/math_.h: New file.
14629         * lib/mathl.h: Remove file.
14630         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
14631         mathl.h.
14632         * lib/asinl.c: Likewise.
14633         * lib/atanl.c: Likewise.
14634         * lib/ceill.c: Likewise.
14635         * lib/cosl.c: Likewise.
14636         * lib/expl.c: Likewise.
14637         * lib/floorl.c: Likewise.
14638         * lib/frexpl.c: Likewise.
14639         * lib/ldexpl.c: Likewise.
14640         * lib/logl.c: Likewise.
14641         * lib/sincosl.c: Likewise.
14642         * lib/sinl.c: Likewise.
14643         * lib/sqrtl.c: Likewise.
14644         * lib/tanl.c: Likewise.
14645         * lib/trigl.c: Likewise.
14646         * m4/math_h.m4: New file.
14647         * MODULES.html.sh (Mathematics): Add math.
14648
14649 2007-02-17  Bruno Haible  <bruno@clisp.org>
14650
14651         * modules/wctype-tests: New file.
14652         * tests/test-wctype.c: New file.
14653
14654         * modules/wchar-tests: New file.
14655         * tests/test-wchar.c: New file.
14656
14657         * modules/unistd-tests: New file.
14658         * tests/test-unistd.c: New file.
14659
14660         * modules/time-tests: New file.
14661         * tests/test-time.c: New file.
14662
14663         * modules/sysexits-tests: New file.
14664         * tests/test-sysexits.c: New file.
14665
14666         * modules/sys_time-tests: New file.
14667         * tests/test-sys_time.c: New file.
14668
14669         * modules/sys_stat-tests: New file.
14670         * tests/test-sys_stat.c: New file.
14671
14672         * modules/sys_socket-tests: New file.
14673         * tests/test-sys_socket.c: New file.
14674
14675         * modules/sys_select-tests: New file.
14676         * tests/test-sys_select.c: New file.
14677
14678         * modules/string-tests: New file.
14679         * tests/test-string.c: New file.
14680
14681         * modules/stdbool-tests: New file.
14682         * tests/test-stdbool.c: New file.
14683
14684         * modules/netinet_in-tests: New file.
14685         * tests/test-netinet_in.c: New file.
14686
14687         * modules/inttypes-tests: New file.
14688         * tests/test-inttypes.c: New file.
14689
14690         * modules/fcntl-tests: New file.
14691         * tests/test-fcntl.c: New file.
14692
14693         * modules/byteswap-tests: New file.
14694         * tests/test-byteswap.c: New file.
14695
14696         * modules/arpa_inet-tests: New file.
14697         * tests/test-arpa_inet.c: New file.
14698
14699 2007-02-17  Bruno Haible  <bruno@clisp.org>
14700
14701         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
14702         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
14703         if the corresponding module is not enabled. Emit link warnings if
14704         the function is used nevertheless.
14705         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
14706         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
14707         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
14708         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
14709         * modules/inttypes (Depends-on): Add link-warning.
14710         (Makefile.am): Copy the contents of build-aux/link-warning.h into
14711         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
14712         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
14713         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
14714         * modules/imaxdiv (configure.ac): Likewise.
14715         * modules/strtoimax (configure.ac): Likewise.
14716         * modules/strtoumax (configure.ac): Likewise.
14717
14718 2007-02-17  Bruno Haible  <bruno@clisp.org>
14719
14720         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
14721         gl_STRING_MODULE_INDICATOR_DEFAULTS.
14722         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
14723         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
14724
14725 2007-02-17  Bruno Haible  <bruno@clisp.org>
14726
14727         * modules/link-warning: New file.
14728         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
14729         * lib/string_.h (GL_LINK_WARNING): Remove definition.
14730         * modules/string (Depends-on): Add link-warning.
14731         (Makefile.am): Copy the contents of build-aux/link-warning.h into
14732         string.h.
14733         * MODULES.html.sh (Support for building libraries and executables): Add
14734         link-warning.
14735
14736 2007-02-17  Bruno Haible  <bruno@clisp.org>
14737
14738         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
14739         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
14740         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
14741         long lines.
14742
14743 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
14744             Bruno Haible  <bruno@clisp.org>
14745
14746         * modules/tmpfile: New file.
14747         * lib/tmpfile.c: New file.
14748         * m4/tmpfile.m4: New file.
14749         * MODULES.html.sh (func_all_modules): New section "Input/output".
14750
14751 2007-02-15  Bruno Haible  <bruno@clisp.org>
14752
14753         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
14754         (supports_delete_on_close): New function.
14755         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
14756
14757 2007-02-14  Bruno Haible  <bruno@clisp.org>
14758
14759         * modules/mbspcasecmp-tests: New file.
14760         * tests/test-mbspcasecmp.sh: New file.
14761         * tests/test-mbspcasecmp.c: New file.
14762
14763         New module mbspcasecmp.
14764         * modules/mbspcasecmp: New file.
14765         * lib/mbspcasecmp.c: New file.
14766         * lib/string_.h (strncasecmp): Change warning message.
14767         (mbspcasecmp): New declaration.
14768         * m4/mbspcasecmp.m4: New file.
14769         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14770         GNULIB_MBSPCASECMP.
14771         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
14772         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
14773
14774 2007-02-14  Bruno Haible  <bruno@clisp.org>
14775
14776         * modules/mbsncasecmp-tests: New file.
14777         * tests/test-mbsncasecmp.sh: New file.
14778         * tests/test-mbsncasecmp.c: New file.
14779
14780         New module mbsncasecmp.
14781         * modules/mbsncasecmp: New file.
14782         * lib/mbsncasecmp.c: New file.
14783         * lib/string_.h (mbsncasecmp): New declaration.
14784         * m4/mbsncasecmp.m4: New file.
14785         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14786         GNULIB_MBSNCASECMP.
14787         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
14788         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
14789
14790 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
14791
14792         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
14793         Verify that it doesn't overlap with our flags.
14794         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
14795         do not have the desired effect in multibyte locales; instead, use
14796         mbscasecmp.
14797         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
14798         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
14799         we don't require GNU fnmatch ourselves (if our users require it, they
14800         should do so explicitly).
14801
14802         Fix regex code so it doesn't rely on strcasecmp.
14803         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
14804         Otherwise, include gnulib's langinfo.h.
14805         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
14806         undesirable behavior in non-C locales.  Instead, rely on localecharset.
14807         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
14808         * modules/regex (FILES): Remove m4/codeset.m4.
14809         (Depends-on): Add localcharset.  Remove strcase.
14810
14811 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14812
14813         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
14814         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
14815
14816 2007-02-13  Bruno Haible  <bruno@clisp.org>
14817
14818         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
14819         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14820
14821 2007-02-12  Bruno Haible  <bruno@clisp.org>
14822
14823         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
14824         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
14825         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
14826         time warning rather than a link error.
14827
14828 2007-02-12  Bruno Haible  <bruno@clisp.org>
14829
14830         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
14831         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
14832         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14833
14834 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
14835
14836         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
14837         args, not 2.
14838
14839 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
14840
14841         New module 'time', so that apps can include <time.h> as per
14842         POSIX and GNU instead of separate include files like time_r.h
14843         and timegm.h.  This implementation tries out a simpler approach
14844         for replacing decls in standard include files (as compared to
14845         the string module), somewhat as an experiment.
14846
14847         * config/srclist.txt: Comment out mktime.c for now.
14848         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
14849         since it doesn't apply any more.  Use generic wording instead.
14850         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
14851         'time'.
14852         * lib/time_.h, m4/time_h.m4, modules/time: New files.
14853         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
14854         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
14855         Don't include <sys/types.h>; no longer needed since we assume C89.
14856         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
14857         * lib/strftime.c: Likewise.
14858         * lib/time_r.c: Likewise.
14859         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
14860         * lib/nanosleep.c: Include <time.h> first, to check interface.
14861         * lib/strptime.c: Likewise.
14862         * lib/time_r.c: Likewise.
14863         * lib/timegm.c: Likewise.
14864         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
14865         needed.
14866         * lib/timegm.c: Don't include timegm.h; no longer needed.
14867         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
14868         time.h now handles any problems in that area.
14869         (struct timespec, nanosleep): Remove; time.h now arranges for these.
14870         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
14871         that time.h defines struct timespec.
14872         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
14873         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
14874         handles that.
14875         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
14876         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
14877         needed.  Set REPLACE_LOCALTIME.
14878         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
14879         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
14880         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
14881         nanosleep; time_h.m4 now does that.  Don't require
14882         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
14883         module handles this now.
14884         * modules/getdate (Depends-on): Remove timespec.  Add time.
14885         * modules/nanosleep (Depends-on): Likewise.
14886         * modules/stat-time (Depends-on): Likewise.
14887         * modules/nanosleep (Include): Include time.h, not timespec.h.
14888         * modules/strptime (Files): Remove lib/strptime.h.
14889         (Depends-on): Add extensions, time.
14890         (Include): Include time.h, not strptime.h.
14891         * modules/time_r (Files): Remove lib/time_r.h.
14892         (Depends-on): Add time.
14893         (Include): Include time.h, not time_r.h.
14894         * modules/timegm: Likewise.
14895         * modules/timespec (Description): Now does timespec-related decls
14896         of our own, instead of struct timespec itself.
14897         (Depends-on): Add time; remove extensions.
14898         (Maintainer): Add self.
14899         * modules/utimecmp (Depends-on): Add time; remove timespec.
14900         * modules/utimens (Depends-on): Likewise.
14901         * modules/xnanosleep (Depends-on): Likewise.
14902
14903 2007-02-11  Bruno Haible  <bruno@clisp.org>
14904
14905         * lib/c-strstr.c: Include allocsa.h.
14906         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
14907         * lib/c-strcasestr.c: Include allocsa.h.
14908         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
14909         * lib/strcasestr.c: Include allocsa.h.
14910         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
14911         * lib/mbsstr.c: Include allocsa.h.
14912         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
14913         allocsa/freesa instead of malloc/free.
14914         * lib/mbscasestr.c: Include allocsa.h.
14915         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
14916         allocsa/freesa instead of malloc/free.
14917         * modules/c-strstr (Depends-on): Add allocsa.
14918         * modules/c-strcasestr (Depends-on): Likewise.
14919         * modules/strcasestr (Depends-on): Likewise.
14920         * modules/mbsstr (Depends-on): Likewise.
14921         * modules/mbscasestr (Depends-on): Likewise.
14922
14923 2007-02-11  Bruno Haible  <bruno@clisp.org>
14924
14925         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
14926
14927         * modules/mbsspn-tests: New file.
14928         * tests/test-mbsspn.sh: New file.
14929         * tests/test-mbsspn.c: New file.
14930
14931 2007-02-11  Bruno Haible  <bruno@clisp.org>
14932
14933         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
14934
14935         * modules/mbspbrk-tests: New file.
14936         * tests/test-mbspbrk.sh: New file.
14937         * tests/test-mbspbrk.c: New file.
14938
14939 2007-02-11  Bruno Haible  <bruno@clisp.org>
14940
14941         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
14942         unneeded cast.
14943
14944         * modules/mbscspn-tests: New file.
14945         * tests/test-mbscspn.sh: New file.
14946         * tests/test-mbscspn.c: New file.
14947
14948 2007-02-11  Bruno Haible  <bruno@clisp.org>
14949
14950         * modules/mbscasecmp-tests: New file.
14951         * tests/test-mbscasecmp.sh: New file.
14952         * tests/test-mbscasecmp.c: New file.
14953
14954 2007-02-11  Bruno Haible  <bruno@clisp.org>
14955
14956         Ensure O(n) worst-case complexity of mbscasestr.
14957         * lib/mbscasestr.c: Include stdbool.h.
14958         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
14959         functions.
14960         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
14961         the bookkeeping indicates that it's worth it.
14962         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
14963
14964         * modules/mbscasestr-tests: New file.
14965         * tests/test-mbscasestr1.c: New file.
14966         * tests/test-mbscasestr2.sh: New file.
14967         * tests/test-mbscasestr2.c: New file.
14968         * tests/test-mbscasestr3.sh: New file.
14969         * tests/test-mbscasestr3.c: New file.
14970         * tests/test-mbscasestr4.sh: New file.
14971         * tests/test-mbscasestr4.c: New file.
14972         * m4/locale-tr.m4: New file.
14973
14974 2007-02-11  Bruno Haible  <bruno@clisp.org>
14975
14976         Ensure O(n) worst-case complexity of mbsstr.
14977         * lib/mbsstr.c: Include stdbool.h.
14978         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
14979         functions.
14980         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
14981         bookkeeping indicates that it's worth it.
14982         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
14983
14984         * modules/mbsstr-tests: New file.
14985         * tests/test-mbsstr1.c: New file.
14986         * tests/test-mbsstr2.sh: New file.
14987         * tests/test-mbsstr2.c: New file.
14988         * tests/test-mbsstr3.sh: New file.
14989         * tests/test-mbsstr3.c: New file.
14990         * m4/locale-fr.m4: New file.
14991
14992 2007-02-11  Bruno Haible  <bruno@clisp.org>
14993
14994         * lib/mbsrchr.c (mbsrchr): Fix bug.
14995
14996         * modules/mbsrchr-tests: New file.
14997         * tests/test-mbsrchr.sh: New file.
14998         * tests/test-mbsrchr.c: New file.
14999
15000 2007-02-11  Bruno Haible  <bruno@clisp.org>
15001
15002         * lib/mbschr.c (mbschr): Fix bug.
15003
15004         * modules/mbschr-tests: New file.
15005         * tests/test-mbschr.sh: New file.
15006         * tests/test-mbschr.c: New file.
15007         * m4/locale-zh.m4: New file.
15008
15009 2007-02-11  Bruno Haible  <bruno@clisp.org>
15010
15011         Support for copying multibyte string iterators.
15012         * lib/mbiter.h: Include <string.h>.
15013         (mbiter_multi_copy): New function.
15014         (mbi_copy): New macro.
15015         * lib/mbuiter.h: Include <string.h>.
15016         (mbuiter_multi_copy): New function.
15017         (mbui_copy): New macro.
15018
15019 2007-02-11  Bruno Haible  <bruno@clisp.org>
15020
15021         New module mbslen.
15022         * modules/mbslen: New file.
15023         * lib/mbslen.c: New file.
15024         * lib/string_.h (mbslen): New declaration.
15025         * m4/mbslen.m4: New file.
15026         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15027         GNULIB_MBSLEN.
15028         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
15029         * MODULES.html.sh (Internationalization functions): Add mbslen.
15030
15031 2007-02-11  Bruno Haible  <bruno@clisp.org>
15032
15033         Ensure O(n) worst-case complexity of strcasestr substitute.
15034         * lib/strcasestr.c: Include stdbool.h.
15035         (knuth_morris_pratt): New function.
15036         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
15037         bookkeeping indicates that it's worth it.
15038         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
15039
15040         * modules/strcasestr-tests: New file.
15041         * tests/test-strcasestr.c: New file.
15042
15043 2007-02-11  Bruno Haible  <bruno@clisp.org>
15044
15045         Ensure O(n) worst-case complexity of c_strcasestr.
15046         * lib/c-strcasestr.c: Include stdbool.h, string.h.
15047         (knuth_morris_pratt): New function.
15048         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
15049         the bookkeeping indicates that it's worth it.
15050         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
15051
15052         * modules/c-strcasestr-tests: New file.
15053         * tests/test-c-strcasestr.c: New file.
15054
15055 2007-02-11  Bruno Haible  <bruno@clisp.org>
15056
15057         Ensure O(n) worst-case complexity of c_strstr.
15058         * lib/c-strstr.c: Include stdbool.h, string.h.
15059         (knuth_morris_pratt): New function.
15060         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
15061         bookkeeping indicates that it's worth it.
15062         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
15063
15064         * lib/c-strstr.c: Complete rewrite for maintainability.
15065
15066         * modules/c-strstr-tests: New file.
15067         * tests/test-c-strstr.c: New file.
15068
15069 2007-02-11  Bruno Haible  <bruno@clisp.org>
15070
15071         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
15072         5.2.1 and earlier, whereby \055 was treated just like the range
15073         delimiter '-'.
15074         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
15075
15076 2007-02-08  Bruno Haible  <bruno@clisp.org>
15077
15078         * modules/regex (Depends-on): Add stdbool.
15079         Reported by Dalibor Topic <robilad@kaffe.org>.
15080
15081 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
15082
15083         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
15084         Prefer returning from main to exiting from it.
15085         Remove unnecessary parens after sizeof.
15086
15087 2007-02-05  Bruno Haible  <bruno@clisp.org>
15088
15089         New module mbssep.
15090         * modules/mbssep: New file.
15091         * lib/mbssep.c: New file.
15092         * lib/string_.h (strsep): Add a conditional link warning.
15093         (mbssep): New declaration.
15094         * m4/mbssep.m4: New file.
15095         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15096         GNULIB_MBSSEP.
15097         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
15098         * MODULES.html.sh (Internationalization functions): Add mbssep.
15099
15100 2007-02-05  Bruno Haible  <bruno@clisp.org>
15101
15102         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
15103         Optimize search in case of 1 delimiter.
15104
15105 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
15106
15107         * lib/acl.h: Include sys/types.h before sys/acl.h.
15108
15109 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
15110
15111         Merge upstream fix for glibc bugzilla #3957:
15112
15113         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
15114
15115         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
15116         bit for RE_HAT_LISTS_NOT_NEWLINE.
15117         (build_charclass_op): Remove bogus comment.
15118
15119 2007-02-05  Simon Josefsson  <simon@josefsson.org>
15120
15121         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
15122
15123 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
15124
15125         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
15126         * lib/memmem.c [!defined _LIBC]: Include config.h.
15127
15128 2007-02-04  Bruno Haible  <bruno@clisp.org>
15129
15130         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
15131         warning message.
15132
15133 2007-02-04  Bruno Haible  <bruno@clisp.org>
15134
15135         New module mbstok_r.
15136         * modules/mbstok_r: New file.
15137         * lib/mbstok_r.c: New file.
15138         * lib/string_.h (strtok_r): Change argument names to match the
15139         comments. Add a conditional link warning.
15140         (mbstok_r): New declaration.
15141         * m4/mbstok_r.m4: New file.
15142         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15143         GNULIB_MBSTOK_R.
15144         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
15145         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
15146
15147 2007-02-04  Bruno Haible  <bruno@clisp.org>
15148
15149         New module mbsspn.
15150         * modules/mbsspn: New file.
15151         * lib/mbsspn.c: New file.
15152         * lib/string_.h (strspn): Add a conditional link warning.
15153         (mbsspn): New declaration.
15154         * m4/mbsspn.m4: New file.
15155         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15156         GNULIB_MBSSPN.
15157         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
15158         * MODULES.html.sh (Internationalization functions): Add mbsspn.
15159
15160 2007-02-04  Bruno Haible  <bruno@clisp.org>
15161
15162         New module mbspbrk.
15163         * modules/mbspbrk: New file.
15164         * lib/mbspbrk.c: New file.
15165         * lib/string_.h (strpbrk): Add a conditional link warning.
15166         (mbspbrk): New declaration.
15167         * m4/mbspbrk.m4: New file.
15168         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15169         GNULIB_MBSPBRK.
15170         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
15171         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
15172
15173 2007-02-04  Bruno Haible  <bruno@clisp.org>
15174
15175         New module mbscspn.
15176         * modules/mbscspn: New file.
15177         * lib/mbscspn.c: New file.
15178         * lib/string_.h (strcspn): Add a conditional link warning.
15179         (mbscspn): New declaration.
15180         * m4/mbscspn.m4: New file.
15181         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15182         GNULIB_MBSCSPN.
15183         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
15184         * MODULES.html.sh (Internationalization functions): Add mbscspn.
15185
15186 2007-02-04  Bruno Haible  <bruno@clisp.org>
15187
15188         New module mbscasestr, reduced goal of strcasestr.
15189         * modules/mbscasestr: New file.
15190         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
15191         (mbscasestr): Renamed from strcasestr.
15192         * lib/strcasestr.c: Don't include mbuiter.h.
15193         (strcasestr): Remove support for multibyte locales.
15194         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
15195         Change the conditional link warning.
15196         (mbscasestr): New declaration.
15197         * m4/mbscasestr.m4: New file.
15198         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
15199         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
15200         REPLACE_STRCASESTR.
15201         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
15202         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15203         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
15204         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
15205         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
15206         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
15207         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
15208         (Depends-on): Remove mbuiter.
15209         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
15210
15211 2007-02-04  Bruno Haible  <bruno@clisp.org>
15212
15213         Simplify handling of strncasecmp.
15214         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
15215         the conditional link warning.
15216         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15217         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
15218         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
15219         * modules/strcase (configure.ac): Don't invoke
15220         gl_STRING_MODULE_INDICATOR.
15221         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
15222
15223 2007-02-04  Bruno Haible  <bruno@clisp.org>
15224
15225         New module mbscasecmp, reduced goal of strcasecmp.
15226         * modules/mbscasecmp: New file.
15227         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
15228         (mbscasecmp): Renamed from strcasecmp.
15229         * lib/strcasecmp.c: Don't include mbuiter.h.
15230         (strcasecmp): Remove support for multibyte locales.
15231         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
15232         Change the conditional link warning.
15233         (mbscasecmp): New declaration.
15234         * m4/mbscasecmp.m4: New file.
15235         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
15236         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
15237         REPLACE_STRCASECMP.
15238         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
15239         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15240         GNULIB_MBSCASECMP.
15241         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
15242         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
15243         * modules/strcase (Files): Remove m4/mbrtowc.m4.
15244         (Depends-on): Remove mbuiter.
15245         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
15246
15247 2007-02-04  Bruno Haible  <bruno@clisp.org>
15248
15249         New module mbsstr. Remove module strstr.
15250         * modules/mbsstr: New file.
15251         * modules/strstr: Remove file.
15252         * lib/mbsstr.c: Renamed from lib/strstr.c.
15253         (mbsstr): Renamed from strstr.
15254         * lib/string_.h (strstr): Remove declaration. Change the conditional
15255         link warning.
15256         (mbsstr): New declaration.
15257         * m4/mbsstr.m4: New file.
15258         * m4/strstr.m4: Remove file.
15259         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
15260         REPLACE_STRSTR.
15261         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
15262         Don't initialize GNULIB_STRSTR.
15263         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
15264         substitute GNULIB_STRSTR and REPLACE_STRSTR.
15265         * MODULES.html.sh (Internationalization functions): Add mbsstr.
15266         (Support for systems lacking ANSI C 89): Remove strstr.
15267
15268 2007-02-04  Bruno Haible  <bruno@clisp.org>
15269
15270         New module mbsrchr.
15271         * modules/mbsrchr: New file.
15272         * lib/mbsrchr.c: New file.
15273         * lib/string_.h (strrchr): Add a conditional link warning.
15274         (mbsrchr): New declaration.
15275         * m4/mbsrchr.m4: New file.
15276         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15277         GNULIB_MBSRCHR.
15278         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
15279         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
15280
15281 2007-02-04  Bruno Haible  <bruno@clisp.org>
15282
15283         New module mbschr.
15284         * modules/mbschr: New file.
15285         * lib/mbschr.c: New file.
15286         * lib/string_.h (strchr): Add a conditional link warning.
15287         (mbschr): New declaration.
15288         * m4/mbschr.m4: New file.
15289         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
15290         GNULIB_MBSCHR.
15291         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
15292         * MODULES.html.sh (Internationalization functions): Add mbschr.
15293
15294 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
15295
15296         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
15297
15298         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
15299
15300 2007-02-04  Bruno Haible  <bruno@clisp.org>
15301
15302         New module description section 'configure.ac-early'.
15303         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
15304         (func_get_autoconf_early_snippet): New function.
15305         (func_import, func_create_testdir): Use it. Remove special cases for
15306         modules 'extensions' and 'lock'.
15307         * modules/extensions (configure.ac-early): Require
15308         gl_USE_SYSTEM_EXTENSIONS.
15309         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
15310
15311 2007-02-04  Bruno Haible  <bruno@clisp.org>
15312
15313         Make use of gcj-4.3's -fsource and -ftarget option.
15314         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
15315         and if so try the options -fsource and -ftarget.
15316         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
15317         source_version, ftarget_option, target_version arguments.
15318         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
15319         (is_envjavac_oldgcj_14_14_usable): Renamed from
15320         is_envjavac_gcj_14_14_usable.
15321         (is_envjavac_oldgcj_14_13_usable): Renamed from
15322         is_envjavac_gcj_14_13_usable.
15323         (is_gcj_present): Update.
15324         (is_gcj_43, is_gcj43_usable): New functions.
15325         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
15326         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
15327         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
15328         try the options -fsource and -ftarget.
15329
15330 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
15331
15332         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
15333         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
15334         larger value.
15335
15336 2007-02-03  Jim Meyering  <jim@meyering.net>
15337
15338         Give tools a better chance to allocate space for very large buffers.
15339         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
15340
15341         Make pwd and readlink work also when run with an unreadable parent dir
15342         on systems with openat support.
15343         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
15344         provided getcwd function, even when we have openat support.
15345         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
15346
15347 2007-02-02  Bruno Haible  <bruno@clisp.org>
15348
15349         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
15350         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
15351         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
15352         portability problems if one of these functions is only used on specific
15353         platforms.
15354         Reported by Paul Eggert.
15355
15356 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
15357
15358         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
15359         is causing more trouble than it's curing.
15360         * lib/regex_internal.h (__mempcpy): Remove.
15361         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
15362         (and make the code a tad smaller to boot).
15363         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
15364
15365 2007-02-02  Jim Meyering  <jim@meyering.net>
15366
15367         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
15368         section, not in the Makefile.am: one.
15369
15370 2007-02-02  Eric Blake  <ebb9@byu.net>
15371
15372         * lib/strchrnul.c: Always include config.h first.
15373
15374         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
15375         gnulib strstr is not necessary here.
15376
15377 2007-02-02  Simon Josefsson  <simon@josefsson.org>
15378
15379         * m4/socklen.m4: Fix typo.
15380
15381 2007-02-02  Eric Blake  <ebb9@byu.net>
15382
15383         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
15384         * modules/netinet_in (Makefile.am): Likewise.
15385
15386 2007-02-01  Bruno Haible  <bruno@clisp.org>
15387
15388         * lib/string_.h (GL_LINK_WARNING): New macro.
15389         (strcasecmp, strstr, strcasestr): If provided by the system,
15390         conditionally define as a macro that leads to a warning instead of to
15391         an error.
15392         (strncasecmp): Conditionally define as a macro that leads to a warning.
15393
15394 2007-02-01  Karl Berry  <karl@gnu.org>
15395
15396         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
15397
15398 2007-02-01  Bruno Haible  <bruno@clisp.org>
15399
15400         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
15401         renamings.
15402
15403 2007-02-01  Eric Blake  <ebb9@byu.net>
15404
15405         * modules/regex (Depends-on): Revert dependence on mempcpy.
15406         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
15407         module's definition of mempcpy.
15408         Reported by Paul Eggert.
15409
15410 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
15411
15412         * lib/string_.h: If the gnulib module XYZ is not present, undefine
15413         the symbol XYZ before redefining it.  This fixes a problem with
15414         programs that don't use XYZ, when compiled on systems that define
15415         XYZ to something else.
15416
15417 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
15418
15419         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
15420         occurs when "mkdir -m foo" creates a setgid directory that is (1)
15421         writeable to group or other and (2) is intended to have a special
15422         mode bit that is set or cleared.  In such a case, the directory
15423         should be neither group- nor other-writeable until the special
15424         mode bits are right.
15425
15426 2007-01-31  Eric Blake  <ebb9@byu.net>
15427
15428         * modules/mountlist (Depends-on): Add strstr.
15429
15430         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
15431         bug.
15432         * modules/string (Makefile.am): Remove redundant replacement.
15433         * modules/regex (Depends-on): Add mempcpy.
15434
15435 2007-01-31  Bruno Haible  <bruno@clisp.org>
15436
15437         New module description field 'Link'.
15438         * gnulib-tool (func_usage): Document --extract-link-directive.
15439         (sed_extract_prog): Recognize 'Link' directive.
15440         (func_get_link_directive): New function.
15441         (func_import): Show summary of link directives.
15442         Handle --extract-link-directive option.
15443         * modules/acl (Link): New section.
15444         * modules/clock-time (Link): New section.
15445         * modules/euidaccess (Link): New section.
15446         * modules/gettext (Link): New section.
15447         * modules/iconv (Link): New section.
15448         * modules/lock (Link): New section.
15449         * modules/nanosleep (Link): New section.
15450         * modules/readline (Link): New section.
15451
15452 2007-01-27  Bruno Haible  <bruno@clisp.org>
15453
15454         Enforce the use of gnulib modules for unportable <string.h> functions.
15455         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
15456         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
15457         (gl_HEADER_STRING_H_BODY): Require it.
15458         * lib/string_.h: If the gnulib module XYZ is not present, redefine
15459         the symbol XYZ to one that gives a link error.
15460         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
15461         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
15462         * modules/mempcpy (configure.ac): Likewise.
15463         * modules/memrchr (configure.ac): Likewise.
15464         * modules/stpcpy (configure.ac): Likewise.
15465         * modules/stpncpy (configure.ac): Likewise.
15466         * modules/strcase (configure.ac): Likewise.
15467         * modules/strcasestr (configure.ac): Likewise.
15468         * modules/strchrnul (configure.ac): Likewise.
15469         * modules/strdup (configure.ac): Likewise.
15470         * modules/strndup (configure.ac): Likewise.
15471         * modules/strnlen (configure.ac): Likewise.
15472         * modules/strpbrk (configure.ac): Likewise.
15473         * modules/strsep (configure.ac): Likewise.
15474         * modules/strstr (configure.ac): Likewise.
15475         * modules/strtok_r (configure.ac): Likewise.
15476
15477 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
15478
15479         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
15480
15481 2007-01-30  Jim Meyering  <jim@meyering.net>
15482
15483         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
15484
15485 2007-01-29  Bruno Haible  <bruno@clisp.org>
15486
15487         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
15488         * lib/execute.c: Likewise.
15489         * lib/pipe.c: Likewise.
15490         * lib/printf-args.h: Likewise.
15491         * lib/printf-args.c: Likewise.
15492         * lib/printf-parse.c: Likewise.
15493         * lib/vasnprintf.c: Likewise.
15494
15495 2007-01-29  Eric Blake  <ebb9@byu.net>
15496
15497         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
15498         declaration.
15499
15500 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
15501
15502         * lib/strptime.h (strptime): Use 'restrict' for args where
15503         POSIX requires this.
15504         * lib/strptime.c (strptime): Likewise.
15505         Change license notice from LGPL to GPL, since gnulib-tool will
15506         change this as needed.
15507         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
15508         defined.
15509         Include "strptime.h" first, to check interface.
15510         Do not #undef _LIBC and _NL_CURRENT.
15511         Do not include <stdlib.h>; no longer needed.
15512         Include "time_r.h" and declare ptime_locale_status
15513         only if _LIBC is not defined.
15514         (__P): Remove unused macro.
15515         (match_string): Bring back glibc version, but use it only if _LIBC
15516         is defined.
15517         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
15518         Remove unnecessary assertion and abort() call.
15519         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
15520         * m4/strptime.m4: Fix serial number comment.
15521         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
15522         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
15523         (Depends-on): Add time_r.
15524
15525 2007-01-29  Bruno Haible  <bruno@clisp.org>
15526
15527         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15528         strptime.
15529         * modules/strptime (Depends-on): Add stdbool.
15530         * lib/strptime.h: Include <time.h> always. Add comments.
15531
15532 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15533
15534         * modules/strptime: New file.
15535         * lib/strptime.h: New file.
15536         * lib/strptime.c: New file.
15537         * m4/strptime.m4: New file.
15538
15539 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
15540
15541         * MODULES.html.sh: New module mpsort.
15542         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
15543
15544         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
15545         a circularity problem with HP-UX ia64 reported by Bob Proulx in
15546         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
15547         All uses changed.
15548         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
15549         All uses changed.
15550         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
15551         to _Restrict_.
15552         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
15553         the parameter matches the prototype.
15554
15555 2007-01-28  Jim Meyering  <jim@meyering.net>
15556
15557         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
15558         sys/time.h here, reverting that part of the previous patch:
15559         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
15560
15561 2007-01-28  Bruno Haible  <bruno@clisp.org>
15562
15563         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
15564         value of $(SYS_TIME_H).
15565         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
15566         remove it conditionally, too. [added by Jim Meyering]
15567         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
15568         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
15569         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
15570         GETTIMEOFDAY_REPLACEMENT to 1.
15571
15572 2007-01-28  Bruno Haible  <bruno@clisp.org>
15573
15574         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
15575         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
15576         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
15577         Set UNISTD_H instead of UNISTD_H2.
15578         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
15579
15580 2007-01-28  Bruno Haible  <bruno@clisp.org>
15581
15582         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
15583         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
15584
15585 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15586
15587         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
15588         (func_create_testdir): Ensure C locale for `grep' and `tr'
15589         character ranges.
15590         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
15591         ACLOCAL_AMFLAGS parsing state machine.
15592
15593 2007-01-27  Bruno Haible  <bruno@clisp.org>
15594
15595         * modules/unistr/base: Update.
15596
15597 2007-01-27  Bruno Haible  <bruno@clisp.org>
15598
15599         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
15600         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
15601         * modules/unistr/u32-mbtouc-unsafe: Renamed from
15602         modules/unistr/u32-mbtouc.
15603         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
15604         * lib/unistr.h: Update.
15605         * lib/linebreak.c: Update.
15606         * modules/unistr/u32-mbtouc: Renamed from
15607         modules/unistr/u32-mbtouc-safe.
15608         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
15609         * lib/unistr.h: Update.
15610         * lib/unistr/u32-to-u8.c: Update.
15611         * lib/unistr/u32-to-u16.c: Update.
15612
15613 2007-01-27  Bruno Haible  <bruno@clisp.org>
15614
15615         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
15616         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
15617         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
15618         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
15619         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
15620         * modules/unistr/u16-mbtouc-unsafe: Renamed from
15621         modules/unistr/u16-mbtouc.
15622         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
15623         * lib/unistr.h: Update.
15624         * lib/linebreak.c: Update.
15625         * modules/linebreak: Update.
15626         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
15627         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
15628         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
15629         * modules/unistr/u16-mbtouc: Renamed from
15630         modules/unistr/u16-mbtouc-safe.
15631         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
15632         * lib/unistr.h: Update.
15633         * lib/unistr/u16-to-u8.c: Update.
15634         * modules/unistr/u16-to-u8: Update.
15635         * lib/unistr/u16-to-u32.c: Update.
15636         * modules/unistr/u16-to-u32: Update.
15637
15638 2007-01-27  Bruno Haible  <bruno@clisp.org>
15639
15640         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
15641         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
15642         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
15643         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
15644         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
15645         * modules/unistr/u8-mbtouc-unsafe: Renamed from
15646         modules/unistr/u8-mbtouc.
15647         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
15648         * lib/unistr.h: Update.
15649         * lib/striconveh.c: Update.
15650         * modules/striconveh: Update.
15651         * lib/linebreak.c: Update.
15652         * modules/linebreak: Update.
15653         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
15654         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
15655         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
15656         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
15657         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
15658         * lib/unistr.h: Update.
15659         * lib/striconveh.c: Update.
15660         * modules/striconveh: Update.
15661         * lib/unistr/u8-to-u16.c: Update.
15662         * modules/unistr/u8-to-u16: Update.
15663         * lib/unistr/u8-to-u32.c: Update.
15664         * modules/unistr/u8-to-u32: Update.
15665
15666 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15667
15668         Sync from Libtool.
15669         * lib/argz.c: Do not include strings.h nor memory.h, include
15670         string.h unconditionally.  Patch by Simon Josefsson.
15671
15672 2007-01-27  Bruno Haible  <bruno@clisp.org>
15673
15674         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
15675         from gl_HEADER_STRING_H_BODY.
15676         (gl_HEADER_STRING_H_BODY): Require it.
15677         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
15678         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
15679         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
15680         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
15681         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
15682         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
15683         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
15684         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
15685         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
15686         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
15687         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
15688         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
15689         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
15690         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
15691         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
15692
15693 2007-01-27  Bruno Haible  <bruno@clisp.org>
15694
15695         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
15696         check_PROGRAMS into noinst_PROGRAMS.
15697         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
15698         check_PROGRAMS in this case.
15699         (func_import): Set for_test to false.
15700         (func_create_testdir): Set for_test to true.
15701
15702 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
15703             Bruno Haible  <bruno@clisp.org>
15704
15705         * modules/strcasestr (Files): Remove lib/strcasestr.h.
15706         (Depends-on): Add string.
15707         (Includes): Use <string.h> instead of strcasestr.h.
15708         * modules/string (Makefile.am): Also substitute the value of
15709         REPLACE_STRCASESTR.
15710         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
15711         assume strcasestr is declared in <string.h> not <strings.h>. Also
15712         set REPLACE_STRCASESTR.
15713         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
15714         REPLACE_STRCASESTR.
15715         * lib/strcasestr.h: Remove file.
15716         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
15717         * lib/string_.h (strcasestr): New declaration.
15718
15719 2007-01-27  Bruno Haible  <bruno@clisp.org>
15720
15721         * lib/string_.h: Use 'extern'.
15722
15723 2007-01-27  Jim Meyering  <jim@meyering.net>
15724
15725         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
15726         of set-but-not-used local, "q".
15727
15728         * lib/mempcpy.c: Include <config.h> before <string.h>.
15729         This fixes a compilation error on HP-UX, due to the system's
15730         "restrict"-using mempcpy prototype.
15731
15732 2007-01-26  Bruno Haible  <bruno@clisp.org>
15733
15734         Small optimization.
15735         * lib/javacomp.c: Include c-strstr.h.
15736          (is_envjavac_gcj): Use c_strstr instead of strstr.
15737         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
15738
15739 2007-01-26  Bruno Haible  <bruno@clisp.org>
15740
15741         * MODULES.html.sh (Unicode string functions): Add the new modules.
15742
15743         * modules/uniconv/u32-strconv-to-locale: New file.
15744         * lib/uniconv/u32-strconv-to-locale.c: New file.
15745
15746         * modules/uniconv/u16-strconv-to-locale: New file.
15747         * lib/uniconv/u16-strconv-to-locale.c: New file.
15748
15749         * modules/uniconv/u8-strconv-to-locale: New file.
15750         * lib/uniconv/u8-strconv-to-locale.c: New file.
15751
15752         * modules/uniconv/u32-strconv-from-locale: New file.
15753         * lib/uniconv/u32-strconv-from-locale.c: New file.
15754
15755         * modules/uniconv/u16-strconv-from-locale: New file.
15756         * lib/uniconv/u16-strconv-from-locale.c: New file.
15757
15758         * modules/uniconv/u8-strconv-from-locale: New file.
15759         * lib/uniconv/u8-strconv-from-locale.c: New file.
15760
15761         * modules/uniconv/u32-strconv-to-enc: New file.
15762         * lib/uniconv/u32-strconv-to-enc.c: New file.
15763         * modules/uniconv/u32-strconv-to-enc-tests: New file.
15764         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
15765
15766         * modules/uniconv/u16-strconv-to-enc: New file.
15767         * lib/uniconv/u16-strconv-to-enc.c: New file.
15768         * lib/uniconv/u-strconv-to-enc.h: New file.
15769         * modules/uniconv/u16-strconv-to-enc-tests: New file.
15770         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
15771
15772         * modules/uniconv/u8-strconv-to-enc: New file.
15773         * lib/uniconv/u8-strconv-to-enc.c: New file.
15774         * modules/uniconv/u8-strconv-to-enc-tests: New file.
15775         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
15776
15777         * modules/uniconv/u32-strconv-from-enc: New file.
15778         * lib/uniconv/u32-strconv-from-enc.c: New file.
15779         * modules/uniconv/u32-strconv-from-enc-tests: New file.
15780         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
15781
15782         * modules/uniconv/u16-strconv-from-enc: New file.
15783         * lib/uniconv/u16-strconv-from-enc.c: New file.
15784         * modules/uniconv/u16-strconv-from-enc-tests: New file.
15785         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
15786
15787         * modules/uniconv/u8-strconv-from-enc: New file.
15788         * lib/uniconv/u8-strconv-from-enc.c: New file.
15789         * lib/uniconv/u-strconv-from-enc.h: New file.
15790         * modules/uniconv/u8-strconv-from-enc-tests: New file.
15791         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
15792
15793         * modules/uniconv/u32-conv-from-enc: New file.
15794         * lib/uniconv/u32-conv-from-enc.c: New file.
15795         * modules/uniconv/u32-conv-from-enc-tests: New file.
15796         * tests/uniconv/test-u32-conv-from-enc.c: New file.
15797
15798         * modules/uniconv/u16-conv-from-enc: New file.
15799         * lib/uniconv/u16-conv-from-enc.c: New file.
15800         * lib/uniconv/u-conv-from-enc.h: New file.
15801         * modules/uniconv/u16-conv-from-enc-tests: New file.
15802         * tests/uniconv/test-u16-conv-from-enc.c: New file.
15803
15804         * modules/uniconv/u8-conv-from-enc: New file.
15805         * lib/uniconv/u8-conv-from-enc.c: New file.
15806         * modules/uniconv/u8-conv-from-enc-tests: New file.
15807         * tests/uniconv/test-u8-conv-from-enc.c: New file.
15808
15809         * modules/uniconv/base: New file.
15810         * lib/uniconv.h: New file.
15811
15812 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
15813
15814         * doc/gnulib-tool.texi (Initial import): Update to match current
15815         behavior with strdup module.
15816         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
15817         * lib/memmem.h: Remove; all uses removed.  This is now done
15818         by <string.h>.
15819         * lib/mempcpy.h: Likewise.
15820         * lib/memrchr.h: Likewise.
15821         * lib/stpcpy.h: Likewise.
15822         * lib/stpncpy.h: Likewise.
15823         * lib/strcase.h: Likewise.
15824         * lib/strchrnul.h: Likewise.
15825         * lib/strdup.h: Likewise.
15826         * lib/strndup.h: Likewise.
15827         * lib/strnlen.h: Likewise.
15828         * lib/strpbrk.h: Likewise.
15829         * lib/strsep.h: Likewise.
15830         * lib/strstr.h: Likewise.
15831         * lib/strtok_r.h: Likewise.
15832         * lib/string_.h: New file.
15833         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
15834         Rely on <string.h> instead.
15835         * lib/canon-host.c: Likewise.
15836         * lib/chdir-long.c: Likewise.
15837         * lib/concatpath.c: Likewise.
15838         * lib/exclude.c: Likewise.
15839         * lib/fchdir.c: Likewise.
15840         * lib/getaddrinfo.c: Likewise.
15841         * lib/getcwd.c: Likewise.
15842         * lib/getsubopt.c: Likewise.
15843         * lib/glob.c: Likewise.
15844         * lib/hard-locale.c: Likewise.
15845         * lib/iconvme.c: Likewise.
15846         * lib/javacomp.c: Likewise.
15847         * lib/mempcpy.c: Likewise.
15848         * lib/memrchr.c: Likewise.
15849         * lib/regex_internal.h: Likewise.
15850         * lib/stpncpy.c: Likewise.
15851         * lib/strcasecmp.c: Likewise.
15852         * lib/strchrnul.c: Likewise.
15853         * lib/strdup.c: Likewise.
15854         * lib/striconv.c: Likewise.
15855         * lib/striconveh.c: Likewise.
15856         * lib/striconveha.c: Likewise.
15857         * lib/strncasecmp.c: Likewise.
15858         * lib/strndup.c: Likewise.
15859         * lib/strnlen.c: Likewise.
15860         * lib/strsep.c: Likewise.
15861         * lib/strstr.c: Likewise.
15862         * lib/strtok_r.c: Likewise.
15863         * lib/userspec.c: Likewise.
15864         * lib/w32spawn.h: Likewise.
15865         * lib/xstrndup.c: Likewise.
15866         * lib/mountlist.c (strstr): Remove decl.
15867         * m4/string_h.m4: New file.
15868         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
15869         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
15870         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
15871         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
15872         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
15873         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
15874         Set REPLACE_STRCASECMP if necessary.
15875         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
15876         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
15877         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
15878         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
15879         HAVE_DECL_STRDUP if necessary.
15880         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
15881         since gl_FUNC_STRNDUP does that now.
15882         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
15883         Check for decl here...
15884         (gl_PREREQ_STRNLEN): ... not here.
15885         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
15886         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
15887         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
15888         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
15889         necessary.
15890         * modules/string: New file.
15891         * modules/memmem (Files): Remove special-purpose include file.
15892         (Depends-on): Add string.
15893         (Include): Include <string.h>, not the removed file.
15894         * modules/mempcpy: Likewise.
15895         * modules/memrchr: Likewise.
15896         * modules/stpcpy: Likewise.
15897         * modules/stpncpy: Likewise.
15898         * modules/strcase: Likewise.
15899         * modules/strchrnul: Likewise.
15900         * modules/strdup: Likewise.
15901         * modules/strndup: Likewise.
15902         * modules/strnlen: Likewise.
15903         * modules/strpbrk: Likewise.
15904         * modules/strsep: Likewise.
15905         * modules/strstr: Likewise.
15906         * modules/strtok_r: Likewise.
15907         * tests/test-dirname.c: Don't include "strdup.h", since
15908         <string.h> now suffices.
15909         * tests/test-memmem.c: Don't include "memmem.h", since
15910         <string.h> now suffices.
15911
15912 2007-01-25  Bruno Haible  <bruno@clisp.org>
15913
15914         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
15915         *resultp is 0.
15916
15917         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
15918         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
15919         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
15920         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
15921
15922         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
15923         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
15924         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
15925         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
15926         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
15927         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
15928
15929 2007-01-24  Bruno Haible  <bruno@clisp.org>
15930
15931         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
15932         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
15933         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
15934         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
15935         gl_FUNC_FTS_CORE.
15936         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
15937         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
15938         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
15939         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
15940         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
15941         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
15942         gl_FUNC_FCHOWNAT.
15943         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
15944         gl_FUNC_STRFTIME.
15945         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
15946         Reported by Ralf Wildenhues.
15947
15948 2007-01-24  Bruno Haible  <bruno@clisp.org>
15949
15950         Drop AC_REQUIRE calls that are redundant with the module dependencies.
15951         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
15952         gl_GETADDRINFO.
15953         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
15954         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
15955         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
15956
15957 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
15958
15959         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
15960         Don't use 'exit'; just return from 'main'.
15961         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
15962
15963         * lib/fnmatch_.h: Readjust white space and comments to match
15964         glibc, to avoid spurious diffs.
15965
15966 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15967
15968         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
15969         2004-12-01 change by Jakub Jelinek, since this code won't compile
15970         if !LIBC.  Problem reported by Bob Proulx.
15971
15972 2007-01-23  Bruno Haible  <bruno@clisp.org>
15973
15974         * lib/striconveh.c: Include c-strcaseeq.h.
15975         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
15976         * modules/striconveh (Depends-on): Add c-strcaseeq.
15977
15978 2007-01-23  Bruno Haible  <bruno@clisp.org>
15979
15980         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
15981
15982         * modules/c-strcaseeq: New file.
15983         * lib/c-strcaseeq.h: New file.
15984
15985         * modules/streq: New file.
15986         * lib/streq.h: New file.
15987
15988 2007-01-23  Bruno Haible  <bruno@clisp.org>
15989
15990         * modules/striconveha-tests: New file.
15991         * tests/test-striconveha.c: New file.
15992
15993         * lib/striconveha.h: Include <stdbool.h>.
15994         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
15995         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
15996         (mem_iconveha_notranslit): Renamed from mem_iconveha.
15997         (mem_iconveha): New function.
15998         (str_iconveha_notranslit): Renamed from str_iconveha.
15999         (str_iconveha): New function.
16000         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
16001         c-strcase.
16002
16003 2007-01-23  Bruno Haible  <bruno@clisp.org>
16004
16005         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
16006         encodings without forgiving before trying any encoding with handler.
16007         (str_iconveha): Try all encodings without forgiving before trying any
16008         encoding with handler.
16009
16010 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
16011
16012         Import the following changes from libc.
16013
16014         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
16015
16016         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
16017
16018         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
16019
16020         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
16021         normal_bracket label.
16022
16023         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
16024
16025         [BZ #361]
16026         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
16027         to normal_bracket after fetching the next character.
16028
16029 2007-01-22  Bruno Haible  <bruno@clisp.org>
16030
16031         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
16032         argument.
16033         * lib/striconveh.c (iconv_carefully_1): New function.
16034         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
16035         argument.
16036         (str_cd_iconveh): Update.
16037         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
16038         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
16039         * tests/test-striconveh.c (MAGIC): New macro.
16040         (new_offsets): New function.
16041         (main): Test call with and without offsets.
16042
16043 2007-01-22  Bruno Haible  <bruno@clisp.org>
16044
16045         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
16046         * modules/sys_select (Makefile.am): Likewise.
16047         * modules/sys_socket (Makefile.am): Likewise.
16048         * modules/sys_time (Makefile.am): Likewise.
16049
16050 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
16051
16052         * modules/gettimeofday (License): Change from GPL to LGPL, since
16053         gettimeofday is a library function.
16054
16055 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16056
16057         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
16058
16059 2007-01-21  Bruno Haible  <bruno@clisp.org>
16060
16061         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
16062
16063 2007-01-21  Bruno Haible  <bruno@clisp.org>
16064
16065         * modules/striconveha: New file.
16066         * lib/striconveha.h: New file.
16067         * lib/striconveha.c: New file.
16068         * MODULES.html.sh (Internationalization functions): Add striconveha.
16069         * lib/striconv.c (str_iconv): Optimize the case of an empty input
16070         string.
16071         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
16072
16073 2007-01-21  Bruno Haible  <bruno@clisp.org>
16074
16075         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
16076         * lib/striconveh.c (str_iconveh): Likewise.
16077
16078 2007-01-21  Bruno Haible  <bruno@clisp.org>
16079
16080         * lib/striconveh.h (mem_iconveh): New declaration.
16081         * lib/striconveh.c (mem_iconveh): New function.
16082         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
16083
16084 2007-01-21  Bruno Haible  <bruno@clisp.org>
16085
16086         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
16087
16088         * lib/striconveh.h (mem_cd_iconveh): Change specification.
16089         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
16090         original result buffer.
16091         (str_cd_iconveh): Update.
16092         * tests/test-striconveh.c (main): Update.
16093
16094         * lib/striconv.h (mem_cd_iconv): Change specification.
16095         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
16096         result buffer.
16097         (str_cd_iconv): Update.
16098         * tests/test-striconv.c (main): Update.
16099
16100 2007-01-21  Bruno Haible  <bruno@clisp.org>
16101
16102         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
16103
16104 2007-01-20  Jim Meyering  <jim@meyering.net>
16105
16106         * lib/userspec.c (parse_with_separator): If a user or group string
16107         starts with "+", skip the corresponding name-to-ID look-up, since
16108         such a look-up must fail: user and group names may not include "+".
16109
16110 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
16111
16112         * lib/poll.c: Include sys/time.h and time.h unconditionally,
16113         since we now assume the sys_time module.
16114         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
16115         check for sys/time.h; no longer needed.
16116         * modules/poll (Depends-on): Depend on sys_time.
16117
16118 2007-01-18  Bruno Haible  <bruno@clisp.org>
16119
16120         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
16121         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
16122
16123         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
16124         gettimeofday.
16125
16126         * tests/test-gettimeofday.c: Include <time.h>.
16127         (dummy): Remove variable.
16128
16129         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
16130         gl_HEADER_SYS_TIME_H.
16131         (gl_HEADER_SYS_TIME_H): New macro.
16132
16133         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
16134         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16135         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
16136         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
16137         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16138         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
16139         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
16140         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16141         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
16142         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
16143         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16144
16145         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
16146         last change; it caused a compilation error when cross-compiling to
16147         Cygwin.
16148
16149 2007-01-18  Jim Meyering  <jim@meyering.net>
16150
16151         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
16152         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
16153         than the race-prone "test -d sys || mkdir sys".
16154         (configure.ac): Use AC_PROG_MKDIR_P.
16155         * modules/sys_select: Likewise.
16156         * modules/sys_socket: Likewise.
16157         * modules/sys_time: Likewise.
16158
16159 2007-01-18  Eric Blake  <ebb9@byu.net>
16160
16161         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
16162         replace gettimeofday.
16163         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
16164         name, to avoid infinite recursion.
16165
16166 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
16167
16168         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
16169         module sys_time.
16170         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
16171         assume timespec.h defines struct timeval.
16172         * lib/settime.c: Likewise.
16173         * lib/utimens.c: Likewise.
16174         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
16175         since we now assume the gettimeofday module.
16176         * lib/tempname.c (__gen_tempname): Likewise.
16177         * lib/gettimeofday.h: Remove.
16178         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
16179         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
16180         Include <time.h>, for 'time()'.
16181         (localtime_buffer_addr): Also use this workaround if
16182         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
16183         to simplify the uses.  All uses changed.
16184         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
16185         that #undef is inside {}, and 'const' follows type name consistently.
16186         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
16187         (gettimeofday): Do not use the maximum possible value for
16188         tv->tv_usec, since that might break usages other than ls.c.
16189         Instead, we'll leave ls.c alone.  This undoes today's patch
16190         by Bruno.  Add a compile-time warning for 1s-clock resolution;
16191         we've never observed the problem but might as well keep the
16192         canary.
16193         * lib/nanosleep.c: Include timespec.h first, for interface check.
16194         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
16195         now assume the sys_time module.
16196         * lib/tempname.c: Likewise.
16197         * lib/timespec.h: Likewise.
16198         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
16199         needed.
16200         * lib/strftime.c: Likewise.
16201         * lib/timespec.h: Likewise.
16202         * lib/posixtm.c: Include posixtm.h first, for interface check.
16203         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
16204         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
16205         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
16206         * lib/sys_time_.h: New file.
16207         * lib/timespec.h (struct timespec): Use long int, not long.
16208         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
16209         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
16210         Remove obsolescent call to AC_HEADER_TIME.
16211         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
16212         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
16213         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
16214         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
16215         Likewise.
16216         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
16217         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
16218         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
16219         into the sys_time module.  Check for gettimeofday just once.
16220         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
16221         for gettimeofday signature to just check the signature.  Merely
16222         compile it, since linking doesn't test signature.  Improve test for
16223         whether gettimeofday.o is actually needed.
16224         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
16225         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
16226         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
16227         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16228         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
16229         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
16230         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
16231         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
16232         than worrying about sys/time.h.
16233         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
16234         Don't bother worrying about TIME_WITH_SYS_TIME.
16235         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
16236         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
16237         * m4/sys_time_h.m4: New file.
16238         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
16239         Don't include sys/time.h.  Return from main rather than exiting.
16240         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
16241         all uses changed.
16242         * modules/gethrxtime (Depends-on): Add sys_time.
16243         * modules/gettime (Depends-on): Likewise.
16244         * modules/gettimeofday (Depends-on): Likewise.
16245         * modules/nanosleep (Depends-on): Likewise.
16246         * modules/settime (Depends-on): Likewise.
16247         * modules/tempname (Depends-on): Likewise.
16248         * modules/utimens (Depends-on): Likewise.
16249         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
16250         (Include:) Change back to <sys/time.h>.
16251         (Maintainer:) Add self.
16252         * modules/sys_time: New file.
16253         * modules/tempname (Depends-on): Add gettimeofday.
16254         * tests/test-gettimeofday.c: Include <sys/time.h>
16255         rather than gettimeofday.h.
16256
16257 2007-01-17  Bruno Haible  <bruno@clisp.org>
16258
16259         * gnulib-tool (func_get_license): Revert last patch. Instead, let
16260         the license default to GPL.
16261         (func_create_testdir): Don't complain if a module is LGPL and its
16262         tests module depends on GPLed modules.
16263
16264 2007-01-17  Bruno Haible  <bruno@clisp.org>
16265
16266         * lib/gettimeofday.c (gettimeofday): Add code for the case
16267         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
16268         maximum possible value for tv->tv_usec, rather than the minimum one.
16269
16270 2005-10-08  Martin Lambers  <marlam@marlam.de>
16271 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
16272 2007-01-16  Bruno Haible  <bruno@clisp.org>
16273
16274         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
16275         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
16276         gl_FUNC_GETTIMEOFDAY.
16277         (Include): Add gettimeofday.h.
16278         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
16279         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
16280         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
16281         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
16282         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
16283         * lib/gettimeofday.h: New file.
16284         * lib/gettimeofday.c: Include <sys/timeb.h>.
16285         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
16286         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
16287         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
16288         fall back on time().
16289
16290         * tests/test-gettimeofday.c: New file.
16291         * modules/gettimeofday-tests: New file.
16292
16293 2007-01-16  Eric Blake  <ebb9@byu.net>
16294
16295         * modules/fnmatch (Depends-on): Depend on wchar.
16296         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
16297         * m4/fnmatch.m4: Likewise.
16298         * modules/mbchar (Makefile.am): Assume <wchar.h>.
16299         * m4/mbchar.m4: Likewise.
16300         * modules/mbswidth (Depends-on): Depend on wchar.
16301         * lib/mbswidth.c: Assume <wchar.h>.
16302         * m4/mbswidth.m4: Likewise.
16303         * modules/quotearg (Depends-on): Depend on wchar.
16304         * lib/quotearg.c: Assume <wchar.h>.
16305         * m4/quotearg.m4: Likewise.
16306         * modules/regex (Depends-on): Depend on wchar.
16307         * lib/regex_internal.h: Assume <wchar.h>.
16308         * m4/regex.m4: Likewise.
16309         * modules/stdint (Depends-on): Depend on wchar.
16310         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
16311         * m4/stdint.m4: Likewise.
16312         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
16313         * modules/strftime (Depends-on): Depend on wchar.
16314         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
16315         * modules/strtol (Depends-on): Depend on wchar.
16316         * lib/strtol.c: Assume <wchar.h>.
16317         * modules/wcwidth (Depends-on): Depend on wchar.
16318         * lib/wcwidth.h: Assume <wchar.h>.
16319         * m4/wcwidth.m4: Likewise.
16320
16321 2007-01-16  Bruno Haible  <bruno@clisp.org>
16322
16323         * modules/csharpexec-script: New, created from...
16324         * modules/csharpexec: ... this.
16325
16326 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
16327
16328         * modules/javaexec-script: New, created from...
16329         * modules/javaexec: ... this.
16330
16331 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16332
16333         * modules/poll (Dependencies): Add sys_select.
16334
16335 2007-01-15  Jim Meyering  <jim@meyering.net>
16336
16337         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
16338         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
16339         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
16340         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
16341
16342 2007-01-15  Bruno Haible  <bruno@clisp.org>
16343
16344         * modules/striconveh: New file.
16345         * lib/striconveh.h: New file.
16346         * lib/striconveh.c: New file.
16347         * MODULES.html.sh (Internationalization functions): Add striconveh.
16348
16349         * modules/striconveh-tests: New file.
16350         * tests/test-striconveh.c: New file.
16351
16352 2007-01-15  Bruno Haible  <bruno@clisp.org>
16353
16354         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
16355         not from GNU libiconv or GNU libc.
16356
16357 2007-01-15  Bruno Haible  <bruno@clisp.org>
16358
16359         * doc/gnulib-intro.texi (Copyright): Explain the different license
16360         terms for module descriptions, autoconf macros, tests, documentation.
16361
16362 2007-01-14  Bruno Haible  <bruno@clisp.org>
16363
16364         * modules/striconv-tests: New file.
16365         * tests/test-striconv.c: New file.
16366
16367 2007-01-14  Bruno Haible  <bruno@clisp.org>
16368
16369         * modules/iconv-tests: New file.
16370         * tests/test-iconv.c: New file.
16371
16372 2007-01-14  Bruno Haible  <bruno@clisp.org>
16373
16374         * gnulib-tool (func_get_license): For test modules, use the license of
16375         the main module.
16376
16377 2007-01-14  Bruno Haible  <bruno@clisp.org>
16378
16379         * modules/iconv (Include): Clarify that <iconv.h> can only be included
16380         if iconv is found to exist.
16381
16382 2007-01-14  Bruno Haible  <bruno@clisp.org>
16383
16384         * modules/c-ctype-tests: New file.
16385         * tests/test-c-ctype.c: New file.
16386
16387 2007-01-14  Bruno Haible  <bruno@clisp.org>
16388
16389         * modules/binary-io-tests: New file.
16390         * tests/test-binary-io.sh: New file.
16391         * tests/test-binary-io.c: New file.
16392
16393 2007-01-14  Bruno Haible  <bruno@clisp.org>
16394
16395         * modules/array-oset-tests: New file.
16396         * tests/test-array_oset.c: New file.
16397
16398 2007-01-14  Bruno Haible  <bruno@clisp.org>
16399
16400         * modules/array-list-tests: New file.
16401         * tests/test-array_list.c: New file.
16402
16403 2007-01-14  Bruno Haible  <bruno@clisp.org>
16404
16405         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
16406         and make.
16407         Reported by Simon Josefsson in
16408         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
16409
16410 2007-01-14  Bruno Haible  <bruno@clisp.org>
16411
16412         * modules/allocsa-tests: New file.
16413         * tests/test-allocsa.c: New file.
16414
16415 2007-01-14  Bruno Haible  <bruno@clisp.org>
16416
16417         * modules/fchdir (Depends-on): Add absolute-header.
16418         * modules/unistd (Depends-on): Likewise.
16419
16420 2006-12-30  Bruno Haible  <bruno@clisp.org>
16421
16422         * modules/fchdir: New file.
16423         * modules/unistd (Files): Add lib/unistd_.h.
16424         (Makefile.am): Generate unistd.h from unistd_.h.
16425         * lib/fchdir.c: New file.
16426         * lib/dirent_.h: New file.
16427         * lib/unistd_.h: New file.
16428         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
16429         * m4/fchdir.m4: New file.
16430         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
16431         (gl_HEADER_UNISTD): Invoke it.
16432         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
16433         function.
16434         * lib/backupfile.c (opendir, closedir): Undefine.
16435         * lib/chown.c (open, close): Undefine.
16436         * lib/clean-temp.c (open, close): Undefine.
16437         * lib/copy-file.c (open, close): Undefine.
16438         * lib/execute.c (open, close): Undefine.
16439         * lib/fsusage.c (open, close): Undefine.
16440         * lib/gc-gnulib.c (open, close): Undefine.
16441         * lib/getcwd.c (opendir, closedir): Undefine.
16442         * lib/glob.c (opendir, closedir): Undefine.
16443         * lib/javacomp.c (open, close): Undefine.
16444         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
16445         * lib/openat-proc.c (open, close): Undefine.
16446         * lib/pagealign_alloc.c (open, close): Undefine.
16447         * lib/pipe.c (open, close): Undefine.
16448         * lib/progreloc.c (open, close): Undefine.
16449         * lib/savedir.c (opendir, closedir): Undefine.
16450         * lib/utime.c (open, close): Undefine.
16451         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
16452
16453 2007-01-10  Bruno Haible  <bruno@clisp.org>
16454
16455         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
16456
16457 2007-01-12  Eric Blake  <ebb9@byu.net>
16458
16459         Provide a robust <wchar.h>.  Further simplifications are now
16460         possible in other modules, but not included here.
16461         * modules/wchar: New module.
16462         * m4/wchar.m4: New file.
16463         * lib/wchar_.h: Likewise.
16464         * modules/mbchar (Depends-on): Depend on wchar, as the first use
16465         of the new module.
16466         * MODULES.html.sh (Extended multibyte and wide character utilities):
16467         New section.
16468
16469 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
16470
16471         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
16472         to a reasonable default for memory allocation.
16473         (xreadlink): Don't allocate a huge buffer, to work around a buggy
16474         file system that reports garbage st_size values for symlinks.
16475         Problem reported by Liyang Hu.
16476
16477 2007-01-11  Simon Josefsson  <simon@josefsson.org>
16478
16479         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
16480         Emacs .#* auto-save files).
16481
16482 2007-01-11  Bruno Haible  <bruno@clisp.org>
16483
16484         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
16485         directory.
16486
16487 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
16488
16489         Use @...@ consistently in lib/wctype_.h.
16490         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
16491         on it being set to 1 or 0.
16492         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
16493         go back to AC_SUBSTing it.
16494         * modules/wctype (Makefile.am): Undo previous change.
16495
16496 2007-01-10  Eric Blake  <ebb9@byu.net>
16497
16498         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
16499         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
16500         * modules/wctype (Makefile.am): Likewise.
16501         Reported by Chris McGuire.
16502
16503 2007-01-10  Jim Meyering  <jim@meyering.net>
16504
16505         fts.c: a small readability/maintainability improvement
16506         * lib/fts.c (fts_read): Make this code slightly more readable and
16507         maintainable by hoisting the "sp->fts_cur = p" assignments to
16508         immediately follow the statements that set P.  Derived from
16509         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
16510
16511 2007-01-10  Eric Blake  <ebb9@byu.net>
16512
16513         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
16514         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
16515         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
16516         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
16517         Reported by Chris McGuire.
16518
16519 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16520
16521         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
16522         in sed script.
16523
16524 2007-01-09  Bruno Haible  <bruno@clisp.org>
16525
16526         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
16527         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
16528         variables.
16529         (func_module): Use them.
16530
16531 2007-01-09  Bruno Haible  <bruno@clisp.org>
16532
16533         * modules/unistr/base: New file.
16534         * lib/unistr.h: New file.
16535
16536         * modules/unistr/u8-to-u16: New file.
16537         * lib/unistr/u8-to-u16.c: New file.
16538
16539         * modules/unistr/u8-to-u32: New file.
16540         * lib/unistr/u8-to-u32.c: New file.
16541
16542         * modules/unistr/u16-to-u8: New file.
16543         * lib/unistr/u16-to-u8.c: New file.
16544
16545         * modules/unistr/u16-to-u32: New file.
16546         * lib/unistr/u16-to-u32.c: New file.
16547
16548         * modules/unistr/u32-to-u8: New file.
16549         * lib/unistr/u32-to-u8.c: New file.
16550
16551         * modules/unistr/u32-to-u16: New file.
16552         * lib/unistr/u32-to-u16.c: New file.
16553
16554         * modules/unistr/u8-check: New file.
16555         * modules/unistr/u16-check: New file.
16556         * modules/unistr/u32-check: New file.
16557         * lib/unistr/u8-check.c: New file.
16558         * lib/unistr/u16-check.c: New file.
16559         * lib/unistr/u32-check.c: New file.
16560
16561         * modules/unistr/u8-chr: New file.
16562         * modules/unistr/u16-chr: New file.
16563         * modules/unistr/u32-chr: New file.
16564         * lib/unistr/u8-chr.c: New file.
16565         * lib/unistr/u16-chr.c: New file.
16566         * lib/unistr/u32-chr.c: New file.
16567
16568         * modules/unistr/u8-cmp: New file.
16569         * modules/unistr/u16-cmp: New file.
16570         * modules/unistr/u32-cmp: New file.
16571         * lib/unistr/u8-cmp.c: New file.
16572         * lib/unistr/u16-cmp.c: New file.
16573         * lib/unistr/u32-cmp.c: New file.
16574
16575         * modules/unistr/u8-cpy: New file.
16576         * modules/unistr/u16-cpy: New file.
16577         * modules/unistr/u32-cpy: New file.
16578         * lib/unistr/u8-cpy.c: New file.
16579         * lib/unistr/u16-cpy.c: New file.
16580         * lib/unistr/u32-cpy.c: New file.
16581         * lib/unistr/u-cpy.h: New file.
16582
16583         * modules/unistr/u8-cpy-alloc: New file.
16584         * modules/unistr/u16-cpy-alloc: New file.
16585         * modules/unistr/u32-cpy-alloc: New file.
16586         * lib/unistr/u8-cpy-alloc.c: New file.
16587         * lib/unistr/u16-cpy-alloc.c: New file.
16588         * lib/unistr/u32-cpy-alloc.c: New file.
16589         * lib/unistr/u-cpy-alloc.h: New file.
16590
16591         * modules/unistr/u8-endswith: New file.
16592         * modules/unistr/u16-endswith: New file.
16593         * modules/unistr/u32-endswith: New file.
16594         * lib/unistr/u8-endswith.c: New file.
16595         * lib/unistr/u16-endswith.c: New file.
16596         * lib/unistr/u32-endswith.c: New file.
16597         * lib/unistr/u-endswith.h: New file.
16598
16599         * modules/unistr/u8-mblen: New file.
16600         * modules/unistr/u16-mblen: New file.
16601         * modules/unistr/u32-mblen: New file.
16602         * lib/unistr/u8-mblen.c: New file.
16603         * lib/unistr/u16-mblen.c: New file.
16604         * lib/unistr/u32-mblen.c: New file.
16605
16606         * modules/unistr/u8-mbtouc: New file.
16607         * modules/unistr/u16-mbtouc: New file.
16608         * modules/unistr/u32-mbtouc: New file.
16609         * lib/unistr/u8-mbtouc.c: New file.
16610         * lib/unistr/u16-mbtouc.c: New file.
16611         * lib/unistr/u32-mbtouc.c: New file.
16612
16613         * modules/unistr/u8-mbtouc-safe: New file.
16614         * modules/unistr/u16-mbtouc-safe: New file.
16615         * modules/unistr/u32-mbtouc-safe: New file.
16616         * lib/unistr/u8-mbtouc-safe.c: New file.
16617         * lib/unistr/u16-mbtouc-safe.c: New file.
16618         * lib/unistr/u32-mbtouc-safe.c: New file.
16619
16620         * modules/unistr/u8-move: New file.
16621         * modules/unistr/u16-move: New file.
16622         * modules/unistr/u32-move: New file.
16623         * lib/unistr/u8-move.c: New file.
16624         * lib/unistr/u16-move.c: New file.
16625         * lib/unistr/u32-move.c: New file.
16626         * lib/unistr/u-move.h: New file.
16627
16628         * modules/unistr/u8-next: New file.
16629         * modules/unistr/u16-next: New file.
16630         * modules/unistr/u32-next: New file.
16631         * lib/unistr/u8-next.c: New file.
16632         * lib/unistr/u16-next.c: New file.
16633         * lib/unistr/u32-next.c: New file.
16634
16635         * modules/unistr/u8-prev: New file.
16636         * modules/unistr/u16-prev: New file.
16637         * modules/unistr/u32-prev: New file.
16638         * lib/unistr/u8-prev.c: New file.
16639         * lib/unistr/u16-prev.c: New file.
16640         * lib/unistr/u32-prev.c: New file.
16641
16642         * modules/unistr/u8-set: New file.
16643         * modules/unistr/u16-set: New file.
16644         * modules/unistr/u32-set: New file.
16645         * lib/unistr/u8-set.c: New file.
16646         * lib/unistr/u16-set.c: New file.
16647         * lib/unistr/u32-set.c: New file.
16648         * lib/unistr/u-set.h: New file.
16649
16650         * modules/unistr/u8-startswith: New file.
16651         * modules/unistr/u16-startswith: New file.
16652         * modules/unistr/u32-startswith: New file.
16653         * lib/unistr/u8-startswith.c: New file.
16654         * lib/unistr/u16-startswith.c: New file.
16655         * lib/unistr/u32-startswith.c: New file.
16656         * lib/unistr/u-startswith.h: New file.
16657
16658         * modules/unistr/u8-stpcpy: New file.
16659         * modules/unistr/u16-stpcpy: New file.
16660         * modules/unistr/u32-stpcpy: New file.
16661         * lib/unistr/u8-stpcpy.c: New file.
16662         * lib/unistr/u16-stpcpy.c: New file.
16663         * lib/unistr/u32-stpcpy.c: New file.
16664         * lib/unistr/u-stpcpy.h: New file.
16665
16666         * modules/unistr/u8-stpncpy: New file.
16667         * modules/unistr/u16-stpncpy: New file.
16668         * modules/unistr/u32-stpncpy: New file.
16669         * lib/unistr/u8-stpncpy.c: New file.
16670         * lib/unistr/u16-stpncpy.c: New file.
16671         * lib/unistr/u32-stpncpy.c: New file.
16672         * lib/unistr/u-stpncpy.h: New file.
16673
16674         * modules/unistr/u8-strcat: New file.
16675         * modules/unistr/u16-strcat: New file.
16676         * modules/unistr/u32-strcat: New file.
16677         * lib/unistr/u8-strcat.c: New file.
16678         * lib/unistr/u16-strcat.c: New file.
16679         * lib/unistr/u32-strcat.c: New file.
16680         * lib/unistr/u-strcat.h: New file.
16681
16682         * modules/unistr/u8-strchr: New file.
16683         * modules/unistr/u16-strchr: New file.
16684         * modules/unistr/u32-strchr: New file.
16685         * lib/unistr/u8-strchr.c: New file.
16686         * lib/unistr/u16-strchr.c: New file.
16687         * lib/unistr/u32-strchr.c: New file.
16688
16689         * modules/unistr/u8-strcmp: New file.
16690         * modules/unistr/u16-strcmp: New file.
16691         * modules/unistr/u32-strcmp: New file.
16692         * lib/unistr/u8-strcmp.c: New file.
16693         * lib/unistr/u16-strcmp.c: New file.
16694         * lib/unistr/u32-strcmp.c: New file.
16695
16696         * modules/unistr/u8-strcpy: New file.
16697         * modules/unistr/u16-strcpy: New file.
16698         * modules/unistr/u32-strcpy: New file.
16699         * lib/unistr/u8-strcpy.c: New file.
16700         * lib/unistr/u16-strcpy.c: New file.
16701         * lib/unistr/u32-strcpy.c: New file.
16702         * lib/unistr/u-strcpy.h: New file.
16703
16704         * modules/unistr/u8-strcspn: New file.
16705         * modules/unistr/u16-strcspn: New file.
16706         * modules/unistr/u32-strcspn: New file.
16707         * lib/unistr/u8-strcspn.c: New file.
16708         * lib/unistr/u16-strcspn.c: New file.
16709         * lib/unistr/u32-strcspn.c: New file.
16710         * lib/unistr/u-strcspn.h: New file.
16711
16712         * modules/unistr/u8-strdup: New file.
16713         * modules/unistr/u16-strdup: New file.
16714         * modules/unistr/u32-strdup: New file.
16715         * lib/unistr/u8-strdup.c: New file.
16716         * lib/unistr/u16-strdup.c: New file.
16717         * lib/unistr/u32-strdup.c: New file.
16718         * lib/unistr/u-strdup.h: New file.
16719
16720         * modules/unistr/u8-strlen: New file.
16721         * modules/unistr/u16-strlen: New file.
16722         * modules/unistr/u32-strlen: New file.
16723         * lib/unistr/u8-strlen.c: New file.
16724         * lib/unistr/u16-strlen.c: New file.
16725         * lib/unistr/u32-strlen.c: New file.
16726         * lib/unistr/u-strlen.h: New file.
16727
16728         * modules/unistr/u8-strmblen: New file.
16729         * modules/unistr/u16-strmblen: New file.
16730         * modules/unistr/u32-strmblen: New file.
16731         * lib/unistr/u8-strmblen.c: New file.
16732         * lib/unistr/u16-strmblen.c: New file.
16733         * lib/unistr/u32-strmblen.c: New file.
16734
16735         * modules/unistr/u8-strmbtouc: New file.
16736         * modules/unistr/u16-strmbtouc: New file.
16737         * modules/unistr/u32-strmbtouc: New file.
16738         * lib/unistr/u8-strmbtouc.c: New file.
16739         * lib/unistr/u16-strmbtouc.c: New file.
16740         * lib/unistr/u32-strmbtouc.c: New file.
16741
16742         * modules/unistr/u8-strncat: New file.
16743         * modules/unistr/u16-strncat: New file.
16744         * modules/unistr/u32-strncat: New file.
16745         * lib/unistr/u8-strncat.c: New file.
16746         * lib/unistr/u16-strncat.c: New file.
16747         * lib/unistr/u32-strncat.c: New file.
16748         * lib/unistr/u-strncat.h: New file.
16749
16750         * modules/unistr/u8-strncmp: New file.
16751         * modules/unistr/u16-strncmp: New file.
16752         * modules/unistr/u32-strncmp: New file.
16753         * lib/unistr/u8-strncmp.c: New file.
16754         * lib/unistr/u16-strncmp.c: New file.
16755         * lib/unistr/u32-strncmp.c: New file.
16756
16757         * modules/unistr/u8-strncpy: New file.
16758         * modules/unistr/u16-strncpy: New file.
16759         * modules/unistr/u32-strncpy: New file.
16760         * lib/unistr/u8-strncpy.c: New file.
16761         * lib/unistr/u16-strncpy.c: New file.
16762         * lib/unistr/u32-strncpy.c: New file.
16763         * lib/unistr/u-strncpy.h: New file.
16764
16765         * modules/unistr/u8-strnlen: New file.
16766         * modules/unistr/u16-strnlen: New file.
16767         * modules/unistr/u32-strnlen: New file.
16768         * lib/unistr/u8-strnlen.c: New file.
16769         * lib/unistr/u16-strnlen.c: New file.
16770         * lib/unistr/u32-strnlen.c: New file.
16771         * lib/unistr/u-strnlen.h: New file.
16772
16773         * modules/unistr/u8-strpbrk: New file.
16774         * modules/unistr/u16-strpbrk: New file.
16775         * modules/unistr/u32-strpbrk: New file.
16776         * lib/unistr/u8-strpbrk.c: New file.
16777         * lib/unistr/u16-strpbrk.c: New file.
16778         * lib/unistr/u32-strpbrk.c: New file.
16779         * lib/unistr/u-strpbrk.h: New file.
16780
16781         * modules/unistr/u8-strrchr: New file.
16782         * modules/unistr/u16-strrchr: New file.
16783         * modules/unistr/u32-strrchr: New file.
16784         * lib/unistr/u8-strrchr.c: New file.
16785         * lib/unistr/u16-strrchr.c: New file.
16786         * lib/unistr/u32-strrchr.c: New file.
16787
16788         * modules/unistr/u8-strspn: New file.
16789         * modules/unistr/u16-strspn: New file.
16790         * modules/unistr/u32-strspn: New file.
16791         * lib/unistr/u8-strspn.c: New file.
16792         * lib/unistr/u16-strspn.c: New file.
16793         * lib/unistr/u32-strspn.c: New file.
16794         * lib/unistr/u-strspn.h: New file.
16795
16796         * modules/unistr/u8-strstr: New file.
16797         * modules/unistr/u16-strstr: New file.
16798         * modules/unistr/u32-strstr: New file.
16799         * lib/unistr/u8-strstr.c: New file.
16800         * lib/unistr/u16-strstr.c: New file.
16801         * lib/unistr/u32-strstr.c: New file.
16802         * lib/unistr/u-strstr.h: New file.
16803
16804         * modules/unistr/u8-strtok: New file.
16805         * modules/unistr/u16-strtok: New file.
16806         * modules/unistr/u32-strtok: New file.
16807         * lib/unistr/u8-strtok.c: New file.
16808         * lib/unistr/u16-strtok.c: New file.
16809         * lib/unistr/u32-strtok.c: New file.
16810         * lib/unistr/u-strtok.h: New file.
16811
16812         * modules/unistr/u8-uctomb: New file.
16813         * modules/unistr/u16-uctomb: New file.
16814         * modules/unistr/u32-uctomb: New file.
16815         * lib/unistr/u8-uctomb.c: New file.
16816         * lib/unistr/u16-uctomb.c: New file.
16817         * lib/unistr/u32-uctomb.c: New file.
16818
16819         * MODULES.html.sh (Unicode string functions): Add the new modules.
16820
16821 2007-01-08  Bruno Haible  <bruno@clisp.org>
16822
16823         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
16824         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
16825         subdirectories.
16826
16827 2007-01-08  Karl Berry  <karl@gnu.org>
16828
16829         * doc/error.texi: mention that main() fns must set program_name
16830         when progname is used.
16831
16832 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
16833
16834         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
16835         WCTYPE_H is empty, for the benefit of builds from non-distclean
16836         directories.  Problem reported by Eric Blake in
16837         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
16838
16839 2007-01-08  Bruno Haible  <bruno@clisp.org>
16840
16841         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
16842         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
16843         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
16844         PROVIDE_CANONICALIZE_FILENAME_MODE.
16845         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
16846
16847 2007-01-08  Bruno Haible  <bruno@clisp.org>
16848
16849         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
16850         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
16851         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
16852         * lib/fts.c: Likewise.
16853         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
16854
16855 2006-12-25  Bruno Haible  <bruno@clisp.org>
16856
16857         * modules/utf8-ucs4-safe: New file.
16858         * lib/utf8-ucs4-safe.h: New file.
16859         * lib/unistr/utf8-ucs4-safe.c: New file.
16860
16861         * modules/utf16-ucs4-safe: New file.
16862         * lib/utf16-ucs4-safe.h: New file.
16863         * lib/unistr/utf16-ucs4-safe.c: New file.
16864
16865         * MODULES.html.sh (Unicode string functions): Add the new modules.
16866
16867 2007-01-08  Bruno Haible  <bruno@clisp.org>
16868
16869         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
16870         (Depends-on): Add unitypes.
16871         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
16872         (u8_mbtouc_aux): Move out to separate file.
16873         (u8_mbtouc): Use ucs4_t, uint8_t types.
16874         * lib/unistr/utf8-ucs4.c: New file.
16875
16876         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
16877         (Depends-on): Add unitypes.
16878         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
16879         (u16_mbtouc_aux): Move out to separate file.
16880         (u16_mbtouc): Use ucs4_t, uint16_t types.
16881         * lib/unistr/utf16-ucs4.c: New file.
16882
16883         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
16884         (Depends-on): Add unitypes.
16885         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
16886         (u8_uctomb_aux): Move out to separate file.
16887         (u8_uctomb): Use ucs4_t, uint8_t types.
16888         * lib/unistr/ucs4-utf8.c: New file.
16889
16890         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
16891         (Depends-on): Add unitypes.
16892         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
16893         (u16_uctomb_aux): Move out to separate file.
16894         (u16_uctomb): Use ucs4_t, uint16_t types.
16895         * lib/unistr/ucs4-utf16.c: New file.
16896
16897 2006-12-25  Bruno Haible  <bruno@clisp.org>
16898
16899         * modules/unitypes: New file.
16900         * lib/unitypes.h: New file.
16901         * MODULES.html.sh (func_all_modules): New section "Unicode string
16902         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
16903         this section. Add unitypes.
16904
16905 2007-01-08  Bruno Haible  <bruno@clisp.org>
16906
16907         Avoid variable names that conflict with those from libtool.
16908         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
16909         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
16910         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
16911         library_names_spec to acl_library_names_spec, hardcode_* to
16912         acl_hardcode_*.
16913         Reported by Ralf Wildenhues.
16914
16915 2007-01-08  Bruno Haible  <bruno@clisp.org>
16916
16917         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
16918         definition.
16919         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
16920         definition.
16921         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
16922         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
16923         definition.
16924         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
16925         definition.
16926         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
16927         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
16928         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
16929         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
16930         definition.
16931         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
16932         definition.
16933         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
16934         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
16935         GC_USE_<algorithm>.
16936         * lib/gc-libgcrypt.c: Likewise.
16937         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
16938         * modules/gc-arctwo (configure.ac): Likewise.
16939         * modules/gc-des (configure.ac): Likewise.
16940         * modules/gc-hmac-md5 (configure.ac): Likewise.
16941         * modules/gc-hmac-sha1 (configure.ac): Likewise.
16942         * modules/gc-md2 (configure.ac): Likewise.
16943         * modules/gc-md4 (configure.ac): Likewise.
16944         * modules/gc-md5 (configure.ac): Likewise.
16945         * modules/gc-random (configure.ac): Likewise.
16946         * modules/gc-rijndael (configure.ac): Likewise.
16947         * modules/gc-sha1 (configure.ac): Likewise.
16948
16949 2007-01-08  Bruno Haible  <bruno@clisp.org>
16950
16951         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
16952         macro definition.
16953         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
16954         definition.
16955         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
16956         definition.
16957         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
16958         * modules/fcntl-safer (configure.ac): Likewise.
16959         * modules/fopen-safer (configure.ac): Likewise.
16960         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
16961         GNULIB_FWRITEERROR macro definition.
16962
16963 2007-01-08  Bruno Haible  <bruno@clisp.org>
16964
16965         * m4/gnulib-common.m4: New file.
16966         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
16967         (func_get_filelist): Add m4/gnulib-common.m4.
16968
16969 2007-01-08  Bruno Haible  <bruno@clisp.org>
16970
16971         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
16972         command.
16973
16974 2007-01-08  Jim Meyering  <jim@meyering.net>
16975
16976         Use a more robust test for a "can't happen" condition.
16977         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
16978         narrowed the st_size value.  Presuming the "can't happen" condition
16979         is true, that narrowing could conceivably convert an invalid st_size
16980         value into a valid one.  Instead, use a change based on Matthew
16981         Woehlke's original patch.
16982
16983         Slight readability improvement: use an assert-like macro
16984         in place of literal "abort ()" uses.
16985         * lib/fts.c (fts_assert): Define.
16986         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
16987         Use this macro instead of a bare 'abort'.
16988
16989 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
16990
16991         Don't worry about using IRIX 5.3's wctype.h broken definitions;
16992         simply work around them.
16993         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
16994         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
16995         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
16996         declaring.
16997         Don't bother to define as macros, since the standard doesn't require it.
16998         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
16999         longer worry about IRIX 5.3.
17000         (HAVE_WCTYPE_CTMP_BUG): Remove.
17001
17002 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
17003
17004         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
17005         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
17006         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
17007         Problems reported by Georg Schwarz for IRIX 5.3.
17008
17009         * gnulib-tool (autoconf_minversion): Take the maximum version number
17010         found, not the minimum.  Problem reported by James Youngman.
17011
17012 2007-01-03  Karl Berry  <karl@gnu.org>
17013
17014         * doc/error.texi: new file, explaining interaction with progname.
17015         * doc/gnulib.texi: include it.  Update copyright.
17016
17017 2007-01-03  Simon Josefsson  <simon@josefsson.org>
17018
17019         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
17020         AC_CANONICAL_HOST, to improve autobuild outputs.
17021
17022 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
17023             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
17024
17025         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
17026         sockets, server sockets, and other file descriptors.  Count errors
17027         to compute the return value.  Reorder the code a bit to be easier
17028         to follow.  Don't set event bits that were not requested (except
17029         POLLERR and POLLHUP).
17030
17031 2007-01-01  Bruno Haible  <bruno@clisp.org>
17032
17033         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
17034
17035 2007-01-03  Jim Meyering  <jim@meyering.net>
17036
17037         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
17038
17039 2007-01-02  Bruno Haible  <bruno@clisp.org>
17040
17041         * modules/settime (Include): Require timespec.h.
17042         * modules/nanosleep (Include): Likewise.
17043
17044 2007-01-01  Bruno Haible  <bruno@clisp.org>
17045
17046         * gnulib-tool (func_emit_copyright_notice): Bump year.
17047         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
17048
17049 2007-01-01  Bruno Haible  <bruno@clisp.org>
17050
17051         Improve support for OpenBSD.
17052         * build-aux/config.rpath (libname_spec): Export.
17053         (library_names_spec): New variable. Export.
17054         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
17055         library_names_spec from the config.rpath output. Locate shared library
17056         through the name pattern in library_names_spec.
17057
17058 2007-01-01  Eric Blake  <ebb9@byu.net>
17059
17060         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
17061
17062 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
17063
17064         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
17065         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
17066         assume the C locale, and avoid an "eval" that could cause trouble.
17067         Problem with SORT reported by Bob Proulx.
17068
17069         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
17070         Define.  Trivial patch from Henning Nielsen Lund, originally
17071         sent to bug-grep@gnu.org today.
17072
17073 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
17074
17075         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
17076         struct stat.  Problem reported by Henning Nielsen Lund.
17077         * lib/acl.c: Include acl.h first, to check interface.  Don't
17078         bother to include sys/types.h and sys/stat.h again.
17079
17080 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
17081
17082         Import the following change from libc; problem reported by
17083         Sven Verdoolaege.
17084
17085         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
17086
17087         [BZ #1373]
17088         * lib/argp.h: Remove __NTH for __argp_usage inline function.
17089
17090 2006-12-28  Jim Meyering  <jim@meyering.net>
17091
17092         * build-aux/announce-gen: Do not assume that the package
17093         builds any of tar.gz, tar.bz2, and .xdelta files.
17094         Suggestion from Simon Josefsson.
17095
17096 2006-12-28  Simon Josefsson  <simon@josefsson.org>
17097
17098         * modules/announce-gen: New file.
17099
17100 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
17101
17102         * lib/mbchar.h: Just include <wctype.h>; the wctype module
17103         handles its gotchas now.
17104         * lib/mbswidth.c: Likewise.
17105         * lib/wcwidth.h: Likewise.
17106         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
17107         and iswcntrl; the wctype module does this stuff now.
17108         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
17109         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
17110         * modules/mbchar (Depends-on): Add wctype.
17111         * modules/mbswidth (Depends-on): Likewise.
17112         * modules/wcwidth (Depends-on): Likewise.
17113
17114 2006-12-27  Eric Blake  <ebb9@byu.net>
17115
17116         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
17117         module uses more than what <wctype.h> is required to provide.
17118
17119 2006-12-26  Eric Blake  <ebb9@byu.net>
17120
17121         * gnulib-tool (sed_extract_prog): Avoid space-tab.
17122
17123 2006-12-26  Eric Blake  <ebb9@byu.net>
17124
17125         * modules/absolute-header: New module.
17126         * modules/fcntl (Depends-on): Depend on it.
17127         * modules/inttypes (Depends-on): Likewise.
17128         * modules/stdint (Depends-on): Likewise.
17129         * modules/sys_stat (Depends-on): Likewise.
17130         * modules/wctype (Depends-on): Likewise.
17131         * MODULES.html.sh (Support for building libraries and
17132         executables): Document it.
17133
17134 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
17135
17136         * gnulib-tool (SED): Remove, undoing previous change.
17137         The problem was that it broke coreutils on Solaris, because
17138         "sed --posix" leaked into a makefile.
17139         (sed): New alias, if 'alias' and GNU sed.
17140
17141 2006-12-24  Jim Meyering  <jim@meyering.net>
17142
17143         Work around an fchownat bug in glibc-2.4:
17144         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
17145         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
17146         in spite of the -P option.
17147         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
17148         New macros.
17149         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
17150         * modules/openat (Files): Add lib/fchownat.c.
17151         * lib/openat.c (fchownat): Don't define here.  Move to...
17152         * lib/fchownat.c: ...this new file.
17153
17154 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
17155
17156         Fix bug reported by Bruno Haible in
17157         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
17158         where quotearg.c didn't compile on Mac OS X 10.2 because it
17159         lacks <wchar.h> and wint_t.
17160         * lib/wctype_.h (__wctype_wint_t): New type.
17161         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
17162         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
17163         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
17164         Arg is now of type __wctype_wint_t, not wint_t.
17165         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
17166         substitute HAVE_WINT_T.
17167         * modules/wctype (Files): Add m4/wint_t.m4.
17168         (wctype.h): Substitute HAVE_WINT_T.
17169
17170 2006-12-23  Bruno Haible  <bruno@clisp.org>
17171
17172         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
17173
17174 2006-12-23  Bruno Haible  <bruno@clisp.org>
17175
17176         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
17177         S_ISLNK.
17178         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
17179         mingw.
17180
17181 2006-12-22  Bruno Haible  <bruno@clisp.org>
17182
17183         * lib/copy-file.c: Include acl.h.
17184         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
17185         Close the file descriptors only after being done with copy_acl.
17186         * modules/copy-file (Depends-on): Add acl.
17187
17188 2006-12-22  Bruno Haible  <bruno@clisp.org>
17189
17190         * gnulib-tool (SED): New variable.
17191         Use $SED instead of sed everywhere.
17192
17193 2006-12-22  Bruno Haible  <bruno@clisp.org>
17194
17195         * modules/no-c++: New file.
17196         * m4/no-c++.m4: New file.
17197         * MODULES.html.sh (Support for building libraries and executables):
17198         Add no-c++.
17199
17200 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
17201
17202         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
17203         Include <limits.h>, and use its INT_MAX to rewrite the
17204         j loop so that it does not overflow 'int'.  Problem reported by
17205         Ralf Wildenhues in
17206         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
17207         Play it safe by shifting left by 1 rather than multiplying by 2,
17208         as GCC is less likely to optimize this away when the value
17209         is signed (when it assumes overflow leads to undefined behavior).
17210         Also, don't assume time_t uses two's complement.
17211
17212 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
17213
17214         * MODULES.html.sh: New module wctype.
17215         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
17216         * lib/fnmatch.c: Don't bother to include <wchar.h> before
17217         <wctype.h>, since the new wctype module should fix this.
17218         * lib/quotearg.c: Include <wctype.h> unconditionally, since
17219         the wctype module should arrange for it.
17220         * lib/regex_internal.h: Likewise.
17221         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
17222         since the wctype module should handle this now.
17223         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
17224         * modules/fnmatch (Depends-on): Add wctype.
17225         * modules/quotearg (Depends-on): Likewise.
17226         * modules/regex (Depends-on): Likewise.
17227
17228 2006-12-19  Bruno Haible  <bruno@clisp.org>
17229
17230         * lib/strdup.h [C++]: Wrap definitions in extern "C".
17231         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
17232
17233 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17234
17235         * modules/savewd (Depends-on): Fix dependency on fcntl.
17236
17237 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
17238
17239         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
17240         conforms to C99, rather than relying on the user's environment
17241         setting of STDINT_H.
17242
17243 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
17244         and Eric Blake  <ebb9@byu.net>
17245
17246         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
17247         This is more consistent with the other defines here.
17248         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
17249         Port to z/OS.  Problem reported by Paul Gilmartin.
17250         Change local vars to use gl_ prefix rather than ac_.
17251         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
17252         with other defines.
17253         * modules/double-slash-root: New module.
17254         * modules/dirname (Files): Remove m4/double-slash-root.m4.
17255         (Depends-on): Add double-slash-root.
17256         * MODULES.html.sh (File system functions): Mention new module.
17257
17258 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
17259
17260         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
17261         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
17262         This is for the benefit of gzip, which doesn't do i18n.
17263
17264 2006-12-12  Jim Meyering  <jim@meyering.net>
17265
17266         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
17267         Reported by Andreas Schwab <schwab@suse.de>.
17268
17269 2006-12-12  Bruno Haible  <bruno@clisp.org>
17270
17271         Merge these changes.
17272         2006-09-05  Bruno Haible  <bruno@clisp.org>
17273         * lib/iconvme.c (iconv_string): No need to save and restore errno when
17274         iconv_alloc succeeded.
17275         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
17276         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
17277         test for " && dest " at the end - dest is always != NULL there. Call
17278         iconv with 4xNULL arguments initially, to reset the state. Call iconv
17279         with 2xNULL arguments, also to flush the state storage. Handle the
17280         IRIX iconv behaviour. Realloc the final result, to throw away unused
17281         memory.
17282
17283 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
17284
17285         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
17286         and fchmodat unconditionally, since glibc 2.4 has them.
17287         Problem reported by Arkadiusz Miskiewicz.
17288
17289 2006-12-10  Bruno Haible  <bruno@clisp.org>
17290
17291         * gnulib-tool (func_import): Show the include files only for those
17292         modules that are copied and specified.
17293         Reported by Karl Berry.
17294
17295 2006-12-08  Jim Meyering  <jim@meyering.net>
17296
17297         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
17298         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
17299
17300         * build-aux/announce-gen: Add two new options, both optional:
17301         --bootstrap-tools=TOOL_LIST
17302               a comma-separated list of tools, e.g.,
17303               autoconf,automake,bison,gnulib
17304         --gnulib-snapshot-date=DATE
17305               if gnulib is in the bootstrap tool list,
17306               then report this as the snapshot date.
17307               If not specified, use the current date/time.
17308               If you specify a date here, be sure it's UTC.
17309
17310 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17311
17312         * tests/test-argp-2.sh: Fix test to match actual output.
17313         (func_compare): Fix sed script to be portable.
17314
17315 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
17316
17317         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
17318         workaround for this case.  It is not autoconfigured now; offhand
17319         it's hard to see how to autoconfigure it.
17320
17321 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
17322
17323         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
17324         a directory that is about to be chowned.  Such a directory's
17325         initial file permissions should permit the owner only and this
17326         should not be changed until after the chown, since the group and
17327         other bits would be incorrect if they granted permission before
17328         the chown.
17329
17330         Fix porting problem for iswctype reported by Georg Schwarz in:
17331         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
17332         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
17333         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
17334         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
17335         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
17336
17337 2006-12-03  Jim Meyering  <jim@meyering.net>
17338
17339         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
17340         p->fts_statp may not yet be defined.
17341         (fts_read): Instead, set it in the caller, once p->fts_statp is
17342         sure to be defined, and corresponds to a top-level directory.
17343         This bug made du -x fail.  Here's the coreutils test case:
17344         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
17345         Reported by Mike Frysinger.
17346
17347 2006-12-01  Jim Meyering  <jim@meyering.net>
17348
17349         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
17350         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
17351         Reported by Simon Josefsson.
17352
17353 2006-11-30  Jim Meyering  <jim@meyering.net>
17354
17355         * m4/warning.m4: Use the all-permissive copyright notice
17356         recommended by RMS (rather than LGPL).
17357         * m4/vararrays.m4: Likewise.
17358         * m4/flexmember.m4: Likewise.
17359
17360 2006-11-29  Bruno Haible  <bruno@clisp.org>
17361
17362         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
17363         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
17364         using +=.
17365         Reported by Simon Josefsson <simon@josefsson.org>.
17366
17367 2006-11-28  James Youngman <jay@gnu.org>
17368
17369         * README: Advise users that they might find the bug-gnulib@gnu.org
17370         and autotools-announce@gnu.org mailing lists useful.
17371
17372 2006-11-28  Bruno Haible  <bruno@clisp.org>
17373
17374         * m4/ptrdiff_max.m4: Remove file.
17375
17376 2006-11-21  Bruno Haible  <bruno@clisp.org>
17377
17378         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
17379         _AC_COMPUTE_INT.
17380         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
17381         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
17382         _AC_COMPUTE_INT.
17383         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
17384         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
17385         _AC_COMPUTE_INT.
17386         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
17387
17388 2006-11-28  Jim Meyering  <jim@meyering.net>
17389
17390         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
17391         warning from "gcc -Wshadow" about shadowing the builtin.
17392
17393 2006-11-27  Bruno Haible  <bruno@clisp.org>
17394
17395         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
17396         _AC_COMPUTE_INT.
17397         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
17398
17399 2006-11-27  Bruno Haible  <bruno@clisp.org>
17400             Paul Eggert  <eggert@cs.ucla.edu>
17401
17402         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
17403
17404 2006-11-26  Bruno Haible  <bruno@clisp.org>
17405
17406         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
17407         noinst_LTLIBRARIES.
17408
17409 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
17410             Bruno Haible  <bruno@clisp.org>
17411
17412         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
17413         if compiling with "gcc -ansi".
17414
17415 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
17416
17417         Fix some incompatibilities with gcc -ansi -pedantic.
17418         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
17419         if compiling pedantically with GCC, unless it's C99 or later.
17420         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
17421         it mishandles gcc -ansi -pedantic as well.
17422         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
17423         if gcc -pedantic.
17424         * lib/regexec.c (check_node_accept_bytes): Don't use auto
17425         initializers for struct if -pedantic, unless it's C99 or later.
17426
17427 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
17428
17429         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
17430         Don't close an fd more than once. Identical atimes indicate
17431         success, not failure.
17432
17433 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
17434
17435         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
17436
17437 2006-11-23  Jim Meyering  <jim@meyering.net>
17438
17439         * build-aux/announce-gen: New file.  From coreutils.
17440
17441 2006-11-22  Jim Meyering  <jim@meyering.net>
17442
17443         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
17444         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
17445         (fts_read): Use a temporary to narrow the overused st_size member
17446         before using it in a switch statement.  Reported by Matthew Woehlke.
17447
17448         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
17449         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
17450
17451 2006-11-20  Bruno Haible  <bruno@clisp.org>
17452
17453         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
17454         changequote instead of pairs of brackets.
17455         Reported by Andreas Schwab <schwab@suse.de>.
17456
17457 2006-11-21  Jim Meyering  <jim@meyering.net>
17458
17459         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
17460         so as to remain compatible with older compilers.
17461         Patch from Michael Deutschmann.
17462
17463 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
17464
17465         * MODULES.html.sh (File system functions): Add openat.
17466
17467         * lib/openat.h (rpl_fstatat): New macro, if
17468         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
17469         (fstatat): Define to rpl_fstatat under the same conditions,
17470         unless COMPILING_FSTATAT.
17471         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
17472         seems to have the bug.
17473         * lib/fstatat.c: New file.
17474         * modules/openat (Files): Add it.
17475
17476 2006-11-20  Bruno Haible  <bruno@clisp.org>
17477
17478         * Makefile: New file.
17479
17480 2006-11-20  Jim Meyering  <jim@meyering.net>
17481
17482         The beginnings of syntax-related checks for gnulib.
17483         * lib/Makefile: New file.
17484         * lib/t-idcache: New script.  Ensure that the two halves of
17485         idcache.c stay in sync.
17486
17487         * lib/idcache.c: Adjust comments in user- and group- portions to
17488         be more accurate, and to be consistent with one another.
17489
17490 2006-11-20  Jim Meyering  <jim@meyering.net>
17491
17492         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
17493         continue using the flexible array member (thus, this module performs
17494         half as many malloc calls), with the addition that...
17495         (getgroup, getuser): Consistently record a non-match via an empty
17496         "name" string, and map an empty string match to a NULL return value.
17497         * modules/idcache (Depends-on): Re-add flexmember.
17498
17499         * lib/idcache.c (getuser): Remove all uses of the register keyword.
17500         (getuidbyname, getgroup, getgidbyname): Likewise.
17501
17502         Use cleaner syntax: NULL rather than 0.
17503         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
17504
17505 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
17506
17507         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
17508         It mishandled the case where the group was missing.
17509         Problem reported by Greg Schafer.
17510         * modules/idcache: Likewise.
17511
17512 2006-11-18  Jim Meyering  <jim@meyering.net>
17513
17514         * check-module (%exempt_header): Add exception for some
17515         conditionally-included headers.
17516
17517         * modules/i-ring (Depends-on): Add verify.
17518         (License): Change to LGPL.
17519
17520 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
17521
17522         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
17523         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
17524         and inttostr.h.  Use snprintf rather than uinttostr, so that
17525         LGPLed code doesn't depend on GPLed.
17526
17527 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
17528
17529         * modules/inline (License): Change from GPL to LGPL.
17530
17531 2006-11-17  Jim Meyering  <jim@meyering.net>
17532
17533         * modules/d-type (License): Switch to LGPL.
17534
17535 2006-11-15  Bruno Haible  <bruno@clisp.org>
17536
17537         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
17538
17539 2006-11-15  Eric Blake  <ebb9@byu.net>
17540
17541         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
17542         the module dependency.
17543
17544 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17545             Bruno Haible  <bruno@clisp.org>
17546
17547         * gnulib-tool (func_create_testdir): Add license consistency check.
17548
17549 2006-11-15  Eric Blake  <ebb9@byu.net>
17550
17551         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
17552         random "(cached)" in configure output.
17553
17554 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17555
17556         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
17557         test for conforming inttypes.h is both announced and cached.
17558
17559         * MODULES.html.sh (seen_modules, seen_files): New variables.
17560         (func_module): Rewrite to use a few less gnulib-tool and sed
17561         invocations.  Avoid a couple of quadratic algorithms for ...
17562         (missed_modules, missed_files): ... these, with ...
17563         (func_append, func_tmpdir): ... these new functions, from
17564         gnulib-tool.  Analogously, install traps for cleanup.
17565
17566         * tests/test-gc.c (main): Remove unused variables.
17567         * tests/test-read-file.c: Include stdlib.h, for 'free'.
17568
17569 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
17570
17571         * modules/inttostr (License): Change to LGPL.
17572
17573 2006-11-14  Eric Blake  <ebb9@byu.net>
17574
17575         * modules/tempname (License): Change to LGPL.
17576
17577 2006-11-14  Eric Blake  <ebb9@byu.net>
17578
17579         * doc/functions.texi (Function Portability): *printf functions on
17580         Cygwin now understand all POSIX size specifiers.
17581
17582 2006-11-14  Bruno Haible  <bruno@clisp.org>
17583
17584         * modules/c-ctype (License): Change to LGPL.
17585
17586 2006-11-12  Bruno Haible  <bruno@clisp.org>
17587
17588         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
17589         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
17590         for GNOME libraries, for which the include files are installed in
17591         subdirectories of $prefix/include.
17592
17593 2006-11-12  Bruno Haible  <bruno@clisp.org>
17594
17595         * m4/lib-link.m4: Require at least autoconf-2.54.
17596         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
17597         name to underscores for the --with option.
17598
17599 2006-11-13  Bruno Haible  <bruno@clisp.org>
17600
17601         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
17602         the tests directory.
17603         Reported by Ralf Wildenhues.
17604
17605 2006-11-13  Bruno Haible  <bruno@clisp.org>
17606
17607         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
17608         (func_emit_initmacro_end): Undo the override here.
17609         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
17610         Works around the famous automake error in coreutils.
17611
17612 2006-11-13  Eric Blake  <ebb9@byu.net>
17613
17614         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
17615         element, not its node.
17616
17617 2006-11-12  Bruno Haible  <bruno@clisp.org>
17618
17619         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
17620         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
17621
17622 2006-11-12  Bruno Haible  <bruno@clisp.org>
17623
17624         * gnulib-tool: New option --local-symlink.
17625         (func_usage): Document it.
17626         (lsymbolic): New variable.
17627         (func_import, func_create_testdir): If --symlink was not specified,
17628         test whether --local-symlink was specified and the file comes from
17629         the local_gnulib_dir.
17630
17631 2006-11-12  Bruno Haible  <bruno@clisp.org>
17632
17633         * gnulib-tool (func_ln): New function.
17634         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
17635
17636 2006-11-12  Bruno Haible  <bruno@clisp.org>
17637
17638         Finish support for source files in subdirectories.
17639         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
17640         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
17641         AUTOMAKE_OPTIONS.
17642         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
17643
17644 2006-11-12  Bruno Haible  <bruno@clisp.org>
17645
17646         * gnulib-tool (func_get_automake_snippet): Synthesize also an
17647         EXTRA_lib_SOURCES augmentation.
17648         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
17649
17650 2006-11-12  Jim Meyering  <jim@meyering.net>
17651
17652         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
17653         file descriptors.  This also averts a failure on systems with
17654         native openat support when a traversed directory lacks "x" access.
17655         * lib/fts_.h: Include "i-ring.h"
17656         (struct FTS) [fts_fd_ring]: New member.
17657         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
17658         (FCHDIR): Add parentheses.
17659         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
17660         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
17661         When descending, rather than simply closing the previous
17662         fts_cwd_fd value, push that file descriptor onto the ring.
17663         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
17664         (fts_open): Initialize the new fd_ring member.
17665         (fts_close): Clear the ring.
17666         (fts_safe_changedir): When possible, use our new fd_ring to skip
17667         the diropen and fstat and dev/ino comparison that would normally
17668         accompany a virtual `chdir ("..")'.
17669
17670         * modules/fts (Depends-on): Add i-ring.
17671         * modules/i-ring: New module.
17672         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
17673         * m4/i-ring.m4: New file.
17674
17675 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17676
17677         * gnulib-tool (func_create_testdir): Fix replacement of
17678         `build-aux' in configure.ac.  Run autotools in gltests
17679         subdirectory.
17680         (func_create_testdir, func_create_megatestdir, test): There is
17681         no need for '--force' in most autotool invocations in a new
17682         tree.  Actually fail the whole test if any of the tools, or the
17683         configure or make stages fail.
17684
17685         Sync from Automake.
17686         * build-aux/gnupload: Revert last change.  Add pointer to upload
17687         instructions of the GNU Maintenance Instructions.
17688         Suggestion by Karl Berry.
17689
17690 2006-11-10  Jim Meyering  <jim@meyering.net>
17691
17692         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
17693
17694 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
17695
17696         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
17697         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
17698         (bind_textdomain_codeset) [! ENABLE_NLS]:
17699         Evaluate all the arguments.  That way, callers get compatible behavior
17700         if the arguments have side effects.  Also, it avoids some GCC
17701         diagnostics in some cases; Joel E. Denny reported problems when Bison
17702         was configured with --enable-gcc-warnigs.
17703
17704 2006-11-10  Jim Meyering  <jim@meyering.net>
17705
17706         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
17707         relevant options in CFLAGS (like -O, -fno-inline) are taken into
17708         account.
17709
17710 2006-11-10  Jim Meyering  <jim@meyering.net>
17711
17712         * modules/inline: New file/module.
17713         * modules/xalloc (Files): Remove m4/inline.m4.
17714         (Depends-on): Add inline, instead.
17715         * modules/oset: Likewise.
17716         * modules/list: Likewise.
17717
17718 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
17719
17720         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
17721         Problem reported by Matthew Woehlke.
17722
17723 2006-11-09  Bruno Haible  <bruno@clisp.org>
17724
17725         * lib/tempname.c (gen_tempname): Remove variant that invokes
17726         __gen_tempname.
17727         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
17728         __gen_tempname.
17729
17730 2006-11-08  Bruno Haible  <bruno@clisp.org>
17731
17732         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
17733         to 'yes' instead of 'cross-compiling'.
17734
17735 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
17736
17737         * lib/quotearg.h (quotearg_free): New decl.
17738         * lib/quotearg.c (quotearg_free): New function.
17739         (slot0, nslots, slotvec0, slotvec):
17740         Now file-scope so that quotearg_free can get at them.
17741
17742 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17743
17744         Sync from Automake.
17745         * build-aux/gnupload: Add missing 'gnu' to example URL.
17746         Report by Karl Berry.
17747
17748 2006-11-08  Bruno Haible  <bruno@clisp.org>
17749
17750         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
17751         Suggested by Paul Eggert.
17752
17753 2006-11-08  Jim Meyering  <jim@meyering.net>
17754
17755         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
17756         It's already included if !_LIBC.
17757         (fts_safe_changedir): Add a comment.
17758
17759 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
17760
17761         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
17762         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
17763         Matthew Woehlke.
17764
17765         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
17766         definitions up, to avoid colliding with change below.
17767         (static_inline) [HAVE_INLINE]: New macro.
17768         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
17769         Provide extern decls when !HAVE_INLINE.  Do not define unless
17770         static_inline is defined, either by us or by xmalloc.c.  Use
17771         static_inline rather than static inline.
17772         (XCALLOC): Optimize sizeof(T) = 1 case.
17773         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
17774
17775 2006-11-07  Bruno Haible  <bruno@clisp.org>
17776
17777         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
17778         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
17779         AC_C_INLINE.
17780         * modules/xalloc (Files): Add m4/inline.m4.
17781
17782 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17783
17784         * README: Fix typo.
17785         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
17786         (Miscellanous Notes): ...from this.
17787
17788 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
17789
17790         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
17791         Mention that offsetof should be used instead of sizeof.
17792         From Bruno Haible.
17793
17794 2006-11-07  Bruno Haible  <bruno@clisp.org>
17795
17796         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
17797
17798 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
17799
17800         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
17801         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
17802         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
17803         (gl_tree_add_before, gl_tree_add_after):
17804         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
17805         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
17806         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
17807         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
17808         (gl_linked_add_after, gl_linked_add_at): Likewise.
17809         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
17810         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
17811         (gl_tree_add_before, gl_tree_add_after): Likewise.
17812         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
17813         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
17814         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
17815
17816 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17817
17818         * lib/gl_oset.h: Use C comment style, not C++ comment style.
17819
17820 2006-11-06  Bruno Haible  <bruno@clisp.org>
17821
17822         * m4/inline.m4: New file.
17823         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
17824         * modules/list (Files): Add m4/inline.m4.
17825         * modules/oset (Files): Likewise.
17826
17827 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
17828
17829         * lib/idcache.c: Include <stddef.h>, for offsetof.
17830         (struct userid.name): Change from char * to a flexible array member.
17831         All uses changed.
17832         * modules/idcache (Depends-on): Add flexmember.
17833
17834         * MODULES.html.sh (Core language properties): New module flexmember.
17835         * modules/flexmember, m4/flexmember.m4: New files.
17836
17837         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
17838         inline functions that are identical with the old xnmalloc_inline,
17839         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
17840         that we can avoid some unnecessary integer multiplications and
17841         divisions in the common case where the element size is known at
17842         compile time.
17843         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
17844         needed.
17845         (xnboundedmalloc): Remove.
17846         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
17847         arguments, for consistency with rest of this header.
17848         (xcharalloc): Rewrite using XNMALLOC.
17849         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
17850         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
17851         versions have been moved to lib/xalloc.h and renamed to be the
17852         non-*_inline versions.
17853         (xmalloc, xrealloc): Implement without reference to the xnmalloc
17854         and xnrealloc functions, since those functions are now inline and
17855         now call us.
17856         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
17857         renaming described above.
17858         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
17859         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
17860         captures the dependency in AC_C_INLINE.
17861
17862         New module canonicalize-lgpl, proposed by Charles Wilson in
17863         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
17864         with a few small changes afterwards.
17865         * MODULES.html.sh (File system functions): New module
17866         canonicalize-lgpl.
17867         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
17868         and canonicalize_file_name.
17869         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
17870         * modules/canonicalize-lgpl: New files.
17871
17872 2006-11-05  Bruno Haible  <bruno@clisp.org>
17873
17874         * gnulib-tool (func_import, func_create_testdir): Create directories
17875         also for files in subdirectories of lib/.
17876
17877 2006-11-05  Bruno Haible  <bruno@clisp.org>
17878
17879         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
17880         ANSI C compliant.
17881
17882 2006-11-03  Bruno Haible  <bruno@clisp.org>
17883
17884         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
17885         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
17886         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
17887         (xnboundedmalloc): New inline function.
17888         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
17889         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
17890         xmalloc.
17891         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
17892         xmalloc.
17893         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
17894         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
17895         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
17896         xmalloc.
17897         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
17898         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
17899         xmalloc.
17900         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
17901         gl_tree_add_after): Use XMALLOC instead of xmalloc.
17902         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
17903         xmalloc.
17904         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
17905         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
17906         gl_tree_add_after): Use XMALLOC instead of xmalloc.
17907         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
17908         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
17909         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
17910         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
17911
17912 2006-11-03  Bruno Haible  <bruno@clisp.org>
17913
17914         * lib/c-ctype.h [C++]: Define functions without name mangling.
17915         * lib/fwriteerror.h [C++]: Likewise.
17916         * lib/gcd.h [C++]: Likewise.
17917         * lib/linebreak.h [C++]: Likewise.
17918
17919 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
17920
17921         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
17922         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
17923         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
17924         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
17925         Check for functions and headers just once.
17926         Check for declaration of canonicalize_file_name.
17927         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
17928
17929 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
17930
17931         * gnulib-tool (func_import): Fix typo in actioncmd.
17932
17933 2006-11-02  Bruno Haible  <bruno@clisp.org>
17934
17935         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
17936         newline sequence in the Makefile.am snippet as a space, like "make"
17937         does.
17938         Reported by Roger Persson <perrog@gmail.com>.
17939
17940 2006-11-01  Bruno Haible  <bruno@clisp.org>
17941
17942         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
17943         already declared in <string.h>.
17944         * lib/strcase.h (strncasecmp): Don't declare it if yes.
17945
17946 2006-11-01  Bruno Haible  <bruno@clisp.org>
17947
17948         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
17949         * lib/strcase.h: Include <string.h>.
17950         (strcasecmp): Define to rpl_strcasecmp here.
17951
17952 2006-11-01  Bruno Haible  <bruno@clisp.org>
17953
17954         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
17955
17956 2006-11-01  Eric Blake  <ebb9@byu.net>
17957
17958         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
17959
17960         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
17961
17962 2006-10-29  Bruno Haible  <bruno@clisp.org>
17963
17964         Make it compile in C++ mode.
17965         * lib/full-write.c (full_rw): Add a cast.
17966
17967 2006-11-01  Bruno Haible  <bruno@clisp.org>
17968
17969         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
17970         be POSIX compliant.
17971         Reported by Roger Persson <perrog@gmail.com>.
17972
17973 2006-11-01  Eric Blake  <ebb9@byu.net>
17974
17975         * lib/getopt_.h: Fix comments.
17976
17977 2006-10-31  Eric Blake  <ebb9@byu.net>
17978
17979         * modules/tmpdir (Depends-on): Add sys_stat.
17980         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
17981         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
17982         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
17983         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
17984         tempname.
17985
17986 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
17987
17988         Avoid some C++ diagnostics reported by Bruno Haible.
17989         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
17990         xmalloc.
17991         (quotearg_alloc): Use xcharalloc rather than xmalloc.
17992         (struct slotvec): Move to top level.
17993         (quotearg_n_options): Rewrite to avoid xmalloc.
17994         * lib/xalloc.h (xcharalloc): New function.
17995         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
17996         [defined __cplusplus]: Add function template that provides result
17997         type propagation.  This part of the change is from Bruno Haible.
17998
17999 2006-10-29  Bruno Haible  <bruno@clisp.org>
18000
18001         Make it compile in C++ mode.
18002         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
18003         * lib/strnlen1.c (strnlen1): Cast memchr result.
18004         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
18005         * lib/clean-temp.c (string_equals, string_hash): Add casts.
18006         (create_temp_dir): Rename local variable 'template'.
18007         (compile_csharp_using_sscli): Add cast.
18008         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
18009         * lib/findprog.c (find_in_path): Likewise.
18010         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
18011         * lib/wait-process.c (register_slave_subprocess): Likewise.
18012
18013 2006-10-22  Bruno Haible  <bruno@clisp.org>
18014
18015         * modules/tsearch: New file.
18016         * lib/tsearch.h: New file.
18017         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
18018         * m4/tsearch.m4: New file.
18019         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
18020
18021 2006-10-29  Eric Blake  <ebb9@byu.net>
18022
18023         * lib/arcfour.c: Assume config.h.
18024         * lib/arctwo.c: Likewise.
18025         * lib/base64.c: Likewise.
18026         * lib/check-version.c: Likewise.
18027         * lib/crc.c: Likewise.
18028         * lib/des.c: Likewise.
18029         * lib/gc-gnulib.c: Likewise.
18030         * lib/gc-libgcrypt.c: Likewise.
18031         * lib/gc-pbkdf2-sha1.c: Likewise.
18032         * lib/getaddrinfo.c: Likewise.
18033         * lib/getdelim.c: Likewise.
18034         * lib/getline.c: Likewise.
18035         * lib/hmac-md5.c: Likewise.
18036         * lib/hmac-sha1.c: Likewise.
18037         * lib/iconvme.c: Likewise.
18038         * lib/md2.c: Likewise.
18039         * lib/md4.c: Likewise.
18040         * lib/memxor.c: Likewise.
18041         * lib/read-file.c: Likewise.
18042         * lib/readline.c: Likewise.
18043         * lib/rijndael-alg-fst.c: Likewise.
18044         * lib/rijndael-api-fst.c: Likewise.
18045         * lib/xgetdomainname.c: Likewise.
18046
18047 2006-10-28  Eric Blake  <ebb9@byu.net>
18048
18049         * lib/xstrndup.c: Assume config.h.
18050
18051 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
18052
18053         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
18054         stat-macros.h is now for our own macros, whereas stat_h is for
18055         macros in the <sys/stat.h> name space.
18056         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
18057         (STAT_MACROS_H): Remove.
18058         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
18059         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
18060         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
18061         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
18062         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
18063         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
18064         Move these macros to ...
18065         * lib/stat_.h: here.  Don't include stat-macros.h.
18066         * lib/canonicalize.c: Don't include stat-macros.h.
18067         * lib/chown.c: Likewise.
18068         * lib/euidaccess.c: Likewise.
18069         * lib/file-type.c: Likewise.
18070         * lib/filemode.c: Likewise.
18071         * lib/glob.c: Likewise.
18072         * lib/isapipe.c: Likewise.
18073         * lib/lchown.c: Likewise.
18074         * lib/lstat.c: Likewise.
18075         * lib/mkdir-p.c: Likewise.
18076         * lib/rmdir.c: Likewise.
18077         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
18078         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
18079         unless mkdir isn't declared, to speed up 'configure'.
18080         Always create sys/stat.h, since it's unlikely any real sys/stat.h
18081         would define all the S_* symbols.
18082         * modules/canonicalize (Depends-on):
18083         Depend on sys_stat, not stat-macros.
18084         * modules/chown: Likewise.
18085         * modules/euidaccess: Likewise.
18086         * modules/filemode: Likewise.
18087         * modules/file-type: Likewise.
18088         * modules/glob: Likewise.
18089         * modules/isapipe: Likewise.
18090         * modules/lchown: Likewise.
18091         * modules/lstat: Likewise.
18092         * modules/mkancesdirs: Likewise.
18093         * modules/rmdir: Likewise.
18094         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
18095         * modules/modechange: Likewise.
18096         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
18097         (configure.ac): Remove gl_STAT_MACROS.
18098         * modules/sys_stat (Depends-on): Remove stat-macros.
18099
18100 2006-10-27  Bruno Haible  <bruno@clisp.org>
18101
18102         * m4/signed.m4: Remove file.
18103         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
18104         invocation.
18105         * modules/vasnprintf (Files): Remove m4/signed.m4.
18106
18107 2006-10-27  Bruno Haible  <bruno@clisp.org>
18108
18109         Update to GNU gettext 0.16.
18110         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
18111         m4/inttypes-h.m4, m4/signed.m4.
18112         * m4/gettext.m4: Update to GNU gettext 0.16.
18113         * m4/intl.m4: New file, from GNU gettext.
18114         * m4/intldir.m4: New file, from GNU gettext.
18115         * config/srclist.txt: Update
18116
18117 2006-10-27  Eric Blake  <ebb9@byu.net>
18118
18119         * MODULES.html.sh: Document tempname.
18120         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
18121         dependencies.
18122         (Files): Move lib/tempname.c...
18123         * modules/tempname: ...to this new module.
18124         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
18125         (gl_PREREQ_TEMPNAME): Move...
18126         * m4/tempname.m4: ...to this new file.
18127         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
18128         * modules/sys_stat (Depends-on): Add stat-macros.
18129         * lib/stat_.h (includes): Pick up stat macros.
18130         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
18131         if stat macros are broken.
18132         * lib/tempname.c (includes): No need to include "stat-macros.h".
18133         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
18134         (direxists, __path_search) [!_LIBC]: Don't compile these in
18135         gnulib; the tmpdir module covers that.
18136         * lib/tempname.h: New file.
18137
18138 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
18139
18140         * COPYING: Explain how gnulib-tool converts licence headers.
18141         Almost all wording by Eric Blake.
18142
18143 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
18144
18145         * lib/mbchar.h (is_basic_table): Make read-only.
18146         * lib/mbchar.c (is_basic_table): Likewise.
18147         Reported by John Darrington.
18148
18149 2006-10-25  Bruno Haible  <bruno@clisp.org>
18150
18151         * lib/progname.h (set_program_name): Undefine before defining.
18152
18153 2006-10-25  Bruno Haible  <bruno@clisp.org>
18154
18155         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
18156         false for non-gcc C++ compilers.
18157         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
18158
18159 2006-10-24  Bruno Haible  <bruno@clisp.org>
18160
18161         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
18162         iconv implementations like Irix iconv.
18163
18164 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
18165
18166         * modules/vararrays: New file.
18167         * m4/vararrays.m4: New file, taken from diffutils.
18168         * MODULES.html.sh: New module vararrays.
18169
18170 2006-10-24  Karl Berry  <karl@gnu.org>
18171
18172         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
18173         Don't call GNU Unix.
18174
18175 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18176
18177         * users.txt: Add Libtool.
18178
18179         Sync from Libtool:
18180
18181         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
18182
18183         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
18184         to gnulib's policy of including config.h unconditionally.
18185
18186 2006-10-24  Bruno Haible  <bruno@clisp.org>
18187
18188         * modules/wcwidth (Files): Add m4/wint_t.m4.
18189         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
18190         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
18191
18192 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
18193
18194         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
18195         to pacify GCC with some -W flags enabled.  Problem reported by
18196         Bruno Haible.
18197
18198 2006-10-24  Jim Meyering  <jim@meyering.net>
18199
18200         * MODULES.html.sh: Remove uinttostr.  It's not a module.
18201         Reported by Karl Berry.
18202
18203 2006-10-23  Bruno Haible  <bruno@clisp.org>
18204
18205         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
18206
18207 2006-10-24  Bruno Haible  <bruno@clisp.org>
18208
18209         * lib/gl_list.h: Use C comment style, not C++ comment style.
18210
18211 2006-10-23  Eric Blake  <ebb9@byu.net>
18212
18213         * lib/getaddrinfo.c (includes): Add missing include.
18214
18215 2006-10-23  Bruno Haible  <bruno@clisp.org>
18216             Paul Eggert  <eggert@cs.ucla.edu>
18217
18218         Ability to rename obstack_free.
18219         * lib/obstack.h (__obstack_free): New macro. Declare instead of
18220         obstack_free.
18221         (obstack_free): Invoke the __obstack_free macro.
18222         * lib/obstack.c (obstack_free): Use __obstack_free macro.
18223
18224 2006-10-23  Bruno Haible  <bruno@clisp.org>
18225             Paul Eggert  <eggert@cs.ucla.edu>
18226
18227         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
18228         __argc, __argv from the declaration. (They are defined as macros on
18229         mingw.)
18230
18231 2006-10-22  Bruno Haible  <bruno@clisp.org>
18232
18233         * doc/gnulib-intro.texi: New file.
18234         * doc/gnulib.texi: Include it.
18235
18236 2006-10-21  Bruno Haible  <bruno@clisp.org>
18237
18238         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
18239         "Introduction", "Miscellanous Notes", "Particular Modules".
18240
18241 2006-10-21  Bruno Haible  <bruno@clisp.org>
18242
18243         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
18244         Change mostlyclean-local rule to avoid sh syntax error from bash
18245         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
18246
18247 2006-10-23  Jim Meyering  <jim@meyering.net>
18248
18249         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
18250         in place of snprintf.
18251
18252         * modules/inttostr (Files): Add lib/uinttostr.c.
18253         * lib/uinttostr.c (inttostr): New file/function.
18254         * lib/inttostr.h (uinttostr): Declare.
18255         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
18256         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
18257         Add uinttostr.
18258         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
18259
18260 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
18261
18262         * lib/canonicalize.c (ELOOP): Define if not already defined.
18263         Problem reported by Bruno Haible in
18264         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
18265
18266 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
18267
18268         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
18269         Problem reported by Perry Smith and Ville Laurikari.
18270
18271         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
18272         uses.
18273
18274 2006-10-19  Bruno Haible  <bruno@clisp.org>
18275
18276         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
18277         for mingw.
18278
18279 2006-10-19  Bruno Haible  <bruno@clisp.org>
18280
18281         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
18282         Needed for mingw.
18283
18284 2006-10-19  Bruno Haible  <bruno@clisp.org>
18285
18286         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
18287
18288 2006-10-19  Bruno Haible  <bruno@clisp.org>
18289
18290         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
18291         it.
18292
18293 2006-10-19  Bruno Haible  <bruno@clisp.org>
18294
18295         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
18296         invocation.
18297
18298 2006-10-19  Bruno Haible  <bruno@clisp.org>
18299
18300         * gnulib-tool (func_create_testdir): Don't include ftruncate and
18301         mountlist by default.
18302
18303 2006-10-16  Bruno Haible  <bruno@clisp.org>
18304
18305         * lib/c-strstr.c: Include c-strstr.h.
18306
18307 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
18308
18309         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
18310         in a slash.
18311
18312 2006-10-18  Bruno Haible  <bruno@clisp.org>
18313
18314         * lib/lock.h [C++]: Wrap definitions in extern "C".
18315
18316 2006-10-18  Bruno Haible  <bruno@clisp.org>
18317
18318         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
18319         gl_LIBOBJS list.
18320
18321 2006-10-18  Bruno Haible  <bruno@clisp.org>
18322
18323         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
18324
18325 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
18326
18327         * lib/xstrtol.h: Include gettext.h.
18328         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
18329         Problem reported by Eric Blake.
18330         * modules/xstrtol (Depends-on): Add gettext-h.
18331
18332 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
18333
18334         * lib/strftime.c (advance): New macro.
18335         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
18336         incomplete type, so you can't add 0 to it.  Problem and patch
18337         reported by Eelco Dolstra for dietlibc.
18338
18339 2006-10-18  Jim Meyering  <jim@meyering.net>
18340
18341         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
18342         type for a local, and rename it: s/up/user_proc/.
18343
18344 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
18345
18346         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
18347         READ_UTMP_USER_PROCESS.
18348         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
18349
18350 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
18351
18352         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
18353         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
18354
18355 2006-10-17  Eric Blake  <ebb9@byu.net>
18356
18357         * lib/sigprocmask.c (sigprocmask): Fix typo.
18358
18359         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
18360
18361         * modules/clean-temp (Makefile.am): Don't add to make output...
18362         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
18363         config.h.
18364
18365 2006-10-17  Bruno Haible  <bruno@clisp.org>
18366
18367         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
18368         differently if DEFAULT_TEXT_DOMAIN is set.
18369
18370 2006-10-16  Bruno Haible  <bruno@clisp.org>
18371
18372         * lib/clean-temp.c: Include fwriteerror.h.
18373
18374 2006-10-16  Bruno Haible  <bruno@clisp.org>
18375
18376         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
18377
18378 2006-10-16  Bruno Haible  <bruno@clisp.org>
18379
18380         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
18381         * lib/sigprocmask.h: Include <sys/types.h>.
18382         (sigset_t): Use the system's definition if present.
18383
18384 2006-10-17  Eric Blake  <ebb9@byu.net>
18385
18386         * lib/xvasprintf.c (includes): Assume config.h.
18387         * lib/xasprintf.c (includes): Likewise.
18388
18389 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
18390
18391         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
18392         at least as wide as intmax_t.
18393
18394 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
18395
18396         (Imported from Automake.)
18397         * build-aux/gnupload: Update to version 1.1 of directive file.
18398
18399 2006-10-16  Eric Blake  <ebb9@byu.net>
18400
18401         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
18402         match Automake 1.10a.
18403
18404 2006-10-14  Bruno Haible  <bruno@clisp.org>
18405
18406         * modules/sigprocmask: New file.
18407         * lib/sigprocmask.h: New file.
18408         * lib/sigprocmask.c: New file.
18409         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
18410         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
18411         request sigprocmask.o.
18412         (gl_PREREQ_SIGPROCMASK): New macro.
18413         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
18414         (Depends-on): Add sigprocmask.
18415         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
18416         gt_SIGNALBLOCKING. Test for 'raise' only once.
18417         * lib/fatal-signal.c: Include sigprocmask.h.
18418         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
18419         unblock_fatal_signals): Define always.
18420         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18421         sigprocmask.
18422
18423 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
18424
18425         Sync from Automake.
18426         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
18427         which incorrectly sets the mode of an existing destination
18428         directory.  In some cases the unpatched install-sh could do the
18429         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
18430         system.  We hope this is rare in practice, but it's clearly worth
18431         fixing.  Problem reported by Alex Unleashed in
18432         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
18433         Also, don't bother to check for -m bugs unless we're using -m;
18434         suggested by Stepan Kasal.
18435
18436 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18437
18438         Sync from Automake.
18439         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
18440         `-c' flag, so they appear at the same position as in %FASTDEP%
18441         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
18442         which ignores unknown options only after the first non-option.
18443         Bug report against M4 by Nelson H. F. Beebe.
18444
18445 2006-10-13  Jim Meyering  <jim@meyering.net>
18446
18447         Fix a bug in yesterday's change.
18448         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
18449         p->fts_statp->st_dev would be used uninitialized.
18450         Ensures that we always call fts_stat on the very first entry.
18451         Miklos Szeredi reported that find -xdev stopped working.
18452
18453 2006-10-12  Bruno Haible  <bruno@clisp.org>
18454
18455         * gnulib-tool (func_get_automake_snippet): Append an automatically
18456         computed EXTRA_DIST augmentation.
18457         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
18458         * modules/alloca-opt (Makefile.am): Likewise.
18459         * modules/allocsa (Makefile.am): Likewise.
18460         * modules/arcfour (Makefile.am): Likewise.
18461         * modules/arctwo (Makefile.am): Likewise.
18462         * modules/argmatch (Makefile.am): Likewise.
18463         * modules/argz (Makefile.am): Likewise.
18464         * modules/atexit (Makefile.am): Likewise.
18465         * modules/backupfile (Makefile.am): Likewise.
18466         * modules/byteswap (Makefile.am): Likewise.
18467         * modules/c-strtod (Makefile.am): Likewise.
18468         * modules/c-strtold (Makefile.am): Likewise.
18469         * modules/calloc (Makefile.am): Likewise.
18470         * modules/canon-host (Makefile.am): Likewise.
18471         * modules/canonicalize (Makefile.am): Likewise.
18472         * modules/chdir-long (Makefile.am): Likewise.
18473         * modules/chdir-safer (Makefile.am): Likewise.
18474         * modules/check-version (Makefile.am): Likewise.
18475         * modules/chown (Makefile.am): Likewise.
18476         * modules/cloexec (Makefile.am): Likewise.
18477         * modules/close-stream (Makefile.am): Likewise.
18478         * modules/closeout (Makefile.am): Likewise.
18479         * modules/crc (Makefile.am): Likewise.
18480         * modules/csharpexec (Makefile.am): Likewise.
18481         * modules/cycle-check (Makefile.am): Likewise.
18482         * modules/des (Makefile.am): Likewise.
18483         * modules/dev-ino (Makefile.am): Likewise.
18484         * modules/dirfd (Makefile.am): Likewise.
18485         * modules/dirname (Makefile.am): Likewise.
18486         * modules/dup2 (Makefile.am): Likewise.
18487         * modules/eealloc (Makefile.am): Likewise.
18488         * modules/error (Makefile.am): Likewise.
18489         * modules/euidaccess (Makefile.am): Likewise.
18490         * modules/exclude (Makefile.am): Likewise.
18491         * modules/exitfail (Makefile.am): Likewise.
18492         * modules/fcntl-safer (Makefile.am): Likewise.
18493         * modules/fcntl (Makefile.am): Likewise.
18494         * modules/file-type (Makefile.am): Likewise.
18495         * modules/fileblocks (Makefile.am): Likewise.
18496         * modules/filemode (Makefile.am): Likewise.
18497         * modules/filenamecat (Makefile.am): Likewise.
18498         * modules/fnmatch (Makefile.am): Likewise.
18499         * modules/fopen-safer (Makefile.am): Likewise.
18500         * modules/fpending (Makefile.am): Likewise.
18501         * modules/fprintftime (Makefile.am): Likewise.
18502         * modules/free (Makefile.am): Likewise.
18503         * modules/fsusage (Makefile.am): Likewise.
18504         * modules/ftruncate (Makefile.am): Likewise.
18505         * modules/fts (Makefile.am): Likewise.
18506         * modules/gc-arcfour (Makefile.am): Likewise.
18507         * modules/gc-des (Makefile.am): Likewise.
18508         * modules/gc-hmac-md5 (Makefile.am): Likewise.
18509         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
18510         * modules/gc-md4 (Makefile.am): Likewise.
18511         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
18512         * modules/gc-sha1 (Makefile.am): Likewise.
18513         * modules/gc (Makefile.am): Likewise.
18514         * modules/getaddrinfo (Makefile.am): Likewise.
18515         * modules/getcwd (Makefile.am): Likewise.
18516         * modules/getdelim (Makefile.am): Likewise.
18517         * modules/getdomainname (Makefile.am): Likewise.
18518         * modules/getgroups (Makefile.am): Likewise.
18519         * modules/gethostname (Makefile.am): Likewise.
18520         * modules/gethrxtime (Makefile.am): Likewise.
18521         * modules/getline (Makefile.am): Likewise.
18522         * modules/getloadavg (Makefile.am): Likewise.
18523         * modules/getlogin_r (Makefile.am): Likewise.
18524         * modules/getndelim2 (Makefile.am): Likewise.
18525         * modules/getopt (Makefile.am): Likewise.
18526         * modules/getpagesize (Makefile.am): Likewise.
18527         * modules/getpass-gnu (Makefile.am): Likewise.
18528         * modules/getpass (Makefile.am): Likewise.
18529         * modules/getsubopt (Makefile.am): Likewise.
18530         * modules/gettime (Makefile.am): Likewise.
18531         * modules/gettimeofday (Makefile.am): Likewise.
18532         * modules/getugroups (Makefile.am): Likewise.
18533         * modules/getusershell (Makefile.am): Likewise.
18534         * modules/glob (Makefile.am): Likewise.
18535         * modules/group-member (Makefile.am): Likewise.
18536         * modules/hard-locale (Makefile.am): Likewise.
18537         * modules/hash (Makefile.am): Likewise.
18538         * modules/hmac-md5 (Makefile.am): Likewise.
18539         * modules/hmac-sha1 (Makefile.am): Likewise.
18540         * modules/human (Makefile.am): Likewise.
18541         * modules/idcache (Makefile.am): Likewise.
18542         * modules/imaxabs (Makefile.am): Likewise.
18543         * modules/imaxdiv (Makefile.am): Likewise.
18544         * modules/inet_ntop (Makefile.am): Likewise.
18545         * modules/inet_pton (Makefile.am): Likewise.
18546         * modules/intprops (Makefile.am): Likewise.
18547         * modules/inttostr (Makefile.am): Likewise.
18548         * modules/inttypes (Makefile.am): Likewise.
18549         * modules/isapipe (Makefile.am): Likewise.
18550         * modules/javaversion (Makefile.am): Likewise.
18551         * modules/lchmod (Makefile.am): Likewise.
18552         * modules/lchown (Makefile.am): Likewise.
18553         * modules/localcharset (Makefile.am): Likewise.
18554         * modules/long-options (Makefile.am): Likewise.
18555         * modules/lstat (Makefile.am): Likewise.
18556         * modules/malloc (Makefile.am): Likewise.
18557         * modules/mathl (Makefile.am): Likewise.
18558         * modules/mbchar (Makefile.am): Likewise.
18559         * modules/md2 (Makefile.am): Likewise.
18560         * modules/md4 (Makefile.am): Likewise.
18561         * modules/md5 (Makefile.am): Likewise.
18562         * modules/memcasecmp (Makefile.am): Likewise.
18563         * modules/memchr (Makefile.am): Likewise.
18564         * modules/memcmp (Makefile.am): Likewise.
18565         * modules/memcoll (Makefile.am): Likewise.
18566         * modules/memcpy (Makefile.am): Likewise.
18567         * modules/memmem (Makefile.am): Likewise.
18568         * modules/memmove (Makefile.am): Likewise.
18569         * modules/mempcpy (Makefile.am): Likewise.
18570         * modules/memrchr (Makefile.am): Likewise.
18571         * modules/memset (Makefile.am): Likewise.
18572         * modules/memxor (Makefile.am): Likewise.
18573         * modules/mkancesdirs (Makefile.am): Likewise.
18574         * modules/mkdir-p (Makefile.am): Likewise.
18575         * modules/mkdir (Makefile.am): Likewise.
18576         * modules/mkdtemp (Makefile.am): Likewise.
18577         * modules/mkstemp (Makefile.am): Likewise.
18578         * modules/mktime (Makefile.am): Likewise.
18579         * modules/modechange (Makefile.am): Likewise.
18580         * modules/mountlist (Makefile.am): Likewise.
18581         * modules/nanosleep (Makefile.am): Likewise.
18582         * modules/obstack (Makefile.am): Likewise.
18583         * modules/openat (Makefile.am): Likewise.
18584         * modules/pagealign_alloc (Makefile.am): Likewise.
18585         * modules/pathmax (Makefile.am): Likewise.
18586         * modules/physmem (Makefile.am): Likewise.
18587         * modules/poll (Makefile.am): Likewise.
18588         * modules/posixtm (Makefile.am): Likewise.
18589         * modules/posixver (Makefile.am): Likewise.
18590         * modules/putenv (Makefile.am): Likewise.
18591         * modules/quote (Makefile.am): Likewise.
18592         * modules/quotearg (Makefile.am): Likewise.
18593         * modules/raise (Makefile.am): Likewise.
18594         * modules/read-file (Makefile.am): Likewise.
18595         * modules/readline (Makefile.am): Likewise.
18596         * modules/readlink (Makefile.am): Likewise.
18597         * modules/readtokens (Makefile.am): Likewise.
18598         * modules/readutmp (Makefile.am): Likewise.
18599         * modules/realloc (Makefile.am): Likewise.
18600         * modules/regex (Makefile.am): Likewise.
18601         * modules/rename-dest-slash (Makefile.am): Likewise.
18602         * modules/rename (Makefile.am): Likewise.
18603         * modules/rijndael (Makefile.am): Likewise.
18604         * modules/rmdir (Makefile.am): Likewise.
18605         * modules/rpmatch (Makefile.am): Likewise.
18606         * modules/safe-read (Makefile.am): Likewise.
18607         * modules/safe-write (Makefile.am): Likewise.
18608         * modules/same-inode (Makefile.am): Likewise.
18609         * modules/same (Makefile.am): Likewise.
18610         * modules/save-cwd (Makefile.am): Likewise.
18611         * modules/savedir (Makefile.am): Likewise.
18612         * modules/setenv (Makefile.am): Likewise.
18613         * modules/settime (Makefile.am): Likewise.
18614         * modules/sha1 (Makefile.am): Likewise.
18615         * modules/sig2str (Makefile.am): Likewise.
18616         * modules/snprintf (Makefile.am): Likewise.
18617         * modules/stat-macros (Makefile.am): Likewise.
18618         * modules/stat-time (Makefile.am): Likewise.
18619         * modules/stdbool (Makefile.am): Likewise.
18620         * modules/stdint (Makefile.am): Likewise.
18621         * modules/stdlib-safer (Makefile.am): Likewise.
18622         * modules/stpcpy (Makefile.am): Likewise.
18623         * modules/stpncpy (Makefile.am): Likewise.
18624         * modules/strcase (Makefile.am): Likewise.
18625         * modules/strcasestr (Makefile.am): Likewise.
18626         * modules/strchrnul (Makefile.am): Likewise.
18627         * modules/strcspn (Makefile.am): Likewise.
18628         * modules/strdup (Makefile.am): Likewise.
18629         * modules/strerror (Makefile.am): Likewise.
18630         * modules/strftime (Makefile.am): Likewise.
18631         * modules/strndup (Makefile.am): Likewise.
18632         * modules/strnlen (Makefile.am): Likewise.
18633         * modules/strpbrk (Makefile.am): Likewise.
18634         * modules/strsep (Makefile.am): Likewise.
18635         * modules/strstr (Makefile.am): Likewise.
18636         * modules/strtod (Makefile.am): Likewise.
18637         * modules/strtoimax (Makefile.am): Likewise.
18638         * modules/strtok_r (Makefile.am): Likewise.
18639         * modules/strtol (Makefile.am): Likewise.
18640         * modules/strtoll (Makefile.am): Likewise.
18641         * modules/strtoul (Makefile.am): Likewise.
18642         * modules/strtoull (Makefile.am): Likewise.
18643         * modules/strtoumax (Makefile.am): Likewise.
18644         * modules/strverscmp (Makefile.am): Likewise.
18645         * modules/sys_socket (Makefile.am): Likewise.
18646         * modules/sys_stat (Makefile.am): Likewise.
18647         * modules/sysexits (Makefile.am): Likewise.
18648         * modules/time_r (Makefile.am): Likewise.
18649         * modules/timegm (Makefile.am): Likewise.
18650         * modules/timespec (Makefile.am): Likewise.
18651         * modules/tmpfile-safer (Makefile.am): Likewise.
18652         * modules/trim (Makefile.am): Likewise.
18653         * modules/unistd-safer (Makefile.am): Likewise.
18654         * modules/unlinkdir (Makefile.am): Likewise.
18655         * modules/unlocked-io (Makefile.am): Likewise.
18656         * modules/userspec (Makefile.am): Likewise.
18657         * modules/utime (Makefile.am): Likewise.
18658         * modules/utimecmp (Makefile.am): Likewise.
18659         * modules/utimens (Makefile.am): Likewise.
18660         * modules/vasnprintf (Makefile.am): Likewise.
18661         * modules/vasprintf (Makefile.am): Likewise.
18662         * modules/vsnprintf (Makefile.am): Likewise.
18663         * modules/xalloc (Makefile.am): Likewise.
18664         * modules/xgetcwd (Makefile.am): Likewise.
18665         * modules/xnanosleep (Makefile.am): Likewise.
18666         * modules/xreadlink (Makefile.am): Likewise.
18667         * modules/xstrtod (Makefile.am): Likewise.
18668         * modules/xstrtol (Makefile.am): Likewise.
18669         * modules/xstrtold (Makefile.am): Likewise.
18670         * modules/yesno (Makefile.am): Likewise.
18671         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
18672
18673 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
18674
18675         * modules/error (Makefile.am): Distribute files through
18676         EXTRA_DIST, not lib_SOURCES.
18677
18678 2006-10-12  Eric Blake  <ebb9@byu.net>
18679
18680         * modules/error (Makefile.am): Distribute files in /lib.
18681         * modules/obstack (Makefile.am): Likewise.
18682
18683 2006-10-12  Bruno Haible  <bruno@clisp.org>
18684
18685         * modules/acl (Makefile.am): Distribute all files in lib/ through
18686         EXTRA_DIST.
18687         * modules/arcfour (Makefile.am): Likewise.
18688         * modules/arctwo (Makefile.am): Likewise.
18689         * modules/argmatch (Makefile.am): Likewise.
18690         * modules/argz (Makefile.am): Likewise.
18691         * modules/atexit (Makefile.am): Likewise.
18692         * modules/backupfile (Makefile.am): Likewise.
18693         * modules/c-strtod (Makefile.am): Likewise.
18694         * modules/c-strtold (Makefile.am): Likewise.
18695         * modules/calloc (Makefile.am): Likewise.
18696         * modules/canon-host (Makefile.am): Likewise.
18697         * modules/canonicalize (Makefile.am): Likewise.
18698         * modules/chdir-long (Makefile.am): Likewise.
18699         * modules/chdir-safer (Makefile.am): Likewise.
18700         * modules/check-version (Makefile.am): Likewise.
18701         * modules/chown (Makefile.am): Likewise.
18702         * modules/cloexec (Makefile.am): Likewise.
18703         * modules/close-stream (Makefile.am): Likewise.
18704         * modules/closeout (Makefile.am): Likewise.
18705         * modules/crc (Makefile.am): Likewise.
18706         * modules/cycle-check (Makefile.am): Likewise.
18707         * modules/des (Makefile.am): Likewise.
18708         * modules/dirfd (Makefile.am): Likewise.
18709         * modules/dirname (Makefile.am): Likewise.
18710         * modules/dup2 (Makefile.am): Likewise.
18711         * modules/euidaccess (Makefile.am): Likewise.
18712         * modules/exclude (Makefile.am): Likewise.
18713         * modules/exitfail (Makefile.am): Likewise.
18714         * modules/fcntl-safer (Makefile.am): Likewise.
18715         * modules/file-type (Makefile.am): Likewise.
18716         * modules/fileblocks (Makefile.am): Likewise.
18717         * modules/filemode (Makefile.am): Likewise.
18718         * modules/filenamecat (Makefile.am): Likewise.
18719         * modules/fnmatch (Makefile.am): Likewise.
18720         * modules/fopen-safer (Makefile.am): Likewise.
18721         * modules/fpending (Makefile.am): Likewise.
18722         * modules/fprintftime (Makefile.am): Likewise.
18723         * modules/free (Makefile.am): Likewise.
18724         * modules/fsusage (Makefile.am): Likewise.
18725         * modules/ftruncate (Makefile.am): Likewise.
18726         * modules/fts (Makefile.am): Likewise.
18727         * modules/gc (Makefile.am): Likewise.
18728         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
18729         * modules/getaddrinfo (Makefile.am): Likewise.
18730         * modules/getcwd (Makefile.am): Likewise.
18731         * modules/getdelim (Makefile.am): Likewise.
18732         * modules/getdomainname (Makefile.am): Likewise.
18733         * modules/getgroups (Makefile.am): Likewise.
18734         * modules/gethostname (Makefile.am): Likewise.
18735         * modules/gethrxtime (Makefile.am): Likewise.
18736         * modules/getline (Makefile.am): Likewise.
18737         * modules/getloadavg (Makefile.am): Likewise.
18738         * modules/getlogin_r (Makefile.am): Likewise.
18739         * modules/getopt (Makefile.am): Likewise.
18740         * modules/getpass (Makefile.am): Likewise.
18741         * modules/getpass-gnu (Makefile.am): Likewise.
18742         * modules/getsubopt (Makefile.am): Likewise.
18743         * modules/gettime (Makefile.am): Likewise.
18744         * modules/gettimeofday (Makefile.am): Likewise.
18745         * modules/getugroups (Makefile.am): Likewise.
18746         * modules/getusershell (Makefile.am): Likewise.
18747         * modules/glob (Makefile.am): Likewise.
18748         * modules/group-member (Makefile.am): Likewise.
18749         * modules/hard-locale (Makefile.am): Likewise.
18750         * modules/hash (Makefile.am): Likewise.
18751         * modules/hmac-md5 (Makefile.am): Likewise.
18752         * modules/hmac-sha1 (Makefile.am): Likewise.
18753         * modules/human (Makefile.am): Likewise.
18754         * modules/idcache (Makefile.am): Likewise.
18755         * modules/imaxabs (Makefile.am): Likewise.
18756         * modules/imaxdiv (Makefile.am): Likewise.
18757         * modules/inet_ntop (Makefile.am): Likewise.
18758         * modules/inet_pton (Makefile.am): Likewise.
18759         * modules/inttostr (Makefile.am): Likewise.
18760         * modules/isapipe (Makefile.am): Likewise.
18761         * modules/lchown (Makefile.am): Likewise.
18762         * modules/long-options (Makefile.am): Likewise.
18763         * modules/lstat (Makefile.am): Likewise.
18764         * modules/malloc (Makefile.am): Likewise.
18765         * modules/mathl (Makefile.am): Likewise.
18766         * modules/mbchar (Makefile.am): Likewise.
18767         * modules/md2 (Makefile.am): Likewise.
18768         * modules/md4 (Makefile.am): Likewise.
18769         * modules/md5 (Makefile.am): Likewise.
18770         * modules/memcasecmp (Makefile.am): Likewise.
18771         * modules/memchr (Makefile.am): Likewise.
18772         * modules/memcmp (Makefile.am): Likewise.
18773         * modules/memcoll (Makefile.am): Likewise.
18774         * modules/memcpy (Makefile.am): Likewise.
18775         * modules/memmem (Makefile.am): Likewise.
18776         * modules/memmove (Makefile.am): Likewise.
18777         * modules/mempcpy (Makefile.am): Likewise.
18778         * modules/memrchr (Makefile.am): Likewise.
18779         * modules/memset (Makefile.am): Likewise.
18780         * modules/memxor (Makefile.am): Likewise.
18781         * modules/mkancesdirs (Makefile.am): Likewise.
18782         * modules/mkdir (Makefile.am): Likewise.
18783         * modules/mkdir-p (Makefile.am): Likewise.
18784         * modules/mkdtemp (Makefile.am): Likewise.
18785         * modules/mkstemp (Makefile.am): Likewise.
18786         * modules/mktime (Makefile.am): Likewise.
18787         * modules/modechange (Makefile.am): Likewise.
18788         * modules/mountlist (Makefile.am): Likewise.
18789         * modules/nanosleep (Makefile.am): Likewise.
18790         * modules/openat (Makefile.am): Likewise.
18791         * modules/pagealign_alloc (Makefile.am): Likewise.
18792         * modules/physmem (Makefile.am): Likewise.
18793         * modules/poll (Makefile.am): Likewise.
18794         * modules/posixtm (Makefile.am): Likewise.
18795         * modules/posixver (Makefile.am): Likewise.
18796         * modules/putenv (Makefile.am): Likewise.
18797         * modules/quote (Makefile.am): Likewise.
18798         * modules/quotearg (Makefile.am): Likewise.
18799         * modules/raise (Makefile.am): Likewise.
18800         * modules/read-file (Makefile.am): Likewise.
18801         * modules/readline (Makefile.am): Likewise.
18802         * modules/readlink (Makefile.am): Likewise.
18803         * modules/readtokens (Makefile.am): Likewise.
18804         * modules/readutmp (Makefile.am): Likewise.
18805         * modules/realloc (Makefile.am): Likewise.
18806         * modules/regex (Makefile.am): Likewise.
18807         * modules/rename (Makefile.am): Likewise.
18808         * modules/rename-dest-slash (Makefile.am): Likewise.
18809         * modules/rijndael (Makefile.am): Likewise.
18810         * modules/rmdir (Makefile.am): Likewise.
18811         * modules/rpmatch (Makefile.am): Likewise.
18812         * modules/safe-read (Makefile.am): Likewise.
18813         * modules/safe-write (Makefile.am): Likewise.
18814         * modules/same (Makefile.am): Likewise.
18815         * modules/save-cwd (Makefile.am): Likewise.
18816         * modules/savedir (Makefile.am): Likewise.
18817         * modules/setenv (Makefile.am): Likewise.
18818         * modules/settime (Makefile.am): Likewise.
18819         * modules/sha1 (Makefile.am): Likewise.
18820         * modules/sig2str (Makefile.am): Likewise.
18821         * modules/snprintf (Makefile.am): Likewise.
18822         * modules/stdlib-safer (Makefile.am): Likewise.
18823         * modules/stpcpy (Makefile.am): Likewise.
18824         * modules/stpncpy (Makefile.am): Likewise.
18825         * modules/strcase (Makefile.am): Likewise.
18826         * modules/strcasestr (Makefile.am): Likewise.
18827         * modules/strchrnul (Makefile.am): Likewise.
18828         * modules/strcspn (Makefile.am): Likewise.
18829         * modules/strdup (Makefile.am): Likewise.
18830         * modules/strerror (Makefile.am): Likewise.
18831         * modules/strftime (Makefile.am): Likewise.
18832         * modules/strndup (Makefile.am): Likewise.
18833         * modules/strnlen (Makefile.am): Likewise.
18834         * modules/strpbrk (Makefile.am): Likewise.
18835         * modules/strsep (Makefile.am): Likewise.
18836         * modules/strstr (Makefile.am): Likewise.
18837         * modules/strtod (Makefile.am): Likewise.
18838         * modules/strtoimax (Makefile.am): Likewise.
18839         * modules/strtok_r (Makefile.am): Likewise.
18840         * modules/strtol (Makefile.am): Likewise.
18841         * modules/strtoll (Makefile.am): Likewise.
18842         * modules/strtoul (Makefile.am): Likewise.
18843         * modules/strtoull (Makefile.am): Likewise.
18844         * modules/strtoumax (Makefile.am): Likewise.
18845         * modules/strverscmp (Makefile.am): Likewise.
18846         * modules/time_r (Makefile.am): Likewise.
18847         * modules/timegm (Makefile.am): Likewise.
18848         * modules/tmpfile-safer (Makefile.am): Likewise.
18849         * modules/unistd-safer (Makefile.am): Likewise.
18850         * modules/unlinkdir (Makefile.am): Likewise.
18851         * modules/userspec (Makefile.am): Likewise.
18852         * modules/utime (Makefile.am): Likewise.
18853         * modules/utimecmp (Makefile.am): Likewise.
18854         * modules/utimens (Makefile.am): Likewise.
18855         * modules/vasnprintf (Makefile.am): Likewise.
18856         * modules/vasprintf (Makefile.am): Likewise.
18857         * modules/vsnprintf (Makefile.am): Likewise.
18858         * modules/xalloc (Makefile.am): Likewise.
18859         * modules/xgetcwd (Makefile.am): Likewise.
18860         * modules/xnanosleep (Makefile.am): Likewise.
18861         * modules/xreadlink (Makefile.am): Likewise.
18862         * modules/xstrtod (Makefile.am): Likewise.
18863         * modules/xstrtol (Makefile.am): Likewise.
18864         * modules/xstrtold (Makefile.am): Likewise.
18865         * modules/yesno (Makefile.am): Likewise.
18866
18867 2006-10-12  Jim Meyering  <jim@meyering.net>
18868
18869         * m4/getloadavg.m4: Revert the change below.
18870
18871         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
18872         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
18873         fail with a symlink, which is what coreutils' ./bootstrap now
18874         creates by default.
18875
18876 2006-10-12  Bruno Haible  <bruno@clisp.org>
18877
18878         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
18879         mingw.
18880         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
18881         MSVC and mingw explicitly.
18882
18883 2006-10-11  Simon Josefsson  <jas@extundo.com>
18884             Bruno Haible  <bruno@clisp.org>
18885
18886         Add support for multiple gnulib-tool invocations in the scope of a
18887         single configure.ac file.
18888         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
18889         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
18890         with the same contents as the _LIBADD variable.
18891         (func_emit_initmacro_start, func_emit_initmacro_end,
18892         func_emit_initmacro_done): New functions.
18893         (func_import, func_create_testdir): Invoke them. Allow the identifiers
18894         gl_LIBOBJS and gl_LTLIBOBJS.
18895
18896 2006-10-11  Bruno Haible  <bruno@clisp.org>
18897
18898         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
18899         (func_create_testdir): Don't create po/Makefile.am, don't invoke
18900         autoreconf. Instead, invoke autopoint explicitly but move back the
18901         *.m4 files from gnulib.
18902
18903 2006-10-11  Bruno Haible  <bruno@clisp.org>
18904
18905         * gnulib-tool (func_usage): Make module names after --create-testdir
18906         optional.
18907         (func_create_testdir): If no module was specified, use nearly all
18908         modules.
18909
18910 2006-10-12  Jim Meyering  <jim@meyering.net>
18911
18912         Big performance improvement for fts-based tools that use FTS_NOSTAT.
18913         Avoid spurious inode-mismatch problems on non-POSIX file systems.
18914         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
18915         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
18916         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
18917         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
18918         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
18919         (fts_set_stat_required): New function.
18920         (fts_open): Defer the calls to fts_stat, if possible or requested.
18921         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
18922         into fts_stat itself.
18923         (fts_read): Perform any required (deferred) fts_stat call.
18924         (fts_build): Likewise, for the directory we're about to open and read.
18925         In the readdir loop, carefully decide whether each entry will require
18926         an eventual call to fts_stat, using dirent.d_type info if available.
18927         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
18928         a command line argument into this function.  Update all callers.
18929         Map a return value of FTS_DOT to FTS_D for a command line argument.
18930         * modules/fts (Depends-on): Add d-type.  Alphabetize.
18931         Thanks to Miklos Szeredi for his tenacity and for the initial
18932         bug report about "find" failing on a FUSE-based file system.
18933
18934         * lib/fts.c (fts_open): Use consistent indentation.
18935
18936 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
18937
18938         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
18939         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
18940         reported by Jim Meyering.  All uses of cache variables renamed
18941         to match Autoconf's.
18942         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
18943         the other one.
18944
18945         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
18946         Fix misspelling in diagnostic.
18947
18948 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
18949
18950         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
18951         defined.  Problem reported by Matthew Woehlke.
18952
18953         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
18954         Add support for Tandem NonStop R series.
18955         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
18956         Use new macro.
18957
18958         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
18959         (has_trailing_slash): Omit size arg; all callers changed.
18960         Omit 'inline', since it doesn't help performance and we'd
18961         need to configure it.
18962         Don't count //, ///, etc. as having a trailing slash.
18963         As a side effect, this removes a C99ism reported by Matthew Woehlke.
18964         (rpl_rename_dest_slash): On failure, use rename's errno rather
18965         than (in some cases) an incorrect or junk errno.
18966         Simplify code by removing need to compute length; this does
18967         cause it to make two passes instead of one over the file name,
18968         but it's worth it.
18969
18970         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
18971         change, since Autoconf's version may no longer be appropriate now
18972         that we are using CVS Autoconf's version.  Add support for Tandem.
18973
18974 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
18975             Bruno Haible  <bruno@clisp.org>
18976
18977         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
18978         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
18979         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
18980         gl_AC_TYPE_LONG_LONG.
18981
18982         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
18983         instead of HAVE_LONG_LONG.
18984         * lib/printf-args.c (printf_fetchargs): Likewise.
18985         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
18986         * lib/vasnprintf.c (VASNPRINTF): Likewise.
18987         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
18988         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
18989         gl_AC_TYPE_LONG_LONG.
18990
18991 2006-10-11  Bruno Haible  <bruno@clisp.org>
18992
18993         * m4/longlong.m4: Add comments.
18994         * m4/ulonglong.m4: Likewise.
18995
18996 2006-10-10  Bruno Haible  <bruno@clisp.org>
18997
18998         Make it possible to #define stpcpy, strdup to aliases.
18999         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
19000         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
19001
19002 2006-10-10  Bruno Haible  <bruno@clisp.org>
19003
19004         Make it possible to #define gcd to an alias.
19005         * lib/gcd.c: Include config.h.
19006
19007 2006-10-10  Bruno Haible  <bruno@clisp.org>
19008
19009         Make it possible to #define c_isascii to an alias.
19010         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
19011         defined. Undefine the macros before defining them, to avoid gcc
19012         warnings.
19013         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
19014         define NO_C_CTYPE_MACROS early.
19015
19016 2006-10-10  Bruno Haible  <bruno@clisp.org>
19017
19018         Make it possible to #define set_program_name to an alias.
19019         * lib/progname.c: Don't undefine set_program_name; instead, undefine
19020         ENABLE_RELOCATABLE early.
19021
19022 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
19023
19024         Port to Tandem NSK OSS, which has 64-bit signed int but at most
19025         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
19026         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
19027         More generally, don't assume that 64-bit signed int is available
19028         if unsigned int is, and vice versa.
19029         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
19030         unsigned symbols, not on their signed counterparts.
19031         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
19032         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
19033         (UINT64_C, UINTMAX_C):
19034         Likewise.
19035         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
19036         unsigned counterparts.
19037         (Have_long_long, Unsigned): New macros.
19038         (Int): Renamed from INT.
19039         (strtoimax): Use the new macros.
19040         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
19041         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
19042         * modules/inttypes (inttypes.h): Substitute
19043         HAVE_UNSIGNED_LONG_LONG_INT.
19044         * modules/stdint (stdint.h): Likewise.
19045         (Files): Add m4/ulonglong.m4.
19046
19047 2006-10-10  Bruno Haible  <bruno@clisp.org>
19048
19049         Fix a gcc -Wshadow warning.
19050         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
19051         to 'bucket'.
19052         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
19053         gl_linked_indexof_from_to): Likewise.
19054         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
19055         Likewise.
19056         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
19057         Likewise.
19058         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
19059         Reported by Eric Blake.
19060
19061 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
19062
19063         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
19064         for NetBSD.  Problem reported by Bruno Haible.
19065
19066 2006-10-09  Jim Meyering  <jim@meyering.net>
19067
19068         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
19069         Patch from Bruno Haible.
19070
19071 2006-10-09  Jim Meyering  <jim@meyering.net>
19072
19073         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
19074         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
19075         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
19076
19077 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
19078
19079         Don't include <config.h> twice; this doesn't work in some cases,
19080         e.g., when config.h has "#define intmax_t long long int" and
19081         we include <config.h>, <inttypes.h>, <config.h> in that order.
19082         Problem reported by Matthew Woehlke in:
19083         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
19084         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
19085         * lib/fts-cycle.c: Don't include config.h.
19086         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
19087         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
19088         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
19089         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
19090         inttypes.h.
19091         * lib/xstrtoumax.c: Likewise.
19092         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
19093         __strtol and the like, so that this module is more like its siblings.
19094         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
19095         Remove; no longer needed now that we assume gnulib inttypes.h.
19096
19097 2006-10-08  Bruno Haible  <bruno@clisp.org>
19098
19099         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
19100         option.
19101
19102 2006-10-07  Jim Meyering  <jim@meyering.net>
19103
19104         * modules/inttypes (inttypes.h): Revert what seems to have been
19105         an inadvertent part of today's change: use "|", not "/" in the
19106         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
19107
19108 2006-10-07  Bruno Haible  <bruno@clisp.org>
19109
19110         * modules/sublist: New file.
19111
19112 2006-10-07  Bruno Haible  <bruno@clisp.org>
19113
19114         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
19115         * modules/argz (argz.h): Likewise.
19116         * modules/arpa_inet (arpa/inet.h): Likewise.
19117         * modules/byteswap (byteswap.h): Likewise.
19118         * modules/configmake (configmake.h): Likewise.
19119         * modules/fcntl (fcntl.h): Likewise.
19120         * modules/fnmatch (fnmatch.h): Likewise.
19121         * modules/getopt (getopt.h): Likewise.
19122         * modules/glob (glob.h): Likewise.
19123         * modules/inttypes (inttypes.h): Likewise.
19124         * modules/netinet_in (netinet/in.h): Likewise.
19125         * modules/poll (poll.h): Likewise.
19126         * modules/stdbool (stdbool.h): Likewise.
19127         * modules/stdint (stdint.h): Likewise.
19128         * modules/sys_select (sys/select.h): Likewise.
19129         * modules/sys_socket (sys/socket.h): Likewise.
19130         * modules/sys_stat (sys/stat.h): Likewise.
19131         * modules/sysexits (sysexits.h): Likewise.
19132         * modules/unistd (unistd.h): Likewise.
19133         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19134         Add a "DO NOT EDIT" comment to the generated file.
19135         (func_import): Likewise for gnulib-comp.m4.
19136
19137 2006-10-07  Bruno Haible  <bruno@clisp.org>
19138
19139         * lib/gl_sublist.h: New file.
19140         * lib/gl_sublist.c: New file.
19141
19142 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
19143
19144         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
19145         name (relative to the original working directory) and the file
19146         name component (relative to the temporary working directory).  All
19147         callers changed.
19148         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
19149         * lib/mkdir-p.c (make_dir_parents): Likewise.
19150         * lib/mkdir-p.h (make_dir_parents): Likewise.
19151
19152 2006-10-06  Eric Blake  <ebb9@byu.net>
19153
19154         Define several macros for use by the clean-temp module.
19155         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
19156         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
19157         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
19158
19159         * lib/clean-temp.h (close_stream_temp): New declaration.
19160         * lib/clean-temp.c (includes): Pull in headers according to what
19161         other modules are in use.
19162         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
19163
19164 2006-10-06  Bruno Haible  <bruno@clisp.org>
19165
19166         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
19167         instead of fopen, fwriteerror.
19168
19169 2006-10-06  Bruno Haible  <bruno@clisp.org>
19170
19171         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
19172         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
19173         int.
19174         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
19175         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
19176         Return an error indicator.
19177         Suggested by Eric Blake.
19178
19179 2006-10-06  Bruno Haible  <bruno@clisp.org>
19180
19181         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
19182         Reported by Eric Blake.
19183
19184 2006-10-06  Bruno Haible  <bruno@clisp.org>
19185
19186         * modules/closeout (Description): Mention stderr too.
19187
19188 2006-10-06  Bruno Haible  <bruno@clisp.org>
19189         and Paul Eggert  <eggert@cs.ucla.edu>
19190
19191         * lib/closeout.c (close_stdout): Also close stderr.
19192         * lib/closeout.h: Update comment.
19193
19194 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
19195
19196         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
19197         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
19198         * lib/dirchownmod.c: Include lchown.h.
19199         * lib/lchown.c: Don't include files that lchown.h now includes.
19200         Don't declare chown, since lchown.h now does that.
19201         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
19202         (lchown): Define to rpl_chown if lchown is declared but
19203         does not exist.  Declare using a prototype if lchown is not
19204         declared.  Add a copyright notice.
19205         * lib/mkstemp.h: Include <unistd.h>.
19206         * lib/openat.c: Include lchown.h.
19207
19208         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
19209         we now test for that separately.
19210         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
19211         rather than O_NOFOLLOW, when testing whether it's possible to
19212         avoid a race condition reliably.
19213         * lib/savewd.c (savewd_chdir): Likewise.
19214
19215         Remove macros that are no longer needed now that stdint.h is
19216         reliable.
19217         * lib/fsusage.c (UINTMAX_MAX): Remove.
19218         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
19219         * lib/utimecmp.c (SIZE_MAX): Remove.
19220
19221         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
19222
19223         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
19224         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
19225         O_NOATIME works.
19226
19227 2006-10-05  Bruno Haible  <bruno@clisp.org>
19228
19229         * lib/gl_list.h (gl_sortedlist_search_from_to,
19230         gl_sortedlist_indexof_from_to): New declarations.
19231         (gl_list_implementation): New fields sortedlist_search_from_to,
19232         sortedlist_indexof_from_to.
19233         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
19234         inline functions.
19235         * lib/gl_list.c (gl_sortedlist_search_from_to,
19236         gl_sortedlist_indexof_from_to): New functions.
19237         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
19238         function.
19239         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
19240         (gl_array_sortedlist_search_from_to): New function.
19241         (gl_array_list_implementation): Update.
19242         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
19243         function.
19244         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
19245         (gl_carray_sortedlist_search_from_to): New function.
19246         (gl_carray_list_implementation): Update.
19247         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
19248         gl_linked_sortedlist_indexof_from_to): New functions.
19249         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
19250         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
19251         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
19252         gl_tree_sortedlist_indexof_from_to): New functions.
19253         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
19254         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
19255         Update.
19256         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
19257         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
19258         Update.
19259
19260 2006-10-05  Bruno Haible  <bruno@clisp.org>
19261
19262         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
19263         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
19264         (struct gl_list_implementation): Add fields search_from_to,
19265         indexof_from_to. Remove fields search, indexof.
19266         (gl_list_search): Use the search_from_to method.
19267         (gl_list_search_from, gl_list_search_from_to): New functions.
19268         (gl_list_indexof): Use the indexof_from_to method.
19269         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
19270         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
19271         (gl_list_search_from, gl_list_search_from_to): New functions.
19272         (gl_list_indexof): Use the indexof_from_to method.
19273         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
19274         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
19275         gl_array_indexof. Add start_index, end_index arguments.
19276         (gl_array_search_from_to): Renamed from gl_array_search. Add
19277         start_index, end_index arguments.
19278         (gl_array_remove, gl_array_list_implementation): Update.
19279         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
19280         gl_carray_indexof. Add start_index, end_index arguments.
19281         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
19282         start_index, end_index arguments.
19283         (gl_carray_remove, gl_carray_list_implementation): Update.
19284         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
19285         gl_linked_search. Add start_index, end_index arguments.
19286         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
19287         start_index, end_index arguments.
19288         (gl_linked_remove): Update.
19289         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
19290         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
19291         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
19292         field to 'size_t'.
19293         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
19294         gl_tree_search. Add start_index, end_index arguments.
19295         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
19296         start_index, end_index arguments.
19297         (gl_tree_remove): Update.
19298         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
19299         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
19300         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
19301         function.
19302         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
19303         gl_tree_search. Add start_index, end_index arguments.
19304         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
19305         start_index, end_index arguments.
19306         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
19307         Update.
19308         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
19309
19310 2006-10-05  Bruno Haible  <bruno@clisp.org>
19311
19312         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
19313
19314         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
19315         fwriteerror_temp): New declarations.
19316         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
19317         (descriptors): New variable.
19318         (cleanup): First, close the descriptors.
19319         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
19320         fclose_temp, fwriteerror_temp): New functions.
19321
19322 2006-10-04  Jim Meyering  <jim@meyering.net>
19323
19324         * lib/fts.c (fts_open): Tiny comment change.
19325
19326 2006-10-04  Bruno Haible  <bruno@clisp.org>
19327
19328         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
19329         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
19330         gl_LOCK_BODY.
19331         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
19332         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
19333         gl_LOCK_EARLY_BODY.
19334         (gl_LOCK): Require gl_LOCK_BODY.
19335
19336 2006-10-04  Bruno Haible  <bruno@clisp.org>
19337
19338         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
19339         (gl_oset_search_atleast): New declaration.
19340         (struct gl_oset_implementation): Add field 'search_atleast'.
19341         (gl_oset_search_atleast): New inline function.
19342         * lib/gl_oset.c (gl_oset_search_atleast): New function.
19343         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
19344         (gl_array_oset_implementation): Update.
19345         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
19346         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
19347         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
19348
19349 2006-10-04  Bruno Haible  <bruno@clisp.org>
19350
19351         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
19352
19353 2006-10-03  Bruno Haible  <bruno@clisp.org>
19354
19355         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
19356         from gl_avltreehash_list_implementation.
19357
19358 2006-10-03  Bruno Haible  <bruno@clisp.org>
19359
19360         * lib/gl_oset.c (gl_oset_add): Fix return type.
19361
19362 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
19363
19364         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
19365
19366 2006-10-02  Eric Blake  <ebb9@byu.net>
19367
19368         * modules/strnlen (Depends-on): Add extensions.
19369
19370 2006-10-02  Eric Blake  <ebb9@byu.net>
19371
19372         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
19373         definition in 2.60+.
19374
19375 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
19376
19377         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
19378         checks.
19379
19380 2006-10-02  Bruno Haible  <bruno@clisp.org>
19381
19382         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
19383         to the AUTOMAKE_OPTIONS.
19384         Reported by Jim Meyering.
19385
19386 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
19387
19388         Work around bug in Solaris 10 /proc file system:
19389         /proc/self/fd/NNN/.. isn't the parent directory of
19390         the directory whose file descriptor is NNN.  This needs to
19391         be worked around at run time, not compile time, since a
19392         program might be built on Solaris 8, where things work, and
19393         run on Solaris 10.
19394         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
19395         to use the following interface instead:
19396         (OPENAT_BUFFER_SIZE): New macro.
19397         (openat_proc_name): New function.
19398         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
19399         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
19400         Likewise.
19401         * lib/openat-proc.c: New file.
19402         * modules/openat (Files): Add lib/openat-proc.c.
19403         (Depends-on): Add same-inode, stdbool.
19404         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
19405
19406 2006-09-29  Bruno Haible  <bruno@clisp.org>
19407
19408         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
19409         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
19410         argument. Set stdout_closed before testing for ferror, not after.
19411         (fwriteerror, fwriteerror_no_ebadf): New functions.
19412
19413 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19414
19415         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
19416
19417 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
19418
19419         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
19420         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
19421
19422 2006-09-28  Jim Meyering  <jim@meyering.net>
19423
19424         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
19425         Include <unistd.h>.
19426
19427 2006-09-28  Bruno Haible  <bruno@clisp.org>
19428
19429         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
19430         * modules/linkedhash-list (Depends-on): Likewise.
19431         * modules/rbtreehash-list (Depends-on): Likewise.
19432
19433 2006-09-28  Bruno Haible  <bruno@clisp.org>
19434
19435         * lib/strndup.h: Simplify the redefinition of strndup.
19436         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
19437         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
19438
19439 2006-09-28  Bruno Haible  <bruno@clisp.org>
19440
19441         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
19442         * lib/gl_linkedhash_list.c: Likewise.
19443         * lib/gl_rbtreehash_list.c: Likewise.
19444
19445 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
19446
19447         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
19448         getaddrinfo.
19449
19450         * lib/__fpending.h: Don't include <stdio_ext.h> unless
19451         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
19452         it causes <stdio_ext.h> to cause a compile-time error.
19453         Problem reported by Nelson H. F. Beebe.
19454         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
19455         of HAVE_DECL___PENDING.
19456
19457         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
19458         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
19459         declaration.
19460
19461 2006-09-27  Jim Meyering  <jim@meyering.net>
19462
19463         This file could end up with a definition for a function
19464         named __strndup, rather than rpl_strndup on a system with
19465         incomplete weak_alias support.
19466         * lib/strndup.c (strndup): Rename from __strndup.
19467         Remove #defines that used to map __strndup to strndup.
19468         Don't use K&R prototypes.
19469         Remove LIBC-related code, since this file is not sync'd with glibc.
19470         * lib/strndup.h: Revamp, accordingly.
19471         * m4/strndup.m4: Modernize.
19472
19473 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
19474
19475         * modules/savewd (Depends-on): Add 'raise'.
19476         * lib/savewd.c: Include <signal.h>, for 'raise'.
19477
19478 2006-09-26  Jim Meyering  <jim@meyering.net>
19479
19480         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
19481         when we detect Darwin 8.7.0's acl_get_file bug.
19482         Rearrange to perform the new (below) run-test while $LIBS
19483         contains any acl-related library.  Set USE_ACL at the end.
19484         (gl_ACL_GET_FILE): New function.
19485
19486 2006-09-26  Eric Blake  <ebb9@byu.net>
19487
19488         * lib/verror.c: Include <config.h> unconditionally.
19489
19490 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
19491
19492         * modules/clock-time (Maintainer): Add self.
19493         * modules/getlogin_r (Depends-on): Add extensions.
19494
19495 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19496
19497         * modules/clock-time: New module.
19498         * modules/nanosleep (Depends-on): Add clock-time.
19499         * modules/gethrxtime (Depends-on): Likewise.
19500         * modules/gettime (Depends-on): Likewise.
19501         * modules/settime (Depends-on): Likewise.
19502
19503         * modules/fts-lgpl: Depend on openat.
19504         * modules/mkancesdirs: Depend on savewd.
19505         * modules/mkdir-p: Likewise.
19506
19507 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19508
19509         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
19510
19511         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
19512         `gl_have_arbitrary_file_name_length_limit' to
19513         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
19514         actually works between configure runs.
19515
19516 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19517             Bruno Haible  <bruno@clisp.org>
19518
19519         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
19520
19521 2006-09-25  Jim Meyering  <jim@meyering.net>
19522
19523         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
19524         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
19525
19526 2006-09-25  Eric Blake  <ebb9@byu.net>
19527
19528         * gnulib-tool (func_import, func_create_testdir): Fix typos in
19529         exec's in 2006-09-18 patch when shuffling fds.
19530
19531 2006-09-25  Bruno Haible  <bruno@clisp.org>
19532
19533         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
19534         Reported by Jim Meyering.
19535
19536 2006-09-24  Jim Meyering  <jim@meyering.net>
19537
19538         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
19539         compare a pointer against a literal "0".  That caused failures with
19540         at least HP-UX's hpcc.
19541
19542 2006-09-22  Simon Josefsson  <jas@extundo.com>
19543
19544         * modules/gc-sha1:
19545         * modules/gc-md4:
19546         * modules/gc-hmac-sha1:
19547         * modules/gc-hmac-md5:
19548         * modules/gc-des:
19549         * modules/gc-arcfour: Distribute more files.
19550
19551 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19552
19553         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
19554         (gl_linked_iterator_from_to): Initialize struct completely.
19555         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
19556         (gl_tree_iterator_from_to): Likewise
19557         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
19558         * lib/gl_array_list.c [lint] (gl_array_iterator)
19559         (gl_array_iterator_from_to): Likewise.
19560         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
19561         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
19562         (gl_carray_iterator_from_to): Likewise.
19563
19564         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
19565         * lib/md4.c (md4_process_block): Remove unused variable.
19566         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
19567         parentheses for clarity.
19568
19569 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19570
19571         * modules/bison-i18n (Depends-on): Add gettext.
19572
19573 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19574
19575         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
19576         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
19577         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
19578         also add missing comma that caused broken test.
19579         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
19580         stdlib.h, for `abort'.
19581         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
19582         variables.
19583         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
19584         include unistd.h if present, for `rmdir'.
19585         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
19586         variables.
19587         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
19588         in the process include standard headers for prototypes.
19589         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
19590         gets declared on GNU/Linux.
19591         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
19592         unistd.h, for `rmdir'.
19593         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
19594
19595         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
19596         always true.
19597         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
19598
19599         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
19600
19601 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19602
19603         * gnulib-tool (func_version): Create output all at once.  This
19604         may help avoid triggering unnecessary SIGPIPEs, and at any
19605         rate it doesn't hurt.
19606
19607 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19608             Bruno Haible  <bruno@clisp.org>
19609
19610         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
19611         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19612         * m4/signed.m4 (bh_C_SIGNED): Likewise.
19613
19614         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
19615         (gl_FUNC_VASPRINTF): Invoke it.
19616
19617 2006-09-22  Bruno Haible  <bruno@clisp.org>
19618
19619         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
19620         getloadavg.c as first argument.
19621
19622 2006-09-22  Bruno Haible  <bruno@clisp.org>
19623
19624         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
19625         at the beginning of the gl_INIT macro.
19626         * modules/getloadavg (configure.ac): Pass $gl_source_base to
19627         gl_GETLOADAVG.
19628
19629 2006-09-22  Bruno Haible  <bruno@clisp.org>
19630
19631         * gnulib-tool (func_create_megatestdir): Don't include the config-h
19632         module.
19633         Suggested by Ralf Wildenhues.
19634
19635 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
19636
19637         Import this patch from libc:
19638
19639         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
19640
19641         * lib/regex_internal.c (re_string_reconstruct): Handle
19642         offset < pstr->valid_raw_len && pstr->offsets_needed case.
19643         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
19644         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
19645         re_string_context_at.
19646
19647         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
19648         now requires it.
19649         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
19650         gl_REGEX now does it for us.
19651         (gl_REGEX): Add test taken from
19652         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
19653
19654         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
19655         Check that large offsets work.  Modernize Autoconf usages.
19656         Prefer "yes" to mean a good thing rather than a bad.
19657         Don't put "#define mkstemp" in config.h, as this might interfere
19658         with standard system headers that "#define mkstemp mkstemp64".
19659
19660         * modules/mkstemp (Depends-on): Add extensions, so that
19661         mkstemp is visible on some platforms.
19662         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
19663         (Include): Change to "mkstemp.h" from <stdlib.h>.
19664         (Files): Add mkstemp.h.
19665
19666         * lib/mkstemp.h: New file, since some standard headers
19667         #define mkstemp.
19668         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
19669         Include "mkstemp.h".
19670         Make the _LIBC code resemble glibc original more,
19671         e.g., use K&R style.
19672         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
19673         (mkstemp): Remove, since mkstemp.h does this for us.
19674         * lib/stdlib--.h: Include mkstemp.h.
19675
19676         Import this patch from libc:
19677
19678         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
19679
19680         * lib/tempname.c (__gen_tempname): Change attempts_min
19681         into a macro.  Use preprocessor to decide how to initialize
19682         attempts [Coverity CID 67].
19683
19684 2006-09-20  Bruno Haible  <bruno@clisp.org>
19685
19686         * lib/mkdtemp.c: Import from libc.
19687         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
19688                 * sysdeps/posix/tempname.c (__gen_tempname): Change
19689                 attempts_min into a macro.  Use preprocessor to decide how to
19690                 initialize attempts [Coverity CID 67].
19691         2001-11-27  Paul Eggert  <eggert@twinsun.com>
19692                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
19693                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
19694
19695 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19696
19697         * gnulib-tool (func_exit): New function, to allow to pass the
19698         exit status portably through the trap.  Use everywhere.
19699         (--help, --version): Signal a write error.
19700         (trap): catch SIGPIPE, for write errors.
19701         Exit at the end of the trap, with the correct exit status.
19702
19703 2006-09-19  Karl Berry  <karl@gnu.org>
19704
19705         * doc/gnulib.texi: note about the license texinfo files.
19706
19707 2006-09-19  Eric Blake  <ebb9@byu.net>
19708
19709         * gnulib-tool: Avoid space-tab.
19710
19711 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
19712
19713         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
19714         that prevented coreutils 6.1 from building.  Problem reported
19715         by Petter Reinholdtsen.
19716
19717 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
19718
19719         * gnulib-tool (avoidlist): Fix typo that broke options like
19720         --avoid=lock that are used by coreutils bootstrap.
19721
19722 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
19723
19724         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
19725         more systematically.
19726
19727 2006-09-18  Jim Meyering  <jim@meyering.net>
19728
19729         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
19730
19731 2006-09-18  Bruno Haible  <bruno@clisp.org>
19732
19733         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
19734
19735 2006-09-18  Bruno Haible  <bruno@clisp.org>
19736
19737         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
19738         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
19739         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
19740         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
19741         * m4/gettext.m4: Require autoconf >= 2.52.
19742         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
19743         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
19744         of gl_cv_header_inttypes_h.
19745
19746 2006-09-18  Bruno Haible  <bruno@clisp.org>
19747
19748         * lib/javaversion.c: Include configmake.h.
19749
19750 2006-09-18  Bruno Haible  <bruno@clisp.org>
19751
19752         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
19753         avoid that the while loops be executed in a subshell.
19754
19755 2006-09-18  Bruno Haible  <bruno@clisp.org>
19756
19757         * MODULES.html.sh (func_module): Break long lines.
19758         Suggested by Bruce Korb <bkorb@gnu.org>.
19759
19760 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19761
19762         Speed up by a factor of 1.12.
19763         * gnulib-tool (nl): New variable.
19764         (func_import): Rewrite include directive extraction to only read each
19765         directive once.
19766
19767 2006-09-17  Bruno Haible  <bruno@clisp.org>
19768
19769         * modules/javaversion (Makefile.am): Remove DEFS setting.
19770         (Depends-on): Add configmake, for PKGDATADIR definition.
19771
19772 2006-09-17  Bruno Haible  <bruno@clisp.org>
19773
19774         * gnulib-tool (func_create_testdir): Rewrite all files at once.
19775
19776 2006-09-17  Bruno Haible  <bruno@clisp.org>
19777
19778         * gnulib-tool (func_append): New function, stolen from libtool.m4.
19779         (func_modules_transitive_closure, func_modules_add_dummy,
19780         func_modules_to_filelist, func_import, func_create_testdir,
19781         func_create_megatestdir, ...): Use it wherever possible.
19782         Suggested by Ralf Wildenhues.
19783
19784 2006-09-16  Karl Berry  <karl@gnu.org>
19785
19786         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
19787         to avoid sectioning errors.
19788         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
19789         [ifinfo]: blank line after @center-ed titles.
19790         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
19791         Spell FSF address consistently with others.
19792         (These changes approved by rms.)
19793
19794 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19795
19796         Speed up by a factor of 1.61.
19797         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
19798         already checked module names again.
19799
19800 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19801
19802         Speed up by a factor of 1.13.
19803         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
19804         for new_files, and the input to func_add_or_update.
19805
19806 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19807
19808         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
19809         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
19810
19811 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
19812
19813         * modules/mkancesdirs (Depends-on): Add fcntl.
19814         * modules/savewd: New file.
19815         * MODULES.html.sh (File system functions): Add savewd.
19816
19817         * modules/configmake (Makefile.am): Add support for the
19818         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
19819
19820 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
19821
19822         * m4/savewd.m4: New file.
19823
19824 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
19825
19826         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
19827         (dirchownmod): New arg FD.  All callers changed.
19828         Use FD rather than opening the directory ourself, as opening is
19829         now the caller's responsibility.
19830         * lib/dirchownmod.h: Likewise.
19831         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
19832         hosts that require <sys/types.h> before <sys/stat.h>.  Include
19833         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
19834         (test_dir): Remove.
19835         (mkancesdirs): Return length of prefix of FILE that has already
19836         been made, or -2 if there is a child doing the work.  Redo
19837         algorithm so that it is O(N) rather than O(N**2).  Optimize away
19838         ".", and treat ".." specially since it might stray back into
19839         already-created areas.  Use a subprocess if necessary.  New arg
19840         WD; all users changed.  MAKE_DIR function should now return 1
19841         if it creates a directory that is not readable.  Return -2 if
19842         a child process is spun off.
19843         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
19844         Adjust signature to match code.
19845         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
19846         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
19847         all users changed.
19848         * lib/savewd.c, lib/savewd.h: New files.
19849
19850 2006-09-15  Jim Meyering  <jim@meyering.net>
19851
19852         * modules/rename-dest-slash: New module.
19853         * MODULES.html.sh (posix_compat): Add it here.
19854
19855         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
19856
19857 2006-09-15  Jim Meyering  <jim@meyering.net>
19858
19859         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
19860         file.
19861
19862         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
19863
19864 2006-09-15  Jim Meyering  <jim@meyering.net>
19865
19866         * lib/rename-dest-slash.c (has_trailing_slash): Use
19867         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
19868         (rpl_rename_dest_slash): Perform the cheaper trailing slash
19869         test before testing whether SRC is a directory.
19870         Suggestions from Bruno Haible.
19871
19872         Avoid a warning about an unused variable.
19873         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
19874         into the #ifdef block where it's used.
19875
19876         * lib/rename-dest-slash.c: New file.
19877
19878 2006-09-14  Bruno Haible  <bruno@clisp.org>
19879
19880         * lib/allocsa.c: Include <config.h> unconditionally.
19881         * lib/asnprintf.c: Likewise.
19882         * lib/asprintf.c: Likewise.
19883         * lib/c-strcasecmp.c: Likewise.
19884         * lib/c-strcasestr.c: Likewise.
19885         * lib/c-strncasecmp.c: Likewise.
19886         * lib/c-strstr.c: Likewise.
19887         * lib/classpath.c: Likewise.
19888         * lib/clean-temp.c: Likewise.
19889         * lib/concatpath.c: Likewise.
19890         * lib/copy-file.c: Likewise.
19891         * lib/csharpcomp.c: Likewise.
19892         * lib/csharpexec.c: Likewise.
19893         * lib/execute.c: Likewise.
19894         * lib/fatal-signal.c: Likewise.
19895         * lib/findprog.c: Likewise.
19896         * lib/fwriteerror.c: Likewise.
19897         * lib/gl_array_list.c: Likewise.
19898         * lib/gl_array_oset.c: Likewise.
19899         * lib/gl_avltree_list.c: Likewise.
19900         * lib/gl_avltree_oset.c: Likewise.
19901         * lib/gl_avltreehash_list.c: Likewise.
19902         * lib/gl_carray_list.c: Likewise.
19903         * lib/gl_linked_list.c: Likewise.
19904         * lib/gl_linkedhash_list.c: Likewise.
19905         * lib/gl_list.c: Likewise.
19906         * lib/gl_oset.c: Likewise.
19907         * lib/gl_rbtree_list.c: Likewise.
19908         * lib/gl_rbtree_oset.c: Likewise.
19909         * lib/gl_rbtreehash_list.c: Likewise.
19910         * lib/imaxabs.c: Likewise.
19911         * lib/imaxdiv.c: Likewise.
19912         * lib/javacomp.c: Likewise.
19913         * lib/javaexec.c: Likewise.
19914         * lib/javaversion.c: Likewise.
19915         * lib/linebreak.c: Likewise.
19916         * lib/localcharset.c: Likewise.
19917         * lib/lock.c: Likewise.
19918         * lib/mbchar.c: Likewise.
19919         * lib/mbswidth.c: Likewise.
19920         * lib/mkdtemp.c: Likewise.
19921         * lib/pipe.c: Likewise.
19922         * lib/printf-args.c: Likewise.
19923         * lib/printf-parse.c: Likewise.
19924         * lib/progname.c: Likewise.
19925         * lib/progreloc.c: Likewise.
19926         * lib/readlink.c: Likewise.
19927         * lib/sh-quote.c: Likewise.
19928         * lib/stpcpy.c: Likewise.
19929         * lib/stpncpy.c: Likewise.
19930         * lib/strcasecmp.c: Likewise.
19931         * lib/strcasestr.c: Likewise.
19932         * lib/strcspn.c: Likewise.
19933         * lib/striconv.c: Likewise.
19934         * lib/strncasecmp.c: Likewise.
19935         * lib/strnlen1.c: Likewise.
19936         * lib/strstr.c: Likewise.
19937         * lib/strtok_r.c: Likewise.
19938         * lib/tls.c: Likewise.
19939         * lib/tmpdir.c: Likewise.
19940         * lib/unicodeio.c: Likewise.
19941         * lib/unsetenv.c: Likewise.
19942         * lib/vasnprintf.c: Likewise.
19943         * lib/vasprintf.c: Likewise.
19944         * lib/wait-process.c: Likewise.
19945         * lib/xallocsa.c: Likewise.
19946         * lib/xsetenv.c: Likewise.
19947         * lib/xstriconv.c: Likewise.
19948
19949 2006-09-13  Simon Josefsson  <jas@extundo.com>
19950
19951         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
19952         that internally, suggested by Ralf Wildenhues
19953         <Ralf.Wildenhues@gmx.de>.
19954
19955 2006-09-13  Simon Josefsson  <jas@extundo.com>
19956
19957         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
19958         @LIBOBJS@.
19959         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19960
19961 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
19962
19963         * lib/_fpending.c: Include <config.h> unconditionally, since we no
19964         longer worry about uses that don't define HAVE_CONFIG_H.
19965         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
19966         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
19967         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
19968         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
19969         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
19970         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
19971         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
19972         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
19973         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
19974         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
19975         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
19976         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
19977         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
19978         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
19979         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
19980         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
19981         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
19982         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
19983         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
19984         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
19985         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
19986         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
19987         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
19988         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
19989         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
19990         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
19991         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
19992         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
19993         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
19994         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
19995         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
19996         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
19997         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
19998         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
19999         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
20000         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
20001         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
20002         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
20003         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
20004         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
20005         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
20006         Likewise.
20007
20008 2006-09-13  Eric Blake  <ebb9@byu.net>
20009
20010         * lib/getopt.c: Fix typo in last commit.
20011
20012 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20013
20014         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
20015         dgettext.
20016
20017 2006-09-12  Jim Meyering  <jim@meyering.net>
20018
20019         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
20020         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
20021         Reported by Nelson H. F. Beebe.
20022
20023 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
20024
20025         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
20026         program_invocation_name and program_invocation_short_name are
20027         initialized.
20028         * lib/argp-namefrob.h: Move declarations of program_invocation_name
20029         and program_invocation_short_name to argp.h, so they are visible
20030         to user programs.
20031         * lib/argp.h: Likewise
20032
20033 2006-09-10  Bruno Haible  <bruno@clisp.org>
20034
20035         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
20036         m4/inttypes_h.m4, m4/uintmax_t.m4.
20037
20038 2006-09-10  Bruno Haible  <bruno@clisp.org>
20039
20040         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
20041         gl_AC_TYPE_UINTMAX_T.
20042
20043 2006-09-10  Bruno Haible  <bruno@clisp.org>
20044
20045         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
20046
20047 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
20048
20049         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
20050         convention.  Text proposed by Bruno Haible.
20051         (struct argp_option): Document the use of N_() wrappers.
20052
20053         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
20054         '\v', and translate the two parts separately, instead of feeding
20055         the whole string to gettext.  This allows to exclude
20056         '\v' from the strings visible to the translator by writing doc
20057         strings as N_("..") "\v" N_("..").
20058
20059 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
20060
20061         * config/srclist.txt: Undo latest change; the bug was fixed.
20062
20063 2006-09-09  Bruno Haible  <bruno@clisp.org>
20064
20065         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
20066         assignments if building a library without libtool.
20067         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
20068         in func_emit_lib_Makefile_am.
20069         (func_import): When building a static library libfoo.a, arrange to
20070         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
20071         (func_create_testdir): Likewise.
20072         * modules/gc (configure.ac, Makefile.am): If building statically,
20073         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
20074         * modules/iconvme (configure.ac, Makefile.am): Likewise.
20075         * modules/striconv (configure.ac, Makefile.am): Likewise.
20076         Based on a suggestion by Ralf Wildenhues.
20077
20078 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
20079
20080         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
20081         Check for unistd.h too, since Autoconf doesn't assume POSIX.
20082         Also:
20083
20084         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
20085         Add year_2050_test to catch glibc bug 2821
20086         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
20087
20088         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
20089         Prefer #ifdef to #if.
20090
20091         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
20092         Return from 'main' instead of calling 'exit'.
20093
20094 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
20095
20096         * lib/mktime.c (guess_time_tm): Fix bug where mktime
20097         returned the maximum time_t value rather than (time_t) -1.
20098         Problem originally reported by William Bardwell
20099         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
20100
20101         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
20102         Moved to here ...
20103         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
20104         ... from here.
20105
20106 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
20107
20108         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
20109         2821 is fixed.
20110
20111 2006-09-08  Jim Meyering  <jim@meyering.net>
20112
20113         Don't make generated files read-only.  That would bother too many
20114         people.  However, do retain the ability to work when targets are
20115         read-only: remove the destination and temporary files before writing
20116         them (when generated via sed or echo), or by using the -f option for
20117         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
20118         * modules/alloca-opt, modules/argz, modules/arpa_inet:
20119         * modules/byteswap, modules/configmake, modules/fcntl:
20120         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
20121         * modules/localcharset, modules/netinet_in, modules/poll:
20122         * modules/stdbool, modules/stdint, modules/sys_select:
20123         * modules/sys_socket, modules/sys_stat, modules/sysexits:
20124
20125 2006-09-08  Jim Meyering  <jim@meyering.net>
20126
20127         Avoid new build failure on FreeBSD 6.0.
20128         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
20129         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
20130         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
20131
20132 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20133
20134         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
20135
20136 2006-09-07  Jim Meyering  <jim@meyering.net>
20137
20138         Fix global typo in last change: use chmod u-w, not chmod u-x.
20139         Spotted by Paul Eggert and Bruce Korb.
20140         * modules/alloca-opt, modules/argz, modules/arpa_inet:
20141         * modules/byteswap, modules/configmake, modules/fcntl:
20142         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
20143         * modules/localcharset, modules/netinet_in, modules/poll:
20144         * modules/stdbool, modules/stdint, modules/sys_select:
20145         * modules/sys_socket, modules/sys_stat, modules/sysexits:
20146
20147 2006-09-06  Jim Meyering  <jim@meyering.net>
20148
20149         Make generated files be read-only.
20150         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
20151         Ensure that each generated file is now read-only.
20152         * modules/argz: Likewise.
20153         * modules/arpa_inet: Likewise.
20154         * modules/byteswap: Likewise.
20155         * modules/configmake: Likewise.
20156         * modules/fcntl: Likewise.
20157         * modules/fnmatch: Likewise.
20158         * modules/getopt: Likewise.
20159         * modules/glob: Likewise.
20160         * modules/inttypes: Likewise.
20161         * modules/netinet_in: Likewise.
20162         * modules/poll: Likewise.
20163         * modules/stdbool: Likewise.
20164         * modules/stdint: Likewise.
20165         * modules/sys_select: Likewise.
20166         * modules/sys_socket: Likewise.
20167         * modules/sys_stat: Likewise.
20168         * modules/sysexits: Likewise.
20169         * modules/localcharset: Same as above, but continue using temporary
20170         file named "t-$@" (why different?) rather than the "$@-t" used
20171         everywhere else.
20172
20173         * modules/sysexits (Makefile.am): Replace literal occurrences
20174         of "sysexit.h" more readable, and more consistent, "$@".
20175
20176 2006-09-06  Bruno Haible  <bruno@clisp.org>
20177
20178         * modules/striconv: New file.
20179         * modules/xstriconv: New file.
20180         * MODULES.html.sh (Internationalization functions): Add striconv,
20181         xstriconv.
20182
20183 2006-09-06  Bruno Haible  <bruno@clisp.org>
20184
20185         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
20186         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
20187         not using libtool correctly.
20188
20189 2006-09-06  Bruno Haible  <bruno@clisp.org>
20190
20191         * lib/striconv.h: New file.
20192         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
20193         iconvstring.c.
20194         * lib/xstriconv.h: New file.
20195         * lib/xstriconv.c: New file.
20196
20197 2006-09-06  Bruno Haible  <bruno@clisp.org>
20198
20199         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
20200         lib_..._LDFLAGS.
20201
20202 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20203
20204         * lib/argz_.h: Sync from Libtool.
20205
20206         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
20207                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
20208
20209         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
20210
20211 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
20212
20213         * modules/trim: New file.
20214
20215 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
20216
20217         * lib/trim.h: New file.
20218         * lib/trim.c: New file.
20219
20220 2006-09-05  Bruno Haible  <bruno@clisp.org>
20221
20222         * MODULES.html.sh (String handling): Add trim.
20223
20224 2006-09-04  Karl Berry  <karl@gnu.org>
20225
20226         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
20227         until next release.
20228
20229 2006-09-03  Bruno Haible  <bruno@clisp.org>
20230
20231         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
20232         correctly.
20233
20234 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
20235
20236         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
20237         not gl_GETLOADAVG.  Omit unneeded semicolons.
20238         Problems reported by Ralf Wildenhues in
20239         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
20240         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
20241         at the end, which is the usual gnulib style.
20242
20243         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
20244         of doing all the work ourselves.
20245         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
20246         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
20247
20248 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
20249
20250         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
20251         Problem reported by Ralf Wildenhues in
20252         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
20253
20254         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
20255         HAVE_STRUCT_STATFS_F_FSTYPENAME.
20256
20257 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
20258
20259         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
20260         yesterday's patch by changing test -n to test -z.
20261
20262 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20263
20264         * modules/getloadavg (Files): Add m4/getloadavg.m4.
20265         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
20266         the former is now obsolescent.
20267
20268         * modules/chdir-long (Depends-on): Add fcntl.
20269
20270 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20271
20272         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
20273         obsolescent, and programs should use gnulib instead.
20274         * m4/getloadavg.m4: New file, with contents taken from Autoconf
20275         but with prefixes changed.
20276
20277 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
20278
20279         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
20280         or stdbool.h, because they might not exist while configuring.
20281
20282         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
20283         Don't include unistd.h or limits.h; not needed, since chdir-long.h
20284         does that for us.
20285         (O_DIRECTORY): Remove.
20286
20287 2006-08-31  Eric Blake  <ebb9@byu.net>
20288
20289         * gnulib-tool: Don't let emacs change spaces to TAB.
20290
20291 2006-08-31  Bruno Haible  <bruno@clisp.org>
20292
20293         * gnulib-tool: When calling func_import more than once, do it in a
20294         subshell.
20295         Reported by Eric Blake <ebb9@byu.net>.
20296
20297 2006-08-31  Bruno Haible  <bruno@clisp.org>
20298
20299         * gnulib-tool (nl): Remove variable.
20300         (sed_transform_lib_file): Use more robust test for config-h module.
20301         (func_import): Fix typo in 2006-08-25 patch.
20302
20303 2006-08-31  Bruno Haible  <bruno@clisp.org>
20304
20305         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
20306         specified, augment Makefile.am variables instead of assigning them.
20307
20308 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
20309
20310         Work around a bug in both the Linux and SunOS 64-bit kernels:
20311         nanosleep mishandles sleeps for longer than 2**31 seconds.
20312         Problem reported by Frank v Waveren in
20313         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
20314         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
20315         Check for nanosleep bug.
20316         (LIB_NANOSLEEP): Append clock_gettime library if needed.
20317
20318 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
20319
20320         Work around a bug in both the Linux and SunOS 64-bit kernels:
20321         nanosleep mishandles sleeps for longer than 2**31 seconds.
20322         Problem reported by Frank v Waveren in
20323         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
20324         * lib/nanosleep.c (BILLION): New constant.
20325         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
20326         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
20327         implementation.
20328
20329 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
20330
20331         * modules/nanosleep (Depends-on): Add gettime.
20332
20333 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
20334         and Simon Josefsson  <jas@extundo.com>
20335         and Oskar Liljeblad  <oskar@osk.mine.nu>
20336
20337         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
20338         * gnulib-tool (func_import): New license type 'unmodifiable license
20339         text'.
20340         * modules/fdl: Use it.  Longer description.
20341         * module/gpl, module/lgpl: New files.
20342
20343 2006-08-30  Jim Meyering  <jim@meyering.net>
20344
20345         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
20346         shadowing the parameter.
20347
20348 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20349
20350         Sync from Libtool:
20351
20352         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20353
20354         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
20355         sharing with gnulib.  Report by Eric Blake.
20356
20357 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
20358
20359         * modules/isapipe: New file.
20360         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
20361
20362 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
20363
20364         * modules/configmake (Makefile.am): Add a comment, and omit
20365         the CONFIGMAKE_ prefix from generated macro names.  Suggested
20366         by Bruno Haible.
20367
20368 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
20369
20370         * m4/isapipe.m4: New file.
20371
20372 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
20373
20374         * lib/isapipe.c, lib/isapipe.h: New files.
20375
20376 2006-08-29  Jim Meyering  <jim@meyering.net>
20377
20378         * modules/configmake (Makefile.am): Make configmake.h depend on
20379         Makefile.  Otherwise, a stale configmake.h could hang around.
20380
20381 2006-08-29  Eric Blake  <ebb9@byu.net>
20382
20383         * lib/error.c (error_at_line, print_errno_message): Match libc, after
20384         resolution of upstream bug 3044.
20385
20386 2006-08-29  Bruno Haible  <bruno@clisp.org>
20387
20388         * modules/localcharset (Depends-on): Add configmake.
20389         (Makefile.am): Remove setting of LIBDIR through DEFS.
20390
20391 2006-08-29  Bruno Haible  <bruno@clisp.org>
20392
20393         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
20394         defined.
20395
20396 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
20397
20398         * modules/fcntl: New file.
20399         * modules/chdir-safer (Depends-on): Add fcntl.
20400         * modules/fts: Likewise.
20401         * modules/mkdir-p: Likewise.
20402
20403         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
20404         This undoes the most recent change, since we're now addressing the
20405         problem in a different way.
20406
20407         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
20408         into output, since the output might be called Makefile.am even
20409         if $makefile_name is something different.
20410         (func_import): Use $makefile_am rather than
20411         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
20412         empty.
20413
20414         * modules/inttypes (Files): Add m4/inttypes-h.m4.
20415
20416 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
20417
20418         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
20419         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
20420         recent change to stdint.m4, since we're now addressing the problem in a
20421         different way.
20422
20423 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
20424
20425         * m4/fcntl_h.m4: New file.
20426
20427 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
20428
20429         * lib/fcntl_.h: New file.
20430         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
20431         the fcntl module.
20432         * lib/dirchownmod.c: Likewise.
20433         * lib/fts.c: Likewise.
20434
20435         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
20436         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
20437         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
20438         just before including <inttypes.h>, to avoid circular inclusion.
20439
20440 2006-08-28  Jim Meyering  <jim@meyering.net>
20441
20442         * doc/visibility.texi: Actually read and correct the grammar of the
20443         sentence affected by yesterday's change.
20444
20445 2006-08-28  Eric Blake  <ebb9@byu.net>
20446
20447         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
20448         needs wrapper.
20449
20450 2006-08-28  Eric Blake  <ebb9@byu.net>
20451
20452         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
20453
20454 2006-08-28  Eric Blake  <ebb9@byu.net>
20455
20456         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
20457
20458 2006-08-28  Bruno Haible  <bruno@clisp.org>
20459
20460         * modules/c-strstr: New file, from GNU gettext.
20461         * MODULES.html.sh (String handling): Add c-strstr.
20462
20463 2006-08-28  Bruno Haible  <bruno@clisp.org>
20464
20465         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
20466         macros.
20467         Reported by Eric Blake.
20468
20469 2006-08-28  Bruno Haible  <bruno@clisp.org>
20470
20471         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
20472         (VASNPRINTF): Return a string of length > INT_MAX without failing.
20473         * lib/vasprintf.c: Include errno.h, limits.h.
20474         (EOVERFLOW): New fallback definition.
20475         (vasprintf): Test here whether the string length is > INT_MAX.
20476         * lib/vsnprintf.c: Include errno.h, limits.h.
20477         (EOVERFLOW): New fallback definition.
20478         (vsnprintf): Fix bug when generated string was too long for the buffer.
20479         Test here whether the string length is > INT_MAX.
20480
20481 2006-08-28  Bruno Haible  <bruno@clisp.org>
20482
20483         * lib/inttypes_.h (SCNX*): Remove definitions.
20484         Reported by Eric Blake.
20485
20486 2006-08-28  Bruno Haible  <bruno@clisp.org>
20487
20488         * lib/c-strstr.h: New file, from GNU gettext.
20489         * lib/c-strstr.c: New file, from GNU gettext.
20490
20491 2006-08-28  Bruno Haible  <bruno@clisp.org>
20492
20493         * gnulib-tool: Reorder some statements.
20494
20495 2006-08-28  Bruno Haible  <bruno@clisp.org>
20496
20497         * gnulib-tool: New option --makefile-name.
20498         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
20499         $makefile_name.
20500         (func_import): Write $makefile_name to the cache file, and read it from
20501         there unless explicitly specified. Use $makefile_name as file name
20502         instead of Makefile.am. Adjust the recommendations accordingly.
20503
20504 2006-08-28  Bruno Haible  <bruno@clisp.org>
20505
20506         * gnulib-tool (func_verify_module): Check against misapplying patch.
20507
20508 2006-08-28  Bruno Haible  <bruno@clisp.org>
20509
20510         * gnulib-tool (func_relativize, func_relconcat): New functions.
20511         Give an error if --local-dir is given with --update.
20512         Remove trailing slashes from $local_gnulib_dir.
20513         (func_import): Store the relativized $local_gnulib_dir in
20514         gnulib-cache.m4, and read it from there if not specified explicitly.
20515
20516 2006-08-28  Bruno Haible  <bruno@clisp.org>
20517
20518         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
20519         is the current directory. Respect also $local_gnulib_dir.
20520
20521 2006-08-28  Bruno Haible  <bruno@clisp.org>
20522             Simon Josefsson  <jas@extundo.com>
20523
20524         BeOS portability.
20525         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
20526
20527 2006-08-27  Jim Meyering  <jim@meyering.net>
20528
20529         * doc/visibility.texi: Remove duplicate word: "pointer".
20530
20531 2006-08-26  Bruno Haible  <bruno@clisp.org>
20532
20533         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
20534         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
20535         (Makefile.am): Create inttypes.h from inttypes_.h.
20536         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
20537
20538         * modules/imaxabs: New file.
20539
20540         * modules/imaxdiv: New file.
20541
20542 2006-08-26  Bruno Haible  <bruno@clisp.org>
20543
20544         * m4/inttypes.m4: New file.
20545         * m4/_inttypes_h.m4: Remove file.
20546         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
20547         PRI_MACROS_BROKEN.
20548         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
20549
20550         * m4/imaxabs.m4: New file.
20551
20552         * m4/imaxdiv.m4: New file.
20553
20554 2006-08-26  Bruno Haible  <bruno@clisp.org>
20555
20556         * lib/inttypes_.h: New file.
20557         * lib/inttypes.h: Remove file.
20558         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
20559
20560         * lib/imaxabs.c: New file.
20561
20562         * lib/imaxdiv.c: New file.
20563
20564 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20565
20566         New config-h module, so that "make" output needn't be cluttered
20567         by -DHAVE_CONFIG_H.
20568         * MODULES.html.sh (Support for building libraries and executables):
20569         Add config-h.
20570         * modules/config-h: New file.
20571         * gnulib-tool (nl, sed_transform_lib_file): New vars.
20572         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
20573         the config-h module is used.
20574
20575         New configmake module, so that "make" output needn't be cluttered
20576         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
20577         * MODULES.html.sh (Support for building libraries and executables):
20578         Add configmake.
20579         * modules/configmake: New file.
20580
20581 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
20582
20583         * m4/config-h.m4: New file.
20584
20585 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
20586
20587         * config/srclist.txt: Add elisp-comp.
20588
20589 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
20590
20591         * MODULES.html.sh (Support for building libraries and executables):
20592         Add elisp-comp.
20593         * build-aux/elisp-comp: New file.
20594         * modules/elisp-comp: New file.
20595
20596 2006-08-24  Bruno Haible  <bruno@clisp.org>
20597
20598         * gnulib-tool (func_create_testdir): Use non-default values of
20599         sourcebase and m4base.
20600
20601 2006-08-24  Bruno Haible  <bruno@clisp.org>
20602
20603         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
20604         HTML structure.
20605
20606 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
20607
20608         * modules/openat (Depends-on): Add lchown.
20609
20610 2006-08-23  Bruno Haible  <bruno@clisp.org>
20611
20612         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
20613         of gl_LOCK_EARLY instead of gl_LOCK.
20614
20615 2006-08-23  Bruno Haible  <bruno@clisp.org>
20616
20617         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
20618         on OSF/1 to no.
20619         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
20620
20621 2006-08-23  Bruno Haible  <bruno@clisp.org>
20622
20623         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
20624         as unusable.
20625
20626         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
20627         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
20628         (gl_LOCK): New macro.
20629
20630 2006-08-22  Simon Josefsson  <jas@extundo.com>
20631
20632         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
20633         to md5 module.
20634
20635 2006-08-22  Simon Josefsson  <jas@extundo.com>
20636
20637         * MODULES.html.sh: Add "Support for maintaining and release
20638         projects".
20639
20640         * build-aux/gnupload: New file, from coreutils.
20641
20642 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
20643
20644         Avoid the need for AC_LIBSOURCES in m4 macros.
20645         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
20646         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
20647         * modules/check-version (EXTRA_DIST): Add check-version.h.
20648         * modules/crc (EXTRA_DIST): Add crc.h.
20649         * modules/des (EXTRA_DIST): Add des.h.
20650         * modules/gc (EXTRA_DIST): Add gc.h.
20651         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
20652         * modules/getline (EXTRA_DIST): Add getline.h.
20653         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
20654         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
20655         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
20656         * modules/md2 (EXTRA_DIST): Add md2.h.
20657         * modules/md4 (EXTRA_DIST): Add md4.h.
20658         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
20659         * modules/read-file (EXTRA_DIST): Add read-file.h.
20660         * modules/readline (EXTRA_DIST): Add readline.h.
20661         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
20662         rijndael-api-fst.h.
20663
20664 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
20665
20666         * m4/rijndael.m4 (gl_ARCFOUR):
20667         * m4/arctwo.m4 (gl_ARCTWO):
20668         * m4/check-version.m4 (gl_CHECK_VERSION):
20669         * m4/crc.m4 (gl_CRC):
20670         * m4/des.m4 (gl_DES):
20671         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
20672         * m4/gc.m4 (gl_GC):
20673         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
20674         * m4/getline.m4 (gl_FUNC_GETLINE):
20675         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
20676         * m4/hmac-md5.m4 (gl_HMAC_MD5):
20677         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
20678         * m4/md2.m4 (gl_MD2):
20679         * m4/md4.m4 (gl_MD4):
20680         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
20681         * m4/read-file.m4 (gl_FUNC_READ_FILE):
20682         * m4/readline.m4 (gl_FUNC_READLINE):
20683         * m4/rijndael.m4 (gl_RIJNDAEL):
20684         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
20685         to get the necessary .h files and whatnot.
20686
20687 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
20688
20689         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
20690         gnulib rather than the other way around.
20691         * config/srclistvars.sh (COREUTILS): Remove.
20692
20693 2006-08-22  Jim Meyering  <jim@meyering.net>
20694
20695         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
20696
20697         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
20698
20699 2006-08-22  Eric Blake  <ebb9@byu.net>
20700
20701         * modules/regexprops-generic: New file.
20702         * MODULES.html.sh (Support for building documentation): List it.
20703
20704 2006-08-22  Eric Blake  <ebb9@byu.net>
20705
20706         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
20707         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
20708         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
20709         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
20710
20711 2006-08-22  Bruno Haible  <bruno@clisp.org>
20712
20713         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
20714         and lib_LTLIBRARIES like the other lib_* variables.
20715
20716 2006-08-22  Bruno Haible  <bruno@clisp.org>
20717
20718         * build-aux/x-to-1.in: New file, from GNU gettext.
20719
20720 2006-08-22  Bruno Haible  <bruno@clisp.org>
20721
20722         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
20723         <utmpx.h> exists.
20724
20725 2006-08-22  Bruno Haible  <bruno@clisp.org>
20726
20727         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
20728         <utmpx.h> exists.
20729
20730 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
20731
20732         BeOS portability.
20733         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
20734         exist.
20735         Problem reported by Bruno Haible.
20736
20737 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
20738
20739         Avoid the need for AC_LIBSOURCES in m4 macros.
20740         * modules/acl (EXTRA_DIST): Add acl.h.
20741         * modules/argmatch (Files): Add m4/argmatch.m4.
20742         (configure.ac): Add gl_ARGMATCH.
20743         (EXTRA_DIST): Renamed from lib_SOURCES, for
20744         consistency with the other modules.  Remove argmatch.c.
20745         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
20746         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
20747         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
20748         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
20749         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
20750         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
20751         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
20752         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
20753         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
20754         * modules/closeout (EXTRA_DIST): Add closeout.h.
20755         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
20756         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
20757         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
20758         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
20759         dirname.h; remove basename.c and stripslash.c.
20760         * modules/exclude (EXTRA_DIST): Add exclude.h.
20761         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
20762         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
20763         * modules/file-type (EXTRA_DIST): Add file-type.h.
20764         * modules/filemode (EXTRA_DIST): Add filemode.h.
20765         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
20766         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
20767         * modules/fpending (EXTRA_DIST): Add __fpending.h.
20768         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
20769         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
20770         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
20771         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
20772         * modules/getdate (EXTRA_DIST): Add getdate.c.
20773         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
20774         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
20775         * modules/getpass (EXTRA_DIST): Add getpass.h.
20776         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
20777         * modules/group-member (EXTRA_DIST): Add group-member.h.
20778         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
20779         * modules/hash (EXTRA_DIST): Add hash.h.
20780         * modules/human (EXTRA_DIST): Add human.h.
20781         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
20782         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
20783         * modules/lchown (EXTRA_DIST): Add lchown.h.
20784         * modules/long-options (EXTRA_DIST): Add long-options.h.
20785         * modules/lstat (EXTRA_DIST): Add lstat.h.
20786         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
20787         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
20788         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
20789         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
20790         * modules/memxor (EXTRA_DIST): Add memxor.h.
20791         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
20792         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
20793         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
20794         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
20795         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
20796         * modules/physmem (EXTRA_DIST): Add physmem.h.
20797         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
20798         * modules/posixver (EXTRA_DIST): Add posixver.h.
20799         * modules/quote (EXTRA_DIST): Add quote.h.
20800         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
20801         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
20802         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
20803         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
20804         regex_internal.h regexec.c.
20805         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
20806         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
20807         * modules/same (EXTRA_DIST): Add same.h.
20808         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
20809         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
20810         * modules/savedir (EXTRA_DIST): Add savedir.h.
20811         * modules/sha1 (EXTRA_DIST): Add sha1.h.
20812         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
20813         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
20814         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
20815         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
20816         * modules/strdup (EXTRA_DIST): Add strdup.h.
20817         * modules/strftime (EXTRA_DIST): Add strftime.h.
20818         * modules/strndup (EXTRA_DIST): Add strndup.h.
20819         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
20820         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
20821         * modules/time_r (EXTRA_DIST): Add time_r.h.
20822         * modules/timespec (EXTRA_DIST): Add timespec.h.
20823         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
20824         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
20825         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
20826         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
20827         * modules/userspec (EXTRA_DIST): Add userspec.h.
20828         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
20829         * modules/utimens (EXTRA_DIST): Add utimens.h.
20830         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
20831         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
20832         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
20833         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
20834         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
20835         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
20836         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
20837         * modules/yesno (EXTRA_DIST): Add yesno.h.
20838
20839 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
20840
20841         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
20842
20843         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
20844         * m4/dev-ino.m4, same-inode.m4: Remove.
20845
20846         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
20847         * m4/acl.m4 (AC_FUNC_ACL):
20848         * m4/backupfile.m4 (gl_BACKUPFILE):
20849         * m4/c-strtod.m4 (gl_C99_STRTOLD):
20850         * m4/canon-host.m4 (gl_CANON_HOST):
20851         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
20852         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
20853         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
20854         * m4/cloexec.m4 (gl_CLOEXEC):
20855         * m4/close-stream.m4 (gl_CLOSE_STREAM):
20856         * m4/closeout.m4 (gl_CLOSEOUT):
20857         * m4/dirfd.m4 (gl_FUNC_DIRFD):
20858         * m4/dirname.m4 (gl_DIRNAME):
20859         * m4/exclude.m4 (gl_EXCLUDE):
20860         * m4/exitfail.m4 (gl_EXITFAIL):
20861         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
20862         * m4/file-type.m4 (gl_FILE_TYPE):
20863         * m4/filemode.m4 (gl_FILEMODE):
20864         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
20865         * m4/fpending.m4 (gl_FUNC_FPENDING):
20866         * m4/fprintftime.m4 (gl_FPRINTFTIME):
20867         * m4/fts.m4 (gl_FUNC_FTS):
20868         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
20869         * m4/getdate.m4 (gl_GETDATE):
20870         * m4/gethrxtime.m4 (gl_GETHRXTIME):
20871         * m4/getpagesize.m4 (gl_GETPAGESIZE):
20872         * m4/getpass.m4 (gl_FUNC_GETPASS):
20873         * m4/gettime.m4 (gl_GETTIME):
20874         * m4/getugroups.m4 (gl_GETUGROUPS):
20875         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
20876         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
20877         * m4/hard-locale.m4 (gl_HARD_LOCALE):
20878         * m4/hash.m4 (gl_HASH):
20879         * m4/idcache.m4 (gl_IDCACHE):
20880         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
20881         * m4/lchown.m4 (gl_FUNC_LCHOWN):
20882         * m4/long-options.m4 (gl_LONG_OPTIONS):
20883         * m4/lstat.m4 (gl_FUNC_LSTAT):
20884         * m4/md5.m4 (gl_MD5):
20885         * m4/memcasecmp.m4 (gl_MEMCASECMP):
20886         * m4/memcoll.m4 (gl_MEMCOLL):
20887         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
20888         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
20889         * m4/memxor.m4 (gl_MEMXOR):
20890         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
20891         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
20892         * m4/modechange.m4 (gl_MODECHANGE):
20893         * m4/mountlist.m4 (gl_MOUNTLIST):
20894         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
20895         * m4/openat.m4 (gl_FUNC_OPENAT):
20896         * m4/pathmax.m4 (gl_PATHMAX):
20897         * m4/physmem.m4 (gl_PHYSMEM):
20898         * m4/posixtm.m4 (gl_POSIXTM):
20899         * m4/posixver.m4 (gl_POSIXVER):
20900         * m4/quote.m4 (gl_QUOTE):
20901         * m4/quotearg.m4 (gl_QUOTEARG):
20902         * m4/readtokens.m4 (gl_READTOKENS):
20903         * m4/readutmp.m4 (gl_READUTMP):
20904         * m4/regex.m4 (gl_REGEX):
20905         * m4/safe-read.m4 (gl_SAFE_READ):
20906         * m4/safe-write.m4 (gl_SAFE_WRITE):
20907         * m4/same.m4 (gl_SAME):
20908         * m4/save-cwd.m4 (gl_SAVE_CWD):
20909         * m4/savedir.m4 (gl_SAVEDIR):
20910         * m4/settime.m4 (gl_SETTIME):
20911         * m4/sha1.m4 (gl_SHA1):
20912         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
20913         * m4/stat-macros.m4 (gl_STAT_MACROS):
20914         * m4/stat-time.m4 (gl_STAT_TIME):
20915         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
20916         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
20917         * m4/strdup.m4 (gl_FUNC_STRDUP):
20918         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
20919         * m4/strndup.m4 (gl_FUNC_STRNDUP):
20920         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
20921         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
20922         * m4/time_r.m4 (gl_TIME_R):
20923         * m4/timespec.m4 (gl_TIMESPEC):
20924         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
20925         * m4/unlinkdir.m4 (gl_UNLINKDIR):
20926         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
20927         * m4/userspec.m4 (gl_USERSPEC):
20928         * m4/utimecmp.m4 (gl_UTIMECMP):
20929         * m4/utimens.m4 (gl_UTIMENS):
20930         * m4/xalloc.m4 (gl_XALLOC):
20931         * m4/xgetcwd.m4 (gl_XGETCWD):
20932         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
20933         * m4/xreadlink.m4 (gl_XREADLINK):
20934         * m4/xstrtod.m4 (gl_XSTRTOD):
20935         * m4/yesno.m4 (gl_YESNO):
20936         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
20937         to get the necessary .h files and whatnot.
20938
20939 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
20940             Bruno Haible  <bruno@clisp.org>
20941
20942         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
20943         /bin/sh understanding of '!' conditional negation.
20944
20945 2006-08-21  Jim Meyering  <jim@meyering.net>
20946
20947         * modules/openat (Depends-on): Really alphabetize.
20948
20949         * modules/acl (Depends-on): Add error and quote.
20950
20951         * check-module (find_included_lib_files): Add at-func.c to the
20952         ok-to-include-more-than-once white list.
20953
20954         * modules/openat (Depends-on): Add lstat.  Alphabetize.
20955
20956 2006-08-21  Bruno Haible  <bruno@clisp.org>
20957
20958         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20959         Emit a pkgdata_DATA variable only if some snippets add contents to it.
20960         Reported by Martin Lambers <marlam@marlam.de>.
20961
20962 2006-08-21  Bruno Haible  <bruno@clisp.org>
20963
20964         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
20965         specify an installation location, don't emit a noinst_LIBRARIES or
20966         noinst_LTLIBRARIES assignment.
20967
20968 2006-08-21  Bruno Haible  <bruno@clisp.org>
20969
20970         BeOS portability.
20971         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
20972         BeOS has mbrtowc() but no <wctype.h>.
20973
20974 2006-08-21  Bruno Haible  <bruno@clisp.org>
20975
20976         BeOS portability.
20977         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
20978         exist.
20979
20980 2006-08-21  Bruno Haible  <bruno@clisp.org>
20981
20982         BeOS portability.
20983         * lib/mbchar.h: Include <wctype.h> only if it exists.
20984
20985 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20986
20987         Remove files that are no longer needed by their respective modules.
20988         * m4/obstack.m4: Remove.
20989         * m4/strerror_r.m4: Remove.
20990         * m4/uint32_t.m4: Remove.
20991         * m4/uintptr_t.m4: Remove.
20992         * m4/ullong_max.m4: Remove.
20993         * m4/xstrtoimax.m4: Remove.
20994         * m4/xstrtoumax.m4: Remove.
20995
20996         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
20997         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
20998         dependencies now capture this.
20999
21000         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
21001         Do not use AC_LIBSOURCES, since gnulib modules now do this.
21002         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
21003         * m4/human.m4 (gl_HUMAN): Likewise.
21004         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
21005         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
21006
21007         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
21008
21009         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
21010         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
21011         stdint.
21012         * m4/human.m4 (gl_HUMAN): Likewise.
21013         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
21014         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
21015         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
21016         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
21017         * m4/xstrtol (gl_XSTRTOL): Likewise.
21018
21019         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
21020         AC_TYPE_LONG_LONG_INT.
21021         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
21022         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
21023         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
21024         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
21025
21026         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
21027         on stdbool.
21028
21029         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
21030         (gl_PREREQ_XSTRTOUL): Remove.
21031
21032         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
21033
21034         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
21035         mode.
21036
21037 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
21038
21039         Add and change modules to make it easier for coreutils to use
21040         gnulib-tool.
21041         * modules/backupfile (Files): Remove m4/d-ino.m4.
21042         (Depends-on): Add d-ino.
21043         * modules/cycle-check (Depends-on): Add stdint.
21044         (lib_SOURCES): Add cycle-check.h.
21045         * modules/d-ino: New module.
21046         * modules/d-type: New module.
21047         * modules/error (Files): Remove m4/strerror_r.m4.
21048         * modules/filemode (Files): Add m4/st_dm_mode.m4.
21049         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
21050         m4/inttypes_h.m4, m4/uintmax_t.m4.
21051         (Depends-on): Add stdint.
21052         (lib_SOURCES): Add fsusage.h.
21053         * modules/getcwd (Files): Remove d-ino.m4.
21054         (Depends-on): Add d-ino.
21055         * modules/getndelim2 (Depends-on): Add stdint.
21056         * modules/glob (Files): Remove m4/d-type.m4.
21057         (Depends-on): Add d-type.
21058         * modules/host-os: New module.
21059         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
21060         m4/inttypes_h.m4, m4/uintmax_t.m4.
21061         * Depends-on: Add stdint.
21062         (lib_SOURCES): Add human.h.
21063         * modules/inttostr (Files): Remove m4/intmax_t.m4,
21064         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
21065         m4/uintmax_t.m4, m4/ulonglong.m4.
21066         (Depends-on): Add stdint.
21067         (EXTRA_DIST): Add inttostr.h.
21068         * modules/lchmod: New module.
21069         * modules/link-follow: New module.
21070         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
21071         (Depends-on): Add lchmod.
21072         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
21073         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
21074         (Depends-on): Add stdint.
21075         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
21076         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
21077         (Depends-on): Add stdint.
21078         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
21079         * modules/perl: New module.
21080         * modules/regex (Depends-on): Add stdint.
21081         * modules/rmdir-errno: New module.
21082         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
21083         m4/intmax_t.m4.
21084         (Depends-on): Add stdint.
21085         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
21086         m4/uintmax_t.m4.
21087         (Depends-on): Add stdint.
21088         * modules/unlink-busy: New module.
21089         * modules/utimecmp (Depends-on): Add stdint.
21090         * modules/uptime: New module.
21091         * modules/winsz-ioctl: New module.
21092         * modules/winsz-termios: New module.
21093         * modules/xnanosleep (Depends-on): Add nanosleep.
21094         * modules/ullong_max: Remove.
21095         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
21096         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
21097         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
21098         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
21099         (Depends-on): Add inttypes.
21100         (lib_SOURCES): Add xstrtol.h.
21101         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
21102         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
21103         * MODULES.html.sh: Move 'assert' into the assert section.
21104         Move 'dummy' into the linking section.
21105         Remove ullong_max.
21106         Add section for compatibility checks for POSIX:2001 functions,
21107         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
21108         winsz-ioctl, and winsz-termios into it.
21109         Add lchmod.
21110         Add top-level Misc section and put host-os, perl, and uptime
21111         into it.
21112
21113 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
21114
21115         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
21116         now assume the stdint module.  Do not include inttypes.h.
21117         * lib/fsusage.h: Likewise.
21118         * lib/getndelim2.c: Likewise.
21119         * lib/human.h: Likewise.
21120         * lib/inttostr.h: Likewise.
21121         * lib/obstack.c: Likewise.
21122         * lib/regex_internal.h: Likewise.
21123         * lib/tempname.c: Likewise.
21124         * lib/utimecmp.c: Likewise.
21125         * lib/xstrtol.h: Likewise.
21126
21127         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
21128
21129         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
21130         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
21131         * lib/xtime.h: Likewise.
21132
21133 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21134
21135         * modules/openat (Files): Add lib/fchmodat.c.
21136         Fixes problem reported by Jay Youngman.
21137
21138 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
21139
21140         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
21141         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
21142
21143 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
21144             Bruno Haible  <bruno@clisp.org>
21145
21146         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
21147         and is a script that invokes bison. Tighten the code. Add comments.
21148
21149 2006-08-18  Jim Meyering  <jim@meyering.net>
21150
21151         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
21152         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
21153         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
21154         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
21155
21156 2006-08-18  Bruno Haible  <bruno@clisp.org>
21157
21158         * modules/bison-i18n: New file.
21159         * MODULES.html.sh (Internationalization functions): Add it.
21160
21161 2006-08-18  Bruno Haible  <bruno@clisp.org>
21162
21163         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
21164         sys/statvfs.h. When getmntinfo was found, check its declaration and
21165         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
21166
21167 2006-08-18  Bruno Haible  <bruno@clisp.org>
21168
21169         * m4/bison-i18n.m4: New file, from bison.
21170
21171 2006-08-18  Bruno Haible  <bruno@clisp.org>
21172
21173         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
21174         (ME_DUMMY): Treat "kernfs" as a dummy.
21175         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
21176
21177 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
21178
21179         Update from coreutils.
21180
21181         2006-08-15  Jim Meyering  <jim@meyering.net>
21182
21183         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
21184
21185         2006-01-17  Jim Meyering  <jim@meyering.net>
21186
21187         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
21188
21189         2006-01-11  Jim Meyering  <jim@meyering.net>
21190
21191         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
21192         Check for the lchmod function.
21193
21194 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
21195
21196         Update from coreutils.
21197
21198         * lib/__fpending.h: Add copyright notice.
21199         * lib/fprintftime.h: Likewise.
21200         * lib/savedir.c: Use (C) in copyright notice.
21201         * lib/savedir.h: Likewise.
21202
21203         2006-08-15  Jim Meyering  <jim@meyering.net>
21204
21205         * lib/at-func.c: New file, with the logic of all emulated at-functions.
21206         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
21207         in support of the EXPECTED_ERRNO macro.
21208         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
21209         definitions.  Instead, define the appropriate symbols and include
21210         "at-func.c".
21211         * lib/mkdirat.c (mkdirat): Likewise.
21212         * lib/fchmodat.c (fchmodat): Likewise.
21213         (ENOSYS): Remove definition.
21214         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
21215         it.  Don't include "unistd--.h" -- it wasn't ever used.
21216
21217         2006-01-17  Jim Meyering  <jim@meyering.net>
21218
21219         Rewrite fts.c not to change the current working directory,
21220         by using openat, fstatat, fdopendir, etc..
21221
21222         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
21223         (HAVE_OPENAT_SUPPORT): Define.
21224         [_LIBC] (fchdir): Don't undef or define; no longer used.
21225         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
21226         Now, this `function' always succeeds, and consumes its file descriptor
21227         parameter -- so callers must not close such FDs.  Update callers.
21228         (diropen_fd, opendirat, cwd_advance_fd): New functions.
21229         (diropen): Add parameter, SP.  Adjust all callers.
21230         Implement using diropen_fd, rather than open.
21231         (fts_open): Initialize new member, fts_cwd_fd.
21232         Remove fts_rft-setting code.
21233         (fts_close): Close fts_cwd_fd, if necessary.
21234         (__opendir2): Define in terms of opendir or opendirat,
21235         depending on whether the FST_NOCHDIR flag is set.
21236         (fts_build): Since fts_safe_changedir consumes its FD, and since
21237         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
21238         and close the dup'd file descriptor upon failure.
21239         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
21240         (fts_safe_changedir): Tweak semantics to reflect that this function
21241         now calls cwd_advance_fd and hence consumes its FD argument.
21242         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
21243         [struct FTS] (fts_rft): Remove now-unused member.
21244         [struct FTS] (fts_cycle.state): Improve comment.
21245
21246         * lib/openat.c (openat_needs_fchdir): New function.
21247         * lib/openat.h (openat_needs_fchdir): Declare it.
21248
21249 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
21250
21251         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
21252         Problem and fix reported by Pádraig Brady in
21253         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
21254
21255 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
21256
21257         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
21258
21259 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
21260
21261         * lib/memcoll.c (memcoll): Optimize for the common case where the
21262         arguments are bytewise equal.
21263
21264 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
21265
21266         * doc/regexprops-generic.texi: Add a copyright notice.
21267
21268 2006-08-15  Bruno Haible  <bruno@clisp.org>
21269
21270         * modules/tmpdir (License): Change to LGPL.
21271
21272 2006-08-15  Bruno Haible  <bruno@clisp.org>
21273
21274         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
21275         module.
21276
21277 2006-08-14  Simon Josefsson  <jas@extundo.com>
21278
21279         * config/srclist.txt: Add gnupload.
21280
21281 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
21282
21283         Change copyright notice from LGPL 2 to GPL 2, since that's the
21284         standard form used in the gnulib repository.
21285         * tests/test-lock.c: Likewise.
21286         * tests/test-stdint.c: Likewise.
21287         * tests/test-tls.c: Likewise.
21288
21289         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
21290         prelude-manager.  User shorter URLs for GNU projects, without '?'.
21291         Add copyright notice.
21292
21293         * check-module: Add copyright notice.  Output a copyright
21294         notice if "--version" is specified.
21295         * modules/COPYING: New file.
21296         * tests/test-getaddrinfo.c: Add copyright notice.
21297         * tests/test-verify.c: Likewise.
21298
21299 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
21300
21301         Change copyright notice from LGPL 2 to GPL 2, since that's the
21302         standard form used in the gnulib repository.
21303         * lib/lock.c: LGPL -> GPL.
21304         * lib/lock.h: Likewise.
21305         * lib/strnlen1.c: Likewise.
21306         * lib/strnlen1.h: Likewise.
21307         * lib/tls.c: Likewise.
21308         * lib/tls.h: Likewise.
21309         * lib/tmpdir.c: Likewise.
21310
21311         * lib/TODO: Remove; this belongs only in coreutils.
21312
21313 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
21314
21315         Add copyright notices to long-enough files that lack them, since
21316         otherwise the files aren't clearly free.  Use the same notice that
21317         getdate.texi already uses.
21318         * doc/alloca-opt.texi: Add copyright notice.
21319         * doc/alloca.texi: Likewise.
21320         * doc/ctime.texi: Likewise.
21321         * doc/functions.texi: Likewise.
21322         * doc/gcd.texi: Likewise.
21323         * doc/gnulib-tool.texi: Likewise.
21324         * doc/inet_ntoa.texi: Likewise.
21325         * doc/visibility.texi: Likewise.
21326
21327         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
21328         * doc/quote.texi: Add copyright notice.
21329
21330         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
21331         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
21332         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
21333         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
21334         is now obsolete, and give a pointer to the Sun list.
21335         Add copyright notice.
21336
21337 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
21338
21339         * config/srclistvars.sh: Add copyright notice.
21340
21341 2006-08-14  Eric Blake  <ebb9@byu.net>
21342
21343         Import the following change from libc:
21344
21345         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
21346
21347         Upstream bug 2997.
21348         * lib/misc/error.c: Add space between program name and message if file
21349         name is missing.
21350
21351 2006-08-12  Karl Berry  <karl@gnu.org>
21352
21353         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
21354         remove, these originate in gnulib now.
21355
21356 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21357
21358         * doc/Makefile (standards.info standards.html standards.dvi):
21359         Also depend on make-stds.texi.
21360
21361 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
21362
21363         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
21364         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
21365
21366         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
21367         in wchar_t.  Problem reported by Eric Blake.
21368
21369         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
21370         LEN is smaller than SIZE.  Suggested by Bruno Haible.
21371         Also, help the compiler to keep LEN in a register.
21372
21373 2006-08-11  Eric Blake  <ebb9@byu.net>
21374
21375         * users.txt: Sort.  Add tar.
21376
21377 2006-08-11  Bruno Haible  <bruno@clisp.org>
21378
21379         * users.txt: New file.
21380
21381 2006-08-11  Bruno Haible  <bruno@clisp.org>
21382
21383         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
21384         before <wchar.h>. Needed for OSF/1 and BSD/OS.
21385
21386 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
21387
21388         * modules/snprintf (Depends-on): Remove minmax.
21389         (Maintainer): Add self and Bruno.
21390
21391 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
21392
21393         * lib/.cppi-disable: Add snprintf.h, socket_.h.
21394         * lib/snprintf.c: Include <errno.h> and <limits.h>.
21395         (EOVERFLOW): Define if the system does not.
21396         Do not include "minmax.h"; it wasn't used.
21397         (snprintf): Don't assume size_t promotes to an unsigned type.
21398         Fix bug when generated string was too long for the buffer: the
21399         buffer's contents are supposed to be the initial prefix of the
21400         output.  Don't assume vasnprintf returns EOVERFLOW if the size
21401         exceeds INT_MAX; do the check ourselves.
21402
21403         Import the following changes from libc:
21404
21405         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
21406
21407         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
21408         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
21409         set wc to the byte which couldn't be converted.
21410         (re_string_reconstruct): Don't clear valid_raw_len before calling
21411         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
21412         tip_context using re_string_context_at.
21413
21414         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
21415
21416         * lib/posix/regex.h: g++ still cannot handled [restrict].
21417
21418         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
21419
21420         * lib/posix/regex.h: Remove special handling for VMS.
21421
21422 2006-08-10  Jim Meyering  <jim@meyering.net>
21423
21424         * modules/same-inode: New module.
21425         * modules/dev-ino: New module.
21426         * modules/cycle-check: Depend on these modules, rather than simply
21427         including their .h files.
21428         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
21429         required via m4/cycle-check.m4.
21430         * modules/same: Depend on new same-inode module, rather than
21431         including same-inode.h.
21432         * modules/chdir-safer: New file.
21433
21434         * modules/chown (Depends-on): Add stat-macros.
21435
21436 2006-08-10  Jim Meyering  <jim@meyering.net>
21437
21438         * m4/cycle-check.m4: New file.
21439         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
21440         * m4/dev-ino.m4, m4/same-inode.m4: New files.
21441
21442 2006-08-10  Eric Blake  <ebb9@byu.net>
21443
21444         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
21445         in from original proposal.
21446
21447 2006-08-10  Eric Blake  <ebb9@byu.net>
21448         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21449
21450         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
21451         namespace.
21452
21453 2006-08-10  Bruno Haible  <bruno@clisp.org>
21454
21455         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
21456         as well.
21457
21458 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21459
21460         Sync from coreutils.
21461
21462         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
21463
21464         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
21465         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
21466
21467 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21468
21469         * modules/restrict: Remove; no longer needed now that we assume
21470         Autoconf 2.59 or later.
21471         * MODULES.html.sh: Remove 'restrict'.
21472         * modules/argp (Depends-on): Remove 'restrict'.
21473         * modules/base64 (Depends-on): Likewise.
21474         * modules/gc (Depends-on): Likewise.
21475         * modules/getaddrinfo (Depends-on): Likewise.
21476         * modules/glob (Depends-on): Likewise.
21477         * modules/inet_ntop (Depends-on): Likewise.
21478         * modules/inet_pton (Depends-on): Likewise.
21479         * modules/memxor (Depends-on): Likewise.
21480         * modules/regex (Depends-on): Likewise.
21481         * modules/strtok_r (Depends-on): Likewise.
21482         * modules/time_r (Depends-on): Likewise.
21483
21484 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
21485
21486         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
21487         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
21488         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
21489         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
21490         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
21491         * m4/memxor.m4 (gl_MEMXOR): Likewise.
21492         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
21493         gl_C_RESTRICT replaced by AC_C_RESTRICT.
21494
21495         Merge from coreutils.
21496         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
21497         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
21498         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
21499         * m4/time_r.m4 (gl_TIME_R): Likewise.
21500
21501 2006-08-09  Karl Berry  <karl@gnu.org>
21502
21503         * config/srclist.txt: no more gettext-tools, per Bruno.
21504
21505 2006-08-08  Eric Blake  <ebb9@byu.net>
21506
21507         * modules/verror: New module.
21508         * MODULES.html.sh: Document it.
21509
21510 2006-08-08  Eric Blake  <ebb9@byu.net>
21511
21512         * lib/verror.h, lib/verror.c: New files.
21513
21514 2006-08-08  Eric Blake  <ebb9@byu.net>
21515
21516         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
21517         verror_at_line output complies with GNU Coding Standards even when
21518         file is NULL.
21519
21520 2006-08-07  Bruno Haible  <bruno@clisp.org>
21521
21522         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
21523         versions of AIX.
21524         Reported by Ralf Wildenhues.
21525
21526 2006-08-07  Bruno Haible  <bruno@clisp.org>
21527
21528         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
21529         in an AC_DEFUN. Needed so that the autoconf snippets can use
21530         AC_REQUIRE.
21531
21532 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21533
21534         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21535         Initialize pkgdata_DATA.
21536         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
21537         overriding it.
21538
21539 2006-08-06  Eric Blake  <ebb9@byu.net>
21540
21541         * lib/error.h: Fold in some upstream changes from glibc.
21542         * lib/error.c: Likewise.
21543
21544 2006-08-04  Bruno Haible  <bruno@clisp.org>
21545
21546         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21547         Make the mostlyclean-local rule depend on mostlyclean-generic.
21548         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
21549
21550 2006-07-31  Bruno Haible  <bruno@clisp.org>
21551
21552         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
21553         <stdlib.h>, <string.h>.
21554
21555 2006-07-30  Bruno Haible  <bruno@clisp.org>
21556
21557         * modules/readlink (License): Change to LGPL.
21558
21559 2006-07-30  Bruno Haible  <bruno@clisp.org>
21560
21561         * modules/javaversion (Makefile.am): Distribute javaversion.java and
21562         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
21563         set PKGDATADIR to point to it.
21564
21565 2006-07-30  Bruno Haible  <bruno@clisp.org>
21566
21567         * modules/csharpexec (configure.ac): Comment out macro invocation.
21568         * modules/javaexec (configure.ac): Likewise.
21569         * modules/javacomp-script (configure.ac): Likewise.
21570
21571         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
21572
21573 2006-07-30  Bruno Haible  <bruno@clisp.org>
21574
21575         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
21576         linked-list.
21577
21578 2006-07-30  Bruno Haible  <bruno@clisp.org>
21579
21580         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
21581
21582 2006-07-30  Bruno Haible  <bruno@clisp.org>
21583
21584         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21585         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
21586         get removed.
21587
21588 2006-07-29  Bruno Haible  <bruno@clisp.org>
21589
21590         Make it possible for gnulib-tool to work with locally modified or
21591         augmented gnulib repositories.
21592         * gnulib-tool (func_usage): Document --local-dir option.
21593         (local_gnulib_dir): New variable.
21594         Handle --local-dir option.
21595         (func_lookup_file): New function.
21596         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
21597         (func_get_description, func_get_filelist, func_get_description,
21598         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
21599         func_get_automake_snippet, func_get_include_directive,
21600         func_get_license, func_get_maintainer): Use func_lookup_file.
21601         (func_import, func_create_testdir): Use func_lookup_file.
21602
21603 2006-07-29  Bruno Haible  <bruno@clisp.org>
21604
21605         * modules/setenv (Depends-on): Add unistd.
21606
21607 2006-07-29  Bruno Haible  <bruno@clisp.org>
21608
21609         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
21610
21611 2006-07-29  Bruno Haible  <bruno@clisp.org>
21612
21613         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
21614
21615 2006-07-29  Bruno Haible  <bruno@clisp.org>
21616
21617         * gnulib-tool (import, update): If there is no Makefile.am, look at
21618         aclocal.m4, instead of bailing out.
21619
21620 2006-07-29  Bruno Haible  <bruno@clisp.org>
21621
21622         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
21623         Categorize the options by when they are useful.
21624
21625 2006-07-29  Bruno Haible  <bruno@clisp.org>
21626
21627         * gnulib-tool (func_usage): Document option --no-libtool.
21628         Handle option --no-libtool.
21629         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
21630         for changed semantics of $libtool variable.
21631         (func_import): Likewise. If libtool is not used, show this through
21632         an option --no-libtool.
21633         (func_create_testdir): Update.
21634
21635 2006-07-29  Bruno Haible  <bruno@clisp.org>
21636
21637         * gnulib-tool (func_import): Extend error message about missing
21638         --doc-base.
21639
21640 2006-07-29  Bruno Haible  <bruno@clisp.org>
21641
21642         * gnulib-tool (func_import): Don't create the $docbase directory if
21643         there is no file to store there.
21644
21645 2006-07-29  Bruno Haible  <bruno@clisp.org>
21646
21647         * gnulib-tool (autoconf_minversion): If a --dir option is given and
21648         relevant, look for configure.ac there, not in the current directory.
21649         Also use a simple search for AC_PREREQ, not "autoconf --trace".
21650
21651 2006-07-29  Bruno Haible  <bruno@clisp.org>
21652
21653         * gnulib-tool (SORT): New variable.
21654         (func_usage): Undocument --assume-autoconf option.
21655         Remove --assume-autoconf option handling.
21656         (autoconf_minversion): Determine from the contents of configure.ac.
21657         (func_import): Remove autoconf_minversion handling.
21658         Suggested by Eric Blake.
21659
21660 2006-07-29  Bruno Haible  <bruno@clisp.org>
21661
21662         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
21663
21664 2006-07-29  Bruno Haible  <bruno@clisp.org>
21665
21666         * config/srclist.txt (*setenv.[ch]): Remove rules.
21667
21668 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21669
21670         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
21671
21672 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21673
21674         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
21675         arpa/inet.h.
21676
21677 2006-07-28  Simon Josefsson  <jas@extundo.com>
21678
21679         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
21680         * modules/inet_pton (Depends-on): Likewise.
21681
21682 2006-07-28  Simon Josefsson  <jas@extundo.com>
21683
21684         * m4/netinet_in_h.m4: New file.
21685
21686 2006-07-28  Simon Josefsson  <jas@extundo.com>
21687
21688         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
21689         #include's.
21690
21691 2006-07-28  Simon Josefsson  <jas@extundo.com>
21692
21693         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
21694         #include's.
21695
21696 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
21697
21698         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
21699         setgid on directories only if they set these bits.
21700         * lib/modechange.h: Remove obsolete comment about masks.
21701
21702 2006-07-28  Eric Blake  <ebb9@byu.net>
21703
21704         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
21705         macro expansion.
21706
21707 2006-07-28  Bruno Haible  <bruno@clisp.org>
21708
21709         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
21710
21711 2006-07-28  Bruno Haible  <bruno@clisp.org>
21712
21713         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
21714
21715 2006-07-28  Bruno Haible  <bruno@clisp.org>
21716
21717         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
21718         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
21719         Define fallbacks.
21720         Avoids link error on FreeBSD 4.x.
21721         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21722
21723         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
21724         encoding.
21725         * lib/mbswidth.c (iswcntrl): Likewise.
21726
21727 2006-07-27  Bruno Haible  <bruno@clisp.org>
21728
21729         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
21730         test.
21731
21732 2006-07-27  Bruno Haible  <bruno@clisp.org>
21733
21734         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
21735         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
21736         defined.
21737
21738 2006-07-26  Eric Blake  <ebb9@byu.net>
21739
21740         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
21741
21742 2006-07-26  Eric Blake  <ebb9@byu.net>
21743
21744         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
21745         like mingw that lack mkstemp.
21746         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
21747         avoid compilation warning on mingw.
21748
21749 2006-07-26  Bruno Haible  <bruno@clisp.org>
21750
21751         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
21752         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
21753         INT_FAST*_MIN, INTPTR_MIN.
21754
21755 2006-07-25  Bruno Haible  <bruno@clisp.org>
21756
21757         * modules/version-etc (Depends-on): Add stdarg.
21758
21759 2006-07-25  Bruno Haible  <bruno@clisp.org>
21760
21761         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
21762         complex commands.
21763
21764 2006-07-25  Bruno Haible  <bruno@clisp.org>
21765
21766         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
21767         defined in <stdarg.h> or config.h.
21768
21769 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
21770
21771         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
21772         (gl_STDIO_SAFER): Remove.
21773
21774 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
21775
21776         * MODULES.html.sh (File stream based Input/Output):
21777         Add fopen-safer, tmpfile-safer; remove stdio-safer.
21778         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
21779         * modules/fopen-safer, modules/tmpfile-safer: New files.
21780         * modules/stdio-safer: Remove.
21781
21782 2006-07-24  Bruno Haible  <bruno@clisp.org>
21783
21784         * modules/tmpdir: New file.
21785         * MODULES.html.sh (File system functions): Add it.
21786
21787 2006-07-24  Bruno Haible  <bruno@clisp.org>
21788
21789         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
21790         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
21791
21792 2006-07-24  Bruno Haible  <bruno@clisp.org>
21793
21794         * modules/clean-temp: New file.
21795
21796 2006-07-24  Bruno Haible  <bruno@clisp.org>
21797
21798         * m4/tmpdir.m4: New file, from GNU gettext.
21799
21800 2006-07-24  Bruno Haible  <bruno@clisp.org>
21801
21802         * lib/tmpdir.h: New file, from GNU gettext.
21803         * lib/tmpdir.c: New file, from GNU gettext.
21804
21805 2006-07-24  Bruno Haible  <bruno@clisp.org>
21806
21807         * lib/clean-temp.h: New file, from GNU gettext.
21808         * lib/clean-temp.c: New file, from GNU gettext.
21809
21810 2006-07-23  Eric Blake  <ebb9@byu.net>
21811
21812         * modules/stdio-safer (Files): Add tmpfile-safer.c.
21813         (Depends-on): Add binary-io.
21814
21815 2006-07-23  Eric Blake  <ebb9@byu.net>
21816
21817         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
21818
21819 2006-07-23  Eric Blake  <ebb9@byu.net>
21820
21821         * lib/tmpfile-safer.c: New file.
21822         * lib/stdio-safer.h (fopen_safer): Add prototype.
21823         * lib/stdio--.h (tmpfile): Make safer.
21824
21825 2006-07-23  Bruno Haible  <bruno@clisp.org>
21826
21827         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
21828         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
21829         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
21830         gl_linked_remove_at): Use it.
21831
21832 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21833         and Simon Josefsson <jas@extundo.com>
21834
21835         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
21836
21837         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
21838
21839 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
21840
21841         * modules/close-stream: New file.
21842         * modules/closeout (Description): Make it clear that it exits
21843         with a diagnostic on error.
21844         (Depends-on): Add close-stream.  Remove fpending, stdbool.
21845         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
21846
21847 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
21848
21849         * m4/close-stream.m4: New file.
21850
21851 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
21852
21853         * lib/close-stream.c, lib/close-stream.h: New files.
21854
21855 2006-07-22  Bruno Haible  <bruno@clisp.org>
21856
21857         Merge from GNU gettext 0.15.
21858
21859         2006-05-01  Bruno Haible  <bruno@clisp.org>
21860
21861                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
21862
21863         2006-07-22  Bruno Haible  <bruno@clisp.org>
21864
21865                 * modules/javaversion: New file.
21866                 * MODULES.html.sh (Java): Add javaversion.
21867
21868         2006-03-12  Bruno Haible  <bruno@clisp.org>
21869
21870                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
21871
21872         2005-12-04  Bruno Haible  <bruno@clisp.org>
21873
21874                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
21875                 (untested).
21876
21877         2006-06-21  Bruno Haible  <bruno@clisp.org>
21878
21879                 Avoid warnings from recent versions of mcs.
21880                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
21881                 -o, -L, -r any more. Use options documented since mcs-1.0
21882                 instead. Similarly for -g.
21883
21884         2005-12-04  Bruno Haible  <bruno@clisp.org>
21885
21886                 * build-aux/csharpcomp.sh.in: Suffix for resources is
21887                 .resources, not .resource.
21888
21889         2005-07-09  Bruno Haible  <bruno@clisp.org>
21890
21891                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
21892                 add a .dll suffix.
21893                 Reported by Mark Junker <mjscod@gmx.de>.
21894
21895         2006-07-22  Bruno Haible  <bruno@clisp.org>
21896
21897                 * modules/gettext: Upgrade to gettext-0.15.
21898                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
21899                 m4/visibility.m4.
21900                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
21901
21902 2006-07-22  Bruno Haible  <bruno@clisp.org>
21903
21904         Merge from GNU gettext 0.15.
21905
21906         2006-03-25  Bruno Haible  <bruno@clisp.org>
21907
21908                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
21909
21910         2006-07-21  Bruno Haible  <bruno@clisp.org>
21911
21912                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
21913                 "1.1".
21914
21915         2006-05-09  Bruno Haible  <bruno@clisp.org>
21916
21917                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
21918                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
21919                 for the conftestver execution.
21920
21921         2006-05-01  Bruno Haible  <bruno@clisp.org>
21922
21923                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
21924                 optional target-version argument. Verify that the compiler
21925                 groks source of the specified source-version, or add -source
21926                 option as necessary. Verify that the compiler produces
21927                 bytecode in the specified target-version, or add -target and
21928                 -source options as necessary. Make the result of the test
21929                 available as variable CONF_JAVAC. Also log error output in
21930                 config.log.
21931
21932         2006-03-11  Bruno Haible  <bruno@clisp.org>
21933
21934                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
21935
21936         2006-05-09  Bruno Haible  <bruno@clisp.org>
21937
21938                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
21939                 CLASSPATH_SEPARATOR to a semicolon.
21940
21941         2006-03-12  Bruno Haible  <bruno@clisp.org>
21942
21943                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
21944                 available as variable CONF_JAVA, for subsequent autoconf
21945                 tests. Also log error output in config.log.
21946
21947         2006-07-19  Bruno Haible  <bruno@clisp.org>
21948
21949                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
21950                 that getline works on glibc2 systems. Needed to avoid trouble
21951                 in relocatable.c.
21952                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
21953
21954         2005-12-04  Bruno Haible  <bruno@clisp.org>
21955
21956                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
21957                 launcher (untested).
21958
21959         2005-12-04  Bruno Haible  <bruno@clisp.org>
21960
21961                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
21962
21963         2006-07-22  Bruno Haible  <bruno@clisp.org>
21964
21965                 * gettext.m4: Update from GNU gettext-0.15.
21966                 * nls.m4: Likewise.
21967                 * po.m4: Likewise.
21968                 * inttypes-pri.m4: Likewise.
21969                 * inttypes-h.m4: Renamed from inttypes.m4.
21970                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
21971
21972 2006-07-22  Bruno Haible  <bruno@clisp.org>
21973
21974         Merge from GNU gettext 0.15.
21975
21976         2005-07-05  Bruno Haible  <bruno@clisp.org>
21977
21978                 * printf-args.c (printf_fetchargs): Work around broken
21979                 definition of wint_t on mingw.
21980
21981         2005-02-12  Bruno Haible  <bruno@clisp.org>
21982
21983                 * xallocsa.h: Add extern "C" for C++.
21984
21985         2006-05-17  Bruno Haible  <bruno@clisp.org>
21986
21987                 Cygwin portability.
21988                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
21989
21990         2006-04-30  Bruno Haible  <bruno@clisp.org>
21991
21992                 * progreloc.c: Include <mach-o/dyld.h> if available.
21993                 (find_executable): Use _NSGetExecutablePath when possible.
21994
21995         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
21996
21997                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
21998                 function.
21999
22000         2005-12-29  Bruno Haible  <bruno@clisp.org>
22001
22002                 * progreloc.c (set_program_name_and_installdir): Fix
22003                 compilation error.
22004
22005         2005-12-04  Bruno Haible  <bruno@clisp.org>
22006
22007                 Cygwin portability.
22008                 * progreloc.c: Include <windows.h> also on Cygwin.
22009                 (find_executable): Add support for Cygwin.
22010                 (set_program_name_and_installdir): Handle also platforms with
22011                 nonempty EXEEXT.
22012
22013         2006-07-11  Bruno Haible  <bruno@clisp.org>
22014
22015                 * javacomp.c: Fix a comment.
22016                 Reported by Jim Meyering.
22017
22018         2006-04-30  Bruno Haible  <bruno@clisp.org>
22019
22020                 * javacomp.h (compile_java_class): Add source_version,
22021                 target_version arguments.
22022                 * javacomp.c: Rewritten to choose only a compiler that
22023                 respects the specified source_version and target_version.
22024
22025         2006-06-27  Bruno Haible  <bruno@clisp.org>
22026
22027                 Assume correct S_ISDIR macro.
22028                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
22029
22030         2006-07-22  Bruno Haible  <bruno@clisp.org>
22031
22032                 * javaversion.h: New file, from GNU gettext.
22033                 * javaversion.c: New file, from GNU gettext.
22034                 * javaversion.java: New file, from GNU gettext.
22035                 * javaversion.class: New file, from GNU gettext.
22036
22037         2006-05-17  Bruno Haible  <bruno@clisp.org>
22038
22039                 Cygwin portability.
22040                 * javaexec.c (execute_java_class): Test for jview program
22041                 also on Cygwin.
22042
22043         2006-04-09  Bruno Haible  <bruno@clisp.org>
22044
22045                 * fatal-signal.c: Don't include string.h.
22046                 (at_fatal_signal): Use a copying loop instead of memcpy.
22047
22048         2005-12-04  Bruno Haible  <bruno@clisp.org>
22049
22050                 * csharpexec.c: Add support for 'clix' launcher (untested).
22051                 (execute_csharp_using_sscli): New function.
22052                 (execute_csharp_program): Call it.
22053
22054         2006-06-21  Bruno Haible  <bruno@clisp.org>
22055
22056                 Avoid warnings from recent versions of mcs.
22057                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
22058                 -o, -L, -r any more. Use options documented since mcs-1.0
22059                 instead. Similarly for -g.
22060
22061         2005-07-09  Bruno Haible  <bruno@clisp.org>
22062
22063                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
22064                 add a .dll suffix.
22065                 Reported by Mark Junker <mjscod@gmx.de>.
22066
22067         2006-06-17  Bruno Haible  <bruno@clisp.org>
22068
22069                 * config.charset: Update for NetBSD 3.0.
22070
22071         2006-05-17  Bruno Haible  <bruno@clisp.org>
22072
22073                 Cygwin portability.
22074                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
22075
22076         2006-05-16  Bruno Haible  <bruno@clisp.org>
22077
22078                 * localcharset.c [CYGWIN]: Include <windows.h>.
22079                 (get_charset_aliases): For Cygwin, return the same CPxxx
22080                 aliases list as under WIN32.
22081                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
22082                 the environment variables. Fall back to GetACP().
22083
22084         2006-04-05  Bruno Haible  <bruno@clisp.org>
22085
22086                 * config.charset: Update Juan Manuel Guerrero's address.
22087
22088         2005-02-12  Bruno Haible  <bruno@clisp.org>
22089
22090                 * allocsa.h: Add extern "C" for C++.
22091
22092         2005-02-10  Bruno Haible  <bruno@clisp.org>
22093
22094                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
22095                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
22096
22097         2006-07-22  Bruno Haible  <bruno@clisp.org>
22098
22099                 * gettext.h: Update to GNU gettext-0.15.
22100
22101 2006-07-22  Bruno Haible  <bruno@clisp.org>
22102
22103         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
22104         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
22105         lib-prefix.m4, longdouble.m4, ssize_t.m4.
22106
22107 2006-07-21  Eric Blake  <ebb9@byu.net>
22108
22109         * modules/stdlib-safer: New file.
22110         * MODULES.html.sh (File stream based Input/Output): Add
22111         stdlib-safer.
22112
22113 2006-07-21  Eric Blake  <ebb9@byu.net>
22114
22115         * lib/stdlib-safer.h: New file from coreutils, required by
22116         stdlib--.h.
22117
22118 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
22119
22120         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
22121
22122 2006-07-20  Bruno Haible  <bruno@clisp.org>
22123
22124         * gnulib-tool: Recognize new option --assume-autoconf.
22125         (autoconf_minversion): New variable.
22126         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
22127
22128 2006-07-20  Bruno Haible  <bruno@clisp.org>
22129
22130         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
22131
22132 2006-07-19  Derek R. Price  <derek@ximbiot.com>
22133
22134         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
22135         Reindent and repaginate.
22136
22137 2006-07-19  Derek Price  <derek@ximbiot.com>
22138
22139         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
22140         Correct grammar.
22141
22142 2006-07-17  Bruno Haible  <bruno@clisp.org>
22143
22144         * modules/list: New file.
22145         * modules/array-list: New file.
22146         * modules/carray-list, modules/carray-list-tests: New files.
22147         * modules/linked-list, modules/linked-list-tests: New files.
22148         * modules/avltree-list, modules/avltree-list-tests: New files.
22149         * modules/rbtree-list, modules/rbtree-list-tests: New files.
22150         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
22151         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
22152         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
22153         * modules/oset: New file.
22154         * modules/array-oset: New file.
22155         * modules/avltree-oset, modules/avltree-oset-tests: New files.
22156         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
22157         * tests/test-carray_list.c: New file.
22158         * tests/test-linked_list.c: New file.
22159         * tests/test-avltree_list.c: New file.
22160         * tests/test-rbtree_list.c: New file.
22161         * tests/test-linkedhash_list.c: New file.
22162         * tests/test-avltreehash_list.c: New file.
22163         * tests/test-rbtreehash_list.c: New file.
22164         * tests/test-avltree_oset.c: New file.
22165         * tests/test-rbtree_oset.c: New file.
22166         * MODULES.html.sh (Container data structures): New section.
22167
22168 2006-07-17  Bruno Haible  <bruno@clisp.org>
22169
22170         * m4/gl_list.m4: New file.
22171
22172 2006-07-17  Bruno Haible  <bruno@clisp.org>
22173
22174         * lib/gl_list.h: New file.
22175         * lib/gl_list.c: New file.
22176         * lib/gl_array_list.h: New file.
22177         * lib/gl_array_list.c: New file.
22178         * lib/gl_carray_list.h: New file.
22179         * lib/gl_carray_list.c: New file.
22180         * lib/gl_linked_list.h: New file.
22181         * lib/gl_linked_list.c: New file.
22182         * lib/gl_anylinked_list1.h: New file.
22183         * lib/gl_anylinked_list2.h: New file.
22184         * lib/gl_avltree_list.h: New file.
22185         * lib/gl_avltree_list.c: New file.
22186         * lib/gl_anyavltree_list1.h: New file.
22187         * lib/gl_anyavltree_list2.h: New file.
22188         * lib/gl_rbtree_list.h: New file.
22189         * lib/gl_rbtree_list.c: New file.
22190         * lib/gl_anyrbtree_list1.h: New file.
22191         * lib/gl_anyrbtree_list2.h: New file.
22192         * lib/gl_anytree_list1.h: New file.
22193         * lib/gl_anytree_list2.h: New file.
22194         * lib/gl_linkedhash_list.h: New file.
22195         * lib/gl_linkedhash_list.c: New file.
22196         * lib/gl_anyhash_list1.h: New file.
22197         * lib/gl_anyhash_list2.h: New file.
22198         * lib/gl_avltreehash_list.h: New file.
22199         * lib/gl_avltreehash_list.c: New file.
22200         * lib/gl_rbtreehash_list.h: New file.
22201         * lib/gl_rbtreehash_list.c: New file.
22202         * lib/gl_anytreehash_list1.h: New file.
22203         * lib/gl_anytreehash_list2.h: New file.
22204
22205         * lib/gl_oset.h: New file.
22206         * lib/gl_oset.c: New file.
22207         * lib/gl_array_oset.h: New file.
22208         * lib/gl_array_oset.c: New file.
22209         * lib/gl_avltree_oset.h: New file.
22210         * lib/gl_avltree_oset.c: New file.
22211         * lib/gl_rbtree_oset.h: New file.
22212         * lib/gl_rbtree_oset.c: New file.
22213         * lib/gl_anytree_oset.h: New file.
22214
22215 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
22216
22217         * m4/mkancesdirs.m4: New file.
22218         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
22219         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
22220         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
22221         it.
22222
22223 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
22224
22225         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
22226         * lib/mkancesdirs.h: New files.
22227         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
22228         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
22229         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
22230         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
22231         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
22232         callers changed.  Revamp internals significantly, by not
22233         attempting to create directories that are temporarily more
22234         permissive than the final results.  Do not attempt to use
22235         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
22236         This removes some race conditions, fixes some bugs, and simplifies
22237         things.  Use new dirchownmod function to do owner and mode changes.
22238         * lib/mkdir-p.h: Likewise.
22239         * lib/modechange.c (octal_to_mode): New function.
22240         (struct mode_change): New member mentioned.
22241         (make_node_op_equals): New arg mentioned.  All callers changed.
22242         (mode_compile): Keep track of which mode bits the user has explicitly
22243         mentioned.
22244         (mode_adjust): New arg DIR, so that we implement the X op correctly.
22245         New arg PMODE_BITS, to keep track of which mode bits the user
22246         mentioned; it treats S_ISUID and S_ISGID speciall.
22247         All callers changed.
22248         * lib/modechange.h: Likewise.
22249
22250 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
22251
22252         * MODULES.html.sh: Add mkancestors.
22253         * modules/mkancesdirs: New module.
22254         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
22255         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
22256         The chdir-safer and afs files are now orphans; I'll remove them
22257         unless someone speaks up.
22258         Add lib/dirchownmod.c, lib/dirchownmod.h.
22259         (Depends-on): Remove alloca, chown, save-cwd, dirname.
22260         Add lchown, mkancesdirs.
22261         (Maintainer): Add self.
22262
22263 2006-07-15  Karl Berry  <karl@gnu.org>
22264
22265         * gnulib-tool: help message wording/arrangement.
22266
22267 2006-07-14  Simon Josefsson  <jas@extundo.com>
22268
22269         * doc/gnulib.texi (Libtool and Windows): New section.
22270
22271 2006-07-12  Simon Josefsson  <jas@extundo.com>
22272
22273         * modules/gendocs (License): Fix license, approved by Karl.
22274
22275 2006-07-12  Eric Blake  <ebb9@byu.net>
22276
22277         * MODULES.html.sh: Add gendocs.
22278
22279 2006-07-11  Eric Blake  <ebb9@byu.net>
22280
22281         * modules/fdl: New module, to install doc/fdl.texi.
22282         * MODULES.html.sh: Add new section for documentation modules.
22283         * gnulib-tool: Avoid space-tab.
22284         (--doc-base): New option, to manage files from doc.
22285
22286 2006-07-11  Eric Blake  <ebb9@byu.net>
22287
22288         * m4/absolute-header.m4: Fix comments to match recent change.
22289
22290 2006-07-11  Eric Blake  <ebb9@byu.net>
22291
22292         * gnulib-tool: List --doc-base before --tests-base.
22293
22294 2006-07-11  Derek R. Price  <derek@ximbiot.com>
22295
22296         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
22297
22298 2006-07-11  Bruno Haible  <bruno@clisp.org>
22299
22300         * README: Mention where to put documentation.
22301
22302 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22303
22304         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
22305
22306 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
22307
22308         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
22309         to stdint.m4.
22310
22311 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
22312
22313         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
22314         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
22315         "no/such/file/stdint.h" when there is no such file, so that
22316         the resulting C code can be parsed by dodgy compilers.
22317         Problems reported by Bob Proulx.
22318
22319 2006-07-10  Derek R. Price  <derek@ximbiot.com>
22320
22321         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
22322         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
22323         macros into the GNU _D_EXACT_NAMLEN.
22324         * lib/savedir.c:  Likewise.
22325         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
22326
22327 2006-07-10  Derek R. Price  <derek@ximbiot.com>
22328         and Paul Eggert  <eggert@cs.ucla.edu>
22329
22330         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
22331         * m4/savedir.m4:
22332         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
22333         macros into the GNU _D_EXACT_NAMLEN.
22334
22335 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22336
22337         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
22338         around the absolute name, to work around a problem with the HP-UX
22339         11.23 native C compiler, reported by Bob Proulx.
22340
22341 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22342
22343         * doc/maintain.texi, make-stds.texi: Sync from
22344         <http://savannah.gnu.org/projects/gnustandards>.
22345
22346 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22347
22348         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
22349
22350 2006-07-09  Jim Meyering  <jim@meyering.net>
22351
22352         * m4/glob.m4: Remove a doubled word in a comment.
22353
22354 2006-07-09  Jim Meyering  <jim@meyering.net>
22355
22356         * lib/argp-pv.c: Remove a doubled word in a comment.
22357         * lib/check-version.c (check_version): Likewise.
22358         * lib/javacomp.c (compile_java_class): Likewise.
22359
22360 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
22361
22362         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
22363         for the benefit of people using Autoconf 2.60.  If you want to
22364         support older Autoconf versions you can copy m4/onceonly_2_57.m4
22365         (or m4/onceonly.m4, if pre-2.57) manually.
22366
22367 2006-07-08  Jim Meyering  <jim@meyering.net>
22368
22369         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
22370         comment.
22371         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
22372         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
22373         comment.
22374
22375 2006-07-08  Jim Meyering  <jim@meyering.net>
22376
22377         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
22378
22379 2006-07-07  Simon Josefsson  <jas@extundo.com>
22380
22381         * tests/test-crc.c: Change expected crc value, the test vector
22382         were probably computed using the old broken crc.c?
22383
22384 2006-07-06  Simon Josefsson  <jas@extundo.com>
22385
22386         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
22387         now the canonical place for the M4 file).
22388
22389         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
22390         from the sys_socket dependency now.
22391
22392         * modules/inet_pton (Files): Ditto.
22393
22394         * modules/inet_ntop (Files): Ditto.
22395
22396 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
22397
22398         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
22399         not gl_PREREQ_GETUSERSHELL.
22400
22401 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22402
22403         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
22404         with only one argument, for Autoconf 2.60.
22405         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
22406         expand to nothing, so add a shell command to avoid syntax error.
22407         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
22408
22409 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22410
22411         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
22412
22413 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
22414
22415         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
22416         no longer needed.  Check for isblank decl.
22417         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
22418         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
22419         of existence.
22420
22421 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
22422
22423         * lib/getloadavg.c: Use __VMS, not VMS.
22424         * lib/getopt.c: Likewise.
22425         * lib/getpagesize.h: Likewise.
22426         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
22427         and probably does not work.
22428
22429 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
22430
22431         * lib/.cppi-disable: Add wcwidth.
22432         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
22433         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
22434         (ISGRAPH): Remove.  All uses changed to isgraph.
22435         (FOLD) [!defined _LIBC]: Remove special case.
22436         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
22437         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
22438         HAVE_ISBLANK.
22439         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
22440         case.
22441
22442 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
22443
22444         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
22445         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
22446         brackets.  Other minor changes to suppress some compiler
22447         warnings.
22448
22449 2006-07-06  Derek R. Price  <derek@ximbiot.com>
22450         and Paul Eggert  <eggert@cs.ucla.edu>
22451
22452         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
22453         of invoking obsolescent AC_HEADER_DIRENT macro.
22454         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
22455         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
22456         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
22457         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
22458         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
22459         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
22460         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
22461         * m4/readdir.m4: Remove; no longer needed.
22462
22463 2006-07-06  Derek R. Price  <derek@ximbiot.com>
22464         and Paul Eggert  <eggert@cs.ucla.edu>
22465
22466         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
22467         Don't worry about this obsolete case any more.
22468         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
22469         directories.
22470         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
22471         worry about this obsolete case any more.
22472         * lib/fts.c: Likewise.
22473         * lib/getcwd.c: Likewise.
22474         * lib/glob.h: Likewise.
22475         * lib/savedir.c: Likewise.
22476
22477 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
22478
22479         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
22480         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
22481         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
22482         needed.
22483         All uses removed.
22484         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
22485         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
22486         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
22487         needed.
22488         * m4/getdate.m4 (gl_GETDATE): Likewise.
22489         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
22490         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
22491         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
22492         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
22493         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
22494         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
22495         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
22496         needed.
22497
22498 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
22499
22500         * lib/memcasecmp.c: Include <limits.h>.
22501         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
22502         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
22503         Don't assume isdigit succeeds only on '0' through '9'.
22504
22505 2006-07-05  Eric Blake  <ebb9@byu.net>
22506
22507         * modules/getaddrinfo (Depends-on): Add snprintf.
22508
22509 2006-07-05  Eric Blake  <ebb9@byu.net>
22510
22511         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
22512         to avoid 'header present but could not be compiled' on cygwin.
22513
22514 2006-07-05  Eric Blake  <ebb9@byu.net>
22515
22516         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
22517         missing from netdb.h.
22518         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
22519
22520 2006-07-05  Derek R. Price  <derek@ximbiot.com>
22521
22522         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
22523         no longer needed.
22524         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
22525         * m4/getdate.m4 (gl_GETDATE): Likewise.
22526         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
22527         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
22528         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
22529         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
22530         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
22531
22532 2006-07-05  Derek R. Price  <derek@ximbiot.com>
22533
22534         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
22535         All uses of is_space replaced by isspace.
22536         * lib/exit.h: Don't talk about STDC_HEADERS.
22537         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
22538         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
22539         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
22540         replaced by isprint etc.
22541         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
22542         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
22543         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
22544         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
22545         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
22546         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
22547
22548 2006-07-05  Bruno Haible  <bruno@clisp.org>
22549
22550         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
22551         the function exists, before testing against AIX.
22552         Reported by Martin Lambers <marlam@marlam.de>.
22553
22554 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
22555
22556         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
22557         From Mark D. Baushke.
22558
22559 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
22560
22561         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
22562         to the absolute name, not just one, to bypass Sun C 5.8's
22563         "warning: #include of /usr/include/... may be non-portable".
22564
22565 2006-07-04  Eric Blake  <ebb9@byu.net>
22566
22567         * modules/dirname-tests: New test module.
22568         * tests/test-dirname.c: New file, replacing dirname.c
22569         TEST_DIRNAME section that was recently deleted.
22570
22571 2006-07-04  Bruno Haible  <bruno@clisp.org>
22572
22573         Assume ANSI C header files and <ctype.h> functions.
22574         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
22575         (mbsnwidth): Use isprint, iscntrl instead.
22576
22577 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
22578
22579         Merge from coreutils.
22580         * MODULES.html.sh: Add xstrtold.
22581         * modules/xstrtold: New file.
22582         * modules/cycle-check (Files): Add lib/same-inode.h.
22583         * modules/dirname (Files): Add m4/double-slash-root.m4.
22584         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
22585         * modules/mkdir-p (Files): Add lib/same-inode.h.
22586         * modules/same (Files): Add lib/same-inode.h.
22587
22588 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
22589
22590         * m4/absolute-header.m4: Renamed from full-header-path.m4.
22591         This is to keep the terminology clean; POSIX talks about
22592         "absolute pathnames", not "full pathnames", but the GNU
22593         Coding Standards say to use "path" for something else;
22594         so use "absolute" to keep both sides happy.
22595         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
22596         Set gl_absolute_header, not gl_full_header_path.
22597         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
22598         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
22599         All uses changed.
22600
22601         Merge from coreutils.
22602
22603         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
22604
22605         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
22606         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
22607         want to require the building of c-strtod.o.
22608         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
22609         needs -lm directly.
22610         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
22611
22612         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
22613
22614         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
22615         --as-needed option if available.  Problem reported by Albert Chin in
22616         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
22617         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
22618         cc merely issues a bunch of annoying warnings for --as-needed
22619         (this problem was reported by Bob Proulx).  Also, try linking with
22620         -lm to detect a bug in binutils 2.16 (this problem was reported
22621         by Ralf Wildenhues).
22622
22623         2006-06-18  Jim Meyering  <jim@meyering.net>
22624
22625         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
22626         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
22627         macro.
22628         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
22629         also check for glibc-2.4's abort-inducing bug.
22630
22631         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
22632         Low-probability clean-up should be to use rmdir to get rid of
22633         the just-created directory, not unlink.
22634
22635         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
22636         configure fail, and request a bug report to inform us about it.
22637         Add a comment that, barring reports to the contrary, in 2007 we'll
22638         assume ftruncate is universally available.
22639
22640         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
22641
22642         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
22643
22644         2006-03-12  Jim Meyering  <jim@meyering.net>
22645
22646         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
22647         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
22648         * m4/same.m4 (gl_SAME): Likewise.
22649         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
22650
22651         2006-03-11  Eric Blake  <ebb9@byu.net>
22652
22653         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
22654         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
22655         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
22656         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
22657
22658 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
22659
22660         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
22661         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
22662         reported by Mark D. Baushke, one in
22663         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
22664
22665         Merge from coreutils.
22666
22667         * lib/.cppi-disable: Add stdint_.h.
22668         * lib/.cvsignore: Add stdint.h.
22669
22670         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
22671
22672         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
22673         both double and long double versions.
22674         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
22675         * lib/xstrtold.c: New file.
22676         * lib/xstrtod.h (xstrtold): New decl.
22677
22678         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
22679
22680         * lib/filemode.c (setst): Remove.
22681         (strmode): Rewrite to avoid setst.  This makes the code shorter,
22682         (arguably) clearer, and the generated code is a bit smaller on my
22683         Debian GNU/Linux stable x86 host.
22684
22685         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
22686
22687         * lib/filemode.c: Include "filemode.h" first, to test the interface.
22688         Assume that filemode.h includes sys/types.h and sys/stat.h.
22689         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
22690         (ftypelet): Reorder to put common cases first, for efficiency.
22691         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
22692         to do 'M'.
22693         (strmode): Renamed from mode_string, and now stores 12 bytes instead
22694         of 10, for compatibility with FreeBSD.  All callers changed.
22695         (filemodestring): Now stores 12 bytes instead of 10, and sets file
22696         types that can't be deduced solely from st_mode.  First arg is now a
22697         const pointer.
22698         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
22699         (strmode): Renamed from mode_string.
22700         (filemodestring): New decl.
22701         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
22702         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
22703         needed.
22704         (S_ISPORT, S_ISWHT): New macros, if not already defined.
22705
22706         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
22707
22708         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
22709         fsusage.h now does that.  Include fsusage.h first, to test interface.
22710         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
22711         at most one method (the old code could have generated decls that
22712         didn't conform to C89, not that this was ever exercised).
22713         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
22714
22715         2006-03-19  Jim Meyering  <jim@meyering.net>
22716
22717         Work even in a chroot where d_ino values for entries in "/"
22718         don't match the stat.st_ino values for the same names.
22719         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
22720         number, iterate through all entries again, using lstat instead.
22721         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
22722         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
22723
22724         * lib/getcwd.c (__getcwd): Clarify a comment.
22725         Use memcpy in place of a call to strcpy.
22726
22727         2006-03-12  Jim Meyering  <jim@meyering.net>
22728
22729         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
22730         matches that of the current directory (which we're about to chdir ".."
22731         out of), then save the dev-ino of the parent, instead.
22732
22733         * lib/same-inode.h (SAME_INODE): New file/macro.
22734         * lib/chdir-safer.c (SAME_INODE): Remove definition.
22735         Include "same-inode.h", instead.
22736         * lib/same.c: Likewise.
22737         * lib/cycle-check.h: Include "same-inode.h".
22738         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
22739         * lib/cycle-check.c (SAME_INODE): Remove definition.
22740         * lib/root-dev-ino.h: Include "same-inode.h".
22741
22742         2006-03-11  Eric Blake  <ebb9@byu.net>
22743
22744         * lib/same.c (same_name): s/base_name/last_component/
22745         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
22746         * lib/filenamecat.c (file_name_concat): Likewise.
22747
22748         2006-03-11  Eric Blake  <ebb9@byu.net>,
22749                     Paul Eggert  <eggert@cs.ucla.edu>
22750
22751         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
22752         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
22753         drive prefix.
22754         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
22755         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
22756         (last_component): New method.
22757         * lib/dirname.c (dir_len): Determine when drive letters need a
22758         subsequent slash.  Preserve // when it is special.
22759         (dir_name): Don't append dot when drive letter is absolute.
22760         [TEST_DIRNAME]: Move into a full-blown gnulib test.
22761         * lib/basename.c (base_name): New semantics - malloc the result.
22762         Preserve // when it is special.  Preserve relative files that look
22763         like drive letters.
22764         (base_len): Preserve // when it is special.
22765         (last_component): New method, similar to old base_name semantics.
22766         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
22767         base_name.  Strip redundant slashes from ///.
22768
22769 2006-07-03  Jim Meyering  <jim@meyering.net>
22770
22771         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
22772         macro is used before the first cycle_check call.
22773
22774 2006-07-03  Eric Blake  <ebb9@byu.net>
22775
22776         * modules/dirname (Depends-on): Add xstrndup.
22777
22778 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
22779
22780         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
22781         test cases, so that config.log is a bit easier to follow.
22782
22783 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
22784
22785         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
22786         both are 64 bits, since this seems to be the tradition, and this
22787         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
22788         we ever run into a host that prefers long long to long in this
22789         case, we'll need another configure-time test.  Problem reported by
22790         Jim Meyering.
22791
22792 2006-07-02  Eric Blake  <ebb9@byu.net>
22793
22794         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
22795
22796 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
22797
22798         * modules/inttypes (Depends-on): No longer depends on stdint.
22799         * modules/stdint (Description): Say more about assumptions.
22800         Say that the fast types might differ.  Say macros are used.
22801         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
22802         (Makefile.am): Revise list of substituted symbols to match
22803         new stdint.m4.
22804         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
22805         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
22806         * tests/test-stdint.c (verify_same_types)
22807         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
22808         the code conforms to C99/C89.
22809         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
22810         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
22811
22812 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
22813
22814         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
22815         but fix a bug, by requiring at least 64 bits.
22816         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
22817         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
22818         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
22819         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
22820
22821         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
22822         changes.  Make 2.59 a prerequisite.  Check and substitute for
22823         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
22824         inttypes.h.  Do not use special include files; just use the
22825         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
22826         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
22827         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
22828         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
22829         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
22830         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
22831         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
22832         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
22833         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
22834         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
22835         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
22836         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
22837         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
22838         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
22839         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
22840         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
22841         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
22842         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
22843         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
22844         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
22845         WINT_MAX.  Check for C99 conformance more strictly, by detecting
22846         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
22847         not check for things that C99 does not require, e.g., int8_t.  If
22848         a test isn't needed unless <stdint.h> isn't working, and is
22849         unlikely to be needed for any other reason, then don't do it
22850         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
22851         size_t, since we assume C89 freestanding at least.  Do not check
22852         for sig_atomic_t, wchar_t, or wint_t, since the code now does
22853         the right thing even if the types are not defined.  Instead use:
22854         (gl_STDINT_TYPE_PROPERTIES): New macro.
22855         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
22856         testing whether <sys/types.h> clashes, as Autoconf does this for
22857         us now.  All uses removed.
22858         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
22859         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
22860         (gl_CHECK_TYPE_SAME):
22861         Remove; no longer needed.
22862         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
22863         exists, since we'll return 0 anyway in that case.
22864         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
22865
22866 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
22867
22868         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
22869         possible collision with system files.
22870         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
22871         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
22872         WCHAR_MIN and WCHAR_MAX in this case.
22873         (<stddef.h>): Do not include; no longer needed.
22874         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
22875         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
22876         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
22877         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
22878         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
22879         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
22880         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
22881         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
22882         !defined(__c99))]: Include in this case too, since it's harmless
22883         now.
22884         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
22885         dangerous to do so.
22886         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
22887         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
22888         (_STDINT_MIN, _STDINT_MAX): New macros.
22889         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
22890         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
22891         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
22892         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
22893         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
22894         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
22895         macros, not typedefs; this simplifies things quite a bit.
22896         Use long int for all types narrower than int64_t.
22897         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
22898         Define in terms of long long int or int64_t or long int,
22899         not int64_t or int32_t.  This saves some compile-time testing.
22900         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
22901         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
22902         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
22903         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
22904         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
22905         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
22906         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
22907         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
22908         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
22909         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
22910         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
22911         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
22912         undef any previous version and define our own version, for
22913         simplicity and consistency with the new macros for types.
22914         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
22915         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
22916         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
22917         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
22918         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
22919         @WINT_T_SUFFIX@ to keep things simple here.
22920         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
22921         Simplify by assuming typical 8/16/32/64 host, since we're
22922         already doing that elsewhere anyway.
22923         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
22924         and assume long long int is 64 bits if available.  This
22925         speeds up 'configure'.
22926
22927 2006-07-01  Eric Blake  <ebb9@byu.net>
22928
22929         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
22930         Reported by Andreas Buening.
22931
22932 2006-07-01  Eric Blake  <ebb9@byu.net>
22933
22934         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
22935
22936 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
22937
22938         * lib/getaddrinfo.c: fixed typo
22939
22940 2006-06-29  Jim Meyering  <jim@meyering.net>
22941
22942         * modules/strftime (Maintainer): Add my name, since with the
22943         FPRINTFTIME changes strftime.c has forked from glibc.
22944
22945 2006-06-29  Eric Blake  <ebb9@byu.net>
22946
22947         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
22948
22949 2006-06-29  Eric Blake  <ebb9@byu.net>
22950
22951         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
22952
22953 2006-06-29  Eric Blake  <ebb9@byu.net>
22954
22955         * lib/stat_.h: New file.
22956
22957 2006-06-29  Eric Blake  <ebb9@byu.net>
22958
22959         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
22960         unused static function.
22961
22962 2006-06-29  Eric Blake  <ebb9@byu.net>
22963
22964         * doc/functions.texi (Function Portability): Document missing lstat
22965         on mingw.
22966
22967 2006-06-29  Eric Blake  <ebb9@byu.net>
22968
22969         * MODULES.html.sh: Add sys_stat.
22970         * modules/sys_stat: New module.
22971         * modules/mkstemp (Depends-on): Add sys_stat.
22972
22973 2006-06-29  Derek R. Price  <derek@ximbiot.com>
22974
22975         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
22976
22977 2006-06-29  Derek R. Price  <derek@ximbiot.com>
22978
22979         * m4/c-bs-a.m4: Removed.
22980
22981 2006-06-29  Derek R. Price  <derek@ximbiot.com>
22982
22983         * lib/strftime.c: Assume strftime() exists.
22984
22985 2006-06-29  Derek Price  <derek@ximbiot.com>
22986
22987         * modules/c-bs-a: Removed - \a is C89.
22988         * MODULES.html.sh: Remove c-bs-a.
22989
22990 2006-06-29  Bruno Haible  <bruno@clisp.org>
22991
22992         * modules/wcwidth (License): Change to LGPL.
22993
22994 2006-06-28  Simon Josefsson  <jas@extundo.com>
22995
22996         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
22997         on _WIN32.
22998
22999         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
23000         getnameinfo.
23001
23002 2006-06-28  Simon Josefsson  <jas@extundo.com>
23003
23004         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
23005
23006 2006-06-28  Simon Josefsson  <jas@extundo.com>
23007
23008         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
23009         functions there.  It will succeed on Windows XP, but on Windows
23010         2000 and (presumably) earlier, it will fail, and use the internal
23011         re-implementation.
23012         (use_win32_p): New function.
23013         (getaddrinfo): Use strtoul on servname, to support numeric ports.
23014         Support AI_NUMERICSERV to disable getservbyname.
23015         (getnameinfo): New function, only supports
23016         NI_NUMERICHOST|NI_NUMERICSERV for now.
23017
23018         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
23019         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
23020         getnameinfo.
23021
23022 2006-06-28  Eric Blake  <ebb9@byu.net>
23023
23024         * modules/wcwidth: New file.
23025         * modules/mbchar (Depends-on): Add wcwidth.
23026         * modules/mbswidth (Depends-on): Add wcwidth.
23027         * MODULES.html.sh: Add wcwidth.
23028
23029 2006-06-28  Eric Blake  <ebb9@byu.net>
23030
23031         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
23032         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
23033
23034 2006-06-28  Eric Blake  <ebb9@byu.net>
23035
23036         * lib/xvasprintf.h: Fix comments.
23037
23038 2006-06-28  Eric Blake  <ebb9@byu.net>
23039
23040         * lib/mbchar.h (wcwidth): Include wcwidth.h.
23041         * lib/mbswidth.c (wcwidth): Move from here...
23042         * lib/wcwidth.h: ...to this new file.
23043
23044 2006-06-28  Derek R. Price  <derek@ximbiot.com>
23045
23046         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
23047
23048         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
23049         it's obsolete.
23050         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
23051
23052 2006-06-28  Derek R. Price  <derek@ximbiot.com>
23053
23054         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
23055         Autoconf 2.60 says this stuff was obsolete.
23056
23057 2006-06-28  Bruno Haible  <bruno@clisp.org>
23058
23059         * modules/wcwidth (Files): Add m4/wchar_t.m4.
23060
23061 2006-06-28  Bruno Haible  <bruno@clisp.org>
23062
23063         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
23064         gt_TYPE_WCHAR_T.
23065
23066 2006-06-28  Bruno Haible  <bruno@clisp.org>
23067
23068         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
23069         declaration for wcwidth.
23070         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
23071
23072 2006-06-28  Bruno Haible  <bruno@clisp.org>
23073
23074         * lib/mkdtemp.c [MINGW]: Include <io.h>.
23075         (mkdir): Define using _mkdir.
23076
23077 2006-06-28  Bruno Haible  <bruno@clisp.org>
23078
23079         * lib/getaddrinfo.h: Fix POSIX URL.
23080         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
23081         _WIN32.
23082         (use_win32_p): Make static.
23083         (getaddrinfo): Reject service name if it is empty or does not consist
23084         solely of decimal digits, or if its value is > 65535.
23085         (getnameinfo): Remove useless casts.
23086
23087 2006-06-27  Simon Josefsson  <jas@extundo.com>
23088
23089         * modules/sys_select: New file, suggested by Bruno Haible, Paul
23090         Eggert and Martin Lambers.
23091
23092 2006-06-27  Simon Josefsson  <jas@extundo.com>
23093
23094         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
23095         Eggert and Martin Lambers.
23096
23097 2006-06-27  Bruno Haible  <bruno@clisp.org>
23098
23099         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
23100         result to 0, not to empty.
23101         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
23102
23103 2006-06-27  Bruno Haible  <bruno@clisp.org>
23104
23105         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
23106
23107 2006-06-26  Simon Josefsson  <jas@extundo.com>
23108
23109         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
23110         present.
23111
23112 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
23113
23114         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
23115         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
23116         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
23117
23118 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
23119
23120         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
23121
23122 2006-06-26  Bruno Haible  <bruno@clisp.org>
23123
23124         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
23125
23126 2006-06-26  Bruno Haible  <bruno@clisp.org>
23127
23128         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
23129
23130 2006-06-26  Bruno Haible  <bruno@clisp.org>
23131
23132         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
23133         SGI C compiler in pre-C99 mode.
23134         Suggested by Mark D. Baushke and Larry Jones.
23135
23136 2006-06-26  Bruno Haible  <bruno@clisp.org>
23137
23138         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
23139         WCHAR_MAX.
23140         Reported by Mark D. Baushke and Larry Jones.
23141
23142 2006-06-26  Bruno Haible  <bruno@clisp.org>
23143
23144         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
23145         in pre-C99 mode.
23146         Suggested by Mark D. Baushke and Larry Jones.
23147
23148 2006-06-23  Simon Josefsson  <jas@extundo.com>
23149             Bruno Haible  <bruno@clisp.org>
23150
23151         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
23152         Emit mostlyclean-local rule.
23153         (func_emit_tests_Makefile_am): Likewise.
23154         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
23155
23156 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
23157
23158         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
23159
23160 2006-06-23  Bruno Haible  <bruno@clisp.org>
23161
23162         * tests/test-stdint.c: Update to match ISO C 99 Technical
23163         Corrigendum 1.
23164
23165 2006-06-23  Bruno Haible  <bruno@clisp.org>
23166
23167         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
23168
23169 2006-06-23  Bruno Haible  <bruno@clisp.org>
23170
23171         * lib/stdint_.h: Treat IRIX like OpenBSD.
23172
23173 2006-06-23  Bruno Haible  <bruno@clisp.org>
23174
23175         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
23176         ISO C 99 Technical Corrigendum 1.
23177
23178 2006-06-22  Simon Josefsson  <jas@extundo.com>
23179
23180         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
23181         MinGW.
23182
23183 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
23184
23185         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
23186         needed.  Some compiler complained about some of them.  Problem reported
23187         by Larry Jones in
23188         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
23189
23190 2006-06-21  Simon Josefsson  <jas@extundo.com>
23191
23192         * tests/test-getaddrinfo.c: New file.
23193
23194         * modules/getaddrinfo-tests: New file.
23195
23196         * MODULES.html.sh: Add inet_pton.
23197
23198         * modules/inet_pton: New file.
23199
23200 2006-06-21  Simon Josefsson  <jas@extundo.com>
23201
23202         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
23203         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
23204         of using the (limited) gnulib implementation on Windows XP.
23205
23206         * m4/inet_pton.m4: New file.
23207
23208 2006-06-21  Simon Josefsson  <jas@extundo.com>
23209
23210         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
23211         variable.
23212
23213         * lib/socket_.h: Don't define WINVER.
23214
23215         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
23216         slightly modified to work in gnulib.
23217
23218 2006-06-21  Simon Josefsson  <jas@extundo.com>
23219
23220         * doc/gnulib.texi (Windows sockets): Add.
23221
23222 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
23223
23224         * lib/read-file.c (fread_file): Start with buffer allocation of
23225         0 bytes rather than 1 byte; this simplifies the code.
23226         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
23227         code to free buffer and save/restore errno.
23228         (internal_read_file): Remove unused local.
23229
23230 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
23231
23232         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
23233         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
23234         Problem reported by Denis Excoffier in
23235         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
23236
23237 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23238
23239         * modules/sys_socket, modules/socklen: Include sys/types since
23240         FreeBSD 4.x's sys/socket.h needs it.
23241
23242 2006-06-19  Simon Josefsson  <jas@extundo.com>
23243
23244         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
23245
23246 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
23247
23248         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
23249
23250 2006-06-19  Bruno Haible  <bruno@clisp.org>
23251
23252         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
23253         and FULL_PATH_INTTYPES_H in angle brackets.
23254         Reported by Mark D. Baushke <mdb@gnu.org>.
23255
23256 2006-06-17  Eric Blake  <ebb9@byu.net>
23257
23258         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
23259         errno.
23260
23261 2006-06-17  Bruno Haible  <bruno@clisp.org>
23262
23263         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
23264         <sys/inttypes.h>.
23265
23266 2006-06-17  Bruno Haible  <bruno@clisp.org>
23267
23268         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
23269         whether errno is declared. Assume <errno.h> declares errno.
23270
23271 2006-06-17  Bruno Haible  <bruno@clisp.org>
23272
23273         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
23274
23275 2006-06-17  Bruno Haible  <bruno@clisp.org>
23276
23277         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
23278         problem on Solaris 2.5.1.
23279
23280 2006-06-16  Eric Blake  <ebb9@byu.net>
23281
23282         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
23283         * lib/unicodeio.c [!defined errno]: Likewise.
23284         * lib/strtol.c [!defined errno]: Likewise.
23285         * lib/strtod.c [!defined errno]: Likewise.
23286
23287 2006-06-15  Eric Blake  <ebb9@byu.net>
23288
23289         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
23290
23291 2006-06-15  Eric Blake  <ebb9@byu.net>
23292
23293         * config/srclist.txt (ssize_t.m4): Lose sync.
23294
23295 2006-06-15  Bruno Haible  <bruno@clisp.org>
23296
23297         * modules/stdint (Files): Include m4/full-header-path.m4,
23298         m4/size_max.m4, m4/wchar_t.m4.
23299         (Makefile.am): Many more substitutions.
23300         * modules/stdint-tests: New file.
23301         * tests/test-stdint.c: New file.
23302
23303 2006-06-15  Bruno Haible  <bruno@clisp.org>
23304
23305         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
23306         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
23307         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
23308         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
23309         gl_CHECK_TYPE_SAME): New macros.
23310
23311 2006-06-15  Bruno Haible  <bruno@clisp.org>
23312
23313         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
23314
23315 2006-06-15  Bruno Haible  <bruno@clisp.org>
23316
23317         * lib/stdint_.h: Rewritten to be fully auto-configured.
23318         Fixes bug on HP-UX/IA64.
23319
23320 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
23321
23322         * lib/getdate.y (__attribute__): Don't define if already defined.
23323         Problem reported by Larry Jones.
23324         * lib/utimens.c (__attribute__): Likewise.
23325
23326 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
23327
23328         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
23329         reported by Andreas Schwab.
23330
23331 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23332             Bruno Haible  <bruno@clisp.org>
23333
23334         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
23335         check for the declaration of strnlen and a run test that exposes the
23336         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
23337         rpl_strndup.
23338
23339 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23340             Bruno Haible  <bruno@clisp.org>
23341
23342         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
23343
23344 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23345
23346         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
23347         compile test, for Tru64 4.0D.
23348
23349 2006-05-28  Karl Berry  <karl@gnu.org>
23350
23351         * config/srclist.txt (printf-args.c): lose sync.
23352
23353 2006-05-26  Martin Lambers  <marlam@marlam.de>
23354
23355         * lib/getpass.c: Updates the test for the native W32 API, and adds
23356         missing includes, thus fixing compilation warnings.
23357
23358 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
23359
23360         * lib/exclude.c (exclude_fnmatch): New function.
23361         (excluded_file_name): Call exclude_fnmatch.
23362         * lib/exclude.h (excluded_file_name): New prototype
23363
23364 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
23365
23366         * lib/tempname.c (small_open, large_open): New macros.
23367         (__open, __open64) [!_LIBC]: Remove.
23368         (__gen_tempname): Use small_open and large_open instead of __open
23369         and __open64.  This fixes a portability bug on HP-UX 11.11i
23370         reported by Simon Wing-Tang in
23371         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
23372
23373 2006-05-24  Bruno Haible  <bruno@clisp.org>
23374
23375         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
23376         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
23377         Reported by Thorsten Maerz <torte@netztorte.de> via
23378         Aaron Stone <aaron@serendipity.cx>.
23379
23380 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
23381
23382         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
23383         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
23384         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
23385         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
23386         not really conditional on the cache.
23387         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
23388
23389 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
23390
23391         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
23392         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
23393         (my_usleep): Don't mishandle maximum value.
23394
23395 2006-05-19  Jim Meyering  <jim@meyering.net>
23396
23397         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
23398
23399 2006-05-17  Bruno Haible  <bruno@clisp.org>
23400
23401         Cygwin portability.
23402         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
23403
23404 2006-05-17  Bruno Haible  <bruno@clisp.org>
23405
23406         * lib/stdint_.h: Fix recognition of Cygwin.
23407
23408 2006-05-15  Bruno Haible  <bruno@clisp.org>
23409
23410         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
23411         on libtool patch by Ralf Wildenhues.
23412
23413 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
23414
23415         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
23416         test for C99 conformance; (bool) 0.5 is an integer constant
23417         expression, but (bool) -0.5 is not.  Problem reported by Fedor
23418         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
23419
23420 2006-05-11  Simon Josefsson  <jas@extundo.com>
23421
23422         * m4/xvasprintf.m4: Fix obvious typo.
23423
23424 2006-05-11  Jim Meyering  <jim@meyering.net>
23425
23426         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
23427         James Lemley.
23428
23429 2006-05-10  Simon Josefsson  <jas@extundo.com>
23430
23431         * lib/md4.c: Typo fix, update copyright years.
23432         (K1, K2): Don't use L because it turn computations into 64-bit on
23433         64-bit platforms.
23434
23435 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
23436
23437         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
23438         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
23439         unwanted sign propagation, e.g., on hosts with 64-bit int.
23440         There still are some problems with reeelly weird theoretical hosts
23441         (e.g., 33-bit int) but it's not worth worrying about now.
23442         * lib/sha1.c (rol): Likewise.
23443         (K1, K2, K3, K4): Remove unnecessary L suffix.
23444
23445 2006-05-10  Bruno Haible  <bruno@clisp.org>
23446
23447         * lib/des.c: Cast to avoid warnings.
23448
23449 2006-05-09  Bruno Haible  <bruno@clisp.org>
23450
23451         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
23452         (Depends-on): Depend also on xsize, stdarg.
23453         (configure.ac): Add gl_XVASPRINTF.
23454
23455 2006-05-09  Bruno Haible  <bruno@clisp.org>
23456
23457         * m4/xvasprintf.m4: New file.
23458
23459 2006-05-09  Bruno Haible  <bruno@clisp.org>
23460
23461         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
23462         (EOVERFLOW): Define fallback value.
23463         (xstrcat): New function.
23464         (xvasprintf): Recognize the special case of a string concatenation.
23465
23466 2006-05-08  Eric Blake  <ebb9@byu.net>
23467
23468         * gnulib-tool (func_version): Base copyright year on CVS date.
23469         (func_emit_copyright_notice): New function.
23470         (func_emit_lib_Makefile_am): Use it.
23471         (func_emit_tests_Makefile_am): Likewise.
23472         (func_import): Likewise.
23473
23474 2006-05-08  Bruno Haible  <bruno@clisp.org>
23475
23476         * modules/stdarg: New file.
23477         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
23478
23479 2006-05-08  Bruno Haible  <bruno@clisp.org>
23480
23481         * m4/stdarg.m4: New file, from GNU gettext.
23482
23483 2006-05-08  Bruno Haible  <bruno@clisp.org>
23484
23485         * config/srclist.txt (build-aux/config.rpath): different from latest
23486         release.
23487
23488 2006-05-08  Bruno Haible  <bruno@clisp.org>
23489
23490         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
23491
23492 2006-05-05  Jim Meyering  <jim@meyering.net>
23493
23494         * m4/warning.m4: New file, derived from bison's file by the same name.
23495
23496 2006-05-03  Bruno Haible  <bruno@clisp.org>
23497
23498         * lib/stdint_.h: Shorter URL.
23499         * lib/inttypes.h: Likewise.
23500
23501 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
23502
23503         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
23504
23505 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
23506
23507         * lib/verify.h: Document the internals better.  Most of this change
23508         was written by Bruno Haible.
23509
23510 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
23511
23512         * doc/verify.texi: New file, partly based on a proposal by
23513         Bruno Haible.
23514
23515 2006-05-02  Bruno Haible  <bruno@clisp.org>
23516
23517         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
23518         test from here...
23519         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
23520
23521 2006-04-29  Bruno Haible  <bruno@clisp.org>
23522
23523         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
23524         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
23525
23526 2006-04-29  Bruno Haible  <bruno@clisp.org>
23527
23528         * gnulib-tool: Make --update option actually work.
23529
23530 2006-04-29  Bruno Haible  <bruno@clisp.org>
23531
23532         * doc/gcd.texi: New file.
23533         * doc/gnulib.texi: Include it.
23534
23535 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
23536
23537         * lib/getdate.y (get_date): When adding relative date, start with the
23538         initial time, not with the result of the first mktime call.
23539
23540 2006-04-25  Bruno Haible  <bruno@clisp.org>
23541
23542         * gnulib-tool (func_import): Output the include directives in three
23543         blocks, sorted separately.
23544         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23545
23546 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
23547
23548         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
23549         to define main with arguments, for C++.  Reported by Eric Blake.
23550         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
23551         Prefer 'int main ()' to 'int main (void)', for C++.
23552         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
23553         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
23554         for 'main', for C99 and C++.
23555
23556 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
23557
23558         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
23559         Don't assume that exit status -1 is valid.
23560         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
23561         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
23562         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
23563         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
23564         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
23565         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
23566         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
23567         functions can be used without declaring them, or that you can
23568         exit with status -1.
23569         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
23570
23571 2006-04-24  Karl Berry  <karl@gnu.org>
23572
23573         * config/srclist.txt (longdouble.m4): sync lost.
23574
23575 2006-04-24  Eric Blake  <ebb9@byu.net>
23576
23577         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
23578
23579 2006-04-24  Bruno Haible  <bruno@clisp.org>
23580
23581         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
23582         poll() implementation in AIX.
23583         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23584
23585 2006-04-24  Bruno Haible  <bruno@clisp.org>
23586
23587         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
23588         assigned exactly once.
23589
23590 2006-04-23  Claudio Fontana  <claudio@gnu.org>
23591             Bruno Haible  <bruno@clisp.org>
23592
23593         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
23594         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
23595         for AM_CPPFLAGS.
23596
23597 2006-04-23  Bruno Haible  <bruno@clisp.org>
23598
23599         * modules/copy-file: Depend on unistd.
23600         * modules/execute: Likewise.
23601         * modules/fatal-signal: Likewise.
23602         * modules/findprog: Likewise.
23603         * modules/mkdtemp : Likewise.
23604         * modules/pipe: Likewise.
23605         * modules/wait-process: Likewise.
23606
23607 2006-04-23  Bruno Haible  <bruno@clisp.org>
23608
23609         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
23610         condition was already detected.
23611         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23612
23613 2006-04-23  Bruno Haible  <bruno@clisp.org>
23614
23615         * lib/copy-file.c: Include <unistd.h> unconditionally.
23616         * lib/execute.c: Likewise.
23617         * lib/fatal-signal.c: Likewise.
23618         * lib/findprog.c: Likewise.
23619         * lib/mkdtemp.c: Likewise.
23620         * lib/pipe.h: Likewise.
23621         * lib/pipe.c: Likewise.
23622         * lib/wait-process.h: Likewise.
23623
23624 2006-04-23  Bruno Haible  <bruno@clisp.org>
23625
23626         * gnulib-tool (func_usage): Fix --import description. Document
23627         --update.
23628         (func_import): Create temporary file in a temporary directory, if
23629         --dry-run is specified. Silence errors from 'grep' when there are no
23630         m4 files in $m4dir.
23631         (func_create_testdir): Silence errors from 'grep' when there are no
23632         m4 files in $m4dir.
23633         Reported by Karl Berry <karl@freefriends.org>.
23634
23635 2006-04-20  Bruno Haible  <bruno@clisp.org>
23636
23637         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
23638         one argument, so that the code will be portable to Autoconf 2.60.
23639         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
23640         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
23641         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
23642
23643 2006-04-19  Derek Price  <derek@ximbiot.com>
23644             Eric Blake  <ebb9@byu.net>
23645
23646         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
23647         rather than "/full/path.h".  Update comment to match.  Shorten &
23648         generalize m4_translit call via AS_TR_CPP.
23649
23650 2006-04-19  Derek Price  <derek@ximbiot.com>
23651             Eric Blake  <ebb9@byu.net>
23652
23653         * lib/inttypes.h: Correct grammar in comment.
23654
23655 2006-04-18  Derek Price  <derek@ximbiot.com>
23656             Paul Eggert  <eggert@cs.ucla.edu>
23657
23658         * modules/inttypes: New file.
23659         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
23660
23661 2006-04-18  Derek Price  <derek@ximbiot.com>
23662             Paul Eggert  <eggert@cs.ucla.edu>
23663
23664         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
23665         New files.
23666
23667 2006-04-18  Derek Price  <derek@ximbiot.com>
23668             Paul Eggert  <eggert@cs.ucla.edu>
23669
23670         * lib/inttypes.h: New file.
23671         * lib/strtoimax.c: Assume <inttypes.h>.
23672
23673 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
23674
23675         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
23676         isn't mounted.  Problem reported by Kir Kolyshkin.
23677
23678 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
23679
23680         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
23681         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
23682         Derek R. Price.
23683         * lib/regex.h (RE_DUP_MAX): Update comment to match current
23684         implementation.
23685
23686 2006-04-12  Eric Blake  <ebb9@byu.net>
23687
23688         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
23689         is now done automatically by the corresponding Autoconf macro.
23690
23691 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
23692
23693         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
23694         time_r.h.
23695
23696 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
23697
23698         Merge regex changes from libc, removing some of our
23699         POSIX-conformance changes that were rejected and redoing them in a
23700         less-intrusive way.
23701
23702         * lib/regcomp.c (re_compile_internal, init_dfa):
23703         Length arg is now size_t, not Idx.  All uses changed.
23704         (peek_token): Forward decl now says internal_function.
23705         (__re_error_msgid, __re_error_msgid_idx):
23706         Now static rather than extern with attribute_hidden.
23707         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
23708         For some reason libc prefers K&R style defns for external functions.
23709         (regerror) [!defined _LIBC]: Likewise.
23710         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
23711         (seek_collating_symbol_entry, lookup_collation_sequence_value):
23712         (build_range_exp, build_collating_symbol):
23713         Use K&R-style defn.
23714         (re_compile_fastmap): Use '\0' to memset, not 0.
23715         (utf8_sb_map): Make the calculations more obvious.
23716         (init_dfa, parse_bracket_exp, build_charclass_op):
23717         Call calloc and cast result, as glibc does.
23718         (init_word_char, fetch_token, peek_token, peek_token_bracket):
23719         (build_range_exp, build_collating_symbol):
23720         Now internal functions.
23721
23722         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
23723
23724         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
23725         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
23726         Don't depend on VMS; depend on __VMS instead, for POSIX
23727         namespace cleanness.
23728         (regoff_t): Define to ssize_t, not long int.
23729
23730         Remove the REG_ macros named below.  Instead, make the old names
23731         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
23732         __USE_GNU_REGEX.
23733         (REG_BACKSLASH_ESCAPE_IN_LISTS):
23734         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
23735         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
23736         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
23737         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
23738         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
23739         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
23740         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
23741         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
23742         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
23743         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
23744         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
23745         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
23746         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
23747         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
23748         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
23749         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
23750         (REG_NREGS):
23751         Remove.  All uses replaced by the old RE_* names.
23752         (RE_BACKSLASH_ESCAPE_IN_LISTS):
23753         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
23754         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
23755         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
23756         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
23757         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
23758         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
23759         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
23760         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
23761         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
23762         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
23763         Don't bother having these macros be independent of each others'
23764         values, since they no longer exist in the POSIX name space.
23765
23766         Rename the following member names back to their old names,
23767         unless !__USE_GNU_REGEX.  All uses changed back.
23768         (buffer): Renamed from re_buffer.
23769         (allocated): Renamed from re_allocated.
23770         (used): Renamed from re_used.
23771         (syntax): Renamed from re_syntax.
23772         (fastmap): Renamed from re_fastmap.
23773         (translate): Renamed from re_translate.
23774         (can_be_null): Renamed from re_can_be_null.
23775         (regs_allocated): Renamed from re_regs_allocated.
23776         (fastmap_accurate): Renamed from re_fastmap_accurate.
23777         (no_sub): Renamed from re_no_sub.
23778         (not_bol): Renamed from re_not_bol.
23779         (not_eol): Renamed from re_not_eol.
23780         (newline_anchor): Renamed from re_newline_anchor.
23781         (num_regs): Renamed from rm_num_regs.
23782         (start): Renamed from rm_start.
23783         (end): Renamed from rm_end.
23784
23785         (free_state): Move up a bit.
23786
23787         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
23788         #define to be empty.
23789         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
23790         when that is what is intended.
23791         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
23792         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
23793         (MAX): New macro.
23794         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
23795         All uses changed back to re_malloc, etc.  It's now the caller's
23796         responsibility to check for overflow; all callers changed.
23797         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
23798         (re_x2nrealloc): Remove.
23799         (free_state): Remove decl.
23800
23801         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
23802         (re_set_registers, re_exec):
23803         Use K&R-style defn.
23804
23805         2006-01-31  Roland McGrath  <roland@redhat.com>
23806
23807         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
23808         Reported by Mike Frysinger <vapier@gentoo.org>.
23809
23810         2006-01-15  Andreas Jaeger  <aj@suse.de>
23811
23812         [BZ #1950]
23813         * lib/regex_internal.c (re_string_reconstruct): Adjust for
23814         build_wcs_upper_buffer change.
23815         (build_wcs_upper_buffer): Change return type.
23816
23817         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
23818
23819         * lib/regex_internal.h: Include <stdint.h> if available.
23820
23821         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
23822
23823         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
23824
23825         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
23826
23827         * lib/regcomp.c: Adjust for changed secondary hash function.
23828
23829         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
23830
23831         * lib/regex.h: Pretty printing.
23832         Clean up namespace a bit.
23833
23834         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
23835
23836         * lib/regexec.c (update_cur_sifted_state, check_arrival,
23837         check_arrival_add_next_nodes): Avoid using uninitialized variable.
23838
23839         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
23840                     Ulrich Drepper  <drepper@redhat.com>
23841
23842         [BZ #1302]
23843         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
23844         changed.
23845         (bitset_word_t): Renamed from bitset_word.  All uses changed.
23846
23847         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
23848
23849         [BZ #281]
23850         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
23851         * lib/regcomp.c: Remove unnecessary uses of
23852         unsigned RE_TRANSLATE_TYPE.
23853         * lib/regex_internal.h: Likewise.
23854         * lib/regex_internal.c: Likewise.
23855         * lib/regexec.c: Likewise.
23856         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
23857
23858         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
23859
23860         * lib/regexec.c (find_recover_state): Remove unnecessary
23861         initialization.
23862         (transit_state_bkref): Make DFA a const pointer.
23863         (get_subexp): Likewise.
23864         (check_arrival): Likewise.
23865         (update_cur_sifted_state): Likewise.
23866         (re_search_internal): Likewise.
23867         (prune_impossible_nodes): Likewise.
23868         (acquire_init_state_context): Likewise.
23869         (proceed_next_node): Likewise.
23870         (set_regs): Likewise.
23871         (free_fail_stack_return): Likewise.
23872         (check_arrival_expand_ecl): Mark DFA parameter as const.
23873         (check_arrival_expand_ecl_sub): Likewise.
23874         (check_subexp_limits): Likewise.
23875         (sub_epsilon_src_nodes):  Likewise.
23876         (add_epsilon_src_nodes):  Likewise.
23877         (merge_state_array): Likewise.
23878         (update_regs): Likewise.
23879         (build_trtable): Likewise.
23880         (sift_states_backward): Mark MCTX parameter as const.
23881         (build_sifted_states): Likewise.
23882         (update_cur_sifted_state): Likewise.
23883         (sift_states_mkref): Likewise.
23884         (check_arrival_expand_ecl): Mark eclosure as const.
23885         (check_dst_limits_calc_pos_1): Likewise.
23886         * lib/regex_internal.h (re_match_context_t): Make dfa a const
23887         pointer.
23888
23889         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
23890
23891         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
23892         (transit_state_sb): Likewise.
23893         (transit_state_mb): Likewise.
23894         (sift_states_iter_mb): Likewise.
23895         (check_arrival_add_next_nodes): Likewise.
23896         (check_node_accept_bytes): Change first parameter to pointer-to-const.
23897         [_LIBC] (re_search_2_stub): Use mempcpy.
23898
23899         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
23900         mbrtowc for very simple UTF-8 case.
23901
23902         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
23903         a pointer-to-const.
23904         (re_acquire_state_context): Likewise.
23905         * lib/regex_internal.h: Adjust prototypes.
23906
23907         * lib/regex.c: Prevent using C++ compilers.
23908
23909         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
23910         (re_acquire_state_context): Likewise.
23911
23912 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
23913
23914         * modules/regex (Depends-on): Add ssize_t.
23915
23916 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
23917
23918         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
23919         translation table.
23920
23921 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
23922
23923         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
23924
23925 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
23926             Bruno Haible  <bruno@clisp.org>
23927
23928         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
23929         <sys/types.h> and <inttypes.h>.
23930
23931 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23932
23933         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
23934         `__error_t_defined', so argp.h will not typedef the former.
23935
23936 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
23937
23938         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
23939         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
23940         glibc names.  Even if glibc is changed to conform to POSIX, the
23941         traditional names will be available anyway, since regex depends on
23942         the extensions module.  Also, fix a longstanding typo in the
23943         implementation of Spencer ERE test #75 from grep 2.3.  Problems
23944         reported by Emanuele Giaquinta.  Also, change sense of cached
23945         variable, so that the message makes sense.
23946
23947 2006-03-24  Simon Josefsson  <jas@extundo.com>
23948
23949         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
23950         including some doc fixes.
23951         (base64_encode_alloc): Fix +1 bug on allocation failures.
23952
23953 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23954
23955         * lib/base64.c (base64_encode): Do not read past end of array with
23956         unsanitized input on systems with CHAR_BIT > 8.
23957
23958 2006-03-24  Eric Blake  <ebb9@byu.net>
23959
23960         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
23961
23962 2006-03-22  Karl Berry  <karl@gnu.org>
23963
23964         * config/srclist.txt (*setenv.[ch]): get from coreutils.
23965         * config/srclistvars.sh (COREUTILS): new var.
23966
23967 2006-03-17  Jim Meyering  <jim@meyering.net>
23968
23969         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
23970         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
23971
23972 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
23973
23974         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
23975         no longer needs it.  Instead, check that regoff_t is as least
23976         as wide as ptrdiff_t.
23977
23978         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
23979         so that our regex.h stays compatible with the installed regex.
23980         This is helpful for installers who configure --without-included-regex.
23981         Problem reported by Emanuele Giaquinta.
23982
23983 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
23984
23985         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
23986         Typedef to long int, not to off_, as POSIX will likely change
23987         in that direction.
23988
23989 2006-03-15  Eric Blake  <ebb9@byu.net>
23990
23991         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
23992
23993 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
23994
23995         * lib/argp-help.c (validate_uparams): Fix typo
23996         * lib/argp-parse.c (argp_default_options): Consistently begin help
23997         messages with a lowercase letter.
23998
23999 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
24000
24001         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
24002         overrun buffers and shouldn't be used (much as gets shouldn't be
24003         used).
24004         * lib/time_r.c (asctime_r, ctime_r): Likewise.
24005
24006 2006-03-08  Simon Josefsson  <jas@extundo.com>
24007
24008         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
24009         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24010
24011 2006-03-08  Simon Josefsson  <jas@extundo.com>
24012
24013         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
24014         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24015
24016 2006-03-08  Simon Josefsson  <jas@extundo.com>
24017
24018         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
24019         signal that configure disabled the device.
24020
24021 2006-03-08  Simon Josefsson  <jas@extundo.com>
24022
24023         * build-aux/maint.mk: Fix refresh-po, to handle no translated
24024         languages.
24025
24026 2006-03-07  Simon Josefsson  <jas@extundo.com>
24027
24028         * modules/getopt (Depends-on): Add unistd.
24029
24030         * modules/unistd: New file.
24031
24032 2006-03-07  Simon Josefsson  <jas@extundo.com>
24033
24034         * modules/gc-random: New file.
24035
24036 2006-03-07  Simon Josefsson  <jas@extundo.com>
24037
24038         * m4/unistd_h.m4: New file.
24039
24040 2006-03-07  Simon Josefsson  <jas@extundo.com>
24041
24042         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
24043         test to be side-effect free by storing the result in the cache
24044         variable gl_cv_lib_readline, and moving the assignment of
24045         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
24046         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24047
24048 2006-03-07  Simon Josefsson  <jas@extundo.com>
24049
24050         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
24051         error on missing devices (the functions will return an error).
24052
24053         * m4/gc.m4: Move random stuff to gc-random.m4
24054
24055 2006-03-07  Simon Josefsson  <jas@extundo.com>
24056
24057         * lib/unistd_.h: New file.
24058
24059 2006-03-07  Simon Josefsson  <jas@extundo.com>
24060
24061         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
24062
24063 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
24064
24065         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
24066         Problem reported by Juan Manuel Guerrero.
24067
24068 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
24069
24070         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
24071         the unistd module.
24072         * lib/getlogin_r.c: Likewise.
24073         * lib/getlogin_r.h: Likewise.
24074         * lib/glob.c: Likewise.
24075         * lib/pagealign_alloc.c: Likewise.
24076         * lib/unistd_.h: Remove; no longer needed.
24077
24078 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
24079
24080         * MODULES.html.sh (Support for systems lacking POSIX:2001):
24081         Add unistd.
24082         * modules/c-stack (Depends-on): Add unistd.
24083         * modules/getlogin_r: Likewise.
24084         * modules/glob: Likewise.
24085         * modules/pagealign_alloc: Likewise.
24086         * modules/unistd (Files): Remove lib/unistd_.h.
24087         (EXTRA_DIST): Remove.
24088         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
24089         need unistd_.h.
24090         (MOSTLYCLEANFILES): Remove unistd.h-t.
24091
24092 2006-03-03  Simon Josefsson  <jas@extundo.com>
24093
24094         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
24095
24096 2006-03-03  Simon Josefsson  <jas@extundo.com>
24097
24098         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
24099         libidn and bison.
24100
24101 2006-03-03  Simon Josefsson  <jas@extundo.com>
24102
24103         * build-aux/maint.mk: Add indent target.
24104
24105 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
24106
24107         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
24108         our replacement poll.h in any case, to avoid a differing
24109         declaration from a system header.  Seen on AIX.
24110
24111 2006-03-01  Simon Josefsson  <jas@extundo.com>
24112
24113         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
24114         <kasal@ucw.cz>.
24115
24116 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24117
24118         * modules/gettime (Depends-on): Add extensions module.
24119         * modules/nanosleep (Depends-on): Likewise.
24120         * modules/settime (Depends-on): Likewise.
24121
24122 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24123
24124         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
24125         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
24126         pedantically.
24127         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
24128         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
24129
24130         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
24131         not "==".  Reported by Ralf Wildenhues.
24132
24133 2006-03-01  Karl Berry  <karl@gnu.org>
24134
24135         * doc/Copyright/request-*: new files, synced from gnuorg.
24136
24137 2006-03-01  Karl Berry  <karl@gnu.org>
24138
24139         * config/srclist.txt (Copyright/*): new entries.
24140
24141 2006-02-28  Simon Josefsson  <jas@extundo.com>
24142
24143         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
24144
24145 2006-02-27  Simon Josefsson  <jas@extundo.com>
24146
24147         * lib/base64.h: Indent #define's.  From Jim Meyering
24148         <jim@meyering.net>.
24149
24150 2006-02-27  Jim Meyering  <jim@meyering.net>
24151
24152         Revert the change of 2006-02-24, so these files can continue
24153         to be sync'd from gettext.
24154         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
24155         of `config.h'.
24156
24157 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
24158
24159         * modules/intprops: New file.
24160         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
24161         Add intprops.
24162         * modules/getloadavg (Files): Remove lib/intprops.h.
24163         (Depends-on): Add intprops.
24164         * modules/human: Likewise.
24165         * modules/inttostr: Likewise.
24166         * modules/openat: Likewise.
24167         * modules/sig2str: Likewise.
24168         * modules/userspec: Likewise.
24169         * modules/utimecmp: Likewise.
24170         * modules/xnanosleep: Likewise.
24171         * modules/xstrtol: Likewise.
24172
24173 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
24174
24175         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
24176         * modules/lock-tests (TESTS): Use $(EXEEXT).
24177         * modules/tls-tests: Likewise.
24178         * modules/argp-tests: Likewise.
24179         (check_PROGRAMS): New var, replacing...
24180         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
24181
24182 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24183
24184         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
24185         `config.h'.
24186
24187 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
24188
24189         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
24190
24191 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24192
24193         Sync from coreutils.
24194         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
24195         gl_CHDIR_SAFER.
24196
24197 2006-02-22  Jim Meyering  <jim@meyering.net>
24198
24199         Sync from coreutils.
24200         * m4/chdir-safer.m4: New file.
24201
24202 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
24203
24204         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
24205         AT_FDCWD exceeds INT_MAX.
24206         * lib/openat.h (AT_FDCWD): Likewise.
24207
24208 2006-02-17  Eric Blake  <address@hidden>
24209
24210         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
24211
24212 2006-02-16  Simon Josefsson  <jas@extundo.com>
24213
24214         * modules/getaddrinfo (Depends-on): Add sys_socket.
24215
24216 2006-02-15  Simon Josefsson  <jas@extundo.com>
24217
24218         * build-aux/maint.mk: Add dsyntax-check rule.
24219
24220 2006-02-15  Eric Blake  <ebb9@byu.net>
24221
24222         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
24223         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
24224         'present but cannot compile' warnings on cygwin.
24225         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
24226         use ws2tcpip.h if sys/socket.h works.
24227         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
24228         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
24229
24230 2006-02-14  Simon Josefsson  <jas@extundo.com>
24231
24232         * modules/maintainer-makefile (Files): Rename.
24233
24234         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
24235         and (the local) Makefile.cfg to maint-cfg.mk.
24236
24237         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
24238         to the latter.
24239
24240         * modules/maintainer-makefile: New module.
24241
24242         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
24243         severaly stripped to make it possible to build it up from scratch
24244         with reliable tests.
24245
24246         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
24247         fixes to permit overriding the default actions when configure and
24248         makefile are not available.
24249
24250 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
24251
24252         Sync from coreutils.
24253         * modules/lstat (Depends-on): Don't depend on xalloc.
24254         (License): Change from GPL to LGPL, since this is now simply a
24255         replacement for a libc function.
24256
24257 2006-02-14  Jim Meyering  <jim@meyering.net>
24258
24259         Sync from coreutils.
24260
24261         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
24262         failure on deficient systems, and simplify gnulib lgpl dependencies.
24263         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
24264         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
24265
24266         * lib/xalloc-die.c: Remove unused definition of N_.
24267
24268 2006-02-14  Jim Meyering  <jim@meyering.net>
24269
24270         Sync from coreutils.
24271         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
24272         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
24273         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
24274         double-quote uses of that variable, to accommodate the rare case in
24275         which getmntent is available in none of the libraries checked.  This
24276         happens at least on FreeBSD 5.0.
24277
24278 2006-02-13  Simon Josefsson  <jas@extundo.com>
24279
24280         * gnulib-tool (Usage): Fix --import, from
24281         karl@freefriends.org (Karl Berry).
24282
24283 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
24284
24285         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
24286
24287 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
24288
24289         * lib/argp-namefrob.h: Restore changes accidentally lost during the
24290         "autoupdate" on 2005-12-12.
24291
24292 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
24293
24294         * modules/closeout (Depends-on): Remove atexit.
24295
24296 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
24297
24298         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
24299         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
24300
24301 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
24302
24303         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
24304         __EXTENSIONS__ if this causes compilation to fail.  Problem
24305         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
24306         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
24307
24308 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
24309
24310         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
24311         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
24312         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
24313         All uses changed.
24314
24315 2006-01-26  Simon Josefsson  <jas@extundo.com>
24316
24317         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
24318         prototype is visible on mingw32.
24319
24320         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
24321         for mingw32.
24322
24323         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
24324         mingw32).
24325
24326 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
24327
24328         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
24329         attempt to open for write; this always fails, at least on POSIX
24330         hosts.  This reinstates the 2006-01-09 change, which was
24331         inadvertently removed.
24332
24333 2006-01-26  Bruno Haible  <bruno@clisp.org>
24334
24335         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
24336         Reported by Paul Eggert.
24337
24338 2006-01-26  Bruno Haible  <bruno@clisp.org>
24339             Paul Eggert  <eggert@cs.ucla.edu>
24340
24341         * lib/stdbool_.h (_Bool)
24342         [(! (defined __cplusplus || defined __BEOS__)
24343           && !defined __GNUC__
24344           && !(defined __HP_cc || defined __xlc__
24345                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
24346                || defined __sgi))]:
24347         #define to signed char in these cases too; this simplifies
24348         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
24349         etc., separately) and makes it more conservative.
24350
24351 2006-01-25  Simon Josefsson  <jas@extundo.com>
24352
24353         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
24354         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
24355         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
24356
24357 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
24358
24359         * lib/argp-namefrob.h: Bugfix. Remove stray #
24360
24361 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
24362
24363         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
24364         so that we test the test.
24365         Check for yet another HP-UX cc bug involving *bool |= bool.
24366
24367 2006-01-25  Karl Berry  <karl@gnu.org>
24368
24369         * config/srclist.txt (vasnprintf.c): sync lost.
24370
24371 2006-01-25  Jim Meyering  <jim@meyering.net>
24372
24373         Sync from the stable (b5) branch of coreutils:
24374
24375         * lib/fts.c (fts_children): Don't let close() clobber errno from
24376         failed fchdir().
24377
24378         * lib/fts.c (fts_stat): When following a symlink-to-directory,
24379         don't necessarily interpret stat-fails+lstat-succeeds as indicating
24380         a dangling symlink.  That can also happen at least for ELOOP.
24381         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
24382         FYI, this bug predates the inclusion of fts.c in coreutils.
24383
24384         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
24385         in their own block, so pre-c99 compilers don't object.
24386
24387         Avoid the double-free (first in fts_read, second in fts_close) that
24388         would occur when an `active' directory is made inaccessible (e.g.,
24389         via chmod a-x) during a traversal.
24390         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
24391         before returning.  Reproduce this failure by
24392         mkdir -p a/b; cd a; chmod a-x . b
24393         Reported by Stavros Passas.
24394
24395 2006-01-25  Jim Meyering  <jim@meyering.net>
24396
24397         * lib/fileblocks.c: Remove more useless parentheses.
24398         * lib/readutmp.h: Likewise.
24399
24400 2006-01-25  Bruno Haible  <bruno@clisp.org>
24401
24402         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
24403         warnings.
24404         Reported by Paul Eggert.
24405
24406 2006-01-25  Bruno Haible  <bruno@clisp.org>
24407
24408         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
24409         rid of a trap command. For Solaris sh.
24410         Reported by Mark D. Baushke <mdb@gnu.org>.
24411
24412 2006-01-24  Simon Josefsson  <jas@extundo.com>
24413
24414         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
24415         Bruno.
24416
24417 2006-01-24  Karl Berry  <karl@gnu.org>
24418
24419         * config/srclist.txt (argp-namefrob.h): sync lost.
24420
24421 2006-01-24  Jim Meyering  <jim@meyering.net>
24422
24423         * modules/openat (Files): Add lib/intprops.h.
24424         From Mark D. Baushke.
24425
24426 2006-01-24  Jim Meyering  <jim@meyering.net>
24427
24428         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
24429         Reported by Mark D. Baushke.
24430
24431 2006-01-24  Jim Meyering  <jim@meyering.net>
24432
24433         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
24434
24435 2006-01-24  Bruno Haible  <bruno@clisp.org>
24436
24437         * modules/strnlen (Maintainer): Change from glibc to all.
24438
24439 2006-01-24  Bruno Haible  <bruno@clisp.org>
24440
24441         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
24442         Patch by Paul Eggert.
24443
24444 2006-01-24  Bruno Haible  <bruno@clisp.org>
24445
24446         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
24447         already has it.
24448         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
24449         2005-11-26.
24450
24451         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
24452         'signed char' to avoid problems with the built-in _Bool type.
24453         Reported by Paul Eggert on 2005-11-26.
24454
24455 2006-01-24  Bruno Haible  <bruno@clisp.org>
24456
24457         * gnulib-tool (func_import): Avoid constructing complicated sed
24458         expressions inside backquote.
24459         Report and solution by Mark D. Baushke <mdb@gnu.org>.
24460
24461 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
24462
24463         These changes imported from libc.
24464         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
24465         test and two separate function calls.
24466         * lib/strndup.c (__strndup): Add libc_hidden_def.
24467
24468 2006-01-23  Simon Josefsson  <jas@extundo.com>
24469
24470         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
24471         Remove the test_*_SOURCES variable: automake infers it by default.
24472         * modules/tls-tests: Likewise.
24473
24474 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
24475
24476         Work around porting bugs reported by Dieter in
24477         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
24478         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
24479         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
24480         Include "getopt.h" first, to check interface.
24481         (getenv): Declare only if defined HAVE_DECL_GETENV &&
24482         !HAVE_DECL_GETENV.
24483         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
24484         (__strndup): Revert to K&R-style function dfns, the glibc style.
24485         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
24486         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
24487         Include strnlen.h first, to get prototype properly.
24488         (strnlen): Renamed from __strnlen.
24489         Remove weak alias.
24490
24491 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
24492
24493         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
24494
24495 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
24496
24497         * config/srclist.txt: Adjust to reflect glibc reorganization.
24498         This affects only comments.
24499
24500 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24501
24502          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
24503          Reported by Bruce Korb <bkorb@gnu.org>.
24504
24505 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
24506
24507         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
24508         to pacify gcc -Wswitch-default.
24509
24510 2006-01-22  Bruno Haible  <bruno@clisp.org>
24511
24512         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
24513         temporary buffer for sprintf, take into account the precision also
24514         for 'd', 'i', 'u', 'o', 'x', 'X'.
24515
24516 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
24517
24518         * modules/argp-tests: New module
24519         * tests/test-argp.c: New file
24520         * tests/test-argp-2.sh: New file
24521
24522 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
24523
24524         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
24525         (__argp_base_name): Removed
24526         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
24527         typo.
24528         (__argp_base_name): Provide macro definition or extern declaration
24529         depending on the configuration
24530
24531 2006-01-20  Simon Josefsson  <jas@extundo.com>
24532
24533         * modules/inet_ntop (Depends-on): Depend on sys_socket.
24534
24535 2006-01-20  Simon Josefsson  <jas@extundo.com>
24536
24537         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
24538
24539 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
24540
24541         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
24542         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
24543         Suggested by Bruno Haible.
24544
24545 2006-01-20  Karl Berry  <karl@gnu.org>
24546
24547         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
24548         until changes propagate, I guess.
24549
24550 2006-01-19  Simon Josefsson  <jas@extundo.com>
24551
24552         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
24553
24554 2006-01-19  Simon Josefsson  <jas@extundo.com>
24555
24556         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
24557
24558 2006-01-19  Simon Josefsson  <jas@extundo.com>
24559
24560         * gnulib-tool: Set check_PROGRAMS.
24561
24562         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
24563         modules/des-tests, modules/gc-arcfour-tests,
24564         modules/gc-arctwo-tests, modules/gc-des-tests,
24565         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
24566         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
24567         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
24568         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
24569         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
24570         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
24571         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
24572         test_*_SOURCES.
24573
24574 2006-01-18  Simon Josefsson  <jas@extundo.com>
24575
24576         * modules/socklen (Depends-on): Depend on sys_socket.
24577
24578 2006-01-18  Simon Josefsson  <jas@extundo.com>
24579
24580         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
24581         modules/des-tests, modules/gc-arcfour-tests,
24582         modules/gc-arctwo-tests, modules/gc-des-tests,
24583         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
24584         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
24585         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
24586         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
24587         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
24588         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
24589         $(EXEEXT) to automake TESTS variable, for mingw32.
24590
24591 2006-01-17  Simon Josefsson  <jas@extundo.com>
24592
24593         * modules/socklen (Include): Need sys/socket.h.
24594
24595 2006-01-17  Bruno Haible  <bruno@clisp.org>
24596
24597         * modules/ssize_t (Include): Add <sys/types.h>.
24598
24599 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
24600
24601         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
24602         it's not portable and it doesn't work with cross-compiles.
24603         Problem reported by Bruno Haible.  Fix missing-$ typo in
24604         'test "gl_cv_ignore_unused_libraries" ...' that prevented
24605         -zignore from being used with Sun's C compiler.
24606
24607 2006-01-12  Simon Josefsson  <jas@extundo.com>
24608
24609         * lib/base64.c: Fix warning, reported by Bruno Haible
24610         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
24611
24612 2006-01-12  Bruno Haible  <bruno@clisp.org>
24613
24614         * modules/ldd: New file.
24615         * build-aux/ldd.sh.in: New file.
24616         * MODULES.html.sh (Support for building libraries and executables): Add
24617         ldd.
24618
24619 2006-01-12  Bruno Haible  <bruno@clisp.org>
24620
24621         * m4/ldd.m4: New file.
24622
24623 2006-01-12  Bruno Haible  <bruno@clisp.org>
24624
24625         * gnulib-tool (func_import, func_create_testdir): Don't go into an
24626         endless loop while replacing $auxdir with build-aux.
24627
24628 2006-01-11  Simon Josefsson  <jas@extundo.com>
24629
24630         * lib/stdint_.h (SIZE_MAX): Add missing (.
24631
24632 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
24633
24634         Sync from coreutils.
24635         * lib/md5.c: Fix commentary typos.
24636         (alignof, UNALIGNED_P): No need for a GCC-specific version.
24637         * lib/md5.h (__attribute__): Remove; unused.
24638         * lib/sha1.c: Fix commentary to match md5 better.
24639         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
24640         so that we don't need to worry about alignment.  All uses changed.
24641         This merges the 2005-10-28 md5 change into sha1.
24642
24643 2006-01-11  Jim Meyering  <jim@meyering.net>
24644
24645         Sync from coreutils.
24646         * lib/md5.c (OP): Fix spacing.
24647
24648 2006-01-11  Bruno Haible  <bruno@clisp.org>
24649
24650         Ensure automatic ordering between gl_LOCK and gl_ARGP.
24651         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
24652         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
24653
24654 2006-01-11  Bruno Haible  <bruno@clisp.org>
24655
24656         Ensure automatic ordering between gl_LOCK and gl_ARGP.
24657         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
24658         the "early" section as well.
24659
24660 2006-01-11  Bruno Haible  <bruno@clisp.org>
24661
24662         Avoid "ar: no archive members specified" error on MacOS X.
24663         * gnulib-tool (func_modules_add_dummy): New function.
24664         (func_import, func_create_testdir): Invoke it.
24665
24666 2006-01-11  Bruno Haible  <bruno@clisp.org>
24667
24668         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
24669         with $auxdir in AC_CONFIG_FILES statements.
24670
24671 2006-01-11  Bruno Haible  <bruno@clisp.org>
24672
24673         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
24674         Initialize also noinst_HEADERS to empty.
24675
24676 2006-01-11  Bruno Haible  <bruno@clisp.org>
24677
24678         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
24679         variables.
24680         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
24681         autoreconf.
24682
24683 2006-01-11  Bruno Haible  <bruno@clisp.org>
24684
24685         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
24686         overridable by the user.
24687         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24688
24689 2006-01-10  Simon Josefsson  <jas@extundo.com>
24690
24691         * modules/sys_socket: New file.
24692
24693 2006-01-10  Simon Josefsson  <jas@extundo.com>
24694
24695         * m4/sys_socket_h.m4: New file.
24696
24697 2006-01-10  Simon Josefsson  <jas@extundo.com>
24698
24699         * lib/socket_.h: New file.
24700
24701 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
24702
24703         * modules/readutmp (Maintainer): Add myself.
24704
24705 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
24706
24707         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
24708         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
24709         People who are still concerned with buggy memcmp implementations
24710         can invoke gl_FUNC_MEMCMP themselves.
24711
24712 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
24713
24714         * lib/regex_internal.h (BITSET_WORD_BITS):
24715         Work around a bug in 64-bit PGC (before version 6.1-2), where the
24716         preprocessor mishandles large unsigned values as if they were signed.
24717         Problem reported by Claudio Fontana in
24718         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
24719
24720 2006-01-10  Jim Meyering  <jim@meyering.net>
24721
24722         Avoid the double-free (first in fts_read, second in fts_close) that
24723         would occur when an `active' directory is made inaccessible (e.g.,
24724         via chmod a-x) during a traversal.
24725         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
24726         before returning.  Reproduce this failure by
24727         mkdir -p a/b; cd a; chmod a-x . b
24728         Reported by Stavros Passas.
24729
24730         Sync from coreutils.
24731         * lib/sha1.c: Tweak grammar in a comment.
24732
24733 2006-01-10  Jim Meyering  <jim@meyering.net>
24734
24735         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
24736         Patch by Joerg Sonnenberger.
24737
24738 2006-01-10  Bruno Haible  <bruno@clisp.org>
24739
24740         * modules/readutmp: Depend on module free.
24741         * modules/strtok_r: Depend on module restrict.
24742
24743 2006-01-10  Bruno Haible  <bruno@clisp.org>
24744
24745         * modules/gettext (configure.ac): Add an invocation of
24746         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
24747
24748 2006-01-10  Bruno Haible  <bruno@clisp.org>
24749
24750         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
24751         Reported by Werner Lemberg <wl@gnu.org>.
24752
24753 2006-01-10  Bruno Haible  <bruno@clisp.org>
24754
24755         * lib/localcharset.c: Update from GNU gettext.
24756
24757 2006-01-10  Bruno Haible  <bruno@clisp.org>
24758
24759         * lib/argp.h (__const): Remove macro. Use const instead.
24760         * lib/argp-fmtstream.h (__const): Likewise.
24761         * lib/glob_.h (__const): Remove macro.
24762         * lib/glob-libc.h: Use const instead of __const.
24763
24764 2006-01-10  Bruno Haible  <bruno@clisp.org>
24765
24766         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
24767         variable.
24768         Needed to avoid an automake error regarding the 'gettext' module.
24769
24770 2006-01-09  Simon Josefsson  <jas@extundo.com>
24771
24772         * modules/inet_ntop (Depends-on): Add restrict.
24773
24774 2006-01-09  Simon Josefsson  <jas@extundo.com>
24775
24776         * modules/gc-rijndael-tests (License): Put under LGPL.
24777
24778         * modules/gc-des-tests (License): Likewise.
24779
24780         * modules/gc-arcfour-tests (License): Likewise.
24781
24782         * modules/gc-arctwo-tests (License): Likewise.
24783
24784         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
24785
24786         * modules/gc-hmac-sha1-tests (Files): Likewise.
24787
24788         * modules/gc-hmac-md5-tests (License): Likewise.
24789
24790         * modules/gc-sha1-tests (License): Likewise.
24791
24792         * modules/gc-md5-tests (License): Likewise.
24793
24794         * modules/gc-md4-tests (License): Likewise.
24795
24796         * modules/gc-md2-tests (License): Likewise.
24797
24798         * modules/gc-tests (License): Likewise.
24799
24800         * modules/des-tests (License): Likewise.
24801
24802         * modules/md4-tests (License): Likewise.
24803
24804         * modules/md2-tests (License): Likewise.
24805
24806 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
24807
24808         Sync from coreutils:
24809
24810         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
24811         * modules/lib-ignore: New file.
24812         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
24813         chdir-safer.m4, lchmod.m4.
24814         * modules/openat: Add mkdirat.c, openat-priv.h.
24815
24816 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
24817
24818         Sync from coreutils.
24819         * m4/lib-ignore.m4: New file.
24820         * m4/lchmod.m4: New file.
24821
24822 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
24823
24824         Sync from coreutils.
24825         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
24826         for write access: POSIX says that must fail.
24827         * lib/fts.c (diropen): Likewise.
24828         * lib/save-cwd.c (save_cwd): Likewise.
24829         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
24830         well, for minor improvements on hosts that lack O_DIRECTORY.
24831         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
24832         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
24833         Fall back on chown if open failed with EACCES.
24834
24835         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
24836         Report an error at compile-time if only a 1-second nominal clock
24837         resolution is found.
24838
24839         * lib/lchmod.h: New file.
24840         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
24841         (make_dir_parents): Use lchown rather than chown, and
24842         lchmod rather than chmod.
24843
24844         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
24845         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
24846         "proc" reported by n0dalus.
24847
24848         * lib/mountlist.c: Include <limits.h>.
24849         (dev_from_mount_options)
24850         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
24851         New function.  It no longer assumes "dev=" has the System V meaning
24852         on Linux (since it doesn't).  It also parses "dev=" more carefully.
24853         (read_file_system_list)
24854         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
24855         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
24856         dev= in that case.
24857
24858         * lib/posixtm.h (PDS_PRE_2000): New macro.
24859         * lib/posixtm.c (year): Arg is now syntax_bits rather than
24860         allow_century.  All usages changed.  Reject dates outside the range
24861         1969-1999 if PDS_PRE_2000 is used.
24862
24863 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
24864
24865         Sync from coreutils.
24866         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
24867         (Time of day items): Mention the possibility of leap seconds.
24868         Problem reported by Dr. David Alan Gilbert.
24869
24870 2006-01-09  Jim Meyering  <jim@meyering.net>
24871
24872         Sync from coreutils.
24873
24874         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
24875
24876         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
24877
24878         * lib/modechange.c (mode_compile): Reject an invalid mode string
24879         that starts with an octal digit.  From Andreas Gruenbacher.
24880
24881         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
24882         and dup to open_safer and dup_safer, respectively.
24883         (openat_permissive): Fix typo in comment.
24884
24885         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
24886         "gettext.h"; either no longer needed or are guaranteed by openat.h.
24887         (_): Remove; no longer needed.
24888         (openat): Renamed from rpl_openat; no need for rpl_openat
24889         since openat.h renames openat for us.
24890         Replace most of the body with a call to openat_permissive,
24891         to avoid duplicate code.
24892         Port to (probably hypothetical) environments were mode_t is
24893         wider than int.
24894         (openat_permissive): Require mode arg, so that we can check
24895         types better.  Put it just after flags.  Change cwd failure
24896         indicator from pointer-to-bool to pointer-to-errno-value.
24897         All callers changed.
24898         Invoke openat_save_fail and/or openat_restore_fail if
24899         cwd_errno is null, so that openat can call us.
24900         (openat_permissive, fdopendir, fstatat, unlinkat):
24901         Simplify errno handling to avoid some duplicate code,
24902         as it's OK to set errno on success.
24903         * lib/openat.h: Revamp code so that function macros depend on
24904         __OPENAT_PREFIX only, not also on AT_FDCWD.
24905         (openat_ro): Remove.  Caller changed to use openat_permissive.
24906         (openat_permissive): Now a macro, if not a function.
24907         (openat_restore_fail, openat_save_fail): Now always functions,
24908         since mkdirat needs them even if __OPENAT_PREFIX is defined.
24909
24910         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
24911         and openat.c.
24912         * lib/mkdirat.c: Include openat-priv.h.
24913         Remove definitions of macros defined therein.
24914         * lib/openat.c: Likewise.
24915
24916         * lib/mkdirat.c (mkdirat): New file and function.
24917         * lib/openat.h (mkdirat): Declare.
24918
24919         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
24920
24921         * lib/openat.h (openat_permissive): Declare.
24922         (openat_ro): Define.
24923
24924         * lib/openat.c (EXPECTED_ERRNO): New macro.
24925         (openat_permissive): New function -- used in remove.c rewrite.
24926         (all functions): Set errno just before returning, only if there
24927         was an actual failure.
24928         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
24929
24930         Emulate openat-family functions using Linux's procfs, if possible.
24931         Idea and some code based on Ulrich Drepper's glibc changes.
24932
24933         * lib/openat.c: (BUILD_PROC_NAME): New macro.
24934         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
24935         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
24936         before falling back on save_cwd and restore_cwd.
24937         (fdopendir, fstatat, unlinkat): Likewise.
24938
24939         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
24940         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
24941
24942         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
24943         as second argument to va_arg.  Otherwise, some versions of gcc
24944         warn that `if this code is reached, the program will abort'.
24945
24946 2006-01-09  Jim Meyering  <jim@meyering.net>
24947
24948         Sync from coreutils.
24949         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
24950         Require openat-priv.h.
24951
24952 2006-01-09  Bruno Haible  <bruno@clisp.org>
24953
24954         * modules/strnlen (Include): Use strnlen.h.
24955
24956 2006-01-09  Bruno Haible  <bruno@clisp.org>
24957
24958         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
24959
24960 2006-01-09  Bruno Haible  <bruno@clisp.org>
24961
24962         * lib/sysexit_.h (EX_OK): New macro.
24963         Suggested by Martin Lambers <marlam@marlam.de>.
24964
24965 2006-01-09  Bruno Haible  <bruno@clisp.org>
24966
24967         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
24968         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
24969
24970 2006-01-09  Bruno Haible  <bruno@clisp.org>
24971
24972         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
24973         numbers.
24974
24975 2006-01-09  Bruno Haible  <bruno@clisp.org>
24976
24977         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
24978         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
24979         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
24980         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
24981
24982 2006-01-09  Bruno Haible  <bruno@clisp.org>
24983
24984         * build-aux/javacomp.sh.in: New file, moved from lib/.
24985         * modules/javacomp-script (Files): Update.
24986         (configure.ac): Add AC_CONFIG_FILES invocation.
24987         (EXTRA_DIST): Remove variable.
24988
24989         * build-aux/javaexec.sh.in: New file, moved from lib/.
24990         * modules/javaexec (Files): Update.
24991         (configure.ac): Add AC_CONFIG_FILES invocation.
24992         (EXTRA_DIST): Remove javaexec.sh.in.
24993
24994         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
24995         * modules/csharpcomp-script (Files): Update.
24996         (configure.ac): Add AC_CONFIG_FILES invocation.
24997         (EXTRA_DIST): Remove variable.
24998
24999         * build-aux/csharpexec.sh.in: New file, moved from lib/.
25000         * modules/csharpexec (Files): Update.
25001         (configure.ac): Add AC_CONFIG_FILES invocation.
25002         (EXTRA_DIST): Remove csharpexec.sh.in.
25003
25004 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
25005
25006         Sync from coreutils.
25007
25008         Add POSIX ACL support
25009         * lib/acl.h (copy_acl, set_acl): Add declarations.
25010         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
25011         systems other than Linux.
25012         (chmod_or_fchmod): New function: use fchmod when possible,
25013         and chmod otherwise.
25014         (file_has_acl): Add a POSIX ACL implementation, with a
25015         Linux-specific subcase.
25016         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
25017         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
25018         acls are unsupported.
25019         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
25020         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
25021         are unsupported.
25022
25023 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
25024
25025         Sync from coreutils.
25026         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
25027
25028 2006-01-07  Bruno Haible  <bruno@clisp.org>
25029
25030         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
25031         gl_EARLY.
25032
25033 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
25034
25035         * lib/strftime.c (tzname): Don't declare if it is already #defined.
25036         Problem reported for Mingw by Mark Junker.
25037
25038 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
25039
25040         * README: Gnulib normally doesn't generate a tarball.
25041
25042 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
25043
25044         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
25045         long int, not int, for nanosecond counts, so that people who are
25046         used to POSIX struct timespec won't be surprised.  Reported by Jim
25047         Meyering.
25048
25049 2005-12-28  Bruno Haible  <bruno@clisp.org>
25050
25051         * build-aux/config.rpath: Update from GNU gettext.
25052
25053 2005-12-16  Jim Meyering  <jim@meyering.net>
25054
25055         * modules/fprintftime: New module.
25056         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
25057
25058 2005-12-16  Jim Meyering  <jim@meyering.net>
25059
25060         * m4/fprintftime.m4: New file.
25061
25062 2005-12-16  Jim Meyering  <jim@meyering.net>
25063
25064         * lib/fprintftime.c, lib/fprintftime.h: New files.
25065
25066 2005-12-15  Simon Josefsson  <jas@extundo.com>
25067
25068         * modules/socklen (configure.ac): Fix M4 macro name, to align with
25069         new m4/socklen.m4.
25070
25071 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
25072
25073         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
25074         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
25075
25076 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
25077
25078         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
25079         * lib/argp-help.c (fill_in_uparams): Check if the constructed
25080         struct uparams is valid. Fall back to the default values if it is
25081         not.
25082
25083 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
25084
25085         * modules/argp (Files): Add argp-pin.c
25086         (Depends-on): dirname
25087         (lib_SOURCES): Add argp-pin.c
25088
25089 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
25090
25091         * m4/argp.m4:  Check if program_invocation_name and
25092         program_invocation_short_name are declared and define appropriate
25093         macros if they are not.
25094
25095 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
25096
25097         * lib/argp-help.c (__argp_base_name): New function
25098         (__argp_short_program_name): Rewrite using __argp_base_name
25099         * lib/argp-namefrob.h: Define program_invocation_name and
25100         program_invocation_short_name if requested
25101         (__argp_base_name): Add prototype
25102         * lib/argp-parse.c (argp_def): Use gettext wrappers
25103         (argp_default_parser): Use __argp_base_name
25104         * lib/argp-pin.c: New file. Defines program_invocation_name and
25105         program_invocation_short_name on systems that lack them.
25106
25107 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
25108
25109         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
25110         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
25111         porting problem reported by Georg Schwarz in
25112         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
25113
25114 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
25115
25116         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
25117         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
25118         porting problem reported by Georg Schwarz in
25119         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
25120
25121 2005-12-05  Bruno Haible  <bruno@clisp.org>
25122
25123         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
25124         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
25125         Reported by Mark Junker <mjscod@gmx.de>.
25126
25127 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
25128
25129         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
25130         Use implementation from Albert Chin, with some
25131         comments/corrections by Stepan Kasal and myself.
25132
25133 2005-12-02  Bruno Haible  <bruno@clisp.org>
25134
25135         * gnulib-tool (func_import): Accept GPLed build tool modules when
25136         --lgpl is given.
25137         * modules/csharpcomp-script: New file.
25138         * modules/csharpcomp: Depend on it.
25139         * modules/javacomp-script: New file.
25140         * modules/javacomp: Depend on it.
25141         Suggested by Simon Josefsson.
25142
25143 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
25144
25145         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
25146         statement, to work around an HP-UX 10.20 compiler bug reported by
25147         Peter O'Gorman.
25148
25149 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
25150
25151         * modules/savedir (Depends-on): Add openat.
25152
25153 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
25154
25155         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
25156         (uintmax_t) [defined uintmax_t]: Do not declare.
25157         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
25158         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
25159         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
25160         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
25161         sake of portability to weird hosts that C allows (though we don't
25162         know of any practical examples).
25163
25164         * lib/savedir.h (fdsavedir): New decl.
25165         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
25166         contains most of the former guts of savedir.
25167         (savedir): Use savedirstream.
25168         Include "openat.h".
25169
25170 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
25171
25172         * modules/obstack (Files): Add m4/ulonglong.m4.
25173         Problem reported by Davide Angelocola.
25174
25175 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
25176
25177         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
25178         coreutils no longer futzes with rounding modes.
25179
25180 2005-11-14  Jim Meyering  <jim@meyering.net>
25181
25182         * lib/mkstemp-safer.c: Include <config.h>, required for possible
25183         replacement of mkstemp.
25184
25185 2005-11-10  Simon Josefsson  <jas@extundo.com>
25186
25187         * lib/readline.c: Remove EOL.
25188
25189 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
25190
25191         * modules/gethrxtime (Depends-on): Add gettime.
25192
25193 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
25194
25195         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
25196         or gettimeofday; no longer needed.
25197
25198 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
25199
25200         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
25201         time business.
25202         (gethrxtime) [! (HAVE_NANOUPTIME
25203         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
25204         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
25205         our own approximation.
25206
25207 2005-11-08  Eric Blake  <ebb9@byu.net>
25208
25209         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
25210
25211 2005-11-08  Eric Blake  <ebb9@byu.net>
25212
25213         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
25214
25215 2005-11-04  Bruno Haible  <bruno@clisp.org>
25216
25217         * gnulib-tool: Implement --update mode.
25218
25219 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
25220
25221         Fix porting problem reported by Theodoros V. Kalamatianos.
25222         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
25223         Don't assume that futimes failing means we must fail.
25224
25225 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
25226
25227         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
25228         variables to suggest the intended function of the PATH_MAX check.
25229
25230 2005-10-30  Kean Johnston  <jkj@sco.com>
25231
25232         Trivial changes to support SCO systems.
25233         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
25234         as PATH_MAX.
25235         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
25236         where __ptr is null when no I/O is pending.
25237
25238 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
25239
25240         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
25241         leave errno alone.  Problem reported by Dmitry V. Levin.
25242
25243 2005-10-28  Simon Josefsson  <jas@extundo.com>
25244
25245         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
25246         Test more.
25247
25248         * tests/test-gc-md2.c, tests/test-md2.c: New files.
25249
25250         * modules/md2, modules/md2-tests: New files.
25251
25252 2005-10-28  Simon Josefsson  <jas@extundo.com>
25253
25254         * m4/inet_ntop.m4: More tests.
25255
25256         * m4/gc-md2.m4, md2.m4: New file.
25257
25258 2005-10-28  Simon Josefsson  <jas@extundo.com>
25259
25260         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
25261         "restrict" keywords, as per POSIX.  Protect the function
25262         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
25263         Don't use K&R prototypes.  Check the sprintf return values.
25264         Re-define EAFNOSUPPORT if not present.  Indent.
25265
25266         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
25267         suggested by Bruno Haible <bruno@clisp.org>.
25268
25269         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
25270
25271         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
25272
25273         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
25274         libgcrypt).
25275
25276         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
25277
25278         * lib/md2.h, lib/md2.c: New files.
25279
25280 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
25281
25282         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
25283         errno alone.  Problem reported by Frederic Jolliton.
25284
25285 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
25286
25287         * modules/verify (License): Change from GPL to LGPL.  This is a
25288         tiny module and there are apparently near-equivalents that are
25289         under the BSD license.
25290
25291 2005-10-24  Simon Josefsson  <jas@extundo.com>
25292
25293         * modules/sha1: Relicense to LGPL.
25294
25295 2005-10-24  Simon Josefsson  <jas@extundo.com>
25296
25297         * lib/md4.h: Shrink buffer size, now that we changed the type.
25298
25299 2005-10-23  Simon Josefsson  <jas@extundo.com>
25300
25301         * gnulib-tool (func_import): Fix --tests-base.
25302
25303 2005-10-22  Simon Josefsson  <jas@extundo.com>
25304
25305         * modules/arcfour (Depends-on): Need stdint.
25306
25307 2005-10-22  Simon Josefsson  <jas@extundo.com>
25308
25309         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
25310         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
25311
25312 2005-10-22  Simon Josefsson  <jas@extundo.com>
25313
25314         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
25315         suggested by Bruno Haible <bruno@clisp.org>.
25316
25317 2005-10-22  Simon Josefsson  <jas@extundo.com>
25318
25319         * lib/crc.h: Include stddef.h, for size_t.
25320
25321 2005-10-22  Simon Josefsson  <jas@extundo.com>
25322
25323         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
25324         arcfour_context struct (simplify test vector testing in GNU
25325         Shishi).
25326
25327 2005-10-21  Simon Josefsson  <jas@extundo.com>
25328
25329         * modules/des, modules/des-tests: New files.
25330
25331         * modules/gc-des, modules/gc-des-tests: New files.
25332
25333         * tests/test-des.c, tests/test-gc-des.c: New file.
25334
25335 2005-10-21  Simon Josefsson  <jas@extundo.com>
25336
25337         * modules/arctwo, modules/arctwo-tests: New files.
25338
25339         * tests/test-arctwo.c: New file.
25340
25341         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
25342
25343         * tests/test-gc-arctwo.c: New file.
25344
25345 2005-10-21  Simon Josefsson  <jas@extundo.com>
25346
25347         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
25348         Bruno Haible <bruno@clisp.org>.
25349
25350         * m4/gc-des.m4: New file.
25351
25352 2005-10-21  Simon Josefsson  <jas@extundo.com>
25353
25354         * m4/arctwo.m4: New file.
25355
25356         * m4/gc-arctwo.m4: New file.
25357
25358 2005-10-21  Simon Josefsson  <jas@extundo.com>
25359
25360         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
25361         block.
25362
25363 2005-10-21  Simon Josefsson  <jas@extundo.com>
25364
25365         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
25366         <bruno@clisp.org>.
25367
25368         * lib/hmac-sha1.c (hmac_sha1): Likewise.
25369
25370         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
25371         Bruno Haible <bruno@clisp.org>.
25372
25373         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
25374         <bruno@clisp.org>.
25375
25376 2005-10-21  Simon Josefsson  <jas@extundo.com>
25377
25378         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
25379
25380 2005-10-21  Simon Josefsson  <jas@extundo.com>
25381
25382         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
25383
25384 2005-10-21  Simon Josefsson  <jas@extundo.com>
25385
25386         * lib/des.h, lib/des.c: New files.
25387
25388         * lib/gc-gnulib.c: Support DES.c
25389
25390 2005-10-21  Simon Josefsson  <jas@extundo.com>
25391
25392         * lib/arctwo.h, lib/arctwo.c: New files.
25393
25394         * lib/gc-gnulib.c: Support ARCTWO.
25395
25396 2005-10-21  Simon Josefsson  <jas@extundo.com>
25397
25398         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
25399         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25400
25401 2005-10-21  Simon Josefsson  <jas@extundo.com>
25402
25403         * gnulib-tool (func_import, func_create_testdir): Define automake
25404         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
25405         Makefile.am snippet),
25406         suggested by Bruno Haible <bruno@clisp.org>.
25407
25408         * modules/gc (Makefile.am): Use it.
25409
25410 2005-10-21  Bruno Haible  <bruno@clisp.org>
25411
25412         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
25413         patch.
25414
25415 2005-10-19  Simon Josefsson  <jas@extundo.com>
25416
25417         * tests/test-gc-rijndael.c: New file.
25418
25419         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
25420
25421 2005-10-19  Simon Josefsson  <jas@extundo.com>
25422
25423         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
25424         interface too.
25425
25426 2005-10-19  Simon Josefsson  <jas@extundo.com>
25427
25428         * tests/test-gc-arcfour.c: New file.
25429
25430         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
25431
25432 2005-10-19  Simon Josefsson  <jas@extundo.com>
25433
25434         * modules/gc-md4, modules/gc-md4-tests: New file.
25435
25436         * tests/test-gc-md4.c: New file.
25437
25438 2005-10-19  Simon Josefsson  <jas@extundo.com>
25439
25440         * m4/gc-md4.m4: New file.
25441
25442 2005-10-19  Simon Josefsson  <jas@extundo.com>
25443
25444         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
25445         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
25446         <kasal@ucw.cz>.
25447
25448 2005-10-19  Simon Josefsson  <jas@extundo.com>
25449
25450         * m4/gc-arcfour.m4: New file.
25451
25452         * m4/gc-rijndael.m4: New file.
25453
25454 2005-10-19  Simon Josefsson  <jas@extundo.com>
25455
25456         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
25457
25458 2005-10-19  Simon Josefsson  <jas@extundo.com>
25459
25460         * lib/gc-gnulib.c: Support ARCFOUR.
25461
25462 2005-10-19  Simon Josefsson  <jas@extundo.com>
25463
25464         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
25465         support.
25466
25467         * lib/gc.h: Add ECB enum type.
25468
25469         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
25470
25471 2005-10-18  Simon Josefsson  <jas@extundo.com>
25472
25473         * tests/test-md5.c: New file.
25474
25475         * modules/md5-tests: New file.
25476
25477 2005-10-18  Simon Josefsson  <jas@extundo.com>
25478
25479         * tests/test-md4.c: New file.
25480
25481         * modules/md4, modules/md4-tests: New files.
25482
25483 2005-10-18  Simon Josefsson  <jas@extundo.com>
25484
25485         * m4/md4.m4: New file.
25486
25487 2005-10-18  Simon Josefsson  <jas@extundo.com>
25488
25489         * lib/md4.h, lib/md4.c: New files, based on md5.?.
25490
25491 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
25492
25493         * gnulib-tool (func_create_testdir): Omit the second check whether
25494         BUILT_SOURCES in nonempty.
25495
25496 2005-10-17  Simon Josefsson  <jas@extundo.com>
25497
25498         * tests/test-rijndael.c: New file.
25499
25500 2005-10-17  Simon Josefsson  <jas@extundo.com>
25501
25502         * modules/sha1: Depend on stdint instead of md5.
25503
25504         * modules/md5: Depend on stdint, remove uint32_t.
25505
25506 2005-10-17  Simon Josefsson  <jas@extundo.com>
25507
25508         * modules/gc-sha1-tests: New file.
25509
25510         * tests/test-gc-sha1.c: New file.
25511
25512 2005-10-17  Simon Josefsson  <jas@extundo.com>
25513
25514         * m4/md5.m4: Remove call to uint32_t.m4.
25515
25516 2005-10-17  Simon Josefsson  <jas@extundo.com>
25517
25518         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
25519
25520         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
25521         md5.h.
25522
25523         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
25524
25525         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
25526
25527 2005-10-17  Simon Josefsson  <jas@extundo.com>
25528
25529         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
25530
25531 2005-10-17  Simon Josefsson  <jas@extundo.com>
25532
25533         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
25534
25535 2005-10-17  Simon Josefsson  <jas@extundo.com>
25536
25537         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
25538
25539         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
25540
25541 2005-10-17  Bruno Haible  <bruno@clisp.org>
25542
25543         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
25544         that it can also be used in a test.
25545
25546 2005-10-16  Bruno Haible  <bruno@clisp.org>
25547
25548         * gnulib-tool (func_emit_tests_Makefile_am): Also define
25549         TESTS_ENVIRONMENT, so that individual tests can augment it.
25550
25551         * gnulib-tool (func_create_testdir): Use an intermediate target for
25552         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
25553         macros, like $(ALLOCA_H), which cannot be passed through the command
25554         line.
25555
25556 2005-10-15  Simon Josefsson  <jas@extundo.com>
25557
25558         * modules/rijndael-tests: New file.
25559
25560         * modules/rijndael: New file.
25561
25562 2005-10-15  Simon Josefsson  <jas@extundo.com>
25563
25564         * m4/rijndael.m4: New file.
25565
25566 2005-10-15  Simon Josefsson  <jas@extundo.com>
25567
25568         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
25569
25570         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
25571
25572 2005-10-14  Simon Josefsson  <jas@extundo.com>
25573
25574         * tests/test-arcfour.c: New file.
25575
25576         * modules/arcfour, modules/arcfour-tests: New files.
25577
25578 2005-10-14  Simon Josefsson  <jas@extundo.com>
25579
25580         * m4/arcfour.m4: New file.
25581
25582 2005-10-14  Simon Josefsson  <jas@extundo.com>
25583
25584         * lib/arcfour.h, lib/arcfour.c: New files.
25585
25586 2005-10-14  Roland McGrath  <roland@redhat.com>
25587
25588         Import from libc.  [BZ #1331]
25589         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
25590         macro argument.
25591         Reported by Matej Vela <vela@debian.org>.
25592
25593 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
25594
25595         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
25596         include <wchar.h>; no longer needed.
25597
25598 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
25599
25600         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
25601
25602 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
25603         and  Ulrich Drepper  <drepper@redhat.com>
25604
25605         Import from libc.
25606         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
25607         instead of inline stream orientation test and two separate
25608         function calls.  Pay no attention to USE_IN_LIBIO.
25609
25610 2005-10-13  Simon Josefsson  <jas@extundo.com>
25611
25612         * modules/gc-hmac-md5-tests: New file.
25613
25614         * tests/test-gc-hmac-sha1.c: New file.
25615
25616         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
25617
25618         * modules/gc-hmac-md5-tests: New file.
25619
25620         * tests/test-gc-md5.c: New file.
25621
25622         * modules/gc-md5-tests: New file.
25623
25624 2005-10-13  Simon Josefsson  <jas@extundo.com>
25625
25626         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
25627         Move memory allocation outside of loop.
25628
25629 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
25630
25631         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
25632         intermediate directory is in a read-only file system.  Problem
25633         reported by Eric Blake.
25634
25635 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
25636
25637         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
25638
25639 2005-10-12  Simon Josefsson  <jas@extundo.com>
25640
25641         * tests/test-hmac-sha1.c: New file.
25642
25643         * modules/hmac-sha1-tests: New file.
25644
25645         * modules/hmac-sha1: New file.
25646
25647 2005-10-12  Simon Josefsson  <jas@extundo.com>
25648
25649         * modules/gc-sha1: New file.
25650
25651 2005-10-12  Simon Josefsson  <jas@extundo.com>
25652
25653         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
25654
25655         * tests/test-gc-pbkdf2-sha1.c: New file.
25656
25657 2005-10-12  Simon Josefsson  <jas@extundo.com>
25658
25659         * modules/gc-md5, modules/gc-hmac-md5: New files.
25660
25661         * modules/gc (Files): Remove md5, memxor and hmac files.
25662
25663 2005-10-12  Simon Josefsson  <jas@extundo.com>
25664
25665         * m4/gc-pbkdf2-sha1.m4: New file.
25666
25667         * m4/gc-hmac-sha1.m4: New file.
25668
25669         * m4/gc-sha1: New file.
25670
25671         * m4/hmac-sha1.m4: New file.
25672
25673 2005-10-12  Simon Josefsson  <jas@extundo.com>
25674
25675         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
25676
25677         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
25678
25679 2005-10-12  Simon Josefsson  <jas@extundo.com>
25680
25681         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
25682         suggested by Bruno Haible <bruno@clisp.org>.
25683
25684 2005-10-12  Simon Josefsson  <jas@extundo.com>
25685
25686         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
25687
25688 2005-10-12  Simon Josefsson  <jas@extundo.com>
25689
25690         * lib/gc-pbkdf2-sha1.c: New file.
25691
25692         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
25693
25694 2005-10-12  Simon Josefsson  <jas@extundo.com>
25695
25696         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
25697
25698         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
25699
25700 2005-10-12  Simon Josefsson  <jas@extundo.com>
25701
25702         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
25703         GC_USE_HMAC_MD5, respectively.
25704
25705         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
25706         (gc_md5): Fix typo.
25707
25708         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
25709
25710         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
25711
25712         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
25713
25714 2005-10-12  Bruno Haible  <bruno@clisp.org>
25715
25716         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
25717         Reported by Stepan Kasal <kasal@ucw.cz>.
25718
25719 2005-10-11  Simon Josefsson  <jas@extundo.com>
25720
25721         * tests/test-crc.c: New file.
25722
25723         * modules/crc, modules/crc-tests: New files.
25724
25725 2005-10-11  Simon Josefsson  <jas@extundo.com>
25726
25727         * m4/crc.m4: New file.
25728
25729 2005-10-11  Simon Josefsson  <jas@extundo.com>
25730
25731         * lib/gc.h: Add gc_hash and gc_hash_buffer.
25732
25733         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
25734
25735         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
25736
25737 2005-10-11  Simon Josefsson  <jas@extundo.com>
25738
25739         * lib/crc.h, lib/crc.c: New files.
25740
25741         * lib/gc.h (gc_hash_buffer): Add doc.
25742
25743 2005-10-11  Bruno Haible  <bruno@clisp.org>
25744
25745         * modules/c-strcasestr: New file.
25746         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
25747
25748 2005-10-11  Bruno Haible  <bruno@clisp.org>
25749
25750         * modules/c-strcase: New file.
25751         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
25752
25753 2005-10-11  Bruno Haible  <bruno@clisp.org>
25754
25755         * lib/strcasecmp.c: Include limits.h.
25756         (strcasecmp): Avoid integer overflow on exotic platforms.
25757         * lib/strncasecmp.c: Include limits.h.
25758         (strncasecmp): Avoid integer overflow on exotic platforms.
25759         Reported by Paul Eggert.
25760
25761 2005-10-11  Bruno Haible  <bruno@clisp.org>
25762
25763         * lib/c-strcasestr.h: New file, from GNU gettext.
25764         * lib/c-strcasestr.c: New file, from GNU gettext.
25765
25766 2005-10-11  Bruno Haible  <bruno@clisp.org>
25767
25768         * lib/c-strcase.h: New file, from GNU gettext.
25769         * lib/c-strcasecmp.c: New file, from GNU gettext.
25770         * lib/c-strncasecmp.c: New file, from GNU gettext.
25771
25772 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
25773
25774         * modules/mempcpy (License): GPL -> LGPL.
25775         * modules/strchrnul (License): Likewise.
25776         * modules/sysexits (License): Likewise.
25777
25778 2005-10-08  Simon Josefsson  <jas@extundo.com>
25779
25780         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
25781
25782 2005-10-07  Simon Josefsson  <jas@extundo.com>
25783
25784         * m4/memxor.m4: Remove gl_C_RESTRICT call.
25785
25786 2005-10-06  Simon Josefsson  <jas@extundo.com>
25787
25788         * tests/test-hmac-md5.c: New file.
25789
25790         * modules/hmac-md5-tests: New file.
25791
25792         * modules/hmac-md5: New file.
25793
25794 2005-10-06  Simon Josefsson  <jas@extundo.com>
25795
25796         * m4/hmac-md5.m4: New file.
25797
25798         * m4/memxor.m4: Require gl_C_RESTRICT.
25799
25800 2005-10-06  Simon Josefsson  <jas@extundo.com>
25801
25802         * lib/memxor.c (memxor): Avoid casts and warnings.
25803
25804 2005-10-06  Simon Josefsson  <jas@extundo.com>
25805
25806         * lib/hmac-md5.c: New file.
25807
25808         * lib/hmac.h: New file.
25809
25810 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
25811
25812         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
25813         promotes to int, not unsigned int, to catch the AIX 5.3
25814         compiler bug.
25815
25816 2005-10-05  Simon Josefsson  <jas@extundo.com>
25817
25818         * modules/memxor: New file.
25819
25820         * modules/iconv (Files): Move config.rpath to havelib, it is used
25821         there.
25822
25823         * modules/havelib (Files): Add config.rpath.
25824
25825 2005-10-05  Simon Josefsson  <jas@extundo.com>
25826
25827         * m4/memxor.m4: New file.
25828
25829 2005-10-05  Simon Josefsson  <jas@extundo.com>
25830
25831         * lib/memxor.c (memxor): Fix compiler error.
25832
25833         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
25834         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
25835
25836         * lib/memxor.h, lib/memxor.c: New files.
25837
25838         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
25839         we assume all systems have it, suggested by Jim Meyering
25840         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
25841         any systems lack sys/socket.h; mingw32 is known to lack it, but we
25842         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
25843         same reasons.
25844
25845 2005-10-05  Simon Josefsson  <jas@extundo.com>
25846
25847         * config/srclist.txt: Add glibc bug 1423 for md5.h.
25848
25849 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
25850
25851         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
25852         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
25853         needed, since the source code now assumes these .h files.
25854
25855 2005-10-05  Derek Price  <derek@ximbiot.com>
25856
25857         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
25858
25859 2005-10-05  Bruno Haible  <bruno@clisp.org>
25860
25861         * modules/stdint (License): Change to LGPL.
25862
25863 2005-10-04  Simon Josefsson  <jas@extundo.com>
25864
25865         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
25866         D. Baushke" <mdb@gnu.org>.
25867
25868 2005-10-04  Bruno Haible  <bruno@clisp.org>
25869
25870         * lib/verify.h (verify_true): Provide alternative definition for C++.
25871
25872 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
25873
25874         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
25875         (SSIZE_MAX): New macro, if not already defined.
25876         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
25877         than 2 GiB.
25878
25879 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
25880
25881         Sync from coreutils.
25882         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
25883         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
25884         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
25885         ULLONG_MAX doesn't work with 2.7.2.1.
25886
25887 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
25888
25889         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
25890         From Ben Pfaff.
25891
25892         * modules/exclude (Depends-on): Depend on verify.
25893         * modules/strtoimax (Depends-on): Likewise.
25894         * modules/utimecmp (Depends-on): Likewise.
25895
25896 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
25897
25898         * lib/exclude.c: Include verify.h.
25899         (verify): Remove.  All callers changed to use verify.h's version.
25900         * lib/strtoimax.c: Likewise.
25901         * lib/utimecmp.c: Likewis.e
25902
25903         Sync from coreutils.
25904         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
25905         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
25906         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
25907         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
25908         bother returning ENOSYS if settimeofday or stime fails; just let
25909         them return whatever errno they want to return.
25910         * lib/utimens.c: Include unistd.h, for dup2.
25911         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
25912         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
25913
25914 2005-10-02  Jim Meyering  <jim@meyering.net>
25915
25916         Sync from coreutils.
25917         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
25918         from glibc-2.2.5 that fails for read-only files.
25919
25920 2005-10-02  Jim Meyering  <jim@meyering.net>
25921
25922         Sync from coreutils.
25923         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
25924         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
25925         `#if HAVE_CONFIG_H'.
25926         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
25927         Remove AT_FDCWD test.
25928         Do not consume the fd unless successful.
25929         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
25930         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
25931         block, so that we don't even try to compile it if settimeofday is
25932         available.  This works around a compilation failure on OSF1 V5.1,
25933         due to stime requiring a `long int*' while tv_sec is `int'.
25934
25935 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
25936
25937         Sync from coreutils.
25938         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
25939         against `yes', rather than just testing for nonempty.
25940
25941 2005-10-01  Simon Josefsson  <jas@extundo.com>
25942
25943         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
25944         and Darwin.
25945
25946         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
25947         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
25948         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
25949         freeaddrinfo and gai_strerror are declared by the POSIX headers.
25950         Check if struct addrinfo is declared.
25951
25952 2005-10-01  Simon Josefsson  <jas@extundo.com>
25953
25954         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
25955         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
25956         AI_* and EAI_* definitions.  Protect function declarations.
25957
25958 2005-10-01  Jim Meyering  <jim@meyering.net>
25959
25960         Sync from coreutils.
25961
25962         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
25963         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
25964         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
25965         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
25966         in the inet and nsl libraries.  Required on Solaris 5.7.
25967
25968 2005-10-01  Jim Meyering  <jim@meyering.net>
25969
25970         Sync from coreutils.
25971         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
25972         in the inet and nsl libraries.  Required on Solaris 5.7.
25973
25974 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
25975
25976         * lib/getdelim.c (getdelim): Remove unused variables.
25977
25978 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
25979
25980         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
25981         so that the code works even with ancient cpp.  Portability problem
25982         with GCC 2.7.2.1 reported by Thomas M.Ott.
25983
25984 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
25985
25986         * modules/regex (Depends-on): Add strcase.
25987
25988         * modules/gethostname (Licence): Change from GPL to LGPL, since
25989         gethostname.c is a trivial implementation of a standard library
25990         function.
25991         * modules/poll (License): Change from GPL to LGPL, since it's
25992         derived from LGPL code.
25993
25994 2005-09-27  Jim Meyering  <jim@meyering.net>
25995
25996         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
25997         HAVE_CONFIG_H.
25998
25999         * lib/intprops.h (signed_type_or_expr__): Define.
26000         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
26001         for unsigned types.
26002
26003 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
26004
26005         * lib/verify.h (verify_expr): Remove, replacing with:
26006         (verify_true): New macro that returns true instead of void.
26007         (verify_type__): Remove.
26008         (verify): Use verify_true rather than verify_type__.
26009
26010 2005-09-26  Bruno Haible  <bruno@clisp.org>
26011
26012         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
26013         is necessary.
26014         (lib_SOURCES): Remove mbchar.c.
26015         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
26016         (Files): Add m4/mbrtowc.m4.
26017         * modules/mbiter: Likewise.
26018         * modules/mbuiter: Likewise.
26019
26020 2005-09-26  Bruno Haible  <bruno@clisp.org>
26021
26022         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
26023         compile mbchar.c if they are not both present.
26024         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
26025         * m4/mbiter.m4 (gl_MBITER): Likewise.
26026         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
26027         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
26028         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
26029
26030 2005-09-25  Jim Meyering  <jim@meyering.net>
26031
26032         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
26033         also uses socklen_t.
26034
26035 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
26036
26037         * lib/utimens.c (ENOSYS): Define if not already defined.
26038         (futimens): Support having a null PATH if the file descriptor
26039         is nonnegative.
26040
26041         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
26042         Remove.
26043         (__attribute): Define to empty unless GCC 3.1 or later.
26044         This works around a core dump on OpenBSD 3.4, which has GCC
26045         2.95.3, which dumps core when given __attribute__(()).  It also
26046         simplifies other tests, since we really don't want to bother with
26047         worrying about which ancient version of GCC supported what.
26048         Original problem reported by Yoann Vandoorselaere, with part of
26049         the fix suggested by Derek Price.
26050
26051 2005-09-24  Jim Meyering  <jim@meyering.net>
26052
26053         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
26054         so we can once again use a positive bitfield width of 1 -- now we
26055         don't have to explain why we were using a bitfield width of 2.
26056
26057 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
26058
26059         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
26060         and similarly for the other external symbols.  Problem reported
26061         by James Gallager.
26062
26063         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
26064         bug reported by Jim Meyering.
26065
26066         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
26067         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
26068         not needed, since socklen is a prerequisite module.
26069
26070 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
26071
26072         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
26073         Problem reported by Eric Blake.
26074         (getaddrinfo): Initialize se so that it's not garbage.
26075         Redo internal storage allocation so that it doesn't make unportable
26076         assumptions about alignment.
26077         Fix a memory leak.
26078
26079         * lib/utimens.c (futimens): Use futimesat if available.
26080         Prefer it to futimes since it doesn't have the futimes bug.
26081
26082         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
26083         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
26084         Instead, declare a function that returns a pointer to an array,
26085         and use verify_type__ to declare the size of the array.
26086         Problem and germ of a solution reported by Bruno Haible.
26087         (verify_type__): Use 2, not 1, for bitfield size, to avoid
26088         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
26089
26090 2005-09-23  Jim Meyering  <jim@meyering.net>
26091
26092         Sync from coreutils.
26093         Correct build failure (socklen_t not defined) on at least
26094         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
26095         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
26096
26097 2005-09-23  Jim Meyering  <jim@meyering.net>
26098
26099         * modules/getaddrinfo (Depends-on): Add socklen.
26100
26101 2005-09-23  Bruno Haible  <bruno@clisp.org>
26102
26103         * tests/test-verify.c: New file.
26104
26105 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
26106
26107         Sync from coreutils.
26108
26109         * modules/argmatch (Depends-on): Add verify.
26110         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
26111         unistd-safer.
26112         * modules/save-cwd (Depends-on): Likewise.
26113
26114         * modules/openat (Files): Add lib/openat-die.c.
26115         (Depends-on): Remove error, exitfail.
26116         Add dirname.
26117
26118         * modules/verify: New file.
26119         * MODULES.html.sh (Diagnostics <assert.h>): New section,
26120         with "verify" module.
26121
26122 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
26123
26124         Sync from coreutils.
26125
26126         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
26127         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
26128         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
26129         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
26130         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
26131         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
26132         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
26133         Don't bother checking for string.h, stdlib.h, unistd.h.
26134         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
26135         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
26136         module's job.
26137         * m4/jm-macros.m4 (gl_MACROS): Likewise.
26138         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
26139
26140         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
26141         (gl_GETDATE): Use it.
26142
26143         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
26144
26145 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
26146
26147         Sync from coreutils.
26148
26149         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
26150         stat-time.h.
26151         * lib/argmatch.h: Include verify.h
26152         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
26153         (ARGMATCH_ASSERT): Remove; unused.
26154         * lib/canonicalize.c: Assume STDC_HEADERS.
26155         * lib/exclude.c: Include "strcase.h".
26156         * lib/regex_internal.h [!defined _LIBC]: Likewise.
26157         * lib/getusershell.c: Include stdio--.h rather than stdio.h
26158         and stdio-safer.h.
26159         (getusershell): Call fopen, not fopen_safer.
26160         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
26161         Do not include unistd-safer.h.
26162         (save_cwd): Don't call fd_safer; no longer needed
26163         now that we include fcntl--.h.
26164
26165         * lib/getdate.y (relative_time): New type.
26166         (RELATIVE_TIME_0): New constant.
26167         (parser_control): Use relative_time instead of doing it ourselves.
26168         (%union): Add new relative_time rel member.
26169         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
26170         Now typeless.
26171         (relunit, relunit_snumber): Now of type rel.
26172         (zone, rel, relunit, get_date): Adjust to above changes.
26173
26174         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
26175         Do not include unistd-safer.h.
26176         (getloadavg): Don't call fd_safer; no longer needed
26177         now that we include fcntl--.h.
26178
26179         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
26180         (make_dir_parents): Treat ENOSYS like EEXIST.
26181
26182         Improve quality of diagnostics on restore_cwd failure.
26183         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
26184         (make_dir_parents): Last arg is now int * (for errno), not bool *.
26185         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
26186         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
26187         each time through the loop.  Do not diagnose restore_cwd failure;
26188         that is the caller's job (and perhaps the caller does not care).
26189
26190         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
26191         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
26192         If the file already exists but is not a directory, don't bother
26193         to try to make its parents.
26194         Close potential file descriptor leak if we can't chdir("/") (!).
26195         Don't always return true if chdir($PWD) fails; return true only
26196         if the requested action was done successfully (except for the
26197         chdir($PWD)).
26198         Don't log final directory unless we actually made it.
26199         Refactor to avoid duplicate code to fix up permissions.
26200         Don't attempt to fix up parent permissions if chdir($PWD) fails.
26201
26202         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
26203         to make it a bit faster and (I hope) clearer.
26204         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
26205         Fix bug in formats like %2N.
26206
26207         * lib/verify.h: New file.
26208
26209 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
26210
26211         Sync from coreutils.
26212         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
26213
26214 2005-09-22  Jim Meyering  <jim@meyering.net>
26215
26216         Sync from coreutils.
26217
26218         * m4/lstat.m4 (gl_FUNC_LSTAT):
26219         Use AC_LIBSOURCES to require lstat.c and lstat.h.
26220         Remove obsolete comment.
26221         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
26222         * m4/xstrtod.m4: Likewise.
26223
26224         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
26225
26226 2005-09-22  Jim Meyering  <jim@meyering.net>
26227
26228         Sync from coreutils.
26229
26230         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
26231
26232         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
26233         the .tm_year member, since otherwise gcc-4.0 would now warn about
26234         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
26235
26236         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
26237         order to avoid an unsuppressible warning from gcc on 64-bit systems.
26238
26239         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
26240         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
26241         when run in a time zone for which daylight savings time is in effect
26242         for the starting date.
26243
26244         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
26245         stop us from restricting permissions of just-created absolute-named
26246         directories.
26247         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
26248         to restore initial working directory.
26249         * lib/mkdir-p.c (make_dir_parents): New parameter:
26250         different_working_dir, to tell caller if/when we change the working
26251         directory and are unable to return to the initial one.
26252         * lib/mkdir-p.h (make_dir_parents): Update prototype.
26253         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
26254         `return false'.  This fixes a bug introduced on 2004-07-30.
26255
26256         * lib/openat.c (fdopendir): Be sure to close the supplied
26257         file descriptor before returning.  This makes our replacement
26258         implementation a little closer to Solaris's, where fdopendir
26259         ties the file descriptor to the returned DIR* pointer.
26260         * lib/openat.c (unlinkat): New function.
26261         * lib/openat.h (unlinkat): Add prototype.
26262         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
26263         (openat_restore_fail): Rename from openat_restore_die.
26264         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
26265
26266         Provide an alternative to exiting immediately upon save_cwd or
26267         restore_cwd failure.  Now, an application can arrange e.g.,
26268         to perform a longjump in that case.
26269         * lib/openat.c: Include dirname.h.
26270         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
26271         (rpl_openat, fdopendir, fstatat): Call openat_save_die
26272         and openat_restore_die rather than calling error directly.
26273         Don't include "error.h" or "exitfail.h"; they're no longer needed.
26274
26275         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
26276         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
26277         define.
26278
26279         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
26280         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
26281                             int utc, int nanoseconds);
26282         Background:
26283         date should not have to allocate a megabyte of virtual memory to
26284         handle a format argument like +%1048575T.  When implemented with
26285         strftime, it must allocate such a buffer, use strftime to fill it
26286         in, print it, then free it.
26287         With fprintftime, it simply prints everything and exits.
26288         With no need for memory allocation, that's one fewer way to fail.
26289         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
26290         optional field width, not before, so we accept %9:z, not %:9z.
26291         (my_strftime): Be sure to use L_('x') for literals.
26292
26293         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
26294         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
26295         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
26296         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
26297         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
26298         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
26299         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
26300         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
26301         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
26302         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
26303         * lib/xgethostname.c, lib/xreadlink.c:
26304         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
26305
26306         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
26307         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
26308         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
26309         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
26310         and don't include <sys/file.h>).
26311
26312 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
26313
26314         Sync from coreutils.
26315
26316         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
26317         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
26318         [!LDAV_DONE]: Avoid unused variable warning.
26319
26320 2005-09-21  Bruno Haible  <bruno@clisp.org>
26321
26322         * lib/unicodeio.h (unicode_to_mb): New declaration.
26323
26324 2005-09-20  Derek Price  <derek@ximbiot.com>
26325
26326         * lib/getaddrinfo.c: Don't include <netdb.h> included from
26327         getaddrinfo.h.
26328
26329 2005-09-20  Bruno Haible  <bruno@clisp.org>
26330
26331         * gnulib-tool: Remove trailing slashes from the values specified for
26332         --source-base, --m4-base, --tests-base, --aux-dir.
26333         Suggested by Simon Josefsson <jas@extundo.com>.
26334
26335 2005-09-20  Bruno Haible  <bruno@clisp.org>
26336
26337         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
26338         func_modules_to_filelist, func_import, func_create_testdir): Make all
26339         sorting results locale-independent, so that gnulib-cache.m4 doesn't
26340         change when gnulib-tool is invoked in a different locale.
26341
26342 2005-09-19  Simon Josefsson  <jas@extundo.com>
26343
26344         * m4/socklen.m4: Fix typo.
26345
26346 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26347
26348         Use a consistent style for including <config.h>.
26349         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
26350         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
26351         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
26352         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
26353         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
26354         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
26355         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
26356         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
26357         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
26358         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
26359         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
26360         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
26361         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
26362         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
26363         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
26364         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
26365         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
26366         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
26367         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
26368         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
26369         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
26370         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
26371         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
26372         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
26373         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
26374         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
26375         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
26376         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
26377         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
26378         lib/xstrtoumax.c, lib/yesno.c:
26379         Standardize inclusion of config.h.
26380         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
26381         lib/inttostr.h:  Removed inclusion of config.h from header files.
26382         * lib/inttostr.c:  Adjusted in-tree users.
26383         * lib/timespec.h: Remove superfluous warning to include config.h.
26384         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
26385         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
26386         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
26387         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
26388         config.h with HAVE_CONFIG_H.
26389
26390 2005-09-19  Jim Meyering  <jim@meyering.net>
26391
26392         * modules/pathmax (License): Change to LGPL.
26393
26394 2005-09-19  Derek Price  <derek@ximbiot.com>
26395
26396         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
26397
26398 2005-09-19  Bruno Haible  <bruno@clisp.org>
26399
26400         * gnulib-tool (import): Provide default for --tests-base.
26401
26402 2005-09-19  Bruno Haible  <bruno@clisp.org>
26403
26404         * doc/quote.texi: New file, extracted from gnulib.texi.
26405         * doc/ctime.texi: New file, extracted from gnulib.texi.
26406         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
26407         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
26408         * doc/gnulib.texi: Include them.
26409
26410 2005-09-18  Bruno Haible  <bruno@clisp.org>
26411
26412         Portability fix.
26413         * gnulib-tool (func_readlink): New function.
26414         (func_ln_if_changed): Use it.
26415
26416 2005-09-18  Bruno Haible  <bruno@clisp.org>
26417
26418         * gnulib-tool: Support --with-tests also with --import.
26419         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
26420         (func_import): Use variables $testsbase and $inctests. Emit a
26421         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
26422         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
26423         SUBDIRS += $testsdir.
26424         (func_create_testdir): Update.
26425
26426 2005-09-18  Bruno Haible  <bruno@clisp.org>
26427
26428         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
26429         instead of $dry_run.
26430         (func_cp_if_changed, func_mv_if_changed): Remove functions.
26431         (func_ln_if_changed): Don't handle dry-run here.
26432         (func_import): In dry-run mode, detect more precisely which actions
26433         would be performed, and don't use "...ing" verbs.
26434
26435 2005-09-18  Bruno Haible  <bruno@clisp.org>
26436
26437         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
26438         (func_import): Use join on two temporary files instead of three nested
26439         loops, in order to determine which files are new or old.
26440
26441 2005-09-18  Bruno Haible  <bruno@clisp.org>
26442
26443         * gnulib-tool (func_import): Comment out code that spits out the
26444         new files with --dry-run.
26445
26446 2005-09-18  Bruno Haible  <bruno@clisp.org>
26447
26448         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
26449
26450 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
26451
26452         * lib/stat-time.h: New file.
26453         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
26454         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
26455         in a different way.
26456         (timespec_cmp): New function.
26457         * lib/utimecmp.c: Include stat-time.h.
26458         (SYSCALL_RESOLUTION): Depend on whether various struct stat
26459         members exist, not on the obsolescent ST_MTIM_NSEC.
26460         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
26461
26462 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
26463
26464         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
26465
26466 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
26467
26468         * MODULES.html.sh (File system functions): Add stat-time.
26469         * modules/stat-time: New file.
26470         * modules/timespec (Files): Remove m4/st_mtim.m4; this
26471         is now done in a different way, by the stat-time module.
26472         * modules/utimecmp (Depends-on): Add stat-time.
26473
26474 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
26475
26476         * m4/st_mtim.m4: Remove.  Superseded by...
26477         * m4/stat-time.m4: New file.
26478         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
26479         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
26480
26481 2005-09-15  Derek Price  <derek@ximbiot.com>
26482
26483         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
26484
26485 2005-09-15  Derek Price  <derek@ximbiot.com>
26486
26487         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
26488         * lib/regex_internal.c: Ditto, using this...
26489         (__GNUC_PREREQ): ...new macro.
26490         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
26491         using...
26492         (__GNUC_PREREQ): ...this new macro.
26493
26494         * lib/strstr.h: Include string.h. Define strstr as a macro here.
26495
26496 2005-09-15  Derek Price  <derek@ximbiot.com>
26497             Paul Eggert  <eggert@cs.ucla.edu>
26498
26499         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
26500         changes, consolidating in...
26501         * lib/regex_internal.h: ...this file.
26502
26503 2005-09-13  Jim Meyering  <jim@meyering.net>
26504
26505         * lib/canon-host.c: Filter through gnu indent and reword comments
26506         slightly.
26507         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
26508
26509 2005-09-13  Derek Price  <derek@ximbiot.com>
26510
26511         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
26512         failure.
26513         Reported by Jim Meyering  <jim@meyering.net>.
26514
26515 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26516
26517         * lib/base64.c: Typo.
26518         (base64_encode): Put b64str in initialized data section.
26519
26520 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
26521
26522         Merge glibc and coreutils changes into gnulib, plus a few
26523         extra fixes.
26524         * lib/md5.c: Use #error rather than a string.
26525         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
26526         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
26527         (__attribute__): Define to empty for non recent-GCC.
26528         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
26529         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
26530         Renamed from their non-__ counterparts, with new macros replacing
26531         them if not _LIBC.  Add __THROW attribute.
26532         (rol): Remove.
26533         (struct md5_ctx): Align buffer if using GCC.
26534         * lib/sha1.h (struct sha1_ctx): Likewise.
26535         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
26536         The old name was backwards.
26537         (NOTSWAP): Remove; not used.
26538         (rol): New macro, moved here from md5.h.
26539         (sha1_process_block): Remove a FIXME that doesn't make sense.
26540
26541 2005-09-12  Derek Price  <derek@ximbiot.com>
26542
26543         Return usable errors from canon-host.
26544         * lib/canon-host.h: New file.
26545         * lib/canon-host.c (canon_host): Wrap...
26546         (canon_host_r): ...this new function, which now relies exclusively on
26547         getaddrinfo.
26548         (ch_strerror): New function.
26549         (last_cherror): New global.
26550         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
26551         interface.
26552         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
26553         void *.
26554         (freeaddrinfo): Free ai->ai_canonname when set.
26555
26556 2005-09-12  Derek Price  <derek@ximbiot.com>
26557
26558         Make canon-host require getaddrinfo.
26559         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
26560         AC_LIBSOURCE canon-host.h.  Call...
26561         (gl_PREREQ_CANON_HOST): ...this new function, which requires
26562         gl_GETADDRINFO.
26563         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
26564
26565 2005-09-12  Derek Price  <derek@ximbiot.com>
26566
26567         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
26568         LGPL.
26569         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
26570
26571 2005-09-12  Derek Price  <derek@ximbiot.com>
26572
26573         * lib/gai_strerror.c: Include config.h when available.  Include
26574         getaddrinfo.h before other headers to test interface.
26575         Reported by Larry Jones <lawrence.jones@ugs.com>.
26576
26577 2005-09-12  Derek Price  <derek@ximbiot.com>
26578             Paul Eggert  <eggert@cs.ucla.edu>
26579
26580         * modules/glob (Files): Add glob-libc.h.
26581
26582 2005-09-12  Derek Price  <derek@ximbiot.com>
26583             Paul Eggert  <eggert@cs.ucla.edu>
26584
26585         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
26586         glob_.h, glob-libc.h.
26587         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
26588
26589 2005-09-12  Derek Price  <derek@ximbiot.com>
26590             Paul Eggert  <eggert@cs.ucla.edu>
26591
26592         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
26593         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
26594         protecting things that should be done only in gnulib contexts.
26595         * lib/glob_.h: New file, containing only the glob things needed for
26596         gnulib.
26597         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
26598         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
26599         (glob, globfree, glob_pattern_p): Now defined simply in terms of
26600         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
26601         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
26602         and to respect the namespace rules better.
26603
26604 2005-09-08  Simon Josefsson  <jas@extundo.com>
26605
26606         * modules/socklen: New file.
26607
26608 2005-09-08  Simon Josefsson  <jas@extundo.com>
26609
26610         * m4/socklen.m4: New file.
26611
26612 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26613
26614         * modules/utimens (Files): Add m4/utimbuf.m4, since
26615         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
26616         Reported by Sergey Poznyakoff.
26617
26618 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26619
26620         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
26621         definitions, since that's the preferred style in glibc.
26622         Fix a minor spacing issue, and update copyright notice to match
26623         glibc's.
26624
26625 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
26626
26627         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
26628
26629 2005-09-06  Simon Josefsson  <jas@extundo.com>
26630
26631         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
26632         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
26633
26634 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
26635
26636         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
26637         warning.
26638
26639 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
26640
26641         * config/srclist.txt: Add glibc bug 1302.
26642
26643 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
26644
26645         Change bitset word type from unsigned int to unsigned long int,
26646         as this has better performance on typical 64-bit hosts.
26647         Port bitset code to hosts with unusual word sizes.
26648         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
26649         (build_collating_symbol):
26650         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
26651         argument is a bitset.  This is merely a style issue, but it makes
26652         it clearer that an entire array is expected.
26653         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
26654         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
26655         Port to the case where bitset_word is not the same as unsigned int.
26656         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
26657         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
26658         Likewise.
26659         * lib/regexec.c (check_dst_limits_calc_pos_1,
26660         check_subexp_matching_top):
26661         (build_trtable, group_nodes_into_DFAstates):
26662         Likewise.
26663         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
26664         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
26665         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
26666         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
26667         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
26668         * lib/regcomp.c (optimize_subexps, lower_subexp):
26669         Work even if bitset_word has holes in its bitwise representation.
26670         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
26671         * lib/regexec.c (check_dst_limits_calc_pos_1,
26672         check_subexp_matching_top):
26673         Likewise.
26674         * lib/regex_internal.c (re_string_reconstruct):
26675         Don't assume UCHAR_MAX == 255.
26676         * lib/regex_internal.h (bitset_set_all): Likewise.
26677         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
26678         All uses changed.
26679         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
26680         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
26681         All uses changed.
26682         (BITSET_WORD_MAX): New macro.
26683         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
26684         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
26685         (bitset_empty, bitset_copy):
26686         Prefer sizeof (bitset) to multiplying it out ourselves.
26687         (bitset_not_merge): Remove; unused.
26688         (bitset_contain): Return bool, not unsigned int with one bit on.
26689         All callers changed.
26690         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
26691         alignment than re_node_set; do this by defining a new internal
26692         type struct dests_alloc and using it to allocate memory.
26693
26694 2005-09-05  Bruno Haible  <bruno@clisp.org>
26695
26696         * gnulib-tool (func_import): Fix comparison in handling of symbolic
26697         links.
26698
26699 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
26700
26701         * modules/size_max (Makefile.am): Add size_max.h
26702
26703 2005-09-04  Derek Price  <derek@ximbiot.com>
26704
26705         * gnulib-tool (func_import): Fix reversed $symbolic logic.
26706
26707 2005-09-03  Simon Josefsson  <jas@extundo.com>
26708
26709         * gnulib-tool: Fix typo.
26710
26711 2005-09-03  Simon Josefsson  <jas@extundo.com>
26712
26713         * config/srclist.txt: Add glibc bug 1293.
26714
26715 2005-09-03  Derek Price  <derek@ximbiot.com>
26716
26717         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
26718         From Larry Jones <lawrence.jones@ugs.com>.
26719
26720 2005-09-02  Simon Josefsson  <jas@extundo.com>
26721
26722         * modules/socklen: New file.
26723
26724 2005-09-02  Simon Josefsson  <jas@extundo.com>
26725
26726         * modules/havelib: New module.
26727
26728         * modules/gettext, modules/iconv, modules/lock, modules/readline:
26729         Use havelib.
26730
26731 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
26732
26733         Check for arithmetic overflow when calculating sizes, to prevent
26734         some buffer-overflow issues.  These patches are conservative, in the
26735         sense that when I couldn't determine whether an overflow was possible,
26736         I inserted a run-time check.
26737         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
26738         macros.
26739         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
26740         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
26741         (re_xnrealloc, re_x2nrealloc): New inline functions.
26742         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
26743         parse_bracket_exp):
26744         (build_equiv_class, build_charclass): Check for arithmetic overflow
26745         in size expression calculations.
26746         * lib/regex_internal.c (re_string_realloc_buffers):
26747         (build_wcs_upper_buffer, re_node_set_add_intersect):
26748         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
26749         (re_dfa_add_node, register_state): Likewise.
26750         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
26751         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
26752         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
26753         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
26754
26755 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
26756
26757         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
26758         m4/ulonglong.m4.  Problem reported by Martin Lambers.
26759
26760 2005-09-02  Bruno Haible  <bruno@clisp.org>
26761
26762         Support for lib vs. lib64 distinction on biarch platforms.
26763         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
26764         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
26765         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
26766
26767 2005-09-02  Bruno Haible  <bruno@clisp.org>
26768
26769         * gnulib-tool (import): In the other first-use case, provide defaults
26770         as well.
26771
26772 2005-09-02  Bruno Haible  <bruno@clisp.org>
26773
26774         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
26775         patches not yet found in the latest gettext release.
26776
26777 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
26778
26779         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
26780         to avoid a collision with bits/local_lim.h in glibc.
26781         All uses changed.  Problem reported by Dmitry V. Levin in
26782         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
26783
26784         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
26785         bugs in int versus size_t comparisons.
26786         (re_string_context_at): Fix bug where the code assumed that
26787         Idx is signed.
26788
26789         Use bool where appropriate.
26790         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
26791         All callers changed.
26792         (calc_eclosure_iter): Likewise, for ROOT arg.
26793         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
26794         (build_charclass_op): Likewise, for NON_MATCH arg.
26795         * lib/regex_internal.c (re_string_allocate, re_string_construct):
26796         (re_string_construct_common): Likewise, for ICASE arg.
26797         * lib/regexec.c (re_search_2_stub, re_search_stub):
26798         Likewise, for RET_LEN arg.
26799         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
26800         (set_regs): Likewise, for FL_BACKTRACK arg.
26801         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
26802         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
26803         (calc_eclosure_iter, parse_bracket_exp):
26804         Use bool for internal variables that are booleans.
26805         * lib/regexec.c (re_search_internal, check_matching,
26806         proceed_next_node):
26807         (set_regs, build_sifted_states, sift_states_bkref):
26808         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
26809         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
26810         (find_collation_sequence_value):
26811         Likewise.
26812         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
26813         (re_node_set_compare):
26814         Return bool, not int. All callers changed.
26815         * lib/regexec.c (check_halt_node_context, check_dst_limits):
26816         (build_trtable, check_node_accept): Likewise.
26817         * lib/regex_internal.h: Include stdbool.h.
26818
26819         Fix bugs uncovered when converting to bool.
26820         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
26821         failure instead of charging ahead blindly.
26822         * lib/regex_internal.c (register_state): Likewise.
26823         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
26824         for freeing internal storage.
26825         (group_nodes_into_DFA_states): Use unsigned int, not int, for
26826         bitset pieces used as boolean, to avoid undefined behavior
26827         on hosts that do int overflow checking.
26828
26829 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
26830
26831         * config/srclist.txt: Add glibc bugs 1285-1287.
26832
26833 2005-09-01  Jim Meyering  <jim@meyering.net>
26834
26835         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
26836         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
26837         Require gl_STAT_MACROS, too.
26838
26839 2005-09-01  Bruno Haible  <bruno@clisp.org>
26840
26841         * gnulib-tool (import): In the first-use case, provide defaults.
26842
26843 2005-09-01  Bruno Haible  <bruno@clisp.org>
26844
26845         * gnulib-tool (func_import): Remove the .tmp files.
26846
26847 2005-09-01  Bruno Haible  <bruno@clisp.org>
26848
26849         * gnulib-tool (func_import): Fix handling of symbolic links.
26850
26851 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26852
26853         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
26854         old glibc regex code mishandles strings longer than 2**31 bytes.
26855         This patch fixes this when the regex code is used in gnulib
26856         (i.e., outside glibc).
26857
26858         This patch should not affect the use of the regex code inside
26859         glibc.  No doubt this problem also needs to be handled for glibc
26860         as well, but the result will be an incompatible change to the
26861         glibc ABI, and the old ABI will have to be supported too.  That
26862         can be the the subject for another patch.
26863
26864         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
26865         governing whether the rest of this patch is active.  By default,
26866         the macro is disabled and the patch has no effect.
26867         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
26868         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
26869         (struct re_pattern_buffer, re_search, re_search_2, re_match):
26870         (re_match_2, re_set_registers): Use the new types.
26871         * lib/regex_internal.h (Idx, re_hashval_t): New types.
26872         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
26873         New macros.
26874         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
26875         (re_string_context_at, bin_tree_t, re_dfastate_t):
26876         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
26877         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
26878         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
26879         (re_string_char_size_at, re_string_wchar_at):
26880         (re_string_elem_size_at):
26881         Use the new types and macros to port to 64-bit hosts.
26882         Use unsigned types for internal values, so that the code
26883         mostly works even for arrays larger than SSIZE_MAX.
26884         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
26885         (search_duplicated_node, calc_eclosure_iter, fetch_number):
26886         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
26887         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
26888         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
26889         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
26890         (calc_inveclosure, parse_dup_op, build_range_exp):
26891         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
26892         (fetch_number, create_token_tree, mark_opt_subexp):
26893         Likewise.
26894         * lib/regex_internal.c (re_string_construct_common,
26895         create_ci_newstate):
26896         (create_cd_newstate, re_string_allocate, re_string_construct):
26897         (re_string_realloc_buffers, build_wcs_upper_buffer):
26898         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
26899         (re_string_reconstruct, re_string_peek_byte_case):
26900         (re_string_fetch_byte_case, re_string_context_at):
26901         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
26902         (re_node_set_init_copy, re_node_set_add_intersect):
26903         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
26904         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
26905         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
26906         (re_acquire_state, re_acquire_state_context, register_state):
26907         Likewise.
26908         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
26909         search_cur_bkref_entry):
26910         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
26911         (re_search_internal, re_search_2_stub, re_search_stub)
26912         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
26913         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
26914         (update_cur_sifted_state, check_dst_limits):
26915         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
26916         (check_subexp_limits, sift_states_bkref, merge_state_array):
26917         (check_subexp_matching_top, get_subexp, get_subexp_sub):
26918         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
26919         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
26920         (expand_bkref_cache, check_node_accept_bytes):
26921         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
26922         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
26923         (acquire_init_state_context, check_halt_node_context):
26924         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
26925         (sift_states_backward, clean_state_log_if_needed):
26926         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
26927         (find_recover_state, transit_state_sb, transit_state_mb):
26928         (transit_state_bkref, build_trtable, match_ctx_clean):
26929         Likewise.
26930         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
26931         to work around an assumption that REG_MISSING is negative.
26932
26933         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
26934         (seek_collating_symbol_entry) [defined _LIBC]:
26935         (lookup_collation_sequence_value) [defined _LIBC]:
26936         (build_range_exp, build_collating_symbol) [defined _LIBC]:
26937         Use prototypes rather than old-style function definitions.
26938         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
26939         (transit_state_sb) [0]:
26940         (find_collation_sequence_value) [defined _LIBC]: Likewise.
26941
26942         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
26943         rm_eo.
26944
26945         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
26946         (optimize_subexps, lower_subexp):
26947         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
26948         since the signed shift might overflow.  Use 1u<<31 instead.
26949         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
26950         Likewise.
26951         * lib/regexec.c (check_dst_limits_calc_pos_1,
26952         check_subexp_matching_top): Likewise.
26953
26954         * lib/regcomp.c (optimize_subexps, lower_subexp):
26955         Use CHAR_BIT rather than 8, for clarity.
26956         * lib/regexec.c (check_dst_limits_calc_pos_1):
26957         (check_subexp_matching_top): Likewise.
26958         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
26959         have to worry about portability issues when shifting it left.
26960         Remove no-longer-needed test for table_size > 0.
26961         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
26962         in a word, as the resulting behavior is undefined.
26963         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
26964         in one case, a <= should have been an <, and in another case the
26965         whole test was missing.
26966         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
26967         the standard name CHAR_BIT.
26968         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
26969         this is not true on one's complement and signed-magnitude hosts.
26970
26971         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
26972         next_last_offset.
26973         (struct re_dfa_t): Remove unused member states_alloc.
26974         * lib/regcomp.c (init_dfa): Don't initialize unused members.
26975
26976 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26977
26978         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
26979         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
26980         and large-file glibc and in 32-bit large-file Solaris.
26981
26982 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26983
26984         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
26985         lengths fit in regoff_t; this isn't true if regoff_t is the same
26986         width as size_t.
26987         * lib/regex.c (re_search_internal): 5th arg is LAST_START
26988         (= START + RANGE) instead of RANGE.  This avoids overflow
26989         problems when regoff_t is the same width as size_t.
26990         All callers changed.
26991         (re_search_2_stub): Check for overflow when adding the
26992         sizes of the two strings.
26993         (re_search_stub): Check for overflow when adding START
26994         to RANGE; if it occurs, substitute the extreme value.
26995
26996 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
26997
26998         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
26999
27000 2005-08-31  Jim Meyering  <jim@meyering.net>
27001
27002         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
27003         a pointer-to-const.
27004         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
27005         (register_state): Likewise.
27006         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
27007         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
27008         (group_nodes_into_DFAstates): Likewise.
27009
27010 2005-08-31  Jim Meyering  <jim@meyering.net>
27011
27012         * check-module: Add a FIXME comment.
27013
27014 2005-08-31  Eric Blake  <ebb9@byu.net>
27015
27016         * modules/unistd-safer (Files): Add unistd--.h.
27017         * modules/stdio-safer (Files): Add stdio--.h.
27018
27019 2005-08-31  Derek Price  <derek@ximbiot.com>
27020
27021         * lib/getdelim.c (getdelim): Return EOF on EOF.
27022         Reported by Larry Jones <lawrence.jones@ugs.com>.
27023
27024 2005-08-31  Bruno Haible  <bruno@clisp.org>
27025
27026         Avoid unnecessary diffs in the generated lib/Makefile.am.
27027         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
27028         the generated files.
27029         (func_import): Don't set cmd.
27030
27031 2005-08-31  Bruno Haible  <bruno@clisp.org>
27032
27033         * lib/strstr.c: Include <stddef.h>, for NULL.
27034         * lib/strcasestr.c: Likewise.
27035         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27036
27037 2005-08-31  Bruno Haible  <bruno@clisp.org>
27038
27039         * gnulib-tool: New option --macro-prefix.
27040         (func_import): Use macro_prefix.
27041         (import): Handle option --macro-prefix.
27042
27043 2005-08-31  Bruno Haible  <bruno@clisp.org>
27044
27045         * gnulib-tool (import): Rename most ac_* variables to cached_*.
27046         Also use new variables cached_lgpl, cached_libtool.
27047
27048 2005-08-31  Bruno Haible  <bruno@clisp.org>
27049
27050         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
27051         always instantiating them.
27052
27053 2005-08-31  Bruno Haible  <bruno@clisp.org>
27054
27055         * gnulib-tool (func_import): Read the previous cached settings
27056         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
27057         earlier added by gnulib but are now dropped. Warn when a gnulib file
27058         overwrites a non-gnulib file.
27059
27060 2005-08-31  Bruno Haible  <bruno@clisp.org>
27061
27062         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
27063         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
27064         projects that don't keep autogenerated files in CVS. Put into
27065         actioncmd only the specified modules, not the transitive closure.
27066
27067 2005-08-31  Bruno Haible  <bruno@clisp.org>
27068
27069         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
27070         Create directories that shall be filled.
27071         (import): Don't look for gl_* macros in configure.ac. Recurse across
27072         all directories containing a gnulib-cache.m4 files, if meaningful.
27073
27074 2005-08-31  Bruno Haible  <bruno@clisp.org>
27075
27076         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
27077         (import): Set seen_libtool when we see gl_LIBTOOL.
27078
27079 2005-08-31  Bruno Haible  <bruno@clisp.org>
27080
27081         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
27082         declaration macro definitions from generated gnulib.m4.
27083
27084 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
27085
27086         * lib/iconvme.h: Add prototype for iconv_alloc.
27087
27088 2005-08-29  Simon Josefsson  <jas@extundo.com>
27089
27090         * lib/iconvme.c: Fix errno.
27091
27092 2005-08-29  Bruno Haible  <bruno@clisp.org>
27093
27094         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
27095         that it works when the directory contains spaces.
27096
27097 2005-08-29  Bruno Haible  <bruno@clisp.org>
27098
27099         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
27100
27101 2005-08-29  Bruno Haible  <bruno@clisp.org>
27102
27103         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
27104         Emit more advice.
27105
27106 2005-08-29  Bruno Haible  <bruno@clisp.org>
27107         and Stepan Kasal  <kasal@ucw.cz>
27108
27109         * check-module: If more parameters are given, check each of them
27110         separately; add more exceptions, as noted by Jim Meyering.
27111         (check_module): New procedure.
27112         (%exempt_header): Now contains all exceptions.
27113
27114 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
27115
27116         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
27117
27118 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
27119
27120         * lib/iconvme.c: Split iconv_string into iconv_alloc.
27121
27122 2005-08-28  Bruno Haible  <bruno@clisp.org>
27123
27124         * m4/gnulib-tool.m4: New file.
27125
27126 2005-08-27  Jim Meyering  <jim@meyering.net>
27127
27128         * modules/unistd-safer (Files): Add pipe-safer.c.
27129         * modules/fcntl-safer (Files): Add creat-safer.c.
27130
27131 2005-08-27  Jim Meyering  <jim@meyering.net>
27132
27133         * m4/stdlib-safer.m4: New file.  From coreutils.
27134         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
27135         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
27136         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
27137         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
27138         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
27139
27140 2005-08-27  Jim Meyering  <jim@meyering.net>
27141
27142         * lib/fopen-safer.c: Merge minor changes from coreutils.
27143         * lib/dup-safer.c: Likewise.
27144         * lib/fd-safer.c: Likewise.
27145
27146         Merge from coreutils.
27147         * lib/stdio--.h: New file.
27148         * lib/stdlib--.h: New file.
27149         * lib/mkstemp-safer.c: New file.
27150
27151         GNU tar needs these.
27152         * lib/pipe-safer.c: New file.
27153         * lib/creat-safer.c: New file.
27154         * lib/fcntl--.h (creat): Define to creat_safer.
27155         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
27156         * lib/unistd--.h (pipe): Define to pipe_safer.
27157         * lib/unistd-safer.h: Declare pipe_safer.
27158
27159 2005-08-26  Simon Josefsson  <jas@extundo.com>
27160
27161         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
27162         Haible <bruno@clisp.org>.
27163
27164 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
27165
27166         * lib/regex_internal.h: Remove all references to
27167         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
27168         or better.
27169         (bitset_not, bitset_merge, bitset_not_merge):
27170         (bitset_mask, re_string_allocate, re_string_construct):
27171         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
27172         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
27173         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
27174         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
27175         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
27176         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
27177         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
27178         (re_acquire_state_context):
27179         Remove unnecessary forward decls.
27180         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
27181         Put __attribute at function definition,
27182         now that the function decl has been removed.
27183         * lib/regex_internal.c (re_string_peek_byte_case):
27184         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
27185         Likewise.
27186
27187 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
27188
27189         * m4/regex.m4: Add AC_PREREQ(2.50).
27190         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
27191
27192 2005-08-25  Simon Josefsson  <jas@extundo.com>
27193
27194         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
27195         __fsetlocking.
27196
27197 2005-08-25  Simon Josefsson  <jas@extundo.com>
27198
27199         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
27200         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
27201         GLIBC specific code.
27202
27203 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
27204
27205         Make regex safe for g++.  This fixes one real bug (an "err"
27206         that should have been "*err").  g++ problem reported by
27207         Sam Steingold.
27208         * lib/regex_internal.h (re_calloc): New macro, consistent with
27209         re_malloc etc.  All callers of calloc changed to use re_calloc.
27210         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
27211         not int.  All callers changed.
27212         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
27213         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
27214         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
27215         (find_recover_state): Change "err" to "*err"; this fixes what
27216         appears to be a real bug.
27217         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
27218         versus int.
27219
27220 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
27221
27222         * modules/regex (Depends-on): Add malloc, since the code
27223         assumes that !malloc(0) means failure.
27224
27225 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
27226
27227         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
27228
27229         alloca modernization/simplification for regex.
27230         * lib/regex.c: Remove portability cruft for alloca.  This no longer
27231         needs to be at the start of the file, and can be moved into
27232         regex_internal.h and simplified.
27233         * lib/regex_internal.h: Include <alloca.h>.
27234         (__libc_use_alloca) [!defined _LIBC]: New macro.
27235         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
27236         now works outside glibc.
27237
27238 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
27239
27240         * config/srclist.txt: Add glibc bugs 1241, 1245.
27241
27242 2005-08-25  Jim Meyering  <jim@meyering.net>
27243
27244         * lib/open-safer.c: Include <config.h>.
27245         Otherwise, we'd lose LARGEFILE support in any file using
27246         e.g. "fcntl--.h"
27247
27248 2005-08-25  Bruno Haible  <bruno@clisp.org>
27249
27250         * m4/minmax.m4: Require autoconf 2.52.
27251         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
27252         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
27253         alternatives of translit over the alphabet.
27254         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
27255
27256 2005-08-24  Simon Josefsson  <jas@extundo.com>
27257
27258         * tests/test-getpass.c: New file.
27259
27260 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
27261
27262         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
27263         for GNU regex features.
27264
27265 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
27266
27267         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
27268         * lib/regex.h (regerror): Likewise.
27269
27270         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
27271         requires this.  (The code never needed it.)
27272
27273         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
27274         All uses of recently-renamed identifiers changed to use the new,
27275         POSIX-compliant names.  The code will build and run just fine
27276         without these changes, but it's better to eat our own dog food
27277         and use the standard-conforming names.
27278
27279         * lib/regex.h: Fix a multitude of POSIX name space violations.
27280         These changes have an effect only for programs that define
27281         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
27282         do not change anything for programs compiled in the normal way.
27283         Also, there is no effect on the ABI.
27284
27285         (_REGEX_SOURCE): New macro.
27286         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
27287         defined and _GNU_SOURCE is not; this fixes a name space violation.
27288
27289         Rename the following macros to obey POSIX requirements.
27290         The old names are still visible as macros if _REGEX_SOURCE is defined.
27291         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
27292         RE_BACKSLASH_ESCAPE_IN_LISTS.
27293         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
27294         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
27295         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
27296         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
27297         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
27298         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
27299         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
27300         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
27301         (REG_INTERVALS): renamed from RE_INTERVALS.
27302         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
27303         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
27304         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
27305         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
27306         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
27307         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
27308         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
27309         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
27310         RE_UNMATCHED_RIGHT_PAREN_ORD.
27311         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
27312         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
27313         (REG_DEBUG): renamed from RE_DEBUG.
27314         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
27315         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
27316         unusual, since we can't clash with the POSIX REG_ICASE.
27317         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
27318         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
27319         (REG_NO_SUB): renamed from RE_NO_SUB.
27320         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
27321         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
27322         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
27323         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
27324         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
27325         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
27326         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
27327         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
27328         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
27329         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
27330         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
27331         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
27332         RE_SYNTAX_POSIX_MINIMAL_BASIC.
27333         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
27334         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
27335         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
27336         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
27337         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
27338         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
27339         (REG_FIXED): Renamed from REGS_FIXED.
27340         (REG_NREGS): Renamed from RE_NREGS.
27341
27342         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
27343         of other REG_* macros, since POSIX says the user is allowed to
27344         #undef these macros selectively.
27345
27346         (reg_errcode_t): Update comment stating what other tables need
27347         to be consistent.
27348
27349         Rename the following enum values to obey POSIX requirements.
27350         The old names are still visible as macros.
27351         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
27352         is not defined, since GNU is supposed to be a superset of POSIX as
27353         much as possible, and since we want reg_errcode_t to be a signed
27354         type for implementation consistency.
27355         (_REG_NOERROR): Renamed from REG_NOERROR.
27356         (_REG_NOMATCH): Renamed from REG_NOMATCH.
27357         (_REG_BADPAT): Renamed from REG_BADPAT.
27358         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
27359         (_REG_ECTYPE): Renamed from REG_ECTYPE.
27360         (_REG_EESCAPE): Renamed from REG_EESCAPE.
27361         (_REG_ESUBREG): Renamed from REG_ESUBREG.
27362         (_REG_EBRACK): Renamed from REG_EBRACK.
27363         (_REG_EPAREN): Renamed from REG_EPAREN.
27364         (_REG_EBRACE): Renamed from REG_EBRACE.
27365         (_REG_BADBR): Renamed from REG_BADBR.
27366         (_REG_ERANGE): Renamed from REG_ERANGE.
27367         (_REG_ESPACE): Renamed from REG_ESPACE.
27368         (_REG_BADRPT): Renamed from REG_BADRPT.
27369         (_REG_EEND): Renamed from REG_EEND.
27370         (_REG_ESIZE): Renamed from REG_ESIZE.
27371         (_REG_ERPAREN): Renamed from REG_ERPAREN.
27372         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
27373         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
27374         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
27375         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
27376
27377         (_REG_RE_NAME, _REG_RM_NAME): New macros.
27378         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
27379         changed.  But support the old name if the new one is not defined
27380         and if _REGEX_SOURCE.
27381
27382         Change the following member names in struct re_pattern_buffer.
27383         The old names are still supported if !_REGEX_SOURCE.
27384         The new names are always supported, regardless of _REGEX_SOURCE.
27385         (re_buffer): Renamed from buffer.
27386         (re_allocated): Renamed from allocated.
27387         (re_used): Renamed from used.
27388         (re_syntax): Renamed from syntax.
27389         (re_fastmap): Renamed from fastmap.
27390         (re_translate): Renamed from translate.
27391         (re_can_be_null): Renamed from can_be_null.
27392         (re_regs_allocated): Renamed from regs_allocated.
27393         (re_fastmap_accurate): Renamed from fastmap_accurate.
27394         (re_no_sub): Renamed from no_sub.
27395         (re_not_bol): Renamed from not_bol.
27396         (re_not_eol): Renamed from not_eol.
27397         (re_newline_anchor): Renamed from newline_anchor.
27398
27399         Change the following member names in struct re_registers.
27400         The old names are still supported if !_REGEX_SOURCE.
27401         The new names are always supported, regardless of _REGEX_SOURCE.
27402         (rm_num_regs): Renamed from num_regs.
27403         (rm_start): Renamed from start.
27404         (rm_end): Renamed from end.
27405
27406         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
27407         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
27408         Prepend __ to parameter names.
27409
27410         Undo yesterday's changes.
27411
27412 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
27413
27414         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
27415         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
27416         lib/regex.c.
27417
27418 2005-08-24  Jim Meyering  <jim@meyering.net>
27419
27420         Sync from coreutils.
27421         * m4/fcntl-safer.m4: New file.
27422
27423         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
27424         and object files for this module.
27425
27426 2005-08-24  Jim Meyering  <jim@meyering.net>
27427
27428         Sync from coreutils.
27429         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
27430
27431 2005-08-24  Jim Meyering  <jim@meyering.net>
27432
27433         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
27434         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
27435
27436 2005-08-24  Jim Meyering  <jim@meyering.net>
27437
27438         * modules/fcntl-safer: New module.
27439         * modules/fts (Depends-on): Add fcntl-safer.
27440         * MODULES.html.sh (File descriptor based Input/Output):
27441         Add fcntl-safer.
27442
27443 2005-08-24  Bruno Haible  <bruno@clisp.org>
27444
27445         Support for unit test modules.
27446         * modules/README: Mention tests modules.
27447         * modules/TEMPLATE-TESTS: New file.
27448         * gnulib-tool: New options --extract-tests-module, --with-tests and
27449         --tests-base (unused for the moment).
27450         (testsbase, inctests): New variables.
27451         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
27452         (func_verify_module): Exclude TEMPLATE-TESTS.
27453         (func_verify_nontests_module, func_verify_tests_module): New functions.
27454         (func_get_dependencies): Add implicit dependency for tests modules.
27455         (func_get_tests_module): New function.
27456         (func_modules_transitive_closure): When --with-tests was specified,
27457         include the unit tests as well, unless explicitly avoided.
27458         (func_emit_lib_Makefile_am): Ignore the tests modules here.
27459         (func_emit_tests_Makefile_am): New function.
27460         (func_create_testdir): When --with-tests was specified, emit a
27461         tests/ directory.
27462         * MODULES.html.sh (Future developments): Update.
27463
27464 2005-08-24  Bruno Haible  <bruno@clisp.org>
27465
27466         * modules/tls-tests: New file.
27467         * tests/test-tls.c: New file, from GNU gettext.
27468
27469 2005-08-24  Bruno Haible  <bruno@clisp.org>
27470
27471         * modules/lock-tests: New file.
27472         * tests/test-lock.c: New file, from GNU gettext.
27473
27474 2005-08-24  Bruno Haible  <bruno@clisp.org>
27475
27476         * lib/lock.h: Add multiple inclusion guard.
27477         * lib/tls.h: Add multiple inclusion guard.
27478
27479 2005-08-24  Bruno Haible  <bruno@clisp.org>
27480
27481         * gnulib-tool: Add support for the --aux-dir option to
27482         --create-testdir, --create-megatestdir, --test, --megatest.
27483         (func_create_testdir, func_create_megatestdir): Optionally emit a
27484         AC_CONFIG_AUX_DIR directive.
27485         (create-testdir, create-megatestdir, test, megatest): Provide a
27486         default value for $auxdir.
27487
27488 2005-08-24  Bruno Haible  <bruno@clisp.org>
27489
27490         * gnulib-tool (import): Use compound statement instead of subshell
27491         where possible.
27492
27493 2005-08-24  Bruno Haible  <bruno@clisp.org>
27494
27495         * gnulib-tool (import): Change --aux-dir default to "build-aux".
27496
27497 2005-08-24  Bruno Haible  <bruno@clisp.org>
27498
27499         * gnulib-tool (func_version): Update.
27500
27501 2005-08-24  Bruno Haible  <bruno@clisp.org>
27502
27503         * gnulib-tool (func_import, func_create_testdir,
27504         func_create_megatestdir): Quote all autoconf macro arguments.
27505
27506 2005-08-24  Bruno Haible  <bruno@clisp.org>
27507
27508         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
27509         option --force, because --force causes the aclocal.m4 of each
27510         subdirectory to be newer than the corresponding config.h.in.
27511
27512 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
27513
27514         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
27515         All contents moved to gl_REGEX.
27516         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
27517         assume that it does.
27518
27519 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
27520
27521         * lib/regex.h (REG_NOSYS)
27522         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
27523         Define, since POSIX requires it as of 2001.
27524         (_REG_ENOSYS)
27525         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
27526         New private symbol, used to keep the enum signed in all cases.
27527         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
27528         Youngman in
27529         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
27530
27531         * lib/regex_internal.c (re_string_skip_chars, register_state):
27532         (calc_state_hash):
27533         Remove forward decls; no longer needed now that we use prototypes.
27534         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
27535         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
27536         (clean_state_log_if_needed): Likewise.
27537
27538 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
27539
27540         * config/srclist.txt: Add glibc bugs 1231-1233.
27541
27542 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27543
27544         Fix problems reported by Sam Steingold in
27545         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
27546         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
27547         assumed that reg_errcode_t is a signed type, which is not
27548         necessarily true if _XOPEN_SOURCE is not defined.
27549         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
27550         since some compilers warn about it otherwise.
27551
27552 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27553
27554         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
27555         (init_word_char, create_initial_state, duplicate_node_closure):
27556         (fetch_token, peek_token_bracket, build_range_exp):
27557         (build_collating_symbol): Remove forward decls; no longer needed
27558         now that we use prototypes.
27559
27560         * lib/regcomp.c:
27561         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
27562         (re_compile_fastmap_iter, regcomp, regerror, regfree):
27563         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
27564         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
27565         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
27566         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
27567         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
27568         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
27569         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
27570         (build_range_exp, build_collating_symbol, parse_bracket_exp):
27571         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
27572         (build_charclass, build_charclass_op, fetch_number, create_tree):
27573         (create_token_tree, mark_opt_subexp, duplicate_tree):
27574         Use prototypes rather than old-style definitions.
27575
27576         * lib/regex_internal.c:
27577         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
27578         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
27579         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
27580         (re_string_reconstruct, re_string_peek_byte_case):
27581         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
27582         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
27583         (re_node_set_init_copy, re_node_set_add_intersect):
27584         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
27585         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
27586         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
27587         (re_acquire_state, re_acquire_state_context, register_state):
27588         (create_ci_newstate, create_cd_newstate, free_state):
27589         Likewise.
27590         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
27591         re_search_2):
27592         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
27593         (re_search_internal, prune_impossible_nodes):
27594         (acquire_init_state_context, check_matching, static):
27595         (check_halt_node_context, check_halt_state_context, proceed_next_node):
27596         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
27597         (update_regs, sift_states_backward, build_sifted_states):
27598         (clean_state_log_if_needed, merge_state_array):
27599         (update_cur_sifted_state, add_epsilon_src_nodes):
27600         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
27601         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
27602         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
27603         (find_recover_state, check_subexp_matching_top, transit_state_mb):
27604         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
27605         (check_arrival, check_arrival_add_next_nodes):
27606         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
27607         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
27608         (check_node_accept_bytes, check_node_accept, extend_buffers):
27609         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
27610         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
27611         (sift_ctx_init):
27612         Likewise.
27613
27614         * lib/regex_internal.h:
27615         (re_string_allocate, re_string_construct, re_string_reconstruct):
27616         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
27617         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
27618         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
27619         (re_string_context_at, re_string_peek_byte_case):
27620         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
27621         is defined, since we now use prototypes always.
27622
27623         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
27624         C89 or better.  All uses removed.
27625
27626 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
27627
27628         * config/srclist.txt: Add glibc bugs 1220-1227.
27629
27630 2005-08-20  Jim Meyering  <jim@meyering.net>
27631
27632         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
27633         of unused local, dfa.
27634
27635 2005-08-20  Bruno Haible  <bruno@clisp.org>
27636
27637         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
27638
27639 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27640
27641         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
27642         (re_node_set_insert_last, re_dfa_add_node):
27643         Rename local variables to avoid GCC shadowing warnings.
27644
27645 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27646
27647         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
27648         [defined lint]: Suppress bogus uninitialized-variable warnings.
27649
27650         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
27651         and let the caller return REG_ESPACE if out of space.  This
27652         removes an uninitialied-variable warning with GCC 4.0.1, and also
27653         avoids taking the address of a local variable.  All callers
27654         changed.
27655
27656 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27657
27658         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
27659         $LIBCSRC/posix/regexec.c.
27660         Add glibc bug 1217 for regcomp.c.
27661
27662 2005-08-19  Jim Meyering  <jim@meyering.net>
27663
27664         * lib/regexec.c (proceed_next_node): Redo local variables to
27665         avoid GCC shadowing warnings.
27666
27667 2005-08-18  Bruno Haible  <bruno@clisp.org>
27668
27669         * lib/strstr.c (strstr): Fix return value in multibyte case.
27670         * lib/strcasestr.c (strcasestr): Likewise.
27671
27672 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
27673
27674         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
27675
27676 2005-08-17  Jim Meyering  <jim@meyering.net>
27677
27678         Make the %s format (seconds since the epoch) work for a negative
27679         number and when used with a zero-padded field width, e.g. %015s.
27680
27681         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
27682         label so that it precedes the code to set `digits'.  Otherwise,
27683         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
27684         print `00-22'.  Now, it prints `-0022', as it should.
27685
27686 2005-08-17  Bruno Haible  <bruno@clisp.org>
27687
27688         * modules/strstr (Files): Add m4/mbrtowc.m4.
27689         (Depends-on): Add mbuiter.
27690
27691 2005-08-17  Bruno Haible  <bruno@clisp.org>
27692
27693         * modules/strcasestr: New file.
27694         * MODULES.html.sh (String handling, based on ANSI C 89): Add
27695         strcasestr.
27696
27697 2005-08-17  Bruno Haible  <bruno@clisp.org>
27698
27699         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
27700
27701 2005-08-17  Bruno Haible  <bruno@clisp.org>
27702
27703         * modules/mbuiter: New file.
27704         * MODULES.html.sh (Extended multibyte and wide character utilities):
27705         Add mbuiter.
27706
27707 2005-08-17  Bruno Haible  <bruno@clisp.org>
27708
27709         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
27710         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
27711
27712 2005-08-17  Bruno Haible  <bruno@clisp.org>
27713
27714         * m4/strcasestr.m4: New file.
27715
27716 2005-08-17  Bruno Haible  <bruno@clisp.org>
27717
27718         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
27719         * lib/strstr.c: Completely rewritten, with multibyte locale support.
27720
27721 2005-08-17  Bruno Haible  <bruno@clisp.org>
27722
27723         * lib/strcasestr.h: New file.
27724         * lib/strcasestr.c: New file.
27725
27726 2005-08-17  Bruno Haible  <bruno@clisp.org>
27727
27728         * lib/strcasecmp.c: Use mbuiter.h.
27729
27730 2005-08-17  Bruno Haible  <bruno@clisp.org>
27731
27732         * lib/mbuiter.h: New file.
27733
27734 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
27735
27736         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
27737         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
27738         and gl_GETOPT are both invoked via different paths (as happens
27739         with GNU tar CVS because it uses both argp and getopt), the former
27740         wins.
27741
27742 2005-08-16  Bruno Haible  <bruno@clisp.org>
27743
27744         * modules/tls: New file.
27745         * MODULES.html.sh (Multithreading): Add tls.
27746
27747 2005-08-16  Bruno Haible  <bruno@clisp.org>
27748
27749         * modules/strnlen1: New file.
27750         * MODULES.html.sh (String handling): Add strnlen1.
27751
27752 2005-08-16  Bruno Haible  <bruno@clisp.org>
27753
27754         * modules/strcase (Files): Add m4/mbrtowc.m4.
27755         (Depends-on): Add strnlen1, mbchar.
27756
27757 2005-08-16  Bruno Haible  <bruno@clisp.org>
27758
27759         * modules/mbiter: New file.
27760         * MODULES.html.sh (Extended multibyte and wide character utilities):
27761         Add mbiter.
27762
27763 2005-08-16  Bruno Haible  <bruno@clisp.org>
27764
27765         * modules/mbfile: New file.
27766         * MODULES.html.sh (Extended multibyte and wide character utilities):
27767         Add mbfile.
27768
27769 2005-08-16  Bruno Haible  <bruno@clisp.org>
27770
27771         * modules/mbchar: New file.
27772         * MODULES.html.sh (Extended multibyte and wide character utilities):
27773         New section.
27774
27775 2005-08-16  Bruno Haible  <bruno@clisp.org>
27776
27777         * m4/tls.m4: New file, from GNU gettext.
27778
27779 2005-08-16  Bruno Haible  <bruno@clisp.org>
27780
27781         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
27782         always.
27783         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
27784
27785 2005-08-16  Bruno Haible  <bruno@clisp.org>
27786
27787         * m4/mbiter.m4: New file.
27788
27789 2005-08-16  Bruno Haible  <bruno@clisp.org>
27790
27791         * m4/mbfile.m4: New file.
27792
27793 2005-08-16  Bruno Haible  <bruno@clisp.org>
27794
27795         * m4/mbchar.m4: New file.
27796
27797 2005-08-16  Bruno Haible  <bruno@clisp.org>
27798
27799         * lib/tls.h: New file, from GNU gettext.
27800         * lib/tls.c: New file, from GNU gettext.
27801
27802 2005-08-16  Bruno Haible  <bruno@clisp.org>
27803
27804         * lib/strnlen1.h: New file.
27805         * lib/strnlen1.c: New file.
27806
27807 2005-08-16  Bruno Haible  <bruno@clisp.org>
27808
27809         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
27810         (mbi_init): Update.
27811         (mbi_avail, mbi_advance): Let the iteration end before the terminating
27812         NUL byte, not after it.
27813
27814 2005-08-16  Bruno Haible  <bruno@clisp.org>
27815
27816         * lib/strcase.h (strcasecmp): Add note in comments.
27817         * lib/strncasecmp.c: Use code from strcasecmp.c.
27818         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
27819         (strcasecmp): Work correctly in multibyte locales.
27820
27821 2005-08-16  Bruno Haible  <bruno@clisp.org>
27822
27823         * lib/mbiter.h: New file.
27824
27825 2005-08-16  Bruno Haible  <bruno@clisp.org>
27826
27827         * lib/mbfile.h: New file.
27828
27829 2005-08-16  Bruno Haible  <bruno@clisp.org>
27830
27831         * lib/mbchar.h: New file.
27832         * lib/mbchar.c: New file.
27833
27834 2005-08-16  Bruno Haible  <bruno@clisp.org>
27835
27836         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
27837         the valid ones. Makes the comparison operations transitive:
27838         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
27839         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
27840
27841 2005-08-15  Simon Josefsson  <jas@extundo.com>
27842
27843         * modules/ssize_t (License): Change to 'unlimited'.
27844
27845         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
27846
27847 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
27848
27849         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
27850         Add comments for each pending glibc patch.
27851
27852 2005-08-15  Bruno Haible  <bruno@clisp.org>
27853
27854         * lib/regex.h (__restrict_arr): Don't define to __restrict if
27855         __cplusplus is defined.
27856
27857 2005-08-14  Jim Meyering  <jim@meyering.net>
27858
27859         Sync from coreutils.
27860
27861         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
27862         Use the hash-table-based cycle-detection code not just when
27863         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
27864         Reported by James Youngman in
27865         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
27866         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
27867         FTS_TIGHT_CYCLE_CHECK.
27868         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
27869         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
27870         once again.
27871         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
27872         * lib/fts.c (fd_safer): Remove decl.
27873         Include fcntl--.h rather than unistd-safer.h
27874         (fts_safe_changedir): Don't call fd_safer; no longer needed
27875         now that we include fcntl--.h.
27876
27877 2005-08-12  Simon Josefsson  <jas@extundo.com>
27878
27879         * modules/getndelim2: Use ssize_t module.
27880         * modules/getnline: Likewise.
27881         * modules/safe-read: Likewise.
27882         * modules/xreadlink: Likewise.
27883
27884         * modules/ssize_t: New file.
27885
27886 2005-08-12  Simon Josefsson  <jas@extundo.com>
27887
27888         * m4/readline.m4: Look for termcap, curses or ncurses if required.
27889
27890 2005-08-12  Simon Josefsson  <jas@extundo.com>
27891
27892         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27893         ssize_t.
27894
27895 2005-08-12  Simon Josefsson  <jas@extundo.com>
27896
27897         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
27898         readline, getdelim and check_version.
27899         (Support for systems lacking ISO C 99: Sizes of integer types):
27900         Add size_max.
27901
27902 2005-08-12  Bruno Haible  <bruno@clisp.org>
27903
27904         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
27905
27906 2005-08-11  Simon Josefsson  <jas@extundo.com>
27907
27908         * modules/readline: New file.
27909
27910         * modules/strnlen (Files): Add strnlen.h.
27911
27912 2005-08-11  Simon Josefsson  <jas@extundo.com>
27913
27914         * m4/readline.m4: New file.
27915
27916 2005-08-11  Simon Josefsson  <jas@extundo.com>
27917
27918         * lib/readline.h, readline.c: New file.
27919
27920 2005-08-11  Simon Josefsson  <jas@extundo.com>
27921
27922         * doc/gnulib.texi (Initial import, Finishing touches): Mention
27923         gl_AVOID.
27924
27925 2005-08-11  Bruno Haible  <bruno@clisp.org>
27926
27927         * lib/strnlen.h (strnlen): Change parameter name to match comment.
27928
27929 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
27930
27931         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
27932
27933 2005-08-10  Simon Josefsson  <jas@extundo.com>
27934
27935         * tests/test-iconvme.c: New file.
27936
27937 2005-08-10  Simon Josefsson  <jas@extundo.com>
27938
27939         * m4/strnlen.m4: New file.
27940
27941         * m4/strndup.m4: Don't check for strnlen declaration, done in
27942         strnlen.m4.
27943
27944 2005-08-10  Simon Josefsson  <jas@extundo.com>
27945
27946         * lib/strndup.c: Use strnlen.h.
27947
27948         * lib/strnlen.h: New file.
27949
27950 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
27951
27952         * README: Typos.
27953
27954 2005-08-02  Simon Josefsson  <jas@extundo.com>
27955
27956         * modules/readline: New file.
27957
27958 2005-08-02  Simon Josefsson  <jas@extundo.com>
27959
27960         * modules/getdelim: New file.
27961
27962         * modules/getline: Rewrite, don't use getndelim2.
27963
27964 2005-08-02  Simon Josefsson  <jas@extundo.com>
27965
27966         * m4/getline.m4: Separate out getdelim stuff into separate module.
27967
27968         * m4/getdelim.m4: New file.
27969
27970 2005-08-02  Simon Josefsson  <jas@extundo.com>
27971
27972         * lib/getline.h, getline.c: Rewrite.
27973
27974         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
27975
27976 2005-07-31  Bruno Haible  <bruno@clisp.org>
27977
27978         * lib/lock.h (gl_lock_initializer): New macro.
27979         (gl_lock_define_initialized): Use it.
27980         (gl_rwlock_initializer): New macro.
27981         (gl_rwlock_define_initialized): Use it.
27982         (gl_recursive_lock_initializer): New macro.
27983         (gl_recursive_lock_define_initialized): Use it.
27984
27985 2005-07-30  Karl Berry  <karl@gnu.org>
27986
27987         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
27988         Report from Ben Pfaff, regarding getopt.
27989
27990 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
27991
27992         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
27993         normal way.
27994         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
27995         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
27996         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
27997         (gl_GETOPT): Use the new macros.  Most of the implementation
27998         is moved to the new macros.  This is for programs like Emacs
27999         that don't want all the functionality of gl_GETOPT.
28000
28001 2005-07-26  Bruno Haible  <bruno@clisp.org>
28002
28003         * m4/lock.m4: Update from GNU gettext.
28004
28005 2005-07-26  Bruno Haible  <bruno@clisp.org>
28006
28007         * lib/lock.h: Update from GNU gettext.
28008         * lib/lock.c: Update from GNU gettext.
28009
28010 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
28011
28012         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
28013         obsolescent AC_TRY_RUN.  Include the default includes files, for
28014         'exit'.
28015
28016 2005-07-24  Bruno Haible  <bruno@clisp.org>
28017
28018         * modules/visibility: New file.
28019         * MODULES.html.sh (Misc): Add visibility.
28020
28021 2005-07-24  Bruno Haible  <bruno@clisp.org>
28022
28023         * m4/visibility.m4: New file.
28024
28025 2005-07-24  Bruno Haible  <bruno@clisp.org>
28026
28027         * doc/visibility.texi: New file.
28028
28029 2005-07-22  Bruno Haible  <bruno@clisp.org>
28030
28031         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
28032         $(ALLOCA_H), redundant through BUILT_SOURCES.
28033         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
28034         redundant through BUILT_SOURCES.
28035         * modules/byteswap (Makefile.am): Remove explicit dependency on
28036         $(BYTESWAP_H), redundant through BUILT_SOURCES.
28037         * modules/fnmatch (Makefile.am): Remove explicit dependency on
28038         $(FNMATCH_H), redundant through BUILT_SOURCES.
28039         * modules/getopt (Makefile.am): Remove explicit dependency on
28040         $(GETOPT_H), redundant through BUILT_SOURCES.
28041         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
28042         redundant through BUILT_SOURCES.
28043         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
28044         redundant through BUILT_SOURCES.
28045         * modules/stdbool (Makefile.am): Remove explicit dependency on
28046         $(STDBOOL_H), redundant through BUILT_SOURCES.
28047         * modules/stdint (Makefile.am): Remove explicit dependency on
28048         $(STDINT_H), redundant through BUILT_SOURCES.
28049         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
28050         Remove explicit dependency on $(SYSEXITS_H).
28051         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
28052
28053 2005-07-18  Simon Josefsson  <jas@extundo.com>
28054
28055         * lib/check-version.c (check_version): Accept identical versions too.
28056
28057 2005-07-18  Bruno Haible  <bruno@clisp.org>
28058
28059         * modules/lock: New file.
28060         * MODULES.html.sh (Multithreading): New section.
28061
28062 2005-07-18  Bruno Haible  <bruno@clisp.org>
28063
28064         * m4/lock.m4: New file, from GNU gettext.
28065
28066 2005-07-18  Bruno Haible  <bruno@clisp.org>
28067
28068         * lib/lock.h: New file, from GNU gettext.
28069         * lib/lock.c: New file, from GNU gettext.
28070
28071 2005-07-18  Bruno Haible  <bruno@clisp.org>
28072
28073         * lib/lock.h (gl_once_t): New type.
28074         (gl_once_define, gl_once): New macros.
28075         * lib/lock.c (fresh_once): New variable.
28076         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
28077         functions.
28078
28079 2005-07-16  Simon Josefsson  <jas@extundo.com>
28080
28081         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
28082         workaround, suggested by Bruno.
28083
28084 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
28085
28086         * modules/xalloc (Depends-on): Add xalloc-die.
28087         * modules/xvasprintf (Depends-on): Add xalloc-die.
28088
28089 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
28090
28091         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
28092         with a minor change.
28093
28094 2005-07-15  Bruno Haible  <bruno@clisp.org>
28095
28096         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
28097         When using lib/poll.c, define poll as rpl_poll.
28098
28099 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
28100
28101         * modules/argp (Depends-on): Remove unlocked-io.
28102
28103 2005-07-14  Derek Price  <derek@ximbiot.com>
28104
28105         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
28106         for glob symlink bug.
28107
28108 2005-07-14  Bruno Haible  <bruno@clisp.org>
28109
28110         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
28111         Instead, test for *_unlocked function declarations directly.
28112
28113 2005-07-11  Simon Josefsson  <jas@extundo.com>
28114
28115         * modules/size_max: New file.
28116
28117         * modules/xsize: Depend on size_max module for size_max.m4.
28118
28119 2005-07-11  Simon Josefsson  <jas@extundo.com>
28120
28121         * lib/size_max.h: New file.
28122
28123 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
28124
28125         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
28126         copyright symbol and the year.
28127         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
28128         (version_etc_va): Use parameterized copyright notice.
28129         Reword to conform to the current GNU coding standards.
28130
28131 2005-07-11  Karl Berry  <karl@gnu.org>
28132
28133         * doc/gnulib.texi (Quoting): new node.
28134         (Initial import): more info, from Patrice.
28135
28136 2005-07-11  Bruno Haible  <bruno@clisp.org>
28137
28138         * gnulib-tool (func_usage): Document option --avoid.
28139         (Command line options): Handle --avoid.
28140         (func_acceptable): New function.
28141         (func_modules_transitive_closure): Use it.
28142
28143 2005-07-11  Bruno Haible  <bruno@clisp.org>
28144
28145         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
28146         Reported by Jim Meyering.
28147
28148 2005-07-10  Bruno Haible  <bruno@clisp.org>
28149
28150         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
28151         Needed when size_t is smaller than 'unsigned int'.
28152         Reported by Paul Eggert.
28153
28154 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
28155
28156         * modules/argp (Depends-on): Add unlocked-io
28157
28158 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
28159
28160         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
28161         block of defines.
28162
28163 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
28164
28165         * config/srclist.txt: Comment out regcomp.c, since we have a porting
28166         fix now.
28167
28168 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
28169         and Paul Eggert  <eggert@cs.ucla.edu>
28170
28171         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
28172         in wint_t, not wchar_t.  Remove now-unnecessary cast.
28173
28174 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
28175
28176         * modules/regex (Files): Add lib/regex_internal.c,
28177         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
28178         (Depends-on): Add extensions.
28179         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
28180
28181 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
28182
28183         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
28184         pathconf.
28185         * m4/same.m4 (gl_SAME): Likewise.
28186         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
28187
28188         * m4/regex.m4: Adjust to new libc regex implementation.
28189         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
28190         all the .c and .h parts of (the new) regex.
28191         Quote the m4 stuff better.
28192         Check for RE_ICASE bug of old gnulib.
28193         Check for REG_STARTEND of recent libc.
28194         Rename local variables from jm_* to gl_*.
28195         Quote operand of "test -f".
28196         Say "recent enough" version of libc, not "version 2".
28197         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
28198         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
28199         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
28200         Remove check for btowc, isascii.
28201         Require AM_LANGINFO_CODESET.
28202
28203 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
28204
28205         * lib/regex.c, regex.h: Sync from libc.
28206         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
28207         * lib/regexec.c:
28208         New files, synced from libc, except that regex_internal.h
28209         currently has a small porting fix.
28210
28211 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
28212
28213         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
28214         regex_internal.c, regexec.c.
28215         Add regex_internal.h too, but as a comment, since the libc version
28216         is currently broken in gnulib mode.
28217
28218 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
28219
28220         Support programs like Emacs that use gnulib but not gettext.
28221         * MODULES.html.sh (Internationalization functions): Add gettext-h.
28222         * modules/gettext-h: New file.
28223         * modules/gettext (Files): Remove lib/gettext.h.
28224         (Depends-on): Add gettext-h.
28225         (Makefile.am): Remove lib_SOURCES.
28226         * modules/argmatch, modules/c-stack, modules/closeout:
28227         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
28228         * modules/execute, modules/file-type, modules/getaddrinfo:
28229         * modules/getopt, modules/human, modules/javacomp:
28230         * modules/javaexec, modules/mkdir-p, modules/obstack:
28231         * modules/openat, modules/pagealign_alloc, modules/pipe:
28232         * modules/quotearg, modules/regex, modules/rpmatch:
28233         * modules/unicodeio, modules/userspec, modules/version-etc:
28234         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
28235         * modules/xsetenv:
28236         Depend on gettext-h, not gettext.
28237
28238 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
28239
28240         * gnulib-tool (func_import): Add support for 'public domain' license.
28241         * modules/alloca, modules/atexit, modules/memmove:
28242         Now public domain, not GPL.
28243         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
28244         * modules/realloc, modules/strerror, modules/strtod:
28245         Now LGPL, not GPL.
28246
28247 2005-07-05  Bruno Haible  <bruno@clisp.org>
28248
28249         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
28250         autoconf CVS. Needed for mingw.
28251
28252 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28253
28254         Remove the dependency of the strftime module on the tzset module.
28255         * modules/strftime (Depends-on): Remove dependency on tzset.
28256
28257 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28258
28259         Remove the dependency of the strftime module on the tzset module.
28260         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
28261         gl_FUNC_TZSET_CLOBBER.
28262
28263 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
28264
28265         Remove the dependency of the strftime module on the tzset module.
28266         * lib/strftime.c (my_strftime)
28267         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
28268         Copy the input structure, to work around some of the bug with
28269         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
28270         Solaris releases, you should also use the tzset module, but we won't
28271         require it as a dependency any more since we don't want LGPLed code
28272         to depend on GPLed code.
28273
28274 2005-07-02  Jim Meyering  <jim@meyering.net>
28275
28276         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
28277         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
28278         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
28279         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
28280
28281 2005-07-02  Jim Meyering  <jim@meyering.net>
28282
28283         * lib/backupfile.c (backup_args): Change a `0' to NULL.
28284
28285 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
28286
28287         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
28288         declares only 'struct timespec;' (!).
28289
28290 2005-07-01  Jim Meyering  <jim@meyering.net>
28291
28292         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
28293         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
28294         * lib/save-cwd.c, tempname.c:
28295         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
28296         and don't include <sys/file.h>).
28297
28298 2005-06-29  Jim Meyering  <jim@meyering.net>
28299
28300         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
28301         type name.  Use the variable name instead.
28302         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
28303         Likewise.
28304
28305 2005-06-28  Simon Josefsson  <jas@extundo.com>
28306
28307         * modules/check-version (Files): Add check-version.m4.
28308
28309 2005-06-28  Simon Josefsson  <jas@extundo.com>
28310
28311         * m4/check-version.m4: New file, suggested by Jim Meyering
28312         <jim@meyering.net>.
28313
28314 2005-06-28  Simon Josefsson  <jas@extundo.com>
28315
28316         * lib/check-version.h, lib/check-version.c: New files.
28317
28318 2005-06-28  Simon Josefsson  <jas@extundo.com>
28319
28320         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
28321         collision with global variable.  Better indentation.  Don't
28322         increment buffer pointer beyond buffer end.  Based on comments
28323         from Paul Eggert <eggert@cs.ucla.edu>.
28324
28325         * lib/base64.h: Indent.
28326
28327 2005-06-28  Simon Josefsson  <jas@extundo.com>
28328
28329         * doc/gnulib.texi (Library version handling): New section.
28330
28331 2005-06-28  Jim Meyering  <jim@meyering.net>
28332
28333         * check-module (find_included_lib_files): Hard-code another
28334         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
28335         but modules/fts-lgpl (correctly) does not list those files.
28336
28337         * modules/canonicalize (Files): Add lib/pathmax.h.
28338
28339 2005-06-25  Simon Josefsson  <jas@extundo.com>
28340
28341         * modules/check-version: New file.
28342
28343 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
28344
28345         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
28346         initializer of struct addrinfo, as an indication that we don't
28347         care how many members the structure has.
28348
28349 2005-06-24  Derek Price  <derek@ximbiot.com>
28350         and Bruno Haible  <bruno@clisp.org>
28351
28352         Remove stat module & update lstat.
28353         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
28354         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
28355         * m4/stat.m4: Remove this file.
28356
28357 2005-06-24  Derek Price  <derek@ximbiot.com>
28358         and Bruno Haible  <bruno@clisp.org>
28359
28360         Remove stat module & update lstat.
28361         * lib/stat.c: Remove this file...
28362         (slash_aware_lstat): ...moving this content and its support...
28363         * lib/lstat.c (rpl_lstat): ...into here.
28364         * lib/lstat.h: New file.
28365
28366 2005-06-24  Derek Price  <derek@ximbiot.com>
28367         and Bruno Haible  <bruno@clisp.org>
28368
28369         Remove stat module & update lstat.
28370         * config/srclist.txt (libc sources): Remove stat.
28371
28372 2005-06-24  Derek Price  <derek@ximbiot.com>
28373         and Bruno Haible  <bruno@clisp.org>
28374
28375         Remove stat module & update lstat.
28376         * MODULES.html.sh (stat): Remove.
28377         * MODULES.html: Regenerated.
28378         * modules/lstat (Description): Correct function name.
28379         (Files): Add "lstat.h".
28380         (Depends-on): Remove stat, add xalloc, stat-macros.
28381         * modules/stat: Remove this file.
28382         (Include): Add "lstat.h", remove <sys/stat.h>.
28383
28384 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
28385
28386         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
28387         (ranged_convert): Don't save conversion in a temporary struct.
28388         This causes a warning with GCC 4.0.0, and anyway in the typical
28389         case it's not worth the extra 100 bytes or so of code.
28390         (ranged_convert, __mktime_internal): When calling a function via a
28391         pointer P, use P () rather than (*P) (), as we now assume C89 or
28392         better.
28393
28394 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
28395
28396         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
28397         "who -r" failed to give output.  Problem reported by Tim Waugh.
28398
28399         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
28400         (xcalloc): Use it to avoid needless tests.
28401         Problem reported by Jim Meyering.
28402
28403 2005-06-20  Derek Price  <derek@ximbiot.com>
28404
28405         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
28406         unnecessary for Autoconfs > 2.59c.
28407
28408 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28409
28410         * lib/argp.h (__option_is_short): Check upper limit of
28411         __key. Isprint() requires its argument to have the value
28412         of an unsigned char or EOF.
28413
28414 2005-06-16  Jim Meyering  <jim@meyering.net>
28415
28416         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
28417         when either N or S is zero.
28418
28419 2005-06-16  Derek Price  <derek@ximbiot.com>
28420
28421         * m4/bison.m4: Declare YACC & YFLAGS precious.
28422
28423 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
28424
28425         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
28426         multibyte string or pattern, fall back on unibyte matching.
28427         Problem reported by James Youngman.
28428
28429 2005-06-08  Bruno Haible  <bruno@clisp.org>
28430
28431         * modules/csharpcomp: New file.
28432         * MODULES.html.sh (C#): Add csharpcomp.
28433
28434 2005-06-08  Bruno Haible  <bruno@clisp.org>
28435
28436         * m4/csharpcomp.m4: New file, from GNU gettext.
28437
28438 2005-06-08  Bruno Haible  <bruno@clisp.org>
28439
28440         * lib/csharpcomp.h: New file, from GNU gettext.
28441         * lib/csharpcomp.c: New file, from GNU gettext.
28442         * lib/csharpcomp.sh.in: New file, from GNU gettext.
28443
28444 2005-06-08  Bruno Haible  <bruno@clisp.org>
28445
28446         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
28447         warning on mingw.
28448
28449 2005-06-07  Derek Price  <derek@ximbiot.com>
28450
28451         Sync from CVS.
28452         * lib/glob_.h: Indent nested #ifdef.
28453
28454 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
28455
28456         Sync from coreutils.
28457         Use "file name" when talking about file names, instead of "filename"
28458         or "path", as per the GNU coding standards.
28459         * lib/mkdir-p.c: Renamed from makepath.c.
28460         (make_dir_parents): Renamed from make_path.  All callers changed.
28461         * lib/mkdir-p.h: Likewise.  All includers changed.
28462         * lib/filenamecat.c: Renamed from path-concat.c.
28463         (file_name_concat): Renamed from path_concat.  All callers changed.
28464         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
28465         * lib/filenamecat.h: Likewise.  All includers changed.
28466         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
28467         in comments or local variable names.
28468         * lib/basename.c: Likewise.
28469         * lib/canonicalize.c, canonicalize.h: Likewise.
28470         * lib/dirname.c, dirname.h: Likewise.
28471         * lib/euidaccess.c: Likewise.
28472         * lib/exclude.c: Likewise
28473         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
28474         * lib/fsusage.c, fsuage.h: Likewise.
28475         * lib/fts.c, fts_.h: Likewise.
28476         * lib/getcwd.c: Likewise.
28477         * lib/getloadavg.c: Likewise.
28478         * lib/mkstemp.c: Likewise.
28479         * lib/mountlist.c, mountlist.h: Likewise.
28480         * lib/openat.c, openat.h: Likewise.
28481         * lib/readlink-stub.c: Likewise.
28482         * lib/readutmp.c, readutmp.h: Likewise.
28483         * lib/rename.c: Likewise.
28484         * lib/rmdir.c: Likewise.
28485         * lib/same.c: Likewise.
28486         * lib/savedir.c: Likewise.
28487         * lib/stripslash.c: Likewise.
28488         * lib/tempname.c: Likewise.
28489         * lib/xreadlink.c: Likewise.
28490         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
28491         All uses changed.
28492         * lib/exclude.h: Likewise.
28493
28494         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
28495         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
28496         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
28497         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
28498         * lib/pathmax.h: Include <limits.h> unconditionally, since other
28499         files have been getting away with it for years (MORE/BSD 4.3
28500         is extinct now).
28501         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
28502         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
28503
28504         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
28505         Define to 256, not 255, as per modern POSIX.
28506
28507 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
28508
28509         Sync from coreutils.
28510         Use "file name" when talking about file names, instead of "filename"
28511         or "path", as per the GNU coding standards.
28512         * MODULES.html.sh: mkdir-p renamed from makepath.
28513         filenamecat renamed from path-concat.
28514         * modules/filenamecat: Renamed from modules/path-concat.
28515         (Files): filenamecat.h and filenamecat.c renamed from
28516         path-concat.h and path-concat.c.
28517         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
28518         (Include): filenamecat.h, not path-concat.h.
28519         * modules/mkdir-p: Renamed from modules/makepath.
28520         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
28521         makepath.c.
28522         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
28523         (Include): mkdir-p.h, not makepath.h.
28524
28525 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
28526
28527         Sync from coreutils.
28528         * m4/mkdir-p.m4: Renamed from makepath.m4.
28529         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
28530         Rename files from makepath.c to mkdir-p.c, and from
28531         makepath.h to mkdir-p.h.
28532         * m4/filenamecat.m4: Renamed from path-concat.m4.
28533         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
28534         Rename files from path-concat.c to filenamecat.c,
28535         and from path-concat.h to filenamecat.h.
28536         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
28537         "file name" in local variables or comments.
28538         * m4/rename.m4: Likewise.
28539
28540 2005-06-01  Bruno Haible  <bruno@clisp.org>
28541
28542         * modules/csharpexec: New file.
28543         * MODULES.html.sh (C#): New section.
28544
28545 2005-06-01  Bruno Haible  <bruno@clisp.org>
28546
28547         * m4/csharp.m4: New file, from GNU gettext.
28548         * m4/csharpexec.m4: New file, from GNU gettext.
28549
28550 2005-06-01  Bruno Haible  <bruno@clisp.org>
28551
28552         * lib/csharpexec.h: New file, from GNU gettext.
28553         * lib/csharpexec.c: New file, from GNU gettext.
28554         * lib/csharpexec.sh.in: New file, from GNU gettext.
28555
28556 2005-05-31  Derek Price  <derek@ximbiot.com>
28557             Paul Eggert  <eggert@cs.ucla.edu>
28558
28559         Sync from cvs.
28560         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
28561
28562 2005-05-31  Derek Price  <derek@ximbiot.com>
28563             Paul Eggert  <eggert@cs.ucla.edu>
28564
28565         Sync from cvs.
28566         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
28567
28568 2005-05-29  Derek Price  <derek@ximbiot.com>
28569
28570         * config/srclist.txt (glob_.h, glob.c): Add these files.
28571
28572 2005-05-29  Derek Price  <derek@ximbiot.com>
28573
28574         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
28575         * modules/glob: New file.
28576         * modules/getlogin_r: Add link to POSIX spec in description.
28577
28578 2005-05-29  Derek Price  <derek@ximbiot.com>
28579             Paul Eggert  <eggert@cs.ucla.edu>
28580
28581         * m4/glob.m4: New file.
28582
28583 2005-05-29  Derek Price  <derek@ximbiot.com>
28584             Paul Eggert  <eggert@cs.ucla.edu>
28585
28586         * lib/glob_.h, lib/glob.c: New files.
28587
28588 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
28589
28590         * modules/fts (Files): Remove m4/inttypes-pri.m4.
28591         * modules/fts-lgpl (Depends-on): Remove gettext.
28592
28593 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
28594
28595         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
28596         and don't require gt_INTTYPES_PRI.
28597
28598 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
28599
28600         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
28601
28602         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
28603         the configuration hassle isn't worth it.
28604         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
28605         (LONGEST_MODIFIER, PRIuMAX): Remove.
28606
28607 2005-05-27  Bruno Haible  <bruno@clisp.org>
28608
28609         * lib/getlogin_r.h: Remove second include of <stddef.h>.
28610
28611 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
28612
28613         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
28614         _POSIX_PTHREAD_SEMANTICS for Solaris.
28615
28616 2005-05-25  Derek Price  <derek@ximbiot.com>
28617
28618         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
28619
28620 2005-05-25  Derek Price  <derek@ximbiot.com>
28621             Paul Eggert  <eggert@cs.ucla.edu>
28622
28623         * modules/getlogin_r, m4/getlogin_r.m4: New files.
28624         * lib/getlogin_r.c, getlogin_r.h: New files.
28625
28626 2005-05-25  Bruno Haible  <bruno@clisp.org>
28627             Derek Price  <derek@ximbiot.com>
28628
28629         * lib/getlogin_r.h: Simplify API documentation.
28630
28631 2005-05-23  Derek Price  <derek@ximbiot.com>
28632
28633         * modules/minmax (Files): Add m4/minmax.m4.
28634         (configure.ac): Add gl_MINMAX.
28635
28636 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
28637
28638         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
28639         so that unistd-safer.h (GPL'ed code) need not be included.
28640
28641 2005-05-22  Bruno Haible  <bruno@clisp.org>
28642
28643         * m4/minmax.m4: New file.
28644         Based on a patch by Derek Price <derek@ximbiot.com>.
28645
28646 2005-05-22  Bruno Haible  <bruno@clisp.org>
28647
28648         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
28649         (INT64_MIN): Fix definition.
28650         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
28651
28652         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
28653         NEED_SIGNED_INT_TYPES.
28654
28655         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
28656         HAVE_SYSTEM_INTTYPES.
28657
28658 2005-05-22  Bruno Haible  <bruno@clisp.org>
28659
28660         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
28661         Also include <sys/param.h> if it defines MIN, MAX.
28662         Based on a patch by Derek Price <derek@ximbiot.com>.
28663
28664 2005-05-21  Jim Meyering  <jim@meyering.net>
28665
28666         * modules/fts (Files): Add m4/inttypes-pri.m4.
28667         (Depends-on): Add lstat and remove gettext.  Alphabetize.
28668
28669 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
28670
28671         New fts module.
28672         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
28673         (setup_dir, free_dir): New functions.
28674         (enter_dir, leave_dir): Define trivial
28675         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
28676         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
28677         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
28678         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
28679         Move to fts-cycle.c.
28680         (fts_open): Use setup_dir.
28681         (fts_close): Use free_dir.
28682         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
28683         This adds a label and some gotos, but the alternatives were messier.
28684         Check for memory allocation failure when entering a dir.
28685         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
28686         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
28687         (FTS): New member fts_cycle, that is a union that contains the
28688         old active_dir_ht and cycle_state.  All uses changed to mention
28689         fts_cycle.ht and fts_cycle.state.
28690         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
28691         fts.c, with the following changes:
28692         (setup_dir, free_dir): New functions.
28693         (enter_dir): Now returns bool.  Return true if successful, false
28694         if memory exhausted.  All callers changed.
28695         Do not bother partly cleaning up on
28696         memory allocation failure; that is free_dir's job.
28697         However, free ad if hash_insert fails, to avoid memory leak.
28698         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
28699         fts->fts_options to see which union member to use.
28700
28701 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
28702
28703         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
28704         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
28705
28706 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
28707
28708         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
28709
28710 2005-05-20  Jim Meyering  <jim@meyering.net>
28711
28712         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
28713         Now a macro, to pacify GCC.
28714
28715 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
28716
28717         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
28718         of -1.
28719
28720 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
28721
28722         * lib/chown.c (rpl_chown): Return -1 on failure.
28723
28724 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
28725
28726         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
28727         Don't check for stddef.h.
28728         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
28729         don't use its results.
28730         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
28731         since we include them unconditionally.  Don't require
28732         AM_STDBOOL_H, since stdbool is a prerequisite.
28733         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
28734         since we assume C89 or better.
28735         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
28736         as we don't use their results.
28737         Don't check for fchdir, memmove, memset, strrchr, as we use
28738         them unconditionally.
28739         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
28740         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
28741
28742 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
28743
28744         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
28745         Include <stddef.h> unconditionally, since we assume C89 now.
28746         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
28747         * lib/fts.c: Include fts_.h first, to check interface.
28748         Do not include intprops.h; no longer needed.
28749         Include cycle-check.h and hash.h, since fts_.h no longer does.
28750         Remove unnecessary casts of closedir to void.
28751         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
28752         decide whether to decrement nlinks.
28753         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
28754         (FTS): Use struct hash_table * instead of Hash_table, so that
28755         we no longer need to include hash.h here.
28756
28757 2005-05-18  Jim Meyering  <jim@meyering.net>
28758
28759         * modules/dirfd (License): Change to LGPL.  Most of the code
28760         is already in the public domain.
28761
28762 2005-05-18  Jim Meyering  <jim@meyering.net>
28763
28764         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
28765         Reported by Yoann Vandoorselaere.
28766
28767 2005-05-17  Jim Meyering  <jim@meyering.net>
28768
28769         * m4/fts.m4: New file, from coreutils.
28770
28771 2005-05-17  Jim Meyering  <jim@meyering.net>
28772
28773         * lib/fts.c, lib/fts_.h: New files, from coreutils.
28774
28775 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
28776
28777         Sync from coreutils.
28778         * m4/unlinkdir.m4: New file.
28779
28780 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
28781
28782         Sync from coreutils.
28783         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
28784         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
28785         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
28786         White space changes only.
28787         * lib/makepath.c (make_path): Port to hosts where leading "//" is
28788         special.
28789         * lib/yesno.c: Include getline.h, not ctype.h.
28790         (yesno): Don't remove leading white space; POSIX doesn't allow it.
28791         Use getline to remove arbitrary restriction on response length.
28792
28793 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
28794
28795         * config/srclist-update: Spell out "Street" in FSF postal
28796         mail address; this is the style the FSF seems to prefer.
28797
28798         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
28799         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
28800         this updates FSF postal mail address.
28801
28802         Sync from coreutils.
28803         * modules/unlinkdir: New file.
28804         * modules/yesno (Depends-on): Add getline.
28805         * MODULES.html.sh (File system functions): Add unlinkdir.
28806
28807 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
28808
28809         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
28810         lib/strsep.h:
28811         Change the initial comment to refer to GPL, not LGPL.
28812         gnulib-tool will change it to LGPL as needed.
28813
28814         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
28815         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
28816         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
28817         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
28818         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
28819         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
28820         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
28821         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
28822         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
28823         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
28824         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
28825         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
28826         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
28827         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
28828         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
28829         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
28830         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
28831         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
28832         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
28833         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
28834         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
28835         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
28836         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
28837         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
28838         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
28839         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
28840         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
28841         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
28842         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
28843         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
28844         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
28845         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
28846         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
28847         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
28848         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
28849         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
28850         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
28851         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
28852         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
28853         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
28854         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
28855         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
28856         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
28857         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
28858         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
28859         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
28860         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
28861         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
28862         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
28863         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
28864         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
28865         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
28866         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
28867         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
28868         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
28869         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
28870         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
28871         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
28872         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
28873         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
28874         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
28875         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
28876         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
28877         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
28878         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
28879         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
28880         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
28881         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
28882         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
28883         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
28884         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
28885         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
28886         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
28887         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
28888         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
28889         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
28890         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
28891         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
28892         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
28893         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
28894         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
28895         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
28896         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
28897         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
28898         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
28899         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
28900         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
28901         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
28902         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
28903         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
28904         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
28905         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
28906         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
28907         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
28908         lib/yesno.c, lib/yesno.h:
28909         Update FSF postal mail address.
28910
28911 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
28912
28913         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
28914         tests/test-memmem.c, tests/test-stpncpy.c:
28915         Update FSF postal mail address.
28916
28917 2005-05-13  Bruno Haible  <bruno@clisp.org>
28918
28919         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
28920         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
28921         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
28922         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
28923         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
28924         Add support for 64-bit integers in the MSVC compiler.
28925
28926 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28927
28928         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
28929
28930 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
28931
28932         * gnulib-tool (func_import): Sort and uniquify recommended includes.
28933
28934 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
28935
28936         * doc/getdate.texi (General date syntax): Don't say that date
28937         date --iso-8601=ns generates acceptable dates; it doesn't yet.
28938         Problem reported by Nic Ferrier.
28939
28940 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28941
28942         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
28943         specified in ai_socktype. Fix invalid ai_protocol
28944         check. ai_protocol is usually set to 0 or depending on
28945         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
28946         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
28947         ai_socktype / ai_protocol in the returned addrinfo structure.
28948
28949 2005-05-10  Simon Josefsson  <jas@extundo.com>
28950
28951         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
28952         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
28953
28954 2005-05-10  Karl Berry  <karl@gnu.org>
28955
28956         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
28957         (from http://www.gnu.org/licenses).
28958         * doc/COPYING.LIB: also rename to COPYING.LESSER.
28959         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
28960         fdl.texi suffices.
28961
28962 2005-05-10  Karl Berry  <karl@gnu.org>
28963
28964         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
28965         (COPYING.DOC): remove.
28966
28967         * config/srclist-update: new FSF address.
28968
28969 2005-05-10  Derek Price  <derek@ximbiot.com>
28970
28971         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
28972         possible.
28973
28974 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28975             Bruno Haible  <bruno@clisp.org>
28976
28977         * modules/inet_ntop: New file.
28978         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28979         inet_ntop.
28980
28981 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28982             Bruno Haible  <bruno@clisp.org>
28983
28984         * m4/inet_ntop.m4: New file.
28985
28986 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28987             Bruno Haible  <bruno@clisp.org>
28988
28989         * lib/inet_ntop.h: New file.
28990         * lib/inet_ntop.c: New file, from glibc with modifications.
28991
28992 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
28993
28994         * modules/time_r (License): Change to LGPL.
28995         * modules/extensions (License): Change to LGPL.  Actually,
28996         the license is more permissive than that, but currently gnulib-tool
28997         doesn't know how to handle more-permissive licenses.
28998
28999         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
29000         Problem reported by Dave Love.
29001
29002 2005-05-08  Jim Meyering  <jim@meyering.net>
29003
29004         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
29005         blank.
29006
29007 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
29008
29009         * modules/argmatch (Depends-on): Add stdbool.
29010         * modules/backupfile (Depends-on): Likewise.
29011         * modules/chdir-long (Depends-on): Likewise.
29012         * modules/closeout (Depends-on): Likewise.
29013         * modules/cycle-check (Depends-on): Likewise.
29014         * modules/dirname (Depends-on): Likewise.
29015         * modules/fnmatch (Depends-on): Likewise.
29016         * modules/fsusage (Depends-on): Likewise.
29017         * modules/fwriteerror (Depends-on): Likewise.
29018         * modules/getcwd (Depends-on): Likewise.
29019         * modules/getloadavg (Depends-on): Likewise.
29020         * modules/hard-locale (Depends-on): Likewise.
29021         * modules/makepath (Depends-on): Likewise.
29022         * modules/mountlist (Depends-on): Likewise.
29023         * modules/nanosleep (Depends-on): Likewise.
29024         * modules/posixtm (Depends-on): Likewise.
29025         * modules/quotearg (Depends-on): Likewise.
29026         * modules/readtokens (Depends-on): Likewise.
29027         * modules/readtokens0 (Depends-on): Likewise.
29028         * modules/readutmp (Depends-on): Likewise.
29029         * modules/save-cwd (Depends-on): Likewise.
29030         * modules/strftime (Depends-on): Likewise.
29031         * modules/userspec (Depends-on): Likewise.
29032         * modules/utimecmp (Depends-on): Likewise.
29033         * modules/xgetcwd (Depends-on): Likewise.
29034         * modules/xnanosleep (Depends-on): Likewise.
29035         * modules/xstrtod (Depends-on): Likewise.
29036         * modules/yesno (Depends-on): Likewise.
29037
29038 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
29039
29040         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
29041         needless checks.
29042
29043 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
29044
29045         Merge from coreutils.  Among other things,
29046         add bulletproofing for cases where stdin, stdout, or stderr are closed.
29047         * lib/fd-safer.c: New file.
29048         * lib/fcntl-safer.h, open-safer.c: Remove.
29049         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
29050         * lib/dup-safer.c: Include unistd-safer.h first.
29051         Don't include errno.h.
29052         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
29053         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
29054         * lib/file-type.c: Rely on file-type.h change.
29055         * lib/getloadavg.c: Include unistd-safer.h.
29056         (getloadavg): Use safer open.
29057         * lib/getusershell.c: Include "stdio-safer.h".
29058         (getusershell): Use safer fopen.
29059         * lib/long-options.c (long_options): Use NULL rather than 0.
29060         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
29061         'free'.
29062         * lib/modechange.c: Likewise.
29063         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
29064         (MODE_DONE): New constant.
29065         (struct mode_change): Remove 'next' member.
29066         (make_node_op_equals): New function; like the old one of the
29067         same name, except it allocates an array.
29068         (mode_compile, mode_create_from_ref): Use it.
29069         (mode_compile): Allocate result as an array, not a linked list.
29070         Parse octal string ourself, so that we catch mistakes like "+0".
29071         (mode_adjust): Arg is an array, not a linked list.
29072         * lib/modechange.c: Include stat-macros.h, xalloc.h.
29073         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
29074         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
29075         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
29076         Remove.  This is now stat-macros.h's job.
29077         (talloc): Remove.  All callers replaced by xalloc, so that
29078         our invokers don't have to worry about reporting memory failures.
29079         (make_node_op_equals): Remove.
29080         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
29081         New constants.
29082         (struct mode_change): Moved here from modechange.h.
29083         (mode_append_entry): Remove.
29084         (mode_compile): Remove MASKED_OPS arg, since it encouraged
29085         apps to have incorrect behavior.  Use simpler algorithm for head
29086         and tail.  Don't futz with umask; that's now the job of mode_adjust.
29087         Detect more invalid usages rather than having somewhat-random behavior.
29088         Don't insert an "a=" action, as that leads to incorrect behavior.
29089         (mode_compile, mode_create_from_ref): Return NULL on error instead
29090         of an enum, since now there's only one way to have an error.  All
29091         callers changed.
29092         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
29093         at the correct time.  Simplify calculation of "+u" and its ilk.
29094         Don't mishandle "+X".
29095         (mode_free): Remove "register" and localize decls.
29096         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
29097         (struct mode_change): Move to modechange.c; callers don't
29098         need to see this stuff.
29099         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
29100         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
29101         (mode_change, mode_adjust): Reflect the new signatures noted above.
29102         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
29103         that might redefine system include files.
29104         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
29105         (my_usleep): Use NULL rather than (void *) 0.
29106         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
29107         Use siginterrupt to specify that system calls should be interrupted.
29108         (rpl_nanosleep): Move initialization of suspended closer to call of
29109         my_usleep.
29110         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
29111         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
29112         (desirable_utmp_entry): New function.
29113         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
29114         using x2nrealloc, to simplify logic.
29115         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
29116         size calculation.  Do not assume utmp file is a regular file.
29117         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
29118         (READ_UTMP_CHECK_PIDS): New constant.
29119         * lib/save-cwd.c: Include unistd-safer.h.
29120         (save_cwd): Use fd_safer.
29121         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
29122         [!_LIBC] Include "stat-macros.h" instead.
29123         * lib/unistd-safer.h (fd_safer): New decl.
29124
29125 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
29126
29127         * modules/getloadavg (Depends-on): Add unistd-safer.
29128         * modules/getusershell (Depends-on): Add stdio-safer.
29129         * modules/lstat (Depends-on): Remove xalloc.
29130         * modules/mkstemp (Depends-on): Add stat-macros.
29131         * modules/modechange (Depends-on): Remove xstrtol.
29132         Add stat-macros, xalloc.
29133         * modules/save-cwd (Depends-on): Add unistd-safer.
29134         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
29135         * modules/unistd-safer (Files): Add lib/fd-safer.c
29136         (Makefile.am): Remove lib_SOURCES.
29137
29138         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
29139         Remove fcntl-safer; unistd-safer supersedes it.
29140
29141 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
29142
29143         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
29144         AC_HEADER_STAT.
29145         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
29146         (gl_PREREQ_CHOWN): Remove.
29147         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
29148         it.  Don't require AC_HEADER_STAT.
29149         (gl_PREREQ_LSTAT): Remove.
29150         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
29151         Don't require AC_HEADER_STAT.
29152         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
29153         (gl_PREREQ_RMDIR): Remove.
29154         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
29155         mention stat-macros.h or AC_HEADER_STAT, since we'll make
29156         the stat-macros module a prerequisite.
29157         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
29158         * m4/filemode.m4 (gl_FILEMODE): Likewise.
29159         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
29160         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
29161         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
29162         variable names.
29163         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
29164         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
29165         variable prefixes.
29166         * m4/fcntl-safer.m4: Remove.
29167         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
29168         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
29169         Invoke gl_PREREQ_FD_SAFER.
29170         (gl_PREREQ_FD_SAFER): New macro.
29171         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
29172         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
29173         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
29174         Remove duplicate call to AC_LIBOBJ(readutmp).
29175         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
29176
29177         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
29178         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
29179
29180 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
29181
29182         * MODULES.html.sh (Misc): Add byteswap.
29183
29184 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
29185
29186         * modules/getcwd (Depends-on): Add extensions.
29187         * modules/openat (Depends-on): Likewise.
29188
29189 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
29190
29191         * modules/byteswap: New file.
29192
29193 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
29194
29195         * m4/byteswap.m4: New file.
29196
29197 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
29198
29199         * lib/byteswap_.h: New file.
29200
29201 2005-04-25  Karl Berry  <karl@gnu.org>
29202
29203         * m4/gettext.m4: Update from GNU gettext 0.14.4.
29204
29205 2005-04-25  Albert Chin  <china@thewrittenword.com>
29206
29207         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
29208         Toolkit C bug.
29209
29210 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
29211
29212         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
29213         (func_ln_if_changed) Remove forcibly for no error message
29214         in case file does not exist.
29215
29216 2005-04-19  Simon Josefsson  <jas@extundo.com>
29217
29218         * gnulib-tool (Options): Make --symlink mean --symbolic.
29219
29220 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
29221
29222         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
29223
29224 2005-04-16  Simon Josefsson  <jas@extundo.com>
29225
29226         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
29227
29228 2005-04-15  Simon Josefsson  <jas@extundo.com>
29229
29230         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
29231
29232 2005-04-15  Simon Josefsson  <jas@extundo.com>
29233
29234         * gnulib-tool: Rename --symlink to --symbolic.
29235
29236 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
29237
29238         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
29239         symbolic links to files instead of copying/moving.  Add --aux-dir,
29240         specifying directory relative --dir where auxiliary build tools
29241         are placed.
29242
29243 2005-04-14  Bruno Haible  <bruno@clisp.org>
29244
29245         * modules/allocsa (License): Change to LGPL.
29246         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
29247
29248 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
29249
29250         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
29251         that "UTC +1 second" continues to work.  Problem reported
29252         by Dmitry V. Levin.
29253         (relunit_snumber): New rule.
29254         (relunit): Use it.
29255
29256 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
29257
29258         * lib/getdate.y (universal_time_zone_table): New constant.
29259         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
29260         universal_time_zone_table.
29261         (lookup_zone): Prefer universal_time_zone_table to
29262         local_time_zone_table, so that "GMT" time stamps are allowed in
29263         London during the summer.  Problem reported by Ian Abbott.
29264
29265 2005-04-12  Jim Meyering  <jim@meyering.net>
29266
29267         * lib/human.c (humblock): Set *options even when returning due to
29268         xstrtoumax conversion failure.  Thanks to a used-uninitialized
29269         warning from gcc-4.
29270
29271 2005-04-09  Jim Meyering  <jim@meyering.net>
29272
29273         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
29274         -Wuninitialized: initialize tm0.tm_year.
29275
29276 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29277
29278         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
29279         count, since there's no maximum.  All uses changed.
29280         Add member dsts_seen.
29281         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
29282         not being INT_MAX.
29283         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
29284         Use pc_rels_seen to decide whther a date is absolute.
29285
29286         * lib/getdate.y (number): Don't overwrite year.
29287         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
29288         check.
29289
29290 2005-04-02  Simon Josefsson  <jas@extundo.com>
29291
29292         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
29293         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
29294
29295 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
29296
29297         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
29298         where no absolute path name can be longer than PATH_MAX.
29299
29300 2005-03-27  Jim Meyering  <jim@meyering.net>
29301
29302         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
29303
29304 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
29305
29306         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
29307         "one's complement" -> "ones' complement" in comment, as per Knuth.
29308         "value of type" -> "type or expression" in comment.
29309         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
29310
29311 2005-03-26  Jim Meyering  <jim@meyering.net>
29312
29313         Comment nits.
29314         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
29315         Correct typos: s/or/of/.
29316
29317 2005-03-26  Jim Meyering  <jim@meyering.net>
29318
29319         * modules/check-include-files: Move to ../ and rename to...
29320         * check-module: ...this.
29321
29322 2005-03-25  Jim Meyering  <jim@meyering.net>
29323
29324         * modules/xvasprintf (Files): Add xalloc.h.
29325
29326 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29327
29328         * modules/gettext (Files): config/config.rpath ->
29329         build-aux/config.rpath
29330         * modules/iconv (Files): Likewise.
29331         Problem reported by Oskar Liljeblad.
29332
29333 2005-03-23  Jim Meyering  <jim@meyering.net>
29334
29335         * modules/check-include-files: New script to check for
29336         missing dependencies, multiple includes, etc.
29337
29338         * modules/c-strtold (Depends-on): Add xalloc.
29339         * modules/c-strtod (Depends-on): Add xalloc.
29340         * modules/hash (Depends-on): Add xalloc.
29341         (Files): Remove lib/xalloc.h.
29342
29343         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
29344         * modules/userspec (Files): Add lib/inttostr.h.
29345
29346 2005-03-23  Jim Meyering  <jim@meyering.net>
29347
29348         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
29349
29350 2005-03-22  Jim Meyering  <jim@meyering.net>
29351
29352         * modules/stat-macros: New module.
29353         * modules/canonicalize, modules/euidaccess, modules/file-type,
29354         * modules/filemode, modules/lchown, modules/makepath,
29355         * modules/rmdir, modules/stat: Depend on new stat-macros module
29356         rather than listing lib/stat-macros.h manually.
29357         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
29358
29359 2005-03-22  Jim Meyering  <jim@meyering.net>
29360
29361         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
29362
29363 2005-03-22  Bruno Haible  <bruno@clisp.org>
29364
29365         * config/srclist.txt: Replace target directory 'config' with
29366         'build-aux'.
29367         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
29368         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
29369         ../build-aux/.
29370
29371 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
29372
29373         * modules/chdir-long (Depends-on): Add mempcpy.
29374
29375         * modules/acl, modules/backupfile, modules/c-strtod,
29376         modules/c-strtold, modules/canon-host, modules/canonicalize,
29377         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
29378         modules/exclude, modules/exitfail, modules/file-type,
29379         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
29380         modules/getdate, modules/getline, modules/getpagesize,
29381         modules/getpass, modules/getugroups, modules/group-member,
29382         modules/hard-locale, modules/hash, modules/human, modules/idcache,
29383         modules/inttostr, modules/long-options, modules/makepath,
29384         modules/md5, modules/memcasecmp, modules/memcoll,
29385         modules/modechange, modules/mountlist, modules/path-concat,
29386         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
29387         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
29388         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
29389         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
29390         modules/strftime, modules/strndup, modules/strverscmp,
29391         modules/timespec, modules/unlocked-io, modules/userspec,
29392         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
29393         modules/yesno:
29394         Remove lib_SOURCES line from Makefile.am section, as this is now
29395         done automatically by the corresponding Autoconf macro.
29396
29397 2005-03-21  Jim Meyering  <jim@meyering.net>
29398
29399         Changes imported from coreutils.
29400
29401         * lib/cycle-check.c: Don't include xalloc.h.
29402
29403         * lib/path-concat.c: Don't include assert.h.
29404         (path_concat): Remove assertion that would have triggered
29405         for ABASE starting with more than one slash.
29406         Reported by Andreas Schwab.
29407
29408         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
29409         properly when ABASE is an absolute file name.
29410         Correct the description of this function.
29411         Include <assert.h>.
29412         Add an assertion and a test driver.
29413         This fixes a bug introduced on 2004-07-02.
29414         Andreas Schwab reported the resulting failure of cp --parents:
29415         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
29416
29417 2005-03-21  Jim Meyering  <jim@meyering.net>
29418
29419         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
29420         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
29421
29422 2005-03-21  Jim Meyering  <jim@meyering.net>
29423         and  Paul Eggert  <eggert@cs.ucla.edu>
29424
29425         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
29426         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
29427         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
29428         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
29429         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
29430         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
29431         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
29432         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
29433         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
29434         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
29435         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
29436         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
29437         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
29438         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
29439         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
29440         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
29441         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
29442         for these modules.
29443
29444 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
29445
29446         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
29447         (which shouldn't happen), generate nothing instead of returning 0
29448         immediately, so that nstrftime (NULL, ...) doesn't return 0.
29449
29450 2005-03-16  Bruno Haible  <bruno@clisp.org>
29451
29452         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
29453         HAVE_LONGLONG_64BIT.
29454
29455 2005-03-16  Bruno Haible  <bruno@clisp.org>
29456
29457         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
29458         HAVE_LONGLONG_64BIT.
29459
29460 2005-03-16  Bruno Haible  <bruno@clisp.org>
29461
29462         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
29463         HAVE_LONGLONG_64BIT.
29464
29465 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
29466
29467         * lib/strftime.c (my_strftime): Prepend space to format so that we can
29468         reliably distinguish strftime failure from empty output on POSIX
29469         hosts.
29470
29471 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
29472
29473         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
29474         (iconv_string): Don't guess a size-zero buffer, as that might cause
29475         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
29476         result would be 'too large', where 'too large' is (heuristically)
29477         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
29478         overflow concerns.  This will prevent some unwanted malloc failures
29479         when the inputs are very large.
29480
29481 2005-03-15  Karl Berry  <karl@gnu.org>
29482
29483         * config/srclist.txt (config.rpath): from gettext.
29484         * config/config.rpath: update.
29485
29486 2005-03-15  Bruno Haible  <bruno@clisp.org>
29487
29488         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
29489         to 'negate'.
29490
29491         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
29492         variable.
29493
29494         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
29495         results.
29496
29497 2005-03-14  Simon Josefsson  <jas@extundo.com>
29498
29499         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
29500         <fx@gnu.org>.
29501
29502 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
29503
29504         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
29505         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
29506         intprops.h.
29507         * lib/strtol.c: Likewise.
29508
29509 2005-03-14  Jim Meyering  <jim@meyering.net>
29510
29511         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
29512         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
29513         to be nonzero so that we (and caller) can detect the difference
29514         between a valid zero-length expansion and an error return, even
29515         when the underlying strftime fails before writing anything into
29516         that location.
29517
29518 2005-03-14  Bruno Haible  <bruno@clisp.org>
29519
29520         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
29521         Update from GNU gettext 0.14.3.
29522
29523 2005-03-10  Jim Meyering  <jim@meyering.net>
29524
29525         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
29526
29527 2005-03-10  Jim Meyering  <jim@meyering.net>
29528
29529         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
29530         so that this module works on systems without fchdir.
29531
29532 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
29533
29534         Factor int-properties macros into a single file, except for
29535         glibc-related files.
29536         * lib/intprops.h: New file.
29537         * lib/getloadavg.c: Include it instead of limits.h.
29538         (INT_STRLEN_BOUND): Remove.
29539         * lib/human.c: Include intprops.h.
29540         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
29541         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
29542         302/1000.
29543         * lib/inttostr.h: Include intprops.h instead of limits.h.
29544         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
29545         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
29546         for consistency with intprops.h.
29547         (time_t_is_integer, twos_complement_arithmetic): Use them.
29548         * lib/sig2str.h: Include <signal.h>, intprops.h.
29549         (INT_STRLEN_BOUND): Remove.
29550         * lib/strftime.c (TYPE_SIGNED): Remove.
29551         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
29552         * lib/strtol.c: Adjust comments to match intprops.h.
29553         * lib/userspec.c: Include intprops.h.
29554         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
29555         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
29556         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
29557         instead of rolling our own expressions.
29558         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
29559
29560         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
29561         instead of int.
29562         (my_strftime): Do not mishandle years close to INT_MAX, by doing
29563         the right thing even if adding 1900 would overflow.  Similarly
29564         for tm_mon + 1 and tm_yday + 1.
29565         Make %Y always equivalent to %C%y, and similarly for %G and %g.
29566         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
29567         (DO_SIGNED_NUMBER): New macro.
29568         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
29569
29570 2005-03-07  Bruno Haible  <bruno@clisp.org>
29571
29572         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
29573
29574 2005-03-07  Bruno Haible  <bruno@clisp.org>
29575
29576         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
29577
29578 2005-03-04  Derek R. Price  <derek@ximbiot.com>
29579
29580         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
29581         (func_import): Only replace files via --import when they have actually
29582         changed.
29583
29584 2005-03-03  Derek R. Price  <derek@ximbiot.com>
29585
29586         * m4/mmap-anon.m4: New file.
29587         * m4/pagealign_alloc.m4: New file.
29588
29589 2005-03-03  Derek R. Price  <derek@ximbiot.com>
29590             Bruno Haible  <bruno@clisp.org>
29591
29592         * modules/pagealign_alloc: New file.
29593         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
29594
29595 2005-03-03  Derek R. Price  <derek@ximbiot.com>
29596             Bruno Haible  <bruno@clisp.org>
29597
29598         * lib/pagealign_alloc.h: New file.
29599         * lib/pagealign_alloc.c: New file.
29600
29601 2005-03-03  Bruno Haible  <bruno@clisp.org>
29602
29603         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
29604         Use an all-permissive copyright notice, recommended by RMS.
29605
29606 2005-03-02  Bruno Haible  <bruno@clisp.org>
29607
29608         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
29609         of AIX, the replacement has to be done only after <string.h> is
29610         included, therefore not in config.h. stpncpy.h does the replacement,
29611         and stpncpy.c uses it.
29612
29613 2005-03-02  Bruno Haible  <bruno@clisp.org>
29614
29615         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
29616         stpncpy.c uses it.
29617
29618 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
29619
29620         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
29621         The workaround isn't strictly needed for POSIX conformance, and
29622         it's too much of a pain to configure and maintain.  We'll ask
29623         people to fix their kernels instead.
29624         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
29625         (NANOSLEEP_BUG_WORKAROUND): Remove.
29626         (xnanosleep): Remove the workaround.
29627
29628 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
29629
29630         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
29631         Reported by Derek Price.
29632         (Include): Add "timespec.h".
29633
29634         * modules/xnanosleep (Depends-on): Remove gethrxtime.
29635
29636 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
29637
29638         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
29639         to detect nanosleep bug.
29640
29641 2005-03-01  Bruno Haible  <bruno@clisp.org>
29642
29643         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
29644
29645 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
29646
29647         * modules/gethrxtime: New file.
29648         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
29649         (Depends-on): Add gethrxtime.
29650         (configure.ac): Add gl_XNANOSLEEP.
29651         (Makefile.am): Remove lib_SOURCES line.
29652
29653 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
29654
29655         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
29656         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
29657
29658 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
29659
29660         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
29661         * lib/timespec.h (gettime): Return void, since it always
29662         succeeds now.  All uses changed.
29663         * lib/gettime.c (gettime) Likewise.
29664         [HAVE_NANOTIME]: Prefer nanotime.
29665         Assume gettimeofday succeeds, as POSIX requires.
29666         Assime time () succeeds, since other code already does.
29667         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
29668         (timespec_subtract): Remove.
29669         (NANOSLEEP_BUG_WORKAROUND): New constant.
29670         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
29671         things considerably.  Use it only on GNU/Linux hosts, since the
29672         workaround shouldn't be needed elsewhere.
29673
29674 2005-02-24  Bruno Haible  <bruno@clisp.org>
29675
29676         * modules/gettext (Files): Add m4/glibc2.m4.
29677
29678 2005-02-24  Bruno Haible  <bruno@clisp.org>
29679
29680         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
29681         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
29682         * m4/progtest.m4:
29683         Update from GNU gettext 0.14.2.
29684         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
29685
29686 2005-02-24  Bruno Haible  <bruno@clisp.org>
29687
29688         * lib/localcharset.c: Update from GNU gettext 0.14.2.
29689         * lib/config.charset: Update from GNU gettext 0.14.2.
29690
29691 2005-02-24  Bruno Haible  <bruno@clisp.org>
29692
29693         * lib/gettext.h: Update from GNU gettext 0.14.2.
29694
29695 2005-02-23  Simon Josefsson  <jas@extundo.com>
29696
29697         * m4/iconvme.m4: New file.
29698
29699 2005-02-23  Jim Meyering  <jim@meyering.net>
29700
29701         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
29702         change.
29703         Thanks to Bruno Haible for catching it.
29704
29705 2005-02-22  Simon Josefsson  <jas@extundo.com>
29706
29707         * modules/iconvme: New file.
29708
29709         * MODULES.html.sh: Add iconvme.
29710
29711 2005-02-22  Simon Josefsson  <jas@extundo.com>
29712
29713         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
29714
29715 2005-02-22  Simon Josefsson  <jas@extundo.com>
29716
29717         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
29718
29719 2005-02-22  Jim Meyering  <jim@meyering.net>
29720
29721         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
29722         s/ifndef/ifdef/.
29723
29724 2005-02-20  Neil Conway  <neilc@samurai.com>
29725
29726         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
29727         returned by OSX/Darwin if the specified buffer is not large
29728         enough for the hostname.
29729
29730 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29731
29732         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
29733         pass it to _help, otherwise the latter coredumps trying to
29734         dereference state.root_argp.
29735
29736 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
29737
29738         * modules/chdir-long (Depends-on): Add memrchr.
29739         * modules/memrchr (Files): Add lib/memrchr.h.
29740         (Include): "memrchr.h".
29741
29742 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
29743
29744         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
29745
29746 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
29747
29748         * lib/memrchr.h: New file.
29749         * lib/chdir-long.c: Include it.
29750         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
29751         Don't bother including stddef.h.
29752
29753 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
29754
29755         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
29756         inclusion.
29757         Include <sys/types.h>, for dev_t.
29758         (ME_DUMMY, ME_REMOTE): Move from here....
29759         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
29760         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
29761         Dmitry V. Levin.
29762         Include mountlist.h first, to test the interface.
29763
29764 2005-01-29  Bruno Haible  <bruno@clisp.org>
29765
29766         * lib/progname.c (program_name): Initialize.
29767         Needed when linking statically on MacOS X.
29768
29769 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
29770
29771         Sync from coreutils.
29772         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
29773         (Depends-on): Add c-strtod.
29774         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
29775
29776 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         Sync from coreutils.
29779         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
29780
29781         Remove files that are specific to coreutils.
29782         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
29783
29784 2005-01-28  Bruno Haible  <bruno@clisp.org>
29785
29786         * modules/javacomp: New file.
29787         * MODULES.html.sh (Java): Add javacomp.
29788
29789 2005-01-28  Bruno Haible  <bruno@clisp.org>
29790
29791         * m4/javacomp.m4: New file, from GNU gettext.
29792
29793 2005-01-28  Bruno Haible  <bruno@clisp.org>
29794
29795         * lib/javacomp.sh.in: New file, from GNU gettext.
29796         * lib/javacomp.h: New file, from GNU gettext.
29797         * lib/javacomp.c: New file, from GNU gettext.
29798
29799 2005-01-26  Simon Josefsson  <jas@extundo.com>
29800
29801         * lib/gai_strerror.c: Use GPL in header.
29802
29803 2005-01-26  Bruno Haible  <bruno@clisp.org>
29804
29805         * modules/javaexec: New file.
29806         * MODULES.html.sh (Java): Add javaexec.
29807
29808 2005-01-26  Bruno Haible  <bruno@clisp.org>
29809
29810         * m4/javaexec.m4: New file, from GNU gettext.
29811
29812 2005-01-26  Bruno Haible  <bruno@clisp.org>
29813
29814         * lib/javaexec.sh.in: New file, from GNU gettext.
29815         * lib/javaexec.h: New file, from GNU gettext.
29816         * lib/javaexec.c: New file, from GNU gettext.
29817
29818 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29819
29820         * modules/lchown (Depends-on): Remove lchown.h
29821
29822 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29823
29824         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
29825         must be defined if the header file was not found, in order
29826         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
29827
29828 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29829
29830         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
29831         initializers for struct pentry_state.
29832         (__argp_error): Check return value of __asprintf
29833         (__argp_failure): Translate error message
29834
29835         * lib/argp-parse.c: Removed braces around the expansion of N_()
29836
29837 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
29838
29839         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
29840         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
29841         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
29842         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
29843         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
29844         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
29845         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
29846         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
29847         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
29848         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
29849         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
29850         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
29851         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
29852         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
29853         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
29854         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
29855         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
29856         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
29857         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
29858         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
29859         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
29860         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
29861         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
29862         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
29863         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
29864         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
29865         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
29866         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
29867         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
29868         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
29869         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
29870         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
29871         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
29872         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
29873         xstrtol.m4, xstrtoumax.m4, yesno.m4:
29874         Use an all-permissive copyright notice, recommended by RMS.
29875
29876 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
29877
29878         * modules/chdir-long (Depends-on): Remove mempcpy.
29879
29880 2005-01-21  Jim Meyering  <jim@meyering.net>
29881
29882         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
29883         same value as for Solaris 9.
29884
29885         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
29886         component length.  This included changing the parameter to be
29887         of type `char *' rather than `char const *'.
29888         * lib/chdir-long.h (chdir_long): Update prototype.
29889
29890         * lib/openat.c (fdopendir, fstatat): New functions.
29891         * lib/openat.h: Include headers required for use of DIR and struct
29892         stat.
29893         [AT_SYMLINK_NOFOLLOW]: Define.
29894         (fdopendir, fstatat): Add prototypes.
29895
29896 2005-01-21  Bruno Haible  <bruno@clisp.org>
29897
29898         * modules/classpath: New file.
29899         * MODULES.html.sh (Java): Add classpath.
29900
29901 2005-01-21  Bruno Haible  <bruno@clisp.org>
29902
29903         * lib/classpath.h: New file, from GNU gettext.
29904         * lib/classpath.c: New file, from GNU gettext.
29905
29906 2005-01-20  Simon Josefsson  <jas@extundo.com>
29907
29908         * modules/version-etc-fsf: New file.
29909
29910 2005-01-20  Simon Josefsson  <jas@extundo.com>
29911
29912         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
29913         * lib/version-etc.c: Remove version_etc_copyright.
29914         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
29915         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
29916
29917 2005-01-20  Simon Josefsson  <jas@extundo.com>
29918
29919         * lib/base64.h (isbase64): Add.
29920
29921         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
29922         using a unsigned prototype, don't inline.
29923         (base64_decode): Use it.
29924
29925 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
29926
29927         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
29928         it.
29929
29930 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
29931
29932         * lib/save-cwd.c (save_cwd): Remove code to support the case
29933         where fchdir is missing or flaky.
29934
29935 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
29936
29937         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
29938
29939 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
29940
29941         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
29942         AC_LIBSOURCES now does this.
29943         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
29944         with new ullong_max module.
29945
29946 2005-01-19  Bruno Haible  <bruno@clisp.org>
29947
29948         * modules/sh-quote: New file.
29949         * MODULES.html.sh (Executing programs): Add sh-quote.
29950
29951 2005-01-19  Bruno Haible  <bruno@clisp.org>
29952
29953         * lib/sh-quote.h: New file, from GNU gettext.
29954         * lib/sh-quote.c: New file, from GNU gettext.
29955
29956 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
29957
29958         Merge from coreutils.
29959         * m4/ullong_max.m4: New file.
29960         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
29961         (gl_MACROS): Assume localeconv exists.
29962
29963 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
29964
29965         Merge changes from coreutils, as described below in several
29966         changelogs dated today.
29967
29968         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
29969         (O_DIRECTORY): Remove; not needed here, since "." must be
29970         a directory.  All uses removed.
29971         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
29972         universal on Suns, and we also need to test for IRIX.
29973         Revamp code to use 'if' rather than '#if'.
29974         Avoid unnecessary comparison of cwd->desc to 0.
29975
29976         * lib/utimens.c (futimens): Robustify the previous patch, by checking
29977         for known valid error numbers rather than observed invalid ones.
29978
29979 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
29980
29981         * modules/ullong_max: New file.
29982
29983         * modules/chdir-long, modules/openat: New files.
29984         * modules/save-cwd (Depends-on): Depend on chdir-long.
29985         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
29986
29987 2005-01-18  Jim Meyering  <jim@meyering.net>
29988
29989         Merge from coreutils.
29990         * m4/chdir-long.m4, m4/openat.m4: New files.
29991         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
29992         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
29993         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
29994         is sane and DOES follow symlinks.  Besides, testing 20 different
29995         systems found no broken chown implementations.
29996         Prompted by a change in rsync's copy of this macro.
29997         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
29998
29999         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
30000
30001         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
30002         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
30003         NULL-means-set-to-current-time semantics.
30004         Remove temporary file immediately, rather than waiting
30005         for configure's at-exit trap code to do it.
30006
30007 2005-01-18  Jim Meyering  <jim@meyering.net>
30008
30009         * lib/version-etc.c (version_etc_copyright): Update copyright date.
30010
30011         * lib/utimens.c (futimens): Account for the fact that futimes
30012         can also fail with errno == ENOSYS or errno == ENOENT.
30013         Patch from Dmitry V. Levin.
30014
30015         Change the name of the robust chdir function from chdir to chdir_long.
30016         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
30017         (restore_cwd): Use chdir_long, not chdir.
30018         * lib/chdir-long.c: Renamed from chdir.c.
30019         * lib/chdir-long.h: Renamed from chdir.h.
30020         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
30021         Hurd.
30022
30023 2005-01-18  Bruno Haible  <bruno@clisp.org>
30024
30025         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
30026         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
30027         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
30028         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
30029         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
30030         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
30031         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
30032         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
30033         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
30034         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
30035         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
30036         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
30037         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
30038         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
30039         Use an all-permissive copyright notice, recommended by RMS.
30040
30041 2005-01-18  Bob Proulx  <bob@proulx.com>
30042
30043         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
30044         simplify offsetof() macro construct to avoid compile failure with
30045         native HP-UX 11.0 ANSI C compiler.
30046
30047 2005-01-17  Bruno Haible  <bruno@clisp.org>
30048
30049         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
30050         redundant because stpncpy.m4 takes care of it.
30051
30052 2005-01-17  Bruno Haible  <bruno@clisp.org>
30053
30054         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
30055
30056 2005-01-17  Bruno Haible  <bruno@clisp.org>
30057
30058         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
30059         used.
30060
30061 2005-01-17  Bruno Haible  <bruno@clisp.org>
30062
30063         * lib/fwriteerror.h (fwriteerror): Change specification to include
30064         fclose.
30065         * lib/fwriteerror.c: Include <stdbool.h>.
30066         (fwriteerror): At the end, close the file stream. Record whether
30067         stdout was already closed.
30068
30069 2005-01-17  Bruno Haible  <bruno@clisp.org>
30070
30071         * lib/execute.c (environ): Declare if needed.
30072         * lib/pipe.c (environ): Likewise.
30073         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
30074
30075 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30076
30077         * modules/argp: Depend on vsnprintf
30078
30079 2005-01-10  Jim Meyering  <jim@meyering.net>
30080
30081         * modules/closeout (Depends-on): Add atexit.
30082
30083 2005-01-06  Bruno Haible  <bruno@clisp.org>
30084
30085         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
30086
30087 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
30088
30089         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
30090         definitions to be after all include files, to avoid collisions.
30091         Problem reported by Bob Proulx.
30092
30093 2005-01-04  Jim Meyering  <jim@meyering.net>
30094
30095         Changes imported from coreutils.
30096         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
30097         as the mkstemp template, use a temporary directory and an
30098         8.3-friendly template to avoid trouble on systems like DJGPP.
30099         Reported by Juan M. Guerrero via Stepan Kasal.
30100         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
30101         close. Remove the temporary directory right away, rather than waiting
30102         for configure's at-exit trap code to do it.
30103         Suggestion from Stepan Kasal.
30104
30105 2005-01-01  Simon Josefsson  <jas@extundo.com>
30106
30107         * gnulib-tool: Print #include directives when --import'ing.
30108
30109 2004-12-28  Simon Josefsson  <jas@extundo.com>
30110
30111         * tests/test-base64.c: Include required header files.  Remove
30112         unused variables.
30113
30114 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
30115
30116         * modules/error (Depends-on): Remove gettext.
30117
30118 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
30119
30120         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
30121         not needed.  This removes a dependency on the gettext module.
30122         [defined _LIBC]: Do not include <libintl.h>; not needed.
30123
30124 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
30125
30126         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
30127         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
30128
30129 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
30130
30131         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
30132         HAVE_DECL_STRTOLD.
30133
30134 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
30135
30136         * modules/getdate (Depends-on): Remove alloca-opt.
30137
30138 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
30139
30140         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
30141
30142 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
30143
30144         * lib/argp-parse.c: Include <stddef.h>.
30145         (alignof, alignto): New macros.
30146         (parser_init): Don't assume that void * is aligned sufficiently
30147         for struct option.
30148
30149         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
30150         need to extend the stack.
30151         (YYINITDEPTH): New macro, so that the initial stack isn't overly
30152         large.
30153
30154 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30155
30156         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
30157
30158 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
30159
30160         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
30161         (2004-10-24) change.  Apparently this was a false alarm.
30162
30163         * modules/getdate: Depend on alloca-opt, not alloca.
30164
30165 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
30166
30167         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
30168         Remove now-obsolete comment about AIX.
30169         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
30170         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
30171         (YYMAXDEPTH): New macro.
30172
30173 2004-12-18  Simon Josefsson  <jas@extundo.com>
30174
30175         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
30176
30177 2004-12-18  Bruno Haible  <bruno@clisp.org>
30178
30179         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
30180
30181 2004-12-18  Bruno Haible  <bruno@clisp.org>
30182
30183         * lib/fatal-signal.c (fatal_signals): Make non-const.
30184         (init_fatal_signals): New function.
30185         (uninstall_handlers, install_handlers): Ignore signals that were set to
30186         SIG_IGN.
30187         (at_fatal_signal): Call init_fatal_signals.
30188         (init_fatal_signal_set): Likewise. Ignore signals that were set to
30189         SIG_IGN.
30190         Reported by Paul Eggert.
30191
30192 2004-12-18  Bruno Haible  <bruno@clisp.org>
30193
30194         * doc/alloca.texi: New file.
30195         * doc/alloca-opt.texi: New file.
30196
30197 2004-12-17  Jim Meyering  <jim@meyering.net>
30198
30199         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
30200         Otherwise, install-sh could exit with improper exit status when
30201         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
30202
30203 2004-12-16  Simon Josefsson  <jas@extundo.com>
30204
30205         * tests/test-base64.c: Add license.
30206
30207 2004-12-15  Stepan Kasal  <address@hidden>
30208
30209         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
30210
30211 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
30212
30213         * modules/getcwd (Files): Add m4/d-ino.m4.
30214         Suggested by Mark D. Baushke.
30215
30216 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
30217
30218         * lib/getdate.y (textint): New member "negative".
30219         (time_zone_hhmm): New function.
30220         Expect 14 shift-reduce conflicts, not 13.
30221         (o_colon_minutes): New rule.
30222         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
30223         (yylex): Set the "negative" member of signed numbers.
30224
30225 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
30226
30227         * doc/getdate.texi (Time of day items, Time zone items):
30228         Describe new formats +00:00, UTC+00:00.
30229
30230 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
30231
30232         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
30233         spurious "-l"s.  Problem reported by Stepan Kasal.
30234
30235 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
30236
30237         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
30238         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
30239
30240 2004-12-04  Simon Josefsson  <jas@extundo.com>
30241
30242         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
30243         Vandoorselaere <yoann@prelude-ids.org>.
30244
30245 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
30246
30247         Changes imported from coreutils.
30248         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
30249         exist.
30250         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
30251
30252 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
30253
30254         Changes imported from coreutils.
30255         * lib/hard-locale.c: Assume <locale.h> exists.
30256         Include "strdup.h".
30257         (GLIBC_VERSION): New macro.
30258         (hard_locale): Assume setlocale exists.
30259         Rewrite to avoid #ifdef.
30260         Use strdup rather than malloc + strcpy.
30261         * lib/human.c: Assume <locale.h> exists.
30262         (human_readable): Assume localeconv exists.
30263
30264 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
30265
30266         * modules/hard-locale (Depends-on): Add strdup.
30267
30268 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
30269
30270         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
30271         convert T2, not T.  (Imported from libc.)
30272
30273 2004-11-30  Simon Josefsson  <jas@extundo.com>
30274
30275         * modules/restrict (License): Change to LGPL.
30276
30277 2004-11-30  Simon Josefsson  <jas@extundo.com>
30278
30279         * m4/restrict.m4: Add copyright and copying conditions.
30280
30281 2004-11-30  Simon Josefsson  <jas@extundo.com>
30282
30283         * m4/base64.m4: New file.
30284
30285 2004-11-30  Simon Josefsson  <jas@extundo.com>
30286
30287         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
30288         base64.
30289
30290         * tests/test-base64.c: New file.
30291
30292         * modules/base64: New file.
30293
30294 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
30295
30296         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
30297         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
30298
30299         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
30300
30301 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
30302
30303         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
30304         (__getcwd.c): Don't restore errno; glibc doesn't.
30305         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
30306         first, falling back to our code only if its results look suspicious.
30307         Ensure that the resulting buffer is only as large as necessary.
30308
30309         * lib/readutmp.c: Include readutmp.h first.
30310         Include <errno.h>, since readutmp.h no longer does that.
30311         * lib/readutmp.h: Don't include <errno.h>,
30312         <sys/param.h>, <time.h>; not needed to establish interface.
30313         (errno): Remove decl.
30314         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
30315         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
30316         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
30317
30318 2004-11-28  Simon Josefsson  <jas@extundo.com>
30319
30320         * lib/base64.h, base64.c: New file.
30321
30322 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
30323
30324         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
30325
30326 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
30327
30328         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
30329         (Depends-on): Remove pathmax, same.  Add mempcpy.
30330         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
30331         (Makefile.am): Append getcwd.h to lib_SOURCES.
30332         (Include): Add getcwd.h.
30333         (Maintainer): Change from Jim Meyering to "all, glibc",
30334         since getdate now uses intended-for-glibc code.
30335         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
30336         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
30337
30338 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
30339
30340         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
30341         HP's ANSI C compiler.
30342         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
30343         Declaring int functions causes warnings on some modern systems and
30344         shouldn't be needed to compile on ancient ones.
30345         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
30346         defined.
30347
30348         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
30349         with the following changes.
30350         (__set_errno): Parenthesize properly.
30351         Include <stdbool.h>.
30352         (MIN, MAX, MATCHING_INO): New macros.
30353         (__getcwd): Define with prototype, not K&R form.
30354         Use heuristics to allocate default buffer on stack if possible.
30355         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
30356         behavior, and to avoid the PATH_MAX limit when computing
30357         ../../../../...
30358         Use MATCHING_INO to compare inode number to file.
30359         Check for arithmetic overflow in size calculations.
30360         Fix bug in reallocation of dot array that caused getcwd to fail
30361         on directories nested deeper than 75.
30362         Be more careful about saving errno on error.
30363         Do not use realloc; use only free+malloc, as this is a bit
30364         more flexible and avoids a needless copy operation.
30365         Do not inspect st_dev and st_ino for symbolic links; POSIX
30366         doesn't specify the latter.
30367         Check for closedir errors.
30368         Avoid needless casts.
30369         Use "#ifdef weak_alias" around weak_alias, to be like other
30370         glibc code.
30371         The following changes to getcwd.c have effect only when used in
30372         gnulib; they have no effect inside glibc proper.
30373         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
30374         as alloca isn't used.
30375         (alloca, __alloca): Likewise.
30376         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
30377         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
30378         unconditionally, as gnulib assumes C89 or better.
30379         Do not include <sys/param.h>.
30380         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
30381         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
30382         better.
30383         (NULL) [!defined NULL]: Remove; we assume C89 or better.
30384         Include <dirent.h> in a way that is compatible with modern Autoconf.
30385         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
30386         New macros, if not already defined.
30387         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
30388         Use "_LIBC", not "defined _LIBC", for consistency.
30389         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
30390         a mempcpy module.
30391         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
30392         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
30393         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
30394         credit only to Jim Meyering and adjust the copyright dates.
30395         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
30396         <stdlib.h>, <unistd.h>, "pathmax.h".
30397         Instead, include "xgetcwd.h" (first) and "getcwd.h".
30398         (INITIAL_BUFFER_SIZE): Remove.
30399         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
30400
30401 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
30402
30403         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
30404         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
30405         Use the _ONCE methods, for efficiency.
30406         Check for fcntl.h.  In test program, include <errno.h>
30407         and <fcntl.h> if available.  Remove old K&R cruft from
30408         test program.  Check for common errors in GNU/Linux,
30409         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
30410         don't do AC_LIBOBJ, as that's getcwd.m4's job.
30411         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
30412         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
30413         name accordingly.
30414         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
30415         accommodate new getcwd.c.
30416         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
30417         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
30418         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
30419         that's all we need now.
30420
30421 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30422
30423         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
30424         argp-parse.c depends on getopt internals, that means we should
30425         always use our getopt, to be on the safe side.
30426         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
30427         order not to spoil the result of an eventual previous invocation
30428         of gl_GETOPT_SUBSTITUTE.
30429
30430 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30431
30432         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
30433         redefinition warnings. To avoid them, include the defines
30434         in `#if !defined __need_getopt ... #endif'. The only place
30435         where __getopt_argv_const is used is in definitions
30436         of getopt_long and getopt_long_only below, which are as well
30437         protected by `#ifndef __need_getopt'.
30438         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
30439         __need_getopt after including <stdio.h> and <unistd.h> These
30440         headers might have defined it.
30441
30442 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
30443
30444         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
30445
30446 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
30447
30448         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
30449         (futimens): New function, which uses futimes if available.
30450         (futimens, utimens): Support timespec==NULL, with same semantics
30451         as utime and utimens.
30452         * lib/utimens.h (futimens): New decl.
30453
30454 2004-11-23  Jim Meyering  <jim@meyering.net>
30455
30456         * lib/getopt_.h: Remove trailing blanks.
30457
30458 2004-11-23  Jim Meyering  <jim@meyering.net>
30459
30460         * lib/__fpending.c: Add comment.
30461
30462 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
30463
30464         * modules/canonicalize (Depends-on): Add xreadlink.
30465         Problem reported by James Youngman.
30466
30467 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
30468
30469         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
30470         New macros.
30471         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
30472         optopt): Use them instead of invoking ## directly; otherwise, the
30473         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
30474
30475 2004-11-19  Bruno Haible  <bruno@clisp.org>
30476
30477         * lib/strtok_r.c: Move comments from here...
30478         * lib/strtok_r.h: ... to here.
30479
30480 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
30481
30482         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
30483         implementations that mishandle size_t overflow.
30484
30485 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
30486
30487         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
30488         might fail.  Problem reported by Yoann Vandoorselaere.
30489         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
30490         implementations that mishandle size_t overflow.
30491
30492 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
30493
30494         * modules/canon-host (Depends-on): Add strdup.
30495
30496 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
30497
30498         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
30499
30500 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
30501
30502         * lib/canon-host.c: Include "strdup.h".
30503         (canon_host): Use getaddrinfo if available, so that IPv6 works.
30504         Use strdup instead of malloc/strcpy to duplicate strings.
30505
30506         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
30507         (human_space_before_unit): New constant.
30508         * lib/human.c (human_readable): Support it.
30509
30510         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
30511         (xgetcwd): Set errno correctly when failing.
30512         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
30513         the failure is actually due to a PATH_MAX problem.
30514
30515         Further getopt changes to make it more likely that glibc will
30516         buy the changes back.
30517         * lib/getopt.c (POSIXLY_CORRECT): New constant.
30518         (getopt): Use it, so to preserve glibc semantic
30519         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
30520         when compiling for libc.
30521         * lib/getopt_.h (__getopt_argv_const): Bring it back.
30522         (getopt_long, getopt_long_only): Use it.
30523
30524         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
30525         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
30526         (getopt): Argv is now char * const *, as per standard.
30527         (_getopt_internal_r, _getopt_internal): Argv is now char **,
30528         not char *__getopt_argv_const *.
30529         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
30530         _getopt_long_only_r): Likewise.
30531         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
30532         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
30533         _getopt_long_r, _getopt_long_only_r): Likewise.
30534         * lib/getopt_.h (__getopt_argv_const): Remove.
30535         (getopt): Argv is now char * const *, as per standard.
30536
30537         * lib/getdate.y (tORDINAL): New token.
30538         (day, relunit): Allow it for relative times.
30539         (relative_time_table): Use tORDINAL for ordinals.
30540
30541 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
30542
30543         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
30544         Document that "second" isn't allowed as an ordinal number.
30545
30546 2004-11-16  Jim Meyering  <jim@meyering.net>
30547
30548         * modules/closeout (Depends-on): Add fpending.
30549
30550 2004-11-15  Jim Meyering  <jim@meyering.net>
30551
30552         * lib/closeout.c: Include "__fpending.h" once again.
30553         Include <stdbool.h>.
30554         (close_stdout): Don't fail just because stdout was closed initially,
30555         since some programs don't write to stdout in the normal course of
30556         operation (other than --version and --help), and we don't want this
30557         function to make e.g. `touch file >&-' fail.
30558         But do fail if it was closed and someone has tried to write to it.
30559         E.g., `printf foo >&-' must fail.
30560
30561 2004-11-13  Jim Meyering  <jim@meyering.net>
30562
30563         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
30564
30565 2004-11-12  Simon Josefsson  <jas@extundo.com>
30566
30567         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
30568         small doc fix is still pending.
30569
30570 2004-11-11  Simon Josefsson  <jas@extundo.com>
30571
30572         * modules/strtok_r: New file.
30573
30574         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
30575         strtok_r.
30576
30577 2004-11-11  Simon Josefsson  <jas@extundo.com>
30578
30579         * m4/strtok_r.m4: New file.
30580
30581         * m4/getopt.m4: Replace opterr.
30582
30583 2004-11-11  Simon Josefsson  <jas@extundo.com>
30584
30585         * lib/strtok_r.h, strtok_r.c: New file.
30586
30587 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
30588
30589         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
30590         of replacing opterr, getopt, etc.  This should handle the
30591         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
30592
30593 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
30594
30595         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
30596         we can stop lying to compilers about the constness of argv when we
30597         are compiled outside glibc.
30598         (getopt, getopt_long, getopt_long_only): Use it.
30599         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
30600         _getopt_internal, getopt): Likewise.
30601         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
30602         _getopt_long_only_r): Likewise.
30603         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
30604         _getopt_long_r, _getopt_long_only_r): Likewise.
30605
30606         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
30607         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
30608         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
30609         the other external symbols.
30610         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
30611         declaration, since the above renaming now works around collisions.
30612
30613 2004-11-11  Jim Meyering  <jim@meyering.net>
30614
30615         * lib/linebreak.c: Remove trailing blanks.
30616         * lib/alloca_.h: Likewise.
30617         * lib/acosl.c: Likewise.
30618         * lib/euidaccess.c: Likewise.
30619         * lib/allocsa.h: Likewise.
30620
30621 2004-11-10  Simon Josefsson  <jas@extundo.com>
30622
30623         * m4/getaddrinfo.m4: New file.
30624
30625 2004-11-10  Simon Josefsson  <jas@extundo.com>
30626
30627         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
30628
30629 2004-11-10  Simon Josefsson  <jas@extundo.com>
30630
30631         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
30632         getaddrinfo.
30633
30634         * modules/getaddrinfo: New file.
30635
30636 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
30637
30638         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
30639
30640 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
30641
30642         * lib/mktime.c (SHR): New macro, which is a portable
30643         substitute for >> that should work even on Crays.
30644         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
30645         Problem reported by Mark D. Baushke in
30646         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
30647         * lib/getdate.y (SHR): Likewise.
30648         (tm_diff): Use it.
30649         * lib/strftime.c (SHR): Likewise.
30650         (tm_diff): Use it.
30651         * lib/quotearg.c (struct quoting_options): Use unsigned int for
30652         quote_these_too, so that right shifts are well defined.  All uses
30653         changed.
30654
30655 2004-11-10  Jim Meyering  <jim@meyering.net>
30656
30657         Ensure that no close failure goes unreported.
30658         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
30659         return early when it seems there's nothing to flush.
30660         Don't include __fpending.h.
30661
30662 2004-11-10  Jim Meyering  <jim@meyering.net>
30663
30664         * modules/closeout (Depends-on): Remove fpending.
30665
30666 2004-11-10  Jim Meyering  <jim@meyering.net>
30667
30668         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
30669
30670 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
30671
30672         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
30673         gl_FUNC_STRFTIME.
30674         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
30675         and AC_REQUIRE when possible, to avoid duplicate checks.
30676         Check for <wchar.h>.
30677
30678 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
30679
30680         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
30681
30682 2004-11-09  Bruno Haible  <bruno@clisp.org>
30683
30684         * m4/sockpfaf.m4: New file.
30685
30686 2004-11-05  Bruno Haible  <bruno@clisp.org>
30687
30688         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
30689         Reported by Mark D. Baushke <mdb@cvshome.org>.
30690
30691 2004-11-04  Bruno Haible  <bruno@clisp.org>
30692
30693         2004-09-11  Bruno Haible  <bruno@clisp.org>
30694                 * allocsa.valgrind: New file.
30695         2004-02-06  Bruno Haible  <bruno@clisp.org>
30696                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
30697                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
30698                 Reported by Christopher Seip <chris.seip@hp.com>.
30699
30700 2004-11-04  Bruno Haible  <bruno@clisp.org>
30701
30702         * modules/allocsa (Files): Add lib/allocsa.valgrind.
30703         (Makefile.am): Distribute it.
30704
30705 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
30706
30707         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
30708         with errno == ERANGE if the buffer is too small.
30709         Problem reported by Mark D. Baushke.
30710
30711 2004-11-03  Albert Chin  <china@thewrittenword.com>
30712             Paul Eggert  <eggert@cs.ucla.edu>
30713
30714         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
30715         equivalent, substitute $ac_type for equivalent type rather than
30716         blindly using uint32_t *always* which won't work if uint32_t is not
30717         available.  Define _UINT32_T to work around typedef of uint32_t if
30718         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
30719         2.5.1.
30720
30721 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
30722
30723         * m4/jm-macros.m4: Sync from coreutils.
30724         (gl_MACROS): Check for mbrlen, for pathchk.
30725         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
30726
30727 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
30728
30729         * lib/xreadlink.c (MAXSIZE): New macro.
30730         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
30731         size does not exceed MAXSIZE.  Avoid cast.
30732         As suggested by Mark D. Baushke in
30733         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
30734         if readlink fails with buffer size just under MAXSIZE, try again
30735         with MAXSIZE.
30736
30737 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
30738
30739         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
30740
30741 2004-11-02  Derek R. Price  <derek@ximbiot.com>
30742         and  Paul Eggert  <eggert@cs.ucla.edu>
30743
30744         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
30745         (get_date): Overparenthesize to avoid GCC warning.
30746
30747 2004-11-02  Bruno Haible  <bruno@clisp.org>
30748
30749         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
30750         returns void.
30751
30752 2004-11-02  Bruno Haible  <bruno@clisp.org>
30753
30754         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
30755         function returns void.
30756
30757 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
30758
30759         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
30760         fflush_unlocked, flockfile, funlockfile, funlockfile,
30761         fputs_unlocked, putc_unlocked.
30762
30763 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
30764
30765         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
30766         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
30767         already declared.
30768
30769 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
30770
30771         * modules/getdate (Files): Add doc/getdate.texi.
30772         (Depends-on): Add setenv, xalloc.
30773
30774 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
30775
30776         * lib/getdate.y: Add support for TZ="foo" within a date string.
30777         Fix some bugs near time_t boundaries.  Reject dates with
30778         out-of-range components, e.g., "Sept 31".
30779         Include <stdlib.h>, "setenv.h", "xalloc.h".
30780         (ISDIGIT_LOCALE): Remove; unused.
30781         Note that the TZ and time functions used here are not reentrant.
30782         (mktime_ok, get_tz): New functions.
30783         (TZBUFSIZE): New constant.
30784         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
30785         This requires that we sometimes generate our own TZ="XXX..." setting.
30786
30787 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
30788
30789         * doc/getdate.texi: New file, from coreutils with modifications for
30790         the new TZ parsing.
30791
30792 2004-10-27  Derek R. Price  <derek@ximbiot.com>
30793
30794         * lib/mktime.c (not_equal_tm): Remove redundant check.
30795
30796 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
30797
30798         * modules/regex (lib_SOURCES): Add regex.c.
30799         Reported by James Youngman in
30800         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
30801
30802 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
30803
30804         * lib/getdate.y: Use Bison 1.875 features, and some minor
30805         code cleanups.  This change does not affect semantics.
30806         Don't include <stdlib.h>; no longer needed.
30807         Don't include unlocked-io.h; only the "#if TEST" code uses
30808         stdio, and performance isn't crucial there.
30809         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
30810         Bison 1.875 features as described below.
30811         All uses of "PC." replaced by "pc->".
30812         (YYSTYPE): Add a forward declaration.
30813         (yylex, yyerror): Use full prototypes in forward decls.
30814         Use "%pure-parser" rather than obsolescent "%pure_parser".
30815         Use %parse-param and %lex-param instead of obsolescent
30816         YYPARSE_PARAM and YYLEX_PARAM.
30817         (meridian_table, month_and_day_table, time_units_table,
30818         relative_time_table, time_zone_table, military_table,
30819         lookup_zone, lookup_word, get_date):
30820         Use NULL instead of 0 where appropriate.
30821         (to_hour): Avoid abort (), to avoid a dependency on
30822         stdlib.h.
30823         (yyerror, yylex): Now accepts parser_control * arg.
30824         (main) [TEST]: Use '\0' rather than 0 for char.
30825
30826 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30827
30828         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
30829
30830 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
30831
30832         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
30833         It's now the caller's responsibility to handle the case where
30834         !HAVE_GETPAGESIZE && !defined getpagesize.
30835
30836         * lib/mktime.c (leapyear): Arg is long int, not int.
30837
30838 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
30839
30840         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
30841
30842 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
30843
30844         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
30845         missing.  Problem reported by James Youngman.
30846
30847 2004-10-16  Simon Josefsson  <jas@extundo.com>
30848
30849         * gnulib-tool: Fix comments.  Fix parse problem.
30850         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
30851
30852 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
30853
30854         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
30855         implementation of getopt_long.  Problem reported by Alexander Taler in:
30856         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
30857
30858 2004-10-15  Bruno Haible  <bruno@clisp.org>
30859
30860         * gnulib-tool: Untabify. Initialize supplied_libname.
30861         (func_usage): More homogenous output.
30862         (func_modules_transitive_closure, func_modules_to_filelist,
30863         func_emit_lib_Makefile_am): New functions.
30864         (func_import): New function, extracted from big case statement. Use
30865         func_get_license, func_modules_transitive_closure,
30866         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
30867         opt_lgpl. Don't use test -a, as it's not portable.
30868         (func_create_testdir): Use func_modules_transitive_closure,
30869         func_modules_to_filelist, func_emit_lib_Makefile_am.
30870
30871 2004-10-15  Bruno Haible  <bruno@clisp.org>
30872
30873         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
30874
30875 2004-10-15  Bruno Haible  <bruno@clisp.org>
30876
30877         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
30878         the portions belonging to each module.
30879         Suggested by Derek Robert Price <derek@ximbiot.com>.
30880
30881 2004-10-12  Simon Josefsson  <jas@extundo.com>
30882
30883         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
30884         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
30885         to real functions.
30886
30887 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30888
30889         * modules/vsnprintf: New file.
30890
30891 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30892
30893         * m4/vsnprintf.m4: New file.
30894
30895 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30896
30897         * lib/vsnprintf.h: New file.
30898         * lib/vsnprintf.c: New file.
30899
30900 2004-10-11  Bruno Haible  <bruno@clisp.org>
30901
30902         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
30903         vsnprintf.
30904
30905 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
30906
30907         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
30908
30909 2004-10-07  Bruno Haible  <bruno@clisp.org>
30910
30911         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
30912         fits into the provided buffer.
30913
30914 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
30915
30916         * lib/diacrit.c, diacrit.h: Add GPL notice.
30917
30918         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
30919         notice.
30920         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
30921         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
30922         This avoids a potential constant-folding bug.
30923
30924 2004-10-05  Bruno Haible  <bruno@clisp.org>
30925
30926         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
30927         for the declaration of strsep.
30928
30929 2004-10-05  Bruno Haible  <bruno@clisp.org>
30930
30931         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
30932
30933 2004-10-04  Simon Josefsson  <jas@extundo.com>
30934
30935         * modules/memmem: New file.
30936         * tests/test-memmem.c: New file.
30937         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
30938
30939 2004-10-04  Simon Josefsson  <jas@extundo.com>
30940
30941         * m4/memmem.m4: New file.
30942
30943 2004-10-04  Simon Josefsson  <jas@extundo.com>
30944
30945         * lib/memmem.h: New file.
30946         * lib/memmem.c: New file, taken from glibc.
30947
30948 2004-10-04  Simon Josefsson  <jas@extundo.com>
30949
30950         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
30951         '#ifdef USE_UNLOCKED_IO'.
30952
30953 2004-10-04  Simon Josefsson  <jas@extundo.com>
30954
30955         * config/srclist.txt: Add memmem from glibc.
30956
30957 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
30958
30959         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
30960
30961         * modules/argmatch, modules/argp, modules/closeout, modules/error,
30962         modules/exclude, modules/getdate, modules/getline,
30963         modules/getndelim2, modules/getpass, modules/getpass-gnu,
30964         modules/getusershell, modules/linebuffer, modules/md5,
30965         modules/mountlist, modules/posixtm, modules/readtokens,
30966         modules/readutmp, modules/regex, modules/sha1,
30967         modules/version-etc, modules/yesno:
30968         Remove dependency on unlocked-io.
30969
30970 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
30971
30972         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
30973
30974         * m4/unlocked-io.m4: Add copyright notice.
30975         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
30976
30977 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
30978
30979         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
30980         * lib/xmalloc.c (xmemdup): Likewise.
30981         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
30982         XFREE): Remove these long-obsolescent macros.
30983         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
30984         * lib/xstrdup.c: Remove.
30985
30986         * lib/regex.c (re_comp): Cast gettext return value to char *,
30987         Problem reported by Martin Neitzel via Mark D. Baushke.
30988
30989 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
30990
30991         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
30992         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
30993         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
30994         regex.c, sha1.c, version-etc.c, yesno.c:
30995         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
30996         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
30997         the includer's responsibility.
30998
30999         Sync from coreutils.
31000
31001         * lib/modechange.c (mode_compile): Don't decrement a pointer that
31002         points to the start of a string, as the C Standard says the
31003         resulting behavior is undefined.
31004
31005         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
31006         simple -> simple_backups, numbered_existing ->
31007         numbered_existing_backups, numbered -> numbered_backups
31008         to avoid shadowing problems.  All uses changed.
31009         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
31010         * lib/backupfile.c (check_extension, numbered_backup):
31011         Rename locals to avoid shadowing 'basename'.
31012         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
31013         once.
31014
31015         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
31016         * lib/.cvsignore: Add getopt.h.
31017
31018 2004-10-04  Bruno Haible  <bruno@clisp.org>
31019
31020         * modules/README: New file.
31021         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
31022         not a module.
31023
31024 2004-10-02  Jim Meyering  <jim@meyering.net>
31025
31026         * lib/dirfd.h, getpagesize.h: Add copyright notice.
31027
31028 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
31029
31030         * modules/strsep: New file.
31031
31032 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
31033
31034         * m4/strsep.m4: New file.
31035
31036 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
31037
31038         * lib/strsep.h: New file.
31039         * lib/strsep.c: New file.
31040
31041 2004-10-01  Simon Josefsson  <jas@extundo.com>
31042
31043         * lib/snprintf.c (snprintf): Handle size==0.
31044
31045 2004-10-01  Simon Josefsson  <jas@extundo.com>
31046             Bruno Haible  <bruno@clisp.org>
31047
31048         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
31049         (snprintf): Declare 'args'.
31050
31051 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
31052
31053         * lib/snprintf.c: Remove comments as to why each header is needed.
31054
31055 2004-10-01  Bruno Haible  <bruno@clisp.org>
31056
31057         * MODULES.html.sh: Add strsep.
31058
31059 2004-09-30  Simon Josefsson  <jas@extundo.com>
31060
31061         * modules/snprintf: New file.
31062
31063 2004-09-30  Simon Josefsson  <jas@extundo.com>
31064
31065         * m4/snprintf.m4: New file.
31066
31067 2004-09-30  Simon Josefsson  <jas@extundo.com>
31068
31069         * lib/snprintf.h, lib/snprintf.c: New files.
31070
31071 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
31072
31073         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
31074         (hol_entry_help): Never translate an empty string.
31075         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
31076         * lib/argp.h (OPTION_NO_TRANS): New option.
31077
31078 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
31079
31080         * modules/argp (Maintainer): Replace Simon Josefsson
31081         by Sergey Poznyakoff.
31082
31083 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
31084
31085         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
31086         changes merged back into glibc.
31087
31088 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
31089
31090         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
31091
31092 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
31093
31094         * lib/xvasprintf.c: Include xalloc.h.
31095         (xvasprintf): Use xalloc_die, not xmalloc_die.
31096
31097 2004-09-29  Bruno Haible  <bruno@clisp.org>
31098
31099         * modules/alloca-opt: New file, derived from modules/alloca.
31100         * modules/allocsa: Depend on alloca-opt instead of alloca.
31101         * modules/setenv: Likewise.
31102         * modules/vasnprintf: Likewise.
31103         * MODULES.html.sh: Add alloca-opt.
31104
31105 2004-09-28  Simon Josefsson  <jas@extundo.com>
31106
31107         * gnulib-tool: New parameter --lgpl, to asseert that modules are
31108         LGPL, and to replace license template from GPL to LGPL.
31109
31110 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
31111
31112         * modules/dummy: Change license to LGPL.
31113
31114 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
31115
31116         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
31117
31118 2004-09-24  Simon Josefsson  <jas@extundo.com>
31119
31120         * modules/minmax (License): Change from GPL to LGPL.
31121
31122 2004-09-23  Simon Josefsson  <jas@extundo.com>
31123
31124         * gnulib-tool (--import): Typo.
31125
31126 2004-09-23  Simon Josefsson  <jas@extundo.com>
31127
31128         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
31129
31130 2004-09-22  Bruno Haible  <bruno@clisp.org>
31131
31132         * modules/*: Add 'License' field.
31133         * gnulib-tool: Accept --extract-license option.
31134         (func_get_license): New function.
31135
31136 2004-09-21  Bruno Haible  <bruno@clisp.org>
31137
31138         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
31139         Reported by Simon Josefsson.
31140
31141 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
31142
31143         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
31144         gl_AC_TYPE_LONG_LONG.
31145
31146 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
31147
31148         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
31149
31150 2004-09-18  Simon Josefsson  <jas@extundo.com>
31151         and  Paul Eggert  <eggert@cs.ucla.edu>
31152
31153         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
31154         calls with autoreconf.  Define GL_LIB.
31155
31156 2004-09-14  Karl Berry  <karl@gnu.org>
31157
31158         * config/srclist.txt: unsync setenv.c, sigh.
31159
31160 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
31161
31162         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
31163         Problem reported by Bruno Haible in:
31164         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
31165
31166 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
31167
31168         * config/srclist.txt: Comment out argp-pvh.c.
31169
31170 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
31171
31172         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
31173         in case some system header has #define'd it.  Problem reported by
31174         Soeren D. Schulze in
31175         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
31176
31177 2004-09-09  Karl Berry  <karl@gnu.org>
31178
31179         * regex.[ch]: delete from the root.  These were supposed to be
31180                 synced with emacs cvs, but this has not happened for about
31181                 a year, and anyway nothing else uses emacs regex.[ch].
31182                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
31183                 lib/regex[.ch] is untouched.
31184
31185 2004-09-09  Bruno Haible  <bruno@clisp.org>
31186
31187         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
31188
31189 2004-09-09  Bruno Haible  <bruno@clisp.org>
31190
31191         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
31192         modifications.
31193         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
31194
31195 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
31196
31197         * modules/xvasprintf: New file.
31198         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
31199
31200 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
31201
31202         * lib/xvasprintf.h: New file.
31203         * lib/xvasprintf.c: New file.
31204         * lib/xasprintf.c: New file.
31205
31206 2004-09-08  Bruno Haible  <bruno@clisp.org>
31207
31208         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
31209
31210 2004-09-08  Bruno Haible  <bruno@clisp.org>
31211
31212         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
31213         length is > INT_MAX.
31214         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
31215         more.
31216
31217 2004-09-08  Bruno Haible  <bruno@clisp.org>
31218
31219         * lib/stdint_.h: New file, taken from GNU clisp.
31220
31221 2004-09-08  Bruno Haible  <bruno@clisp.org>
31222             Oskar Liljeblad  <oskar@osk.mine.nu>
31223
31224         * modules/stdint: New file.
31225         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
31226
31227 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
31228
31229         Import from coreutils.
31230         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
31231         strings on unbounded length.  alloca's performance benefits aren't
31232         that important here.
31233         (V_STRDUP): Remove.
31234         (parse_with_separator): New function, with most of the internals
31235         of the old parse_user_spec.  Allow user to omit both user and group,
31236         for compatibility with FreeBSD.
31237         Clone only the user name, not the entire spec.
31238         Do not set *uid, *gid unless entirely successful.
31239         Avoid memory leak in some failing cases.
31240         Fix regression for USER.GROUP reported by Dmitry V. Levin in
31241         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
31242         (parse_user_spec): Rewrite to use parse_with_separator.
31243
31244 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
31245
31246         * modules/userspec: Don't depend on alloca.
31247
31248 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
31249
31250         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
31251
31252 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
31253
31254         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
31255         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
31256         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
31257
31258 2004-08-16  Simon Josefsson  <jas@extundo.com>
31259
31260         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
31261         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
31262         Add --dry-run for --import.
31263         Let user provided command line parameters override configure.ac
31264         settings.
31265
31266 2004-08-12  Simon Josefsson  <jas@extundo.com>
31267
31268         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
31269         as discussed with Paul Eggert in threads rooted at
31270         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
31271         and
31272         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
31273         Before, the test was empty, and relied on ELIDE_CODE in source
31274         code.)
31275         (gl_PREREQ_GETOPT): New macro.
31276         (gl_GETOPT): Use them.
31277
31278 2004-08-12  Simon Josefsson  <jas@extundo.com>
31279
31280         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
31281         * lib/getopt_.h: Renamed from getopt.h.
31282
31283 2004-08-12  Simon Josefsson  <jas@extundo.com>
31284
31285         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
31286         Change default library name from libfoo to libgnu.
31287         Now, if you have a configure.ac that says:
31288                 gl_SOURCE_BASE(gl)
31289                 gl_M4_BASE(gl/m4)
31290                 gl_MODULES(error getopt etcetera)
31291                 gl_INIT
31292         you can import all you need by running:
31293                 ../gnulib/gnulib-tool --import
31294
31295         * modules/getopt (Files): Rename getopt.h to getopt_.h.
31296         (Makefile.am): Rewrite, use logic from argz.
31297         (Include): Use <getopt.h> instead of "getopt.h".
31298
31299 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
31300
31301         * modules/argp (Files): Add m4/unlocked-io.m4.
31302         (Depends-on): Add extensions.
31303
31304 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
31305
31306         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
31307         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
31308         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
31309         Check for program_invocation_name, program_invocation_short_name,
31310         flockfile, funlockfile, features.h, _getopt_long_only_r.
31311
31312 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
31313
31314         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
31315         its complicated substitute.
31316         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
31317         and program_invocation_name.
31318         (__argp_basename) [!_LIBC]: Remove; the only use was
31319         replaced by its body.
31320         (__argp_short_program_name): Change condition from
31321         !defined __argp_short_program_name to
31322         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
31323         to match argp-namefrob.h.
31324         (__argp_failure): Don't assume strerror_r returns char *.
31325         * lib/argp-parse.c (N_): Define unconditionally.
31326         (argp_default_options): Fill out initializers with 0 to avoid
31327         gcc warnings.
31328
31329 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
31330
31331         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
31332         getopt1.c.
31333
31334 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
31335
31336         Merge from coreutils.
31337
31338         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
31339
31340         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
31341         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
31342
31343 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
31344
31345         Merge from coreutils.
31346
31347         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
31348         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
31349         for Reliant Unix 5.43.
31350
31351         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
31352         (union fooround): Use uintmax_t, not long int.
31353         The rest is a merge from libc:
31354         [defined _LIBC]: Include <shlib-compat.h>.
31355         (_obstack) [defined _LIBC]: Remove after 2.3.4.
31356
31357         * lib/settime.c (settime): Recode to avoid warning with
31358         Sun Forte C 6U2.
31359
31360         * lib/strverscmp.c: Convert to UTF-8.
31361
31362 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
31363
31364         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
31365         m4/uintmax_t.m4.
31366
31367 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
31368
31369         * modules/xalloc-die: New file.
31370         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
31371
31372         * modules/md5 (Files): Add m4/uint32_t.m4.
31373         * modules/sha1: Renamed from modules/sha.
31374         (Files):
31375         Rename lib/sha.h to lib/sha1.h.
31376         Rename lib/sha.c to lib/sha1.c.
31377         Rename m4/sha.m4 to m4/sha1.m4.
31378         (lib_SOURCES): Likewise.
31379         (configure.ac): Rename gl_SHA to gl_SHA1.
31380         (Include): sha.h -> sha1.h.
31381
31382 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
31383
31384         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
31385         * m4/sha1.m4: Renamed from sha.m4.
31386         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
31387
31388 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
31389
31390         * lib/obstack.h (obstack_empty_p):
31391         Don't assume that chunk->contents is suitably aligned.
31392         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
31393         Likewise. Problem reported by Benno in
31394         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
31395
31396         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
31397         readable.  This could be improved further but it'd take some work.
31398
31399 2004-08-08  Simon Josefsson  <jas@extundo.com>
31400
31401         * modules/xgethostname (Depends-on): Remove exit and error (not
31402         used).
31403
31404         * modules/getpass-gnu: Add getpass.h.
31405         (Depends-on): Add stdbool.
31406         * modules/getpass: Add getpass.h.
31407
31408 2004-08-08  Simon Josefsson  <jas@extundo.com>
31409
31410         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
31411         Check getpass declaration.
31412
31413 2004-08-08  Simon Josefsson  <jas@extundo.com>
31414
31415         * lib/xgethostname.c: Don't include error.h (not used).
31416
31417         * lib/getpass.h: Add.
31418         * lib/getpass.c: Include getpass.h first.
31419
31420 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
31421
31422         * lib/xalloc-die.c: New file.
31423         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
31424         All uses removed.
31425         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
31426         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
31427         xalloc-die.c.
31428         (_, N_, xalloc_die): Move to xalloc-die.c.
31429         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
31430         so that we needn't mess with xalloc_msg_memory_exhausted.
31431
31432         * lib/sha1.h: Renamed from sha.h.
31433         (SHA1_H): Renamed from _SHA_H.
31434         (sha1_ctx): Renamed from sha_ctx.
31435         (sha1_init_ctx): Renamed from sha_init_ctx.
31436         (sha1_process_block): Renamed from sha_process_block.
31437         (sha1_process_bytes): Renamed from sha_process_bytes.
31438         (sha1_finish_ctx): Renamed from sha_finish_ctx.
31439         (sha1_read_ctx): Renamed from sha_read_ctx.
31440         (sha1_stream): Renamed from sha_stream.
31441         (sha1_buffer): Renamed from sha_buffer.
31442         * lib/sha1.c: Likewise; renamed from sha.c.
31443         Do not include <sys/types.h>.
31444         Include <stddef.h> rather than <stdlib.h>.
31445
31446 2004-08-08  Bruno Haible  <bruno@clisp.org>
31447
31448         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
31449         FILESYSTEM_PREFIX_LEN.
31450         * lib/progreloc.c: Likewise.
31451         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
31452
31453 2004-08-06  Simon Josefsson  <jas@extundo.com>
31454
31455         * modules/progname (Depends-on): Don't depend on stdbool.
31456
31457 2004-08-06  Simon Josefsson  <jas@extundo.com>
31458
31459         * modules/getsubopt: New file.
31460         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31461         getsubopt.
31462
31463 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
31464
31465         More merge from coreutils.
31466
31467         * m4/utimens.m4, m4/utimecmp.m4: New files.
31468         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
31469         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
31470         prereq.m4, sha.m4: Import changes from coreutils.
31471
31472 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
31473
31474         More merge from coreutils.
31475         * modules/raise, modules/readtokens0, modules/utimens:
31476         * modules/utimecmp, module/xnanosleep: New files.
31477         * modules/strftime: Add lib/strftime.h.
31478         Change include from <time.h> to "strftime.h".
31479         * modules/yesno: Add lib/yesno.h.
31480         * modules/backupfile: Remove lib/addext.c.
31481         * modules/euidaccess: Add stat-macros.h.
31482         * modules/canonicalize, modules/euidaccess,
31483         modules/filemode, modules/lchown, modules/makepath,
31484         modules/rmdir, modules/stat: Likewise.
31485
31486 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
31487
31488         Merge from tar.
31489         * lib/argp-help.c (make_hol, hol_append): Don't assume that
31490         SIZE_MAX is a valid preprocessor constant.
31491         (__argp_basename): Change from "#ifndef _LIBC"
31492         to "#ifndef __argp_short_program_name", so that
31493         we don't compile these functions for tar.
31494
31495         More merges from coreutils.
31496         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
31497         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
31498         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
31499         * lib/addext.c: Remove; no longer needed.
31500         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
31501         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
31502         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
31503         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
31504         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
31505         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
31506         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
31507         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
31508         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
31509         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
31510         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
31511         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
31512         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
31513         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
31514         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
31515         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
31516         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
31517         Import changes from coreutils.
31518
31519 2004-08-05  Simon Josefsson  <jas@extundo.com>
31520
31521         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
31522
31523 2004-08-05  Simon Josefsson  <jas@extundo.com>
31524
31525         * m4/getsubopt.m4: New file.
31526
31527 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
31528
31529         Merge from coreutils.
31530
31531         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
31532         * m4/getcwd-path-max.m4: New files.
31533
31534         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
31535         FILESYSTEM_PREFIX_LEN ->
31536         FILE_SYSTEM_PREFIX_LEN.
31537         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
31538         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
31539         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
31540         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
31541
31542         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
31543         prerequisite modules now handle the DOS stuff.
31544         Don't check for unistd.h.
31545
31546 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
31547
31548         Merge from coreutils.
31549
31550         * lib/.gdb-history: Remove; this doesn't belong here.
31551
31552         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
31553         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
31554         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
31555         * lib/getcwd.c: New files.
31556
31557         * lib/dirname.h: Include <stdbool.h>.
31558         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
31559         for consistency with POSIX terminology.  All uses changed.
31560         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
31561         (strip_trailing_slashes): Use bool for booleans.
31562         * lib/stripslash.c (strip_trailing_slashes): Likewise.
31563
31564         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
31565         sometimes returns a positive errno value even when it succeeds.
31566         (print_errno_message) [!LIBC]: Fall back on strerror if
31567         __strerror_r fails.
31568
31569         * lib/path-concat.c (mempcpy): Don't define if a system header defines
31570         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
31571         (longest_relative_suffix): New function.
31572         (path_concat): Use it.  Assume first argument is not NULL.
31573         Port to DOS.  Omit redundant separators.
31574         Report an error instead of returning NULL.
31575         Use mempcpy instead of memcpy.
31576         (xpath_concat): Remove: not declared or used.
31577
31578         * lib/same.h: Include <stdbool.h>
31579         (same_name): Return bool, not int.
31580         * lib/same.c (same_name): Likewise.
31581         (errno): Don't declare; we assume C89 or better now.
31582
31583         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
31584         if not already defined.
31585
31586         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
31587         * lib/dup-safer.c (errno): Likewise.
31588
31589 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
31590
31591         Merge from coreutils.
31592         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
31593         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
31594         * modules/path-concat: Don't depend on strdup.
31595
31596 2004-08-03  Simon Josefsson  <jas@extundo.com>
31597
31598         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
31599         * lib/progname.h: Don't include stdbool.h.
31600
31601 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
31602
31603         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
31604         * MODULES.html.sh (func_all_modules): Remove fatal.
31605
31606 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
31607
31608         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
31609
31610 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
31611
31612         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
31613         working.
31614
31615 2004-08-02  Simon Josefsson  <jas@extundo.com>
31616
31617         * lib/getsubopt.h: New file, with comments from Bruno Haible.
31618         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
31619         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
31620
31621 2004-08-01  Simon Josefsson  <jas@extundo.com>
31622
31623         * lib/xgetdomainname.c: Include stdlib.h, for free().
31624
31625 2004-07-19  Bruno Haible  <bruno@clisp.org>
31626
31627         * MODULES.html.sh (func_all_modules): Add dummy.
31628
31629 2004-07-16  Simon Josefsson  <jas@extundo.com>
31630
31631         * modules/dummy: New file.
31632
31633 2004-07-16  Simon Josefsson  <jas@extundo.com>
31634
31635         * lib/dummy.c: New file.
31636
31637 2004-07-16  Bruno Haible  <bruno@clisp.org>
31638
31639         * lib/backupfile.h: Add extern "C" for C++.
31640         * lib/closeout.h: Likewise.
31641         * lib/copy-file.h: Likewise.
31642         * lib/findprog.h: Likewise.
31643         * lib/full-write.h: Likewise.
31644         * lib/pathname.h: Likewise.
31645         * lib/progname.h: Likewise.
31646         * lib/stpcpy.h: Likewise.
31647         * lib/stpncpy.h: Likewise.
31648         * lib/strcase.h: Likewise.
31649         * lib/strstr.h: Likewise.
31650         * lib/xalloc.h: Likewise.
31651
31652         * lib/mbswidth.h: Add extern "C" for C++.
31653         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
31654
31655 2004-07-13  Robert Millan  <robertmh@gnu.org>
31656
31657         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
31658
31659 2004-07-09  Simon Josefsson  <jas@extundo.com>
31660
31661         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
31662         failed without this.)
31663
31664 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
31665
31666         * modules/chown (Files): Add lib/fchown-stub.c, since
31667         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
31668
31669 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
31670
31671         * lib/fchown-stub.c: New file.
31672
31673 2004-06-24  Jim Meyering  <jim@meyering.net>
31674
31675         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
31676
31677 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
31678
31679         * modules/argz: Omit "#include".
31680
31681         * MODULES.html.sh (func_all_modules): Add calloc, to match
31682         2004-06-01 addition of calloc module.
31683
31684 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
31685
31686         * m4/argz.m4: New file, which is autoupdated from libtool.
31687
31688 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
31689
31690         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
31691         libtool.
31692
31693 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
31694
31695         * config/srclist-update: Don't insist on "USA." before the
31696         close-comment, as libtool omits the period and puts the */ on a
31697         separate line.
31698         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
31699         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
31700
31701 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
31702
31703         * modules/argz: New file.
31704         * MODULES.html.sh (func_all_modules): Add argz.
31705
31706 2004-06-12  Jim Meyering  <jim@meyering.net>
31707         and  Paul Eggert  <eggert@cs.ucla.edu>
31708
31709         * modules/hash (Files): Add lib/xalloc.h.
31710         * modules/pipe (Depends-on): Add wait-process.
31711         * modules/stat (Depends-on): Add xalloc.
31712         * modules/userspec (Files): Add lib/userspec.h.
31713         * modules/xstrto
31714
31715         Upgrade from gettext-0.13.
31716         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
31717         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
31718         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
31719
31720 2004-06-10  Jim Meyering  <jim@meyering.net>
31721
31722         * lib/calloc.c: New file.
31723
31724 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
31725
31726         * lib/getdate.y (yylex): Allow space between sign and number.
31727         Problem reported by Dan Jacobson.
31728
31729 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
31730
31731         Merge from coreutils CVS.
31732
31733         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
31734         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
31735         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
31736         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
31737         xstrtol.m4: Fix copyright date and/or serial number.
31738
31739         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
31740         See if we need an fchown replacement.
31741         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
31742         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
31743         and use the replacement function if we detect either defect.
31744
31745         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
31746         gl_UTIMECMP.
31747
31748 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
31749         and  Jim Meyering  <jim@meyering.net>
31750
31751         Merge from coreutils CVS.
31752
31753         * lib/stat-macros.h: New file, with contents from file-type.h
31754         and coreutils' system.h.
31755         * lib/file-type.c: Include "stat-macros.h".
31756         * lib/file-type.h (file_type): Move all macro definitions to new file,
31757         stat-macros.h.
31758
31759         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
31760         Wrap old code with this conditional.
31761         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
31762         function that does not dereference symlinks.
31763         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
31764
31765         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
31766         dependency problems.
31767         (xreadlink): Accept new arg SIZE, for efficiency.
31768         All decls and uses changed.
31769         * lib/xreadlink.h: Include <stddef.h>, for size_t.
31770
31771         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
31772         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
31773
31774         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
31775         sysexits.h.
31776
31777 2004-06-01  Jim Meyering  <jim@meyering.net>
31778
31779         * m4/calloc.m4: New file.
31780
31781 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
31782
31783         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
31784         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
31785         Also, fix a typo in a diagnostic.
31786
31787 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
31788
31789         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
31790         or AC_FUNC_REALLOC.
31791
31792 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
31793
31794         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
31795         macros to be defined.
31796         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
31797         the allocator returns NULL because the requested size is zero.
31798
31799 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
31800
31801         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
31802         var.  Add comment explaining why libc still defines it.  This
31803         merges the following patch from glibc:
31804         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
31805
31806 2004-05-20  Andreas Schwab  <schwab@suse.de>
31807
31808         * m4/free.m4: Replace free if it not known to work, not the other
31809         way round.
31810
31811 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
31812
31813         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
31814         present in glibc since revision 1.1 of this file.
31815         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
31816         obstack_alignment_mask, obstack_alloc, obstack_base,
31817         obstack_blank, obstack_blank_fast, obstack_chunk_size,
31818         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
31819         obstack_grow0, obstack_init, obstack_int_grow,
31820         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
31821         obstack_next_free, obstack_object_size, obstack_ptr_grow,
31822         obstack_ptr_grow_fast, obstack_room): Remove declarations of
31823         nonexistent functions.
31824
31825 2004-05-18  Karl Berry  <karl@gnu.org>
31826
31827         * config/srclist.txt: break link for vasnprintf.c.
31828
31829 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
31830
31831         Port obstack to the AS/400, where pointers are 16 bytes wide and
31832         you cannot cast an integer to a valid pointer.  This patch is
31833         currently waiting to be integrated into glibc; see
31834         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
31835
31836         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
31837         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
31838         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
31839         (struct obstack): temp member is now a union of a pointer and
31840         an integer, instead of an integer.  All integer uses changed.
31841         This does not affect the physical layout of struct obstack,
31842         except on hosts (like the AS/400) where the size or alignment of
31843         void * is greater than that of ptrdiff_t.
31844         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
31845         __STDC__)]: Store temporary in pointer member of union, not
31846         integer member.
31847         * lib/obstack.c: Include <stddef.h>, for offsetof.
31848         (struct fooalign): Remove; it doesn't need a name.
31849         (union fooround): Change double to long double, and add void *.
31850         (DEFAULT_ALIGNMENT): Use offsetof to compute.
31851         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
31852         not a macro.  Hence the values are always int; so remove all
31853         casts-to-int in uses.
31854
31855 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
31856
31857         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
31858         we can get this patch merged into glibc.
31859
31860 2004-05-17  Derek R. Price  <derek@ximbiot.com>
31861             Paul Eggert  <eggert@cs.ucla.edu>
31862
31863         * m4/argp: Depend on alloca.
31864
31865 2004-05-17  Derek R. Price  <derek@ximbiot.com>
31866             Paul Eggert  <eggert@cs.ucla.edu>
31867
31868         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
31869         freecoding.
31870
31871 2004-05-17  Bruno Haible  <bruno@clisp.org>
31872
31873         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
31874         precision that consists of a '.' followed by an empty digit string.
31875         Patch by Tor Lillqvist <tml@iki.fi>.
31876
31877 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
31878
31879         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
31880         for backward compatibility with older code.  We need our own
31881         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
31882         it under some other name, and our alloca.h will define it.
31883
31884 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
31885             Derek Price  <derek@ximbiot.com>
31886
31887         * lib/alloca.c: Include <alloca.h>, to get our interface.
31888         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
31889         include <alloca.h> first.  Use C89 prototype for alloca; this
31890         requires including <stddef.h> for size_t.  Use extern "C" if C++.
31891         Use #elif for simplicity, since we can assume C89 now.
31892         Don't try to source the system alloca.h since it will not be found
31893         and to prevent recursively including its replacement.
31894         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
31895         * lib/regex.c: Likewise.
31896
31897 2004-05-16  Derek Price  <derek@ximbiot.com>
31898             Paul Eggert  <eggert@cs.ucla.edu>
31899
31900         getline cleanup.  This changes the getndelim2 API: both order of
31901         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
31902         no delimiter).
31903
31904         * lib/getline.c: Don't include stddef.h or stdio.h, since our
31905         interface does that.
31906         (getline): Always use getdelim, so that we don't have two
31907         copies of this code.
31908         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
31909         if available.
31910         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
31911         (GETNDELIM2_MAXIMUM): New macro.
31912         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
31913         instead of the old practice of delim2==0.  All callers changed.
31914         Return -1 on overflow, instead of returning junk.
31915         Do not set *linesize unless allocation succeeds.
31916         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
31917         that we include sys/types.h.
31918         * lib/getnline.h: Likewise.
31919         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
31920         (getndelim2): Reorder arguments.
31921         * lib/getnline.c (getnline, getndelim):
31922         Don't discard the NMAX argument.
31923         (getnline): Invoke getndelim, to avoid code duplication.
31924         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
31925         of (size_t) -1 by callers of the getnline family.
31926
31927 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
31928
31929         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
31930         Check for gettimeofday.
31931         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
31932         Check for settimeofday, stime.
31933
31934 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
31935
31936         * lib/nanosleep.c (suspended): Change its type from int to
31937         sig_atomic_t volatile.
31938         (first_call): Make it private to rpl_nanosleep, and have it
31939         be zero initially as that's a bit faster.
31940         (my_usleep): Round up fractional times instead of truncating them,
31941         as this is the usual meaning for 'sleep'.
31942
31943         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
31944         doesn't work.
31945         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
31946         (ENOSYS): Define if not defined.
31947         (settime): Fall back on stime if it exists and settimeofday fails.
31948         But don't bother with fallbacks if a method fails with errno == EPERM.
31949
31950 2004-05-11  Jim Meyering  <jim@meyering.net>
31951
31952         Prior to this change, the save_cwd caller required read access to the
31953         current directory on most systems (ones with the fchdir function).
31954
31955         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
31956         fails, try write-only, and finally, resort to using xgetcwd.
31957
31958 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
31959
31960         * lib/obstack.c, obstack.h: Import changes from libc.
31961
31962 2004-04-28  Bruno Haible  <bruno@clisp.org>
31963
31964         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
31965         also implicitly appends .exe to executables.
31966         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
31967         accepts Windows pathnames.
31968         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
31969         Treat Cygwin like Windows, since it now accepts Windows pathnames.
31970         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
31971         Treat Cygwin like Windows, since it now accepts Windows pathnames.
31972         Reported by Derek Robert Price <derek@ximbiot.com>.
31973
31974 2004-04-21  Karl Berry  <karl@gnu.org>
31975
31976         * config/srclist.txt (localcharset.c): break sync.
31977
31978 2004-04-20  Paul Eggert  <eggert@twinsun.com>
31979
31980         * m4/host-os.m4: Add a copyright notice.
31981
31982 2004-04-20  Jim Meyering  <jim@meyering.net>
31983
31984         Change UTILS_ to gl_ in AC_DEFINE'd names.
31985         Change utils_- and jm_-prefixed variables, too.
31986         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
31987         UTILS_FUNC_MKDIR_TRAILING_SLASH.
31988         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
31989
31990         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
31991         Don't emit trailing blanks.
31992         Also rename jm_-prefixed variables to have gl_ prefix.
31993
31994         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
31995         Also rename jm_-prefixed variables to have gl_ prefix.
31996
31997         * m4/jm-macros.m4: Reflect the renamings.
31998         * m4/prereq.m4: Likewise.
31999
32000 2004-04-20  Jim Meyering  <jim@meyering.net>
32001
32002         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
32003         memory.
32004
32005 2004-04-20  Jim Meyering  <jim@meyering.net>
32006             Bruno Haible  <bruno@clisp.org>
32007
32008         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
32009         memory when realloc fails.
32010
32011 2004-04-19  Jim Meyering  <jim@meyering.net>
32012
32013         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
32014         now that readutmp.c may call `free (0)'.
32015
32016 2004-04-19  Bruno Haible  <bruno@clisp.org>
32017
32018         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
32019         * m4/inttypes_h.m4: Likewise.
32020         * m4/stdint_h.m4: Likewise.
32021         * m4/intmax_t.m4: Likewise.
32022         * m4/uintmax_t.m4: Likewise.
32023
32024 2004-04-18  Jim Meyering  <jim@meyering.net>
32025
32026         * m4/prereq.m4: Don't forbid jm_ prefix.
32027
32028         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
32029         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
32030         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
32031         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
32032         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
32033         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
32034         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
32035         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
32036         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
32037         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
32038         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
32039         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
32040         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
32041         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
32042         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
32043         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
32044         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
32045         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
32046         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
32047
32048 2004-04-18  Jim Meyering  <jim@meyering.net>
32049
32050         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
32051         failure, don't leak memory and do call END_UTMP_ENT.
32052
32053 2004-04-16  Jim Meyering  <jim@meyering.net>
32054
32055         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
32056         coreutils' stat program.
32057         (gl_PREREQ): Don't require jm_PREREQ_STAT.
32058
32059 2004-04-11  Paul Eggert  <eggert@twinsun.com>
32060
32061         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
32062         C89.
32063         (CHAR_BIT): Remove, since we assume C89.
32064         Include <stdint.h> if available, as per current Autoconf CVS advice.
32065
32066 2004-03-31  Jim Meyering  <jim@meyering.net>
32067
32068         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
32069         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
32070         * m4/xalloc.m4: Likewise.
32071
32072 2004-03-30  Paul Eggert  <eggert@twinsun.com>
32073
32074         Merge from coreutils.
32075
32076         * m4/inttostr.m4: New file.
32077         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
32078         Require AM_STDBOOL_H and gl_TIMESPEC instead.
32079         Require gl_CLOCK_TIME.
32080         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
32081
32082 2004-03-30  Paul Eggert  <eggert@twinsun.com>
32083
32084         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
32085         not bool, to be more consistent with Unix conventions.
32086         Suggested by Bruno Haible.
32087
32088         Merge from coreutils.
32089
32090         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
32091         * lib/umaxtostr.c: New files.
32092
32093         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
32094         the usual <time.h> dance.
32095         (get_date): Change signature to support fractional time stamps.
32096         All callers changed.
32097         * lib/getdate.y: Include "getdate.h" first, as we can now
32098         assume C89 and don't need to worry about 'const'.
32099         Similarly, include "unlocked-io.h" near start, not in middle.
32100         Include <limits.h>.
32101         (textint.value): Use long int rather than int.
32102         (textint.digits): Use size_t rather than int.
32103         (BILLION, LOG10_BILLION): New constants.
32104         (parser_control): New member rel_ns.  Members day_ordinal,
32105         time_zone, month, day, hour, minutes, rel_year, rel_month,
32106         rel_day, rel_hour, rel_minutes, rel_seconds
32107         are now long int, not int.  Member seconds is now struct timespec,
32108         not int.  New member timespec_seen.  Members dates_seen, days_seen,
32109         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
32110         not int.
32111         (%union.intval): Now long int, not int.
32112         New member timespec.
32113         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
32114         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
32115         (spec): Now is a timespec or an item list.
32116         (timespec, items): New nonterminals.
32117         (time, rel, relunit, number, get_date):
32118         Add support for fractional seconds.
32119         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
32120         (gmtime, localtime, mktime): Remove decls; not needed with C89.
32121         (to_hour): First arg is now long int, not int.
32122         (to_year): Returns long int, not int.
32123         Don't treat year -70 like 70.
32124         (tm_diff): Returns long int, not int.
32125         (lookup_word): Use bool instead of int when appropriate.
32126         (yylex): Use size_t for count, not int.
32127         Detect overflow when parsing large integer constants.
32128         Add support for fractions.
32129         (get_date): Make pointers 'const' if possible.
32130         Use more-portable code to detect integer overflow.
32131         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
32132         Don't use ctime; it's not reliable if the year has >4 digits.
32133
32134         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
32135         This is for compatibility with BSD.
32136
32137         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
32138         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
32139         From coreutils' system.h.
32140
32141         * lib/userspec.c: Don't include "posixver.h".
32142         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
32143         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
32144         compatible extension.  Simplify code by removing a boolean int
32145         that was always nonzero if a string was nonnull.
32146
32147 2004-03-30  Jim Meyering  <jim@meyering.net>
32148
32149         Merge from coreutils.
32150
32151         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
32152         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
32153         on some systems one must include <grp.h> before it.
32154         Reported by Christian Krackowizer.
32155
32156 2004-03-30  Jim Meyering  <jim@meyering.net>
32157
32158         Merge from coreutils.
32159
32160         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
32161
32162         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
32163         an empty input stream.
32164
32165         * lib/readtokens.c: Include <stdbool.h>.
32166         (readtoken): Use `size_t' rather than int/long.
32167         All callers adjusted.
32168         Use `bool' rather than `int' where appropriate.
32169         Use memset rather than an explicit loop.
32170         Use x2nrealloc rather than xrealloc.
32171         Allow the use of `\0' as a delimiter.
32172         (readtokens): Likewise.
32173         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
32174
32175 2004-03-30  Jim Meyering  <jim@meyering.net>
32176
32177         * m4/realloc.m4: Remove file, since now it does no more than
32178         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
32179         the `configure.ac' section of module/realloc.
32180         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
32181
32182 2004-03-30  Bruno Haible  <bruno@clisp.org>
32183
32184         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
32185         nonnull.
32186
32187 2004-03-29  Paul Eggert  <eggert@twinsun.com>
32188
32189         Merge changes to getloadavg.c from coreutils and Emacs.
32190
32191         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
32192         Define to an expression, not to the empty string.
32193         Include cloexec.h and xalloc.h.
32194         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
32195         Use set_cloexec_flag rather than rolling our own.
32196         * lib/cloexec.c, lib/cloexec.h: New files.
32197
32198 2004-03-29  Paul Eggert  <eggert@twinsun.com>
32199
32200         * m4/cloexec.m4: New file.
32201
32202 2004-03-18  Paul Eggert  <eggert@twinsun.com>
32203
32204         * lib/getopt.h: Sync with libc CVS.
32205
32206 2004-03-18  Paul Eggert  <eggert@twinsun.com>
32207             Bruno Haible  <bruno@clisp.org>
32208
32209         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
32210         mbswidth.
32211
32212 2004-03-18  Paul Eggert  <eggert@twinsun.com>
32213             Bruno Haible  <bruno@clisp.org>
32214
32215         * lib/mbswidth.h: Include <wchar.h> only if
32216         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
32217         <wchar.h>.
32218         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
32219
32220 2004-03-09  Paul Eggert  <eggert@twinsun.com>
32221
32222         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
32223         Sync with libc CVS.
32224         * lib/getopt_int.h: New file, also synced from libc.
32225
32226 2004-03-09  Paul Eggert  <eggert@twinsun.com>
32227
32228         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
32229         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
32230         Bring back getopt.c, getopt.h, getopt1.c.
32231
32232 2004-03-07  Paul Eggert  <eggert@twinsun.com>
32233
32234         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
32235         All uses changed.  Check for sa_sigaction member; this fixes
32236         a bug first reported by Jason Andrade in
32237         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
32238
32239 2004-03-07  Paul Eggert  <eggert@twinsun.com>
32240
32241         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
32242         '#if' expressions.  Unlike the code it replaces, it does not
32243         depend on (defined _SC_PAGESIZE).  However, it does depend on
32244         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
32245         first reported by Jason Andrade in
32246         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
32247
32248 2004-02-25  Simon Josefsson  <jas@extundo.com>
32249
32250         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
32251
32252 2004-02-25  Simon Josefsson  <jas@extundo.com>
32253
32254         * lib/strdup.h: New file.
32255         * lib/strdup.c: Include it.
32256         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
32257         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
32258
32259 2004-02-23  Karl Berry  <karl@gnu.org>
32260
32261         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
32262         (from fencepost.gnu.org:/gd/gnuorg).
32263
32264 2004-02-23  Karl Berry  <karl@gnu.org>
32265
32266         * config/srclistvars.sh (GNUORG) [karl]: redefine.
32267         * config/srclist.txt: add maintain/standards documents.
32268
32269 2004-02-18  Bruno Haible  <bruno@clisp.org>
32270
32271         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
32272         Reported by Derek Robert Price <derek@ximbiot.com>.
32273
32274 2004-02-16  Karl Berry  <karl@gnu.org>
32275
32276         * config/mkinstalldirs, install-sh: update from automake.
32277
32278 2004-02-06  Karl Berry  <karl@gnu.org>
32279
32280         * m4/po.m4: update from gettext 0.14.1.
32281
32282 2004-02-06  Karl Berry  <karl@gnu.org>
32283
32284         * lib/config.charset: update from gettext 0.14.1.
32285
32286 2004-02-05  Paul Eggert  <eggert@twinsun.com>
32287
32288         Add comments and code, prompted by suggestions from Bruno Haible
32289         for sh-quote.
32290         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
32291         describing the enum quoting_style values.
32292         * lib/quotearg.c (quotearg_alloc): New function.
32293         (quotearg_buffer_restyled): Treat lone { and } as special.
32294         Treat = as special.  Work around bug with older shells
32295         that "see" a '\' that is really the 2nd byte of a multibyte char.
32296         Quote empty string with shell_quoting_style.
32297
32298 2004-02-03  Bruno Haible  <bruno@clisp.org>
32299
32300         * m4/pipe.m4: New file, from GNU gettext.
32301
32302 2004-02-03  Bruno Haible  <bruno@clisp.org>
32303
32304         * lib/pipe.h: New file, from GNU gettext.
32305         * lib/pipe.c: New file, from GNU gettext.
32306
32307 2004-01-27  Bruno Haible  <bruno@clisp.org>
32308
32309         * m4/execute.m4: New file, from GNU gettext.
32310
32311 2004-01-27  Bruno Haible  <bruno@clisp.org>
32312
32313         * lib/execute.h: New file, from GNU gettext.
32314         * lib/execute.c: New file, from GNU gettext.
32315         * lib/w32spawn.h: New file, from GNU gettext.
32316
32317 2004-01-24  Paul Eggert  <eggert@twinsun.com>
32318
32319         Merge from diffutils.
32320
32321         * lib/file-type.c (file_type): Add typed memory objects.
32322         * lib/file-type.h (S_TYPEISTMO): New macro.
32323
32324         * lib/c-stack.h (c_stack_action): Remove argv argument.
32325         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
32326         (die): Don't calculate message unless segv_action returns.
32327         (get_stack_location, min_address_from_argv, max_address_from_argv,
32328         volatile stack_base, volatile_stack_size): Remove.
32329         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
32330         that every segmentation violation is a stack overflow.  (Ouch!)
32331         See Debian bug 136249 (still outstanding) for more info about why
32332         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
32333
32334 2004-01-24  Paul Eggert  <eggert@twinsun.com>
32335
32336         Exit-status fix from coreutils.
32337
32338         Use exit_failure consistently in place of EXIT_FAILURE,
32339         so that program exit statuses are consistent on failure.
32340
32341         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
32342         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
32343         * lib/argmatch.h: Comment fix to match the above.
32344         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
32345         Now a macro referring to exit_failure, instead of a separate
32346         variable.  Include "exitfail.h" to get it.
32347         * lib/xstrtol.h: Include "exitfail.h".
32348         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
32349
32350         * lib/long-options.c (parse_long_options): Use prototype
32351         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
32352         for clarity.
32353
32354 2004-01-21  Jim Meyering  <jim@meyering.net>
32355
32356         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
32357         so as not to conflict with a different-sized __mktime_internal
32358         function in GNU libc.
32359         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
32360         Problem building statically-linked `ls' reported by Michael Brunnbauer.
32361
32362 2004-01-20  Karl Berry  <karl@gnu.org>
32363
32364         * config/config.guess: update from config.
32365
32366         * config/srclistvars.sh: GNUWWWLICENSES for karl.
32367
32368 2004-01-20  Bruno Haible  <bruno@clisp.org>
32369
32370         Safer stack allocation.
32371         * lib/setenv.c: Include allocsa.h.
32372         (alloca): Remove fallback definition.
32373         (freea): Remove macro.
32374         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
32375         instead of freea.
32376
32377 2004-01-20  Bruno Haible  <bruno@clisp.org>
32378
32379         * m4/eealloc.m4: New file, from GNU gettext.
32380
32381 2004-01-20  Bruno Haible  <bruno@clisp.org>
32382
32383         * m4/allocsa.m4: New file, from GNU gettext.
32384
32385 2004-01-20  Bruno Haible  <bruno@clisp.org>
32386
32387         * lib/xallocsa.h: New file, from GNU gettext.
32388         * lib/xallocsa.c: New file, from GNU gettext.
32389
32390 2004-01-20  Bruno Haible  <bruno@clisp.org>
32391
32392         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
32393
32394 2004-01-20  Bruno Haible  <bruno@clisp.org>
32395
32396         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
32397         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
32398         specially.
32399
32400 2004-01-20  Bruno Haible  <bruno@clisp.org>
32401
32402         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
32403         patch.
32404
32405 2004-01-20  Bruno Haible  <bruno@clisp.org>
32406
32407         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
32408
32409 2004-01-20  Bruno Haible  <bruno@clisp.org>
32410
32411         * lib/eealloc.h: New file.
32412
32413 2004-01-20  Bruno Haible  <bruno@clisp.org>
32414
32415         * lib/binary-io.h: Avoid warnings on Cygwin.
32416
32417 2004-01-20  Bruno Haible  <bruno@clisp.org>
32418
32419         * lib/allocsa.h: New file, from GNU gettext.
32420         * lib/allocsa.c: New file, from GNU gettext.
32421
32422 2004-01-18  Karl Berry  <karl@gnu.org>
32423
32424         * doc/gpl.texi, doc/lgpl.texi: new files.
32425
32426 2004-01-18  Karl Berry  <karl@gnu.org>
32427
32428         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
32429         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
32430
32431 2004-01-15  Paul Eggert  <eggert@twinsun.com>
32432
32433         Merge from coreutils.
32434
32435         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
32436         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
32437         (gl_DEFAULT_POSIX2_VERSION): Move
32438         the documentation from 'configure' into 'config.hin',
32439         so that 'configure --help' isn't burdened by it and
32440         we don't have to worry about its formatting there.
32441         Reword the documentation so that it's more succinct
32442         and can be run together into a single paragraph.
32443         * m4/same.m4 (gl_SAME): Check for pathconf.
32444
32445 2004-01-15  Paul Eggert  <eggert@twinsun.com>
32446
32447         Merge from coreutils.
32448
32449         * lib/posixver.c: Include posixver.h.
32450
32451         * lib/same.c: Include <stdbool.h>, <limits.h>.
32452         (_POSIX_NAME_MAX): Define if not defined.
32453         (MIN): New macro.
32454         (same_name): If file names are silently truncated, report
32455         that the file names are the same if they are the same after
32456         the silent truncation.
32457
32458         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
32459         conversion function.
32460         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
32461         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
32462         longer needed.
32463
32464 2004-01-15  Jim Meyering  <jim@meyering.net>
32465
32466         Merge from coreutils.
32467
32468         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
32469         if no library is required.
32470         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
32471         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
32472         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
32473         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
32474         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
32475         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
32476         value, $ac_cv_search_crypt, if it's "none required".
32477         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
32478         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
32479         not gl_FUNC_GETLOADAVG.
32480         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
32481         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
32482
32483 2004-01-15  Jim Meyering  <jim@meyering.net>
32484
32485         Merge from coreutils.
32486
32487         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
32488         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
32489         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
32490
32491         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
32492         optional configure-time default.
32493
32494         * lib/version-etc.c (version_etc_copyright): Update copyright date.
32495
32496         * lib/xreadlink.c (xreadlink): Correct outdated comment.
32497
32498 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
32499
32500         Merge from coreutils.
32501
32502         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
32503         value, $ac_cv_search_nanosleep, if it's "none required".
32504
32505 2004-01-14  Paul Eggert  <eggert@twinsun.com>
32506
32507         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
32508         with like-named macro in fnmatch.c.
32509         (EXT): Use an internal constant instead.
32510
32511         Merge fnmatch patches from glibc.
32512         * lib/fnmatch.c (mbsinit): Remove define.
32513         Add libc_hidden_ver (__fnmatch, fnmatch).
32514         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
32515         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
32516
32517 2004-01-14  Karl Berry  <karl@gnu.org>
32518
32519         * config/install-sh: update from automake.
32520
32521 2004-01-13  Karl Berry  <karl@gnu.org>
32522
32523         * config/install-sh: update from automake.
32524
32525 2004-01-09  Karl Berry  <karl@gnu.org>
32526
32527         * config/install-sh: update from automake.
32528
32529 2004-01-05  Karl Berry  <karl@gnu.org>
32530
32531         * config/config.{sub,guess}: update from config.
32532
32533 2003-12-31  Karl Berry  <karl@gnu.org>
32534
32535         * config/depcomp: update from automake.
32536
32537 2003-12-14  Karl Berry  <karl@gnu.org>
32538
32539         * lib/config.charset: update from gettext-runtime.
32540
32541 2003-12-03  Paul Eggert  <eggert@twinsun.com>
32542
32543         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
32544         Bug reported by Alfred M. Szmidt.
32545
32546 2003-12-03  Bruno Haible  <bruno@clisp.org>
32547
32548         * m4/gettext.m4: Upgrade from gettext-0.13.
32549         * m4/po.m4: Upgrade from gettext-0.13.
32550         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
32551         * m4/intmax.m4: New file, from gettext-0.13.
32552         * m4/printf-posix.m4: New file, from gettext-0.13.
32553
32554 2003-11-29  Karl Berry  <karl@gnu.org>
32555
32556         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
32557
32558 2003-11-25  Paul Eggert  <eggert@twinsun.com>
32559             Bruno Haible  <bruno@clisp.org>
32560
32561         * lib/printf-parse.h: Don't include sys/types.h.
32562         (ARG_NONE): New macro.
32563         (char_directive): Change type of *arg_index fields to size_t.
32564         * lib/printf-parse.c: Don't include sys/types.h.
32565         (SSIZE_MAX): Remove macro.
32566         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
32567         Remove unnecessary overflow check.
32568         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
32569         fields.
32570
32571 2003-11-25  Bruno Haible  <bruno@clisp.org>
32572
32573         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
32574
32575 2003-11-25  Bruno Haible  <bruno@clisp.org>
32576
32577         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
32578         gt_TYPE_SSIZE_T.
32579
32580 2003-11-24  Paul Eggert  <eggert@twinsun.com>
32581
32582         * modules/alloca: Remove dependency on xalloc.
32583
32584 2003-11-24  Paul Eggert  <eggert@twinsun.com>
32585
32586         * lib/alloca.c: Remove dependency on xalloc module.
32587         (xalloc_die): Remove.
32588         (memory_full) [!defined emacs]: New macro.
32589         [!defined emacs]: Don't include xalloc.h.
32590         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
32591         address arithmetic overflows.  Change datatypes a bit to avoid
32592         unnecessary casts.
32593
32594 2003-11-22  Jim Meyering  <jim@meyering.net>
32595
32596         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
32597         s/size/size_t/.
32598
32599 2003-11-21  Karl Berry  <karl@gnu.org>
32600
32601         * config/config.{sub,guess}: update from config.
32602
32603 2003-11-18  Karl Berry  <karl@gnu.org>
32604
32605         * config/config.{sub,guess}: update from config.
32606
32607         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
32608
32609 2003-11-17  Paul Eggert  <eggert@twinsun.com>
32610
32611         * README: Mention that S+T cannot overflow if S is the size of
32612         an existing object and T is sufficiently small.
32613
32614 2003-11-17  Jim Meyering  <jim@meyering.net>
32615
32616         On systems without utime and without a utimes function capable of
32617         dealing with a NULL struct utimbuf* argument, this utime replacement
32618         could -- in unusual circumstances -- leak a file descriptor.
32619         * lib/utime.c: Include <unistd.h> and <errno.h>.
32620         (utime_null): Be sure to close `fd' and to preserve errno.
32621         Reported by Geoff Collyer via Arnold Robbins.
32622
32623 2003-11-17  Bruno Haible  <bruno@clisp.org>
32624
32625         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
32626         (Depends-on): Add xsize.
32627
32628 2003-11-17  Bruno Haible  <bruno@clisp.org>
32629
32630         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
32631
32632 2003-11-17  Bruno Haible  <bruno@clisp.org>
32633
32634         * lib/vasnprintf.c (alloca): Remove fallback definition.
32635         (freea): Remove definition.
32636         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
32637         Reported by Paul Eggert.
32638
32639 2003-11-16  Paul Eggert  <eggert@twinsun.com>
32640             Bruno Haible  <bruno@clisp.org>
32641
32642         Protect against address arithmetic overflow.
32643         * lib/printf-args.h: Include stddef.h.
32644         (arguments): Change type of field 'count' to size_t.
32645         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
32646         'unsigned int' where appropriate.
32647         * lib/printf-parse.h: Include sys/types.h.
32648         (char_directive): Change type of *arg_index fields to ssize_t.
32649         (char_directives): Change type of fields 'count', max_*_length to
32650         size_t.
32651         * lib/printf-parse.c: Include sys/types.h and xsize.h.
32652         (SSIZE_MAX): Define fallback value.
32653         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
32654         instead of 'int' where appropriate. Check a_allocated, d_allocated
32655         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
32656         * lib/vasnprintf.c: Include xsize.h.
32657         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
32658         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
32659         overflow. Avoid wraparound when converting a width or precision from
32660         decimal to binary.
32661
32662 2003-11-16  Bruno Haible  <bruno@clisp.org>
32663
32664         Update from GNU gettext.
32665         * lib/printf-parse.c: Generalize to it can be compiled for wide
32666         strings.
32667         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
32668         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
32669         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
32670         SNPRINTF): New macros.
32671         Don't include <alloca.h> if the file is used inside libintl.
32672         (local_wcslen): New function, for Solaris 2.5.1.
32673         (VASNPRINTF): Use it instead of wcslen.
32674
32675 2003-11-16  Bruno Haible  <bruno@clisp.org>
32676
32677         * lib/xsize.h (xmax): New function.
32678         (xsum, xsum3, xsum4): Declare as "pure" functions.
32679
32680 2003-11-12  Paul Eggert  <eggert@twinsun.com>
32681
32682         * modules/xalloc (Files): Undo latest change, since xalloc.h
32683         no longer needs SIZE_MAX or PTRDIFF_MAX.
32684
32685 2003-11-12  Paul Eggert  <eggert@twinsun.com>
32686
32687         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
32688         gl_PTRDIFF_MAX.
32689
32690 2003-11-12  Paul Eggert  <eggert@twinsun.com>
32691
32692         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
32693         "return", to pacify some unknown compiler.  Problem reported
32694         by Joerg Schilling.
32695
32696 2003-11-12  Paul Eggert  <eggert@twinsun.com>
32697
32698         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
32699         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
32700         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
32701         heuristic is just as accurate as far as we know, and it removes a
32702         dependency on size_max.m4 and ptrdiff_max.m4.
32703
32704 2003-11-11  Bruno Haible  <bruno@clisp.org>
32705
32706         * modules/xsize (Files): Add m4/size_max.m4.
32707         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
32708
32709 2003-11-11  Bruno Haible  <bruno@clisp.org>
32710
32711         * m4/size_max.m4: New file.
32712         * m4/ptrdiff_max.m4: New file.
32713         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
32714         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
32715         (gl_XALLOC): Invoke it.
32716
32717 2003-11-11  Bruno Haible  <bruno@clisp.org>
32718
32719         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
32720         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
32721         defined.
32722
32723 2003-11-10  Paul Eggert  <eggert@twinsun.com>
32724
32725         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
32726         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
32727         rejected some allocations of exactly SIZE_MAX - 2 bytes.
32728         From Bruno Haible.
32729         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
32730         not (size_t) -1, since it's defined here.
32731
32732 2003-11-09  Karl Berry  <karl@gnu.org>
32733
32734         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
32735
32736 2003-11-06  Paul Eggert  <eggert@twinsun.com>
32737
32738         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
32739         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
32740         Reject sizes of exactly SIZE_MAX bytes.
32741         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
32742         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
32743
32744 2003-11-05  Bruno Haible  <bruno@clisp.org>
32745
32746         * lib/xsize.h: Include limits.h, to avoid a possible collision with
32747         SIZE_MAX defined in <limits.h> on Solaris.
32748
32749 2003-11-04  Jim Meyering  <jim@meyering.net>
32750
32751         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
32752         variable names, rather than @VAR@.
32753         * modules/poll: Likewise.
32754
32755 2003-11-04  Bruno Haible  <bruno@clisp.org>
32756
32757         * modules/xsize: New file.
32758         * modules/linebreak: Depend on xsize.
32759         * MODULES.html.sh (func_all_modules): Add xsize.
32760
32761 2003-11-04  Bruno Haible  <bruno@clisp.org>
32762
32763         * m4/xsize.m4: New file.
32764
32765 2003-11-04  Bruno Haible  <bruno@clisp.org>
32766
32767         * lib/xsize.h: New file.
32768         * lib/linebreak.c: Include xsize.h.
32769         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
32770         argument for overflow.
32771         Suggested by Paul Eggert.
32772
32773 2003-11-03  Karl Berry  <karl@gnu.org>
32774
32775         * config/config.{guess,sub}: update from config.
32776
32777 2003-11-03  Jim Meyering  <jim@meyering.net>
32778
32779         * modules/userspec (lib_SOURCES): Add userspec.h.
32780         (Include): Add "userspec.h".
32781         Improve description.
32782
32783 2003-11-03  Jim Meyering  <jim@meyering.net>
32784
32785         * lib/userspec.c: Include "userspec.h".
32786         * lib/userspec.h: New file.
32787
32788 2003-11-03  Bruno Haible  <bruno@clisp.org>
32789
32790         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
32791
32792 2003-11-03  Bruno Haible  <bruno@clisp.org>
32793
32794         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
32795         available, to avoid (extremely rare) race condition.
32796         Suggested by Paul Eggert.
32797
32798 2003-11-02  Karl Berry  <karl@gnu.org>
32799
32800         * config/srclist.txt (vasprintf.c): sync broken, sigh.
32801
32802 2003-10-31  Paul Eggert  <eggert@twinsun.com>
32803
32804         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
32805         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
32806         (read_filesystem_list): Set and use me_type_malloced.
32807         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
32808         whatever the type happens to be), for brevity and consistency.
32809         Check for size calculation overflow on Alphas running OSF/1.
32810
32811 2003-10-31  Jim Meyering  <jim@meyering.net>
32812
32813         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
32814
32815         * lib/linebuffer.c: Include <string.h> for declaration of memset.
32816
32817 2003-10-30  Paul Eggert  <eggert@twinsun.com>
32818             Bruno Haible  <bruno@clisp.org>
32819
32820         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
32821         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
32822
32823 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
32824
32825         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
32826         netbsd*-gnu*.  Suggested by Robert Millan.
32827
32828 2003-10-29  Paul Eggert  <eggert@twinsun.com>
32829
32830         * modules/group-member: Depend on stdbool.
32831
32832 2003-10-29  Paul Eggert  <eggert@twinsun.com>
32833
32834         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
32835
32836 2003-10-29  Paul Eggert  <eggert@twinsun.com>
32837
32838         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
32839         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
32840         after the 'gnu' in these cases.  This fixes some bugs in the
32841         previous change, and is based on suggestions by Robert Millan.
32842
32843 2003-10-29  Paul Eggert  <eggert@twinsun.com>
32844
32845         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
32846         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
32847         no longer needed.
32848         * lib/quotearg.c (quotearg_n_options): Use it.
32849         * lib/group-member.c: Include <stdbool.h>.
32850         (free_group_info): Arg is now const *; don't free arg.
32851         (get_group_info): Now returns bool and accepts struct group_info *,
32852         rather than returning a malloc'ed struct group_info *.
32853         All uses changed.  Check for overflow in internal size calculation.
32854
32855         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
32856         rather than xmalloc/xrealloc.
32857         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
32858         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
32859         conformance bug: the old code used a pointer after freeing the
32860         storage that it addressed.
32861         * lib/hash.c (hash_initialize): Simplify the code by using
32862         xalloc_oversized rather than doing it by hand.
32863         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
32864         the buffer preserved.  Use free and xmalloc instead.
32865         * lib/quotearg.c (quotearg_n_options): Likewise.
32866         Use a simpler test for size overflow.  Don't use xalloc_oversized
32867         because unsigned int might be wider than size_t (!); this suggests
32868         that we should switch from unsigned int to size_t for slot numbers.
32869
32870 2003-10-28  Paul Eggert  <eggert@twinsun.com>
32871
32872         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
32873         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
32874         NetBSD kernels.  Requested by Richard Stallman.
32875
32876 2003-10-27  Paul Eggert  <eggert@twinsun.com>
32877
32878         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
32879         to allocate the returned structure.  Do not allocate a subarray,
32880         as x2nrealloc will do that.
32881         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
32882         instead of xnrealloc.
32883         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
32884
32885 2003-10-27  Bruno Haible  <bruno@clisp.org>
32886
32887         * lib/stdbool_.h: Better support for BeOS.
32888
32889 2003-10-26  Paul Eggert  <eggert@twinsun.com>
32890
32891         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
32892         now uses inline.
32893
32894 2003-10-26  Paul Eggert  <eggert@twinsun.com>
32895
32896         * lib/xalloc.h (xalloc_oversized): New static inline function, for
32897         callers that want to do their own size-overflow checking.  Include
32898         <stdbool.h>, since xalloc_oversized returns bool.
32899         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
32900         to use xalloc_oversized.
32901
32902         Add two functions x2realloc, x2nrealloc, for programs that grow
32903         arrays dynamically by doubling their sizes.
32904         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
32905         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
32906         New functions.
32907
32908         Port to C99 semantics for 'inline' of external functions.
32909         Bug reported by Bruno Haible.
32910         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
32911         with the old contents of xnmalloc.
32912         (xnmalloc, xmalloc): Use it.
32913         (xnrealloc_inline): New static inline function,
32914         with the old contents of xnrealloc.
32915         (xnrealloc, xrealloc): Use it.
32916
32917         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
32918         that.
32919
32920 2003-10-26  Karl Berry  <karl@gnu.org>
32921
32922         * config/srclist.txt (COPYING.DOC): no longer available from
32923         /gd/gnuorg; don't know where the ultimate source is.
32924
32925 2003-10-25  Paul Eggert  <eggert@twinsun.com>
32926
32927         Fix several address-calculation bugs in the hash modules,
32928         plus some minor code cleanup.
32929
32930         * lib/hash.h: Include <stdbool.h>, for bool.
32931         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
32932         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
32933         hash_get_n_entries, hash_get_max_bucket_length,
32934         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
32935         hash_rehash): Use size_t rather than unsigned.
32936         * lib/hash.c (struct hash_table, hash_get_n_buckets,
32937         hash_get_n_buckets_used, hash_get_n_entries,
32938         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
32939         hash_get_entries, hash_do_for_each, hash_string, is_prime,
32940         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
32941         Likewise.
32942         (SIZE_MAX): Define if not defined.
32943         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
32944         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
32945         hash_print):
32946         Use const * when possible.
32947         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
32948         (check_tuning): Fix bug: if tuning parameters were very close to
32949         0 or 1, rounding errors could have caused subscript violations.
32950         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
32951         (hash_initialize): Add 'fail:' label
32952         to free table and return NULL, and use it to simplify code.
32953         Use calloc rather than clearing the storage ourself.
32954         (hash_initialize, hash_rehash): Check for arithmetic overflow in
32955         buffer size calculations.
32956         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
32957         Include <stddef.h>, for size_t.
32958         * lib/hash-pjw.c (hash_pjw): Likewise.
32959         Switch to method described by Bruno Haible.
32960         Include <limits.h>, for CHAR_BIT.
32961         (SIZE_BITS): New macro.
32962
32963 2003-10-23  Paul Eggert  <eggert@twinsun.com>
32964
32965         * m4/getline.m4 (AM_FUNC_GETLINE):
32966         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
32967         hosts.  Problem reported by Derek Robert Price in
32968         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
32969         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
32970         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
32971
32972 2003-10-21  Paul Eggert  <eggert@twinsun.com>
32973
32974         * lib/getndelim2.c (getndelim2): When size calculation overflows,
32975         ceiling the allocation at NMAX bytes rather than silently
32976         discarding input bytes before NMAX is reached.  This makes
32977         a difference only if NMAX exceeds SIZE_MAX / 2.
32978
32979         * lib/obstack.c: Merge from glibc.
32980         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
32981         Add libc_hidden_def (_obstack_newchunk).
32982         (_obstack_free) [! defined _LIBC]: Remove.
32983         [defined _LIBC]: Make a strong alias from obstack_free, rather than
32984         a clone of the function body.
32985         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
32986         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
32987
32988         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
32989         glibc.
32990         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
32991         arg to memcpy.
32992
32993         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
32994         (obstack_ptr_grow_fast, obstack_int_grow_fast):
32995         Don't use lvalue casts, as GCC plans to remove support for them
32996         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
32997         was also present in the non-GCC version, indicating that this
32998         code had always been buggy and had never been widely used.
32999         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
33000         Use the fast variant of each macro, rather than copying the
33001         definiens of the fast variant; that way, we'll be more likely to
33002         catch future bugs in the fast variants.
33003
33004 2003-10-20  Bruno Haible  <bruno@clisp.org>
33005
33006         * modules/wait-process: New file.
33007         * MODULES.html.sh (func_all_modules): Add wait-process.
33008
33009 2003-10-20  Bruno Haible  <bruno@clisp.org>
33010
33011         * m4/wait-process.m4: New file.
33012
33013 2003-10-20  Bruno Haible  <bruno@clisp.org>
33014
33015         * lib/wait-process.h: New file, from GNU gettext.
33016         * lib/wait-process.c: New file, from GNU gettext.
33017
33018 2003-10-19  Jim Meyering  <jim@meyering.net>
33019
33020         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
33021         HPUX 10.20.
33022
33023 2003-10-18  Karl Berry  <karl@gnu.org>
33024
33025         * config/config.guess: update from config.
33026
33027 2003-10-16  Paul Eggert  <eggert@twinsun.com>
33028
33029         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
33030         (getgroups): First arg is int, not size_t.
33031         Don't let 'free' mangle errno.
33032
33033 2003-10-16  Paul Eggert  <eggert@twinsun.com>
33034
33035         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
33036
33037 2003-10-16  Karl Berry  <karl@gnu.org>
33038
33039         * config/config.{guess,sub}: update from config.
33040
33041 2003-10-16  Jim Meyering  <jim@meyering.net>
33042
33043         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
33044         memcpy.
33045
33046 2003-10-15  Paul Eggert  <eggert@twinsun.com>
33047
33048         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
33049         (SIZE_MAX): Remove.
33050         (new_exclude, add_exclude_file): Initial size no longer needs to
33051         be a power of 2.
33052         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
33053         our own address arithmetic overflow checking.
33054
33055         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
33056         (fnmatch): Do not alloca more than 2000 wide characters;
33057         instead, use malloc for large buffers.
33058         Check for address arithmetic overflow, and return -1
33059         with errno set to ENOMEM in that case.
33060         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
33061         (NEW_PATTERN): Do not alloca more than 8000 bytes;
33062         instead, return -1.  Check for address arithmetic overflow.
33063
33064 2003-10-14  Paul Eggert  <eggert@twinsun.com>
33065
33066         Handle invalid suffixes and overflow independently, so that
33067         callers can treat them independently as needed.  Fix some bugs in
33068         suffix handling, e.g., "100k@" was not diagnosed as an invalid
33069         suffix for a human-readable blocksize.  The major caller-visible
33070         change is the addition of a new
33071         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
33072         that both overflow and suffix chars were found.
33073
33074         * lib/human.c (humblock): Don't check separately for invalid suffix
33075         char; that is xstrtoumax's job (now that its bug is fixed).
33076         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
33077         INTMAX_MAX]: New macros.
33078         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
33079         TYPE_MAXIMUM): New macros.
33080         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
33081         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
33082         if overflow occurs, as it's what __strtol does and it's more useful
33083         in practice.
33084         (__xstrtol): If __strtol reports some error other than ERANGE,
33085         reflect it to the caller as LONGINT_INVALID.  If it reports
33086         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
33087         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
33088         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
33089         value.
33090         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
33091         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
33092         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
33093         [defined UINTMAX_MAX]: New macros.
33094
33095 2003-10-14  Bruno Haible  <bruno@clisp.org>
33096
33097         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
33098
33099 2003-10-14  Bruno Haible  <bruno@clisp.org>
33100
33101         * m4/sig_atomic_t: New file, from GNU gettext.
33102         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
33103
33104 2003-10-14  Bruno Haible  <bruno@clisp.org>
33105
33106         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
33107         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
33108         Also use volatile where needed.
33109
33110 2003-10-12  Paul Eggert  <eggert@twinsun.com>
33111
33112         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
33113         Change maintainer from Bruno Haible to 'all'.
33114
33115 2003-10-12  Paul Eggert  <eggert@twinsun.com>
33116
33117         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
33118
33119 2003-10-12  Paul Eggert  <eggert@twinsun.com>
33120
33121         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
33122         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
33123         and define in terms of the other primitives.
33124         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
33125         (SIZE_MAX): Define if not already defined.
33126         (array_size_overflow): New function.
33127         (xalloc_die): Abort instead of exiting if 'error' returns.
33128         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
33129         (xmalloc, xrealloc): Use them.
33130         (xcalloc): Check for address arithmetic overflow.
33131         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
33132         a bit faster than strcpy.
33133
33134 2003-10-10  Simon Josefsson  <jas@extundo.com>
33135
33136         * modules/argp (Depends-on): Add restrict and strcase.
33137
33138 2003-10-10  Simon Josefsson  <jas@extundo.com>
33139
33140         * m4/argp.m4: Add AC_C_INLINE.
33141
33142 2003-10-08  Paul Eggert  <eggert@twinsun.com>
33143
33144         Merge getpass from libc, plus a few fixes.
33145
33146         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
33147         Include <stdbool.h>.
33148         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
33149         __fsetlocking to empty.
33150         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
33151         do include <bits/libc-lock.h>.
33152         Do not include <fcntl.h>; not needed.
33153         [_LIBC]: Include <wchar.h>.
33154         (NOTCANCEL_MODE): New macro.
33155         (flockfile, funlockfile) [_LIBC]: New macros.
33156         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
33157         [!_LIBC]: New macros.
33158         (call_fclose): New function.
33159         (getpass): Use it.  Save tty stream separately; this simplifies the
33160         code and makes it more reliable if stdin happens to equal stdout.
33161         Invoke __fsetlocking on tty.
33162         Handle thread cancellation if needed.
33163         Namespace cleanup (use __tcgetattr, __getline).
33164         Use bool for Booleans.
33165         [USE_IN_LIBIO]: Handle wide streams.
33166         [!_LIBC]: Unconditionally do the fseek, since we don't know what
33167         stream might go where.
33168
33169         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
33170         doesn't have to include <stdio.h> before us.
33171         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
33172         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
33173         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
33174         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
33175         if not declared, so that we can use getpass.c code from libc without
33176         rewriting it.
33177         (flockfile, ftrylockfile, funlockfile): New macros.
33178
33179 2003-10-08  Paul Eggert  <eggert@twinsun.com>
33180
33181         * modules/getpass: Depend on stdbool.
33182
33183 2003-10-08  Paul Eggert  <eggert@twinsun.com>
33184
33185         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
33186
33187 2003-10-07  Karl Berry  <karl@gnu.org>
33188
33189         * config/config.{guess,sub}: update from config.
33190
33191 2003-10-06  Jim Meyering  <jim@meyering.net>
33192             Bruno Haible  <bruno@clisp.org>
33193
33194         This lets translators provide better translations for the
33195         "Written by ..." part of --version output.
33196         * lib/version-etc.h: Include stdarg.h.
33197         (version_etc_copyright): Declare as readonly.
33198         (version_etc): Make this function variadic with a NULL-terminated list
33199         of author name strings.
33200         (version_etc_va): New declaration.
33201         * lib/version-etc.c: Include stdarg.h, stdlib.h.
33202         (version_etc_copyright): Declare as readonly.
33203         (version_etc_va): New function. Provide a different translatable string
33204         for each possible number of authors < 10. Abbreviate when there are 10
33205         authors or more.
33206         (version_etc): Make this function variadic. Call version_etc_va.
33207         Suggestion from Gary V. Vaughan.
33208
33209         * lib/long-options.h (parse_long_options): Change prototype: the
33210         authors string is moved to the end and becomes variadic.
33211         * lib/long-options.c: Include stdarg.h.
33212         (parse_long_options): Make this function variadic, too.
33213         Call version_etc_va, not version_etc.
33214
33215 2003-10-06  Bruno Haible  <bruno@clisp.org>
33216
33217         * modules/version-etc-2: Remove file.
33218         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
33219
33220 2003-10-06  Bruno Haible  <bruno@clisp.org>
33221
33222         * modules/fatal-signal: New file.
33223         * MODULES.html.sh (func_all_modules): Add fatal-signal.
33224
33225 2003-10-06  Bruno Haible  <bruno@clisp.org>
33226
33227         * m4/fatal-signal.m4: New file.
33228         * m4/signalblocking.m4: New file, from GNU gettext.
33229
33230 2003-10-06  Bruno Haible  <bruno@clisp.org>
33231
33232         * lib/version-etc-2.h: Remove file.
33233         * lib/version-etc-2.c: Remove file.
33234
33235 2003-10-06  Bruno Haible  <bruno@clisp.org>
33236
33237         * lib/fatal-signal.h: New file, from GNU gettext.
33238         * lib/fatal-signal.c: New file, from GNU gettext.
33239
33240 2003-10-05  Paul Eggert  <eggert@twinsun.com>
33241
33242         * README: Rework advice for preventing empty .o files.
33243         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
33244         not <sys/types.h>.
33245
33246 2003-10-04  Karl Berry  <karl@gnu.org>
33247
33248         * lib/argp*: update from libc.
33249
33250 2003-10-04  Karl Berry  <karl@gnu.org>
33251
33252         * config/config.{guess,sub}: update from config.
33253
33254 2003-10-02  Bruno Haible  <bruno@clisp.org>
33255
33256         * modules/lchown (Include): Add lchown.h.
33257         * modules/time_r (Include): Use "..." syntax.
33258         * modules/xgetdomainname (Include): Add xgetdomainname.h.
33259
33260 2003-10-01  Simon Josefsson  <jas@extundo.com>
33261
33262         * MODULES.html.sh (func_all_modules): Move gethostname from section
33263         'based on' to section 'lacking' POSIX:2001.
33264
33265 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
33266
33267         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
33268         to output mode on the same stream.
33269
33270 2003-09-29  Paul Eggert  <eggert@twinsun.com>
33271
33272         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
33273         Fix arg typo in previous patch.
33274
33275 2003-09-28  Jim Meyering  <jim@meyering.net>
33276
33277         * lib/error.c: Correct cpp indentation.
33278
33279 2003-09-27  Paul Eggert  <eggert@twinsun.com>
33280
33281         * modules/free: New file.
33282
33283 2003-09-27  Paul Eggert  <eggert@twinsun.com>
33284
33285         * m4/free.m4: New file.
33286
33287 2003-09-27  Paul Eggert  <eggert@twinsun.com>
33288
33289         * lib/minmax.h (MIN, MAX)
33290         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
33291         Omit the special code that used __typeof__, since we worry that
33292         it could be more trouble than it's worth.  See:
33293         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
33294         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
33295
33296         * lib/free.c: New file.
33297
33298 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
33299
33300         Trivial fixes to Makefile.am parts of module listings.
33301         * modules/strstr: Append strstr.h to lib_SOURCES.
33302         * modules/strcase: Likewise, for strcase.h.
33303
33304 2003-09-27  Karl Berry  <karl@gnu.org>
33305
33306         * config/mkinstalldirs: update from automake.
33307
33308 2003-09-26  Paul Eggert  <eggert@twinsun.com>
33309
33310         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
33311         (error_tail): Do not loop, reallocating temporary buffer, since
33312         the output cannot contain more wide characters than the input
33313         contains bytes, the size must be big enough already.  This avoids
33314         one potential size overflow calculation.  Check for size overflow
33315         when calculating temporary buffer size.  Free temporary buffer
33316         when done, if it was allocated with malloc; this plugs a memory
33317         leak.  Remove casts from void * to pointers, that are no longer
33318         needed now that we're assuming C89 or better.
33319
33320         Merge error changes from glibc.
33321
33322         * lib/error.c, error.h: Update copyright notice header to match glibc.
33323         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
33324         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
33325         Disable cancellation while printing error.
33326         * lib/error.h: Prepend __ to parameter names.
33327
33328 2003-09-26  Jim Meyering  <jim@meyering.net>
33329
33330         * lib/error.c (error_tail): Move some declarations
33331         into inner scope where the local variables are used.
33332
33333 2003-09-26  Bruno Haible  <bruno@clisp.org>
33334
33335         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
33336         stpncpy().
33337         Don't define stpncpy through config.h; it's now done through stpncpy.h.
33338
33339 2003-09-26  Bruno Haible  <bruno@clisp.org>
33340
33341         * lib/stpncpy.h (gnu_stpncpy): New declaration.
33342         (stpncpy): Define as alias for gnu_stpncpy.
33343         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
33344
33345 2003-09-25  Simon Josefsson  <jas@extundo.com>
33346
33347         * lib/xgetdomainname.h: New file.
33348         * lib/xgetdomainname.c: New file.
33349
33350 2003-09-25  Simon Josefsson  <jas@extundo.com>
33351             Bruno Haible  <bruno@clisp.org>
33352
33353         * modules/getdomainname: New file.
33354         * modules/xgetdomainname: New file.
33355         * MODULES.html.sh (func_all_modules): Add getdomainname,
33356         xgetdomainname.
33357
33358 2003-09-25  Simon Josefsson  <jas@extundo.com>
33359             Bruno Haible  <bruno@clisp.org>
33360
33361         * m4/getdomainname.m4: New file.
33362
33363 2003-09-25  Simon Josefsson  <jas@extundo.com>
33364             Bruno Haible  <bruno@clisp.org>
33365
33366         * lib/getdomainname.h: New file.
33367         * lib/getdomainname.c: New file.
33368
33369 2003-09-25  Karl Berry  <karl@gnu.org>
33370
33371         * lib/argp-fmtstream.c, argp-help.c: update from libc.
33372
33373 2003-09-25  Karl Berry  <karl@gnu.org>
33374
33375         * config/install-sh: update from automake.
33376
33377 2003-09-25  Bruno Haible  <bruno@clisp.org>
33378
33379         * modules/version-etc-2: New file, from modules/version-etc with
33380         modifications.
33381         * MODULES.html.sh (func_all_modules): Add version-etc-2.
33382
33383 2003-09-25  Bruno Haible  <bruno@clisp.org>
33384
33385         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
33386         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
33387
33388 2003-09-24  Simon Josefsson  <jas@extundo.com>
33389
33390         * modules/xgethostname: Add xgethostname.h.
33391
33392 2003-09-24  Paul Eggert  <eggert@twinsun.com>
33393
33394         * lib/linebuffer.c (freebuffer): Don't free the argument, just
33395         the buffer associated with the argument.  Bug reported by
33396         Simon Josefsson.
33397
33398 2003-09-24  Paul Eggert  <eggert@twinsun.com>
33399
33400         * README: Document assumptions that 'int' is at least 32 bits
33401         wide, that integer arithmetic is 2's complement without overflow,
33402         that there are no holes in integer values, that adding sizes of
33403         two nonoverlapping objects can't overflow, and that all-bits-zero
33404         yields scalar zero.  Fix spelling and capitalization typos.
33405
33406 2003-09-19  Karl Berry  <karl@gnu.org>
33407
33408         * lib/argp.h: update from libc.
33409
33410 2003-09-17  Paul Eggert  <eggert@twinsun.com>
33411
33412         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
33413         to avoid spurious warnings like "AC_RUN_IFELSE was called before
33414         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
33415
33416 2003-09-17  Paul Eggert  <eggert@twinsun.com>
33417
33418         * gnulib-tool: Use "test -h", not "test -L", for portability
33419         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
33420         (tags_regexp): Remove, since \| doesn't conform to POSIX.
33421         (sed_extract_prog): Issue s commands one-by-one, rather than
33422         using \| in one s command.
33423
33424 2003-09-16  Paul Eggert  <eggert@twinsun.com>
33425
33426         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
33427         input error, instead of returning NULL the next time we are called
33428         (and therefore losing track of errno).
33429
33430 2003-09-16  Bruno Haible  <bruno@clisp.org>
33431
33432         * gnulib-tool (func_create_testdir): Warn about duplicated
33433         dependencies.
33434
33435 2003-09-15  Paul Eggert  <eggert@twinsun.com>
33436
33437         * modules/argmatch, modules/fatal, modules/obstack,
33438         modules/xalloc, modules/xgethostname: Sort dependencies by
33439         importance, not alphabetically.
33440
33441 2003-09-15  Paul Eggert  <eggert@twinsun.com>
33442
33443         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
33444         fails, so that the caller gets the proper errno.
33445
33446         * lib/readutmp.c (read_utmp): Likewise.
33447         Check for fstat error.  Close stream and free storage
33448         when failing.
33449
33450 2003-09-14  Karl Berry  <karl@gnu.org>
33451
33452         * config/srclist.txt (strdup.c): disable for c89 changes.
33453
33454 2003-09-14  Jim Meyering  <jim@meyering.net>
33455
33456         * lib/getloadavg.c: Correct cpp indentation.
33457         * lib/strdup.c: Likewise.
33458         * lib/vasnprintf.c: Likewise.
33459
33460 2003-09-14  Bruno Haible  <bruno@clisp.org>
33461
33462         * modules/fwriteerror: New file.
33463         * MODULES.html.sh (func_all_modules): Add fwriteerror.
33464
33465 2003-09-14  Bruno Haible  <bruno@clisp.org>
33466
33467         * lib/fwriteerror.h: New file.
33468         * lib/fwriteerror.c: New file.
33469
33470 2003-09-12  Paul Eggert  <eggert@twinsun.com>
33471
33472         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
33473         modules/xgethostname, modules/xalloc: Depend on exit.
33474
33475 2003-09-12  Paul Eggert  <eggert@twinsun.com>
33476
33477         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
33478
33479         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
33480         and AC_MINIX, too, so that their extensions are available.
33481
33482         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
33483         This macro has been superseded by gl_BACKUPFILE.
33484
33485         More patches to assume C89 or better.
33486
33487         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
33488
33489         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
33490         unconditionally.
33491         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
33492         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
33493         Include <string.h>, <stdlib.h> unconditionally.
33494         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
33495         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
33496         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
33497         headers or for string.h.
33498         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
33499         or strtoul.
33500
33501         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
33502         headers.
33503         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
33504         * m4/userspec.m4 (gl_USERSPEC): Likewise.
33505         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
33506         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
33507         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33508         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
33509         memcpy, memset.
33510         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
33511         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
33512         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
33513         strtol.
33514         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
33515         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
33516         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
33517         strtoul.
33518
33519 2003-09-12  Paul Eggert  <eggert@twinsun.com>
33520
33521         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
33522         * lib/obstack.c [!defined _LIBC]: Likewise.
33523         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
33524         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
33525         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
33526
33527         More changes to assume C89 or better.
33528
33529         * lib/error.c (error_tail): Assume vprintf.
33530
33531         * lib/argmatch.c (getenv): Remove decl.
33532         * lib/progreloc.c (get_full_program_name): Define via prototype.
33533         * lib/setenv.c (clearenv): Likewise.
33534         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
33535         needed.
33536         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
33537         (malloc, memcpy): Remove decls.
33538         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
33539         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
33540         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
33541         (memcpy): Remove macro.
33542         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
33543         (__P): Remove.  All uses removed.
33544         (PTR): Remove.  All uses changed to void *.
33545         (CHAR_BIT, NULL): Remove.
33546         (spaces, zeros, memset_space, memset_zero)
33547         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
33548         Remove.
33549         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
33550         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
33551         Define with prototype.
33552         Remove now-unnecessary prototype decl.
33553         (extra_args_spec): Assume ANSI C.  All uses changed.
33554         (extra_args_spec_iso): Remove.
33555         (my_strftime, emacs_strftimeu): Define via prototype.
33556         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
33557         unconditionally.
33558         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
33559         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
33560         (strtoul, strtol): Remove decls.
33561         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
33562         LONG_MAX): Remove.
33563         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
33564         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
33565         (LOCALE_PARAM_PROTO): New macro.
33566         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
33567         (INTERNAL (strtol), strtol): Define with a prototype.
33568         (PARAMS): Remove.  All uses removed.
33569         * lib/tempname.c: Include <string.h> unconditionally.
33570         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
33571         * lib/xgethostname.c (main): Define with a prototype.
33572         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
33573         Include <stdlib.h> unconditionally.
33574         (calloc, malloc, realloc, free): Remove decls.
33575         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
33576         Include <stdlib.h> unconditionally.  Sort include file names.
33577         (strtod): Remove.
33578         (xstrtod): Define with a prototype.
33579         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
33580         (strtol, strtoul): Remove decls.
33581
33582 2003-09-11  Paul Eggert  <eggert@twinsun.com>
33583
33584         More patches to assume C89 or better.
33585         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
33586         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
33587         string.h, memchr, STDC_HEADERS.
33588
33589 2003-09-11  Paul Eggert  <eggert@twinsun.com>
33590
33591         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
33592         Include <stdlib.h>, <string.h> unconditionally.
33593         Remove now-unnecessary cast to char *.
33594         * lib/strnlen.c: Include <string.h> unconditionally.
33595         * lib/yesno.c (yesno): Define with a prototype.
33596
33597 2003-09-11  Bruno Haible  <bruno@clisp.org>
33598
33599         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
33600
33601 2003-09-10  Jim Meyering  <jim@meyering.net>
33602
33603         * lib/error.c: Correct indentation of cpp directives.
33604
33605 2003-09-10  Bruno Haible  <bruno@clisp.org>
33606
33607         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
33608         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
33609         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
33610         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
33611         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
33612         <stdlib.h> and <string.h> checks.
33613         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
33614         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
33615
33616 2003-09-10  Bruno Haible  <bruno@clisp.org>
33617
33618         * lib/strcspn.c: Include <string.h> unconditionally.
33619         * lib/strpbrk.c: Include <string.h> unconditionally.
33620         * lib/strstr.c: Include <string.h> unconditionally.
33621         * lib/unicodeio.c: Include <string.h> unconditionally.
33622         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
33623         * lib/unsetenv.c: Likewise.
33624         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
33625         * lib/yesno.c: Include <stdlib.h> unconditionally.
33626         (rpmatch): Add prototype.
33627
33628 2003-09-09  Paul Eggert  <eggert@twinsun.com>
33629
33630         More patches to assume C89 or better.
33631         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
33632         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
33633         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
33634         or for string.h.
33635         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
33636         stdlib.h.
33637         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
33638         C headers.
33639         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
33640         string.h.
33641         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
33642         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
33643         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
33644         or for string.h.
33645         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
33646         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
33647         C headers.
33648         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
33649         memcpy.
33650         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
33651         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
33652         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
33653         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
33654         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
33655         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
33656         string.h, free.
33657         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
33658         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
33659         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
33660         C headers, or for string.h.
33661         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
33662         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
33663         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
33664         headers, memory.h, stdlib.h, string.h, strings.h.
33665         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
33666         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
33667         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
33668         strchr.
33669         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
33670         headers, memory.h, string.h.
33671         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
33672         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
33673         free.
33674         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
33675         headers.
33676         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
33677         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
33678         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
33679         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
33680         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
33681
33682 2003-09-09  Paul Eggert  <eggert@twinsun.com>
33683
33684         More K&R removal.
33685
33686         * lib/acosl.c (main): Use a prototype.
33687         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
33688         tanl.c: Likewise.
33689
33690         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
33691
33692         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
33693         (getopt, etopt_long, getopt_long_only, _getopt_internal)
33694         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
33695         with a prototype.
33696         * lib/getopt.c (const): Remove macro.
33697         Include <string.h> unconditionally.
33698         (my_index): Remove; all uses changed to strchr.
33699         (strlen): Remove decl.
33700         (exchange): Remove forward decl; no longer needed.
33701         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
33702         Define with prototype.
33703         * lib/getopt1.c (const): Remove macro.
33704         (getopt_long, getopt_long_only, main): Define with prototype.
33705
33706         * lib/getugroups.c: Include <string.h> unconditionally.
33707
33708         * lib/getusershell.c: Include <stdlib.h> unconditionally.
33709         (getusershell, setusershell, endusershell, readname, main):
33710         Define with prototypes.
33711
33712         * lib/group-member.c: Include group-member.h first.
33713         Include <stdlib.h> unconditionally.
33714
33715         * lib/hard-locale.c: Include hard-locale.h first.
33716         Include <stdlib.h>, <string.h> unconditionally.
33717
33718         * lib/hash.c (free, malloc): Remove decls.
33719         Include <stdlib.h> unconditionally.
33720
33721         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
33722         (getenv): Do not declare.
33723
33724         * lib/idcache.c: Include <string.h> unconditionally.
33725
33726         * lib/long-options.c: Include long-options.h first, to test interface.
33727         Include <stdlib.h> unconditionally.
33728
33729         * lib/makepath.c: Include makepath.h first, to test interface.
33730         Include <stdlib.h> and <string.h> unconditionally.
33731
33732         * lib/linebuffer.c: Include <stdlib.h>.
33733         (free): Remove decl.
33734
33735         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
33736         stddef.h. rpl_malloc returns void *, not char *.
33737         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
33738         prototype.
33739
33740         * lib/md5.h: Include <limits.h> unconditionally.
33741         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
33742         (__P): Remove; all uses removed.
33743         * lib/md5.c: Include "md5.h" first.
33744         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
33745         md5_buffer, md5_process_bytes, md5_process_block):
33746         Define with prototypes.
33747         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
33748         * lib/sha.c: Include "sha.h" first.
33749         Include <stdlib.h>, <string.h> unconditionally.
33750
33751         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
33752         * lib/memcmp.c (__ptr_t): Likewise.
33753         * lib/memrchr.c (__ptr_t): Likewise.
33754         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
33755         Include <string.h> unconditionally.
33756         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
33757         * lib/memchr.c: Include <stdlib.h> unconditionally.
33758         * lib/memchr.c (LONG_MAX): Remove.
33759         * lib/memrchr.c (LONG_MAX): Likewise.
33760         * lib/memchr.c (__memchr): Define via a prototype.
33761         * lib/memrchr.c (__memrchr): Likewise.
33762         * lib/memcmp.c (__P): Remove, and remove all uses.
33763         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
33764         Remove forward decls; no longer needed.
33765         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
33766         Use types required by C89 in prototype.
33767
33768         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
33769         * lib/savedir.c: Likewise.
33770         * lib/mkdir.c (free): Remove decl.
33771         * lib/rmdir.c (rmdir): Define with a prototype.
33772         * lib/savedir.c: Include savedir.h first, to test interface.
33773
33774         * lib/mktime.c (STDC_HEADERS): Remove.
33775         Include <stdlib.h>, <string.h> unconditionally.
33776
33777         * lib/modechange.c: Include <stdlib.h> unconditionally.
33778         (malloc): Remove decl.
33779
33780         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
33781         (free): Remove decl.
33782
33783         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
33784         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
33785         (This type really should be intptr_t, but that's a C99ism.)
33786         (_obstack_memcpy): Remove: all uses changed to memcpy.
33787         Include <string.h> unconditionally.
33788         (struct obstack): Assume __STDC__ for types of members
33789         chunkfun, freefun, extra_arg.
33790         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
33791         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
33792         obstack_begin, obstack_specify_allocation,
33793         obstack_specify_allocation_with_arg, obstack_chunkfun,
33794         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
33795         Remove unprototyped decls and the macros that use them.
33796         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
33797         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
33798         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
33799         (defined __STDC__ && __STDC__)]:
33800         Remove nonprototyped code.
33801         Include <stdlib.h> unconditionally.
33802         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
33803         _obstack_allocated_p, _obstack_free, obstack_free,
33804         _obstack_memory_used, print_and_abort):
33805         Define using prototypes.
33806         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
33807         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
33808         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
33809         obstack_next_free, obstack_object_size, obstack_room) [0]:
33810         Remove unused, unprototyped code.
33811
33812         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
33813
33814         * lib/physmem.c (physmem_total, physmem_available, main): Define
33815         with prototypes.
33816
33817         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
33818         (main): Define with a prototype.
33819
33820         * lib/posixver.c (getenv): Remove decl.
33821
33822         * lib/putenv.c (malloc): Returns void *, not char *.
33823         Include <string.h> unconditionally.
33824         (strchr, memcpy, NULL): Do not define.
33825
33826         * lib/readtokens.c: Include readtokens.h first, to test interface.
33827         Include <stdlib.h>, <string.h> unconditionally.
33828         (init_tokenbuffer): Define with a prototype.
33829
33830         * lib/regex.c (PARAMS): Remove.  All uses removed.
33831         All uses of _RE_ARGS removed, too.
33832         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
33833         unconditionally.
33834         (bzero): Assume memset exists.
33835         (memcmp, memcpy, NULL): Remove.
33836         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
33837         char, or assignments to local vars of type signed char.
33838         (init_syntax_once, PREFIX(extract_number_and_incr),
33839         PREFIX(print_partial_compiled_pattern),
33840         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
33841         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
33842         PREFIX(regex_grow_registers), PREFIX(regex_compile),
33843         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
33844         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
33845         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
33846         wcs_compile_range, byte_compile_range, truncate_wchar,
33847         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
33848         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
33849         count_mbs_length, wcs_re_match_2_internal,
33850         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
33851         PREFIX(alt_match_null_string_p),
33852         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
33853         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
33854         regfree, PREFIX(extract_number)): Define with prototype.  Remove
33855         now-unnecessary declaration, if any.
33856         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
33857         regcomp, regexec):
33858         Remove now-unnecessary casts among pointer types.
33859         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
33860
33861         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
33862         (free): Remove decl.
33863
33864         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
33865
33866         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
33867         (free): Remove decl.
33868
33869         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
33870         * lib/xgetcwd.c: Likewise.
33871
33872         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
33873         (free): Remove decl.
33874
33875         * lib/strchrnul.c (strchrnul): Define with a prototype.
33876         Fix bug: c_in was not converted to char before searching.
33877
33878         The following changes are not K&R related:
33879
33880         * lib/group-member.h: Include <sys/types.h>, so that this file is
33881         self-contained.
33882         * lib/makepath.h: Likewise.
33883
33884         * lib/getusershell.c (readname, default_index, line_size, readname):
33885         Use size_t, not int, for sizes.
33886         (readname): If the size overflows, report an error instead of
33887         looping forever.
33888
33889 2003-09-09  Paul Eggert  <eggert@twinsun.com>
33890
33891         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
33892         libc.
33893
33894 2003-09-09  Paul Eggert  <eggert@twinsun.com>
33895
33896         * README: New section: portability guidelines.
33897
33898 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
33899
33900         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
33901         C89 spec.
33902
33903 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
33904
33905         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
33906
33907 2003-09-08  Paul Eggert  <eggert@twinsun.com>
33908
33909         Assume C89 or better; remove K&R cruft.
33910         A few of these changes were first proposed by Derek Robert Price
33911         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
33912
33913         * lib/addext.c: Include <string.h> unconditionally.
33914         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
33915         Don't declare getenv or malloc.
33916
33917         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
33918         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
33919         (NULL): Remove.
33920         (find_stack_direction, alloca): Use prototypes.
33921
33922         * lib/atexit.c (atexit): Define using a prototype.
33923
33924         * lib/basename.c, dirname.c, stripslash.c:
33925         Include <string.h> unconditionally.
33926
33927         * lib/bcopy.c: Include <stddef.h>.
33928         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
33929
33930         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
33931
33932         * lib/error.h (error, error_at_line, error_print_progname)
33933         [! (defined (__STDC__) && __STDC__)]: Remove decls.
33934         * lib/error.c: Include error.h first, to check interface.
33935         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
33936         (VA_START): Remove; all uses changeed to va_start.
33937         (exit, strerror): Remove decls.
33938         (error_print_progname): Prototype uncondionally.
33939         Don't include <errno.h>; no longer needed.
33940         (private_strerror): Remove.
33941         (error_tail): Always define.
33942         (error, error_at_line): Assume C89 or better; always use prototypes.
33943         * lib/fatal.c: Include "fatal.h" first, to test interface.
33944         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
33945         (VA_START): Remove; all uses changed to va_start.
33946         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
33947         this case.
33948         (exit): Remove decl.
33949         (fatal): Prototype unconditionally.  Assume va_start works.
33950         Abort at end, to pacify gcc.
33951
33952         * lib/euidaccess.c (main): Define with a prototype.
33953
33954         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
33955
33956         * lib/exitfail.c: Include <stdlib.h> unconditionally.
33957
33958         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
33959         prototypes.
33960         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
33961         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
33962         (getenv): Remove decl.
33963         (fnmatch): Define using a prototype.
33964         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
33965         (FCT): Define using a prototype.
33966
33967         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
33968
33969         * lib/gethostname.c: Include <stddef.h>.
33970         (gethostname): Define with prototype.  Length is size_t, not int.
33971
33972 2003-09-08  Paul Eggert  <eggert@twinsun.com>
33973
33974         Assume C89 or better; remove K&R cruft.
33975         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
33976         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
33977         string.h, getenv, malloc.
33978         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
33979         headers.
33980         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
33981         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
33982         do not check for strerror.
33983         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
33984         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
33985         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
33986         do not check for doprnt or vprintf.
33987         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
33988         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
33989
33990 2003-09-08  Paul Eggert  <eggert@twinsun.com>
33991
33992         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
33993         getversion.c should have been removed then, but was accidentally
33994         preserved.
33995
33996         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
33997         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
33998
33999 2003-09-08  Karl Berry  <karl@gnu.org>
34000
34001         * config/config.sub, config.guess, srclistvars.sh: update from savannah
34002                 config, forget about prep.
34003
34004         * config/depcomp, missing: update from automake.
34005
34006 2003-09-07  Paul Eggert  <eggert@twinsun.com>
34007
34008         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
34009         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
34010
34011 2003-09-07  Paul Eggert  <eggert@twinsun.com>
34012
34013         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
34014         copy_tm_result.  Bug reported by Simon Josefsson in
34015         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
34016
34017 2003-09-06  Paul Eggert  <eggert@twinsun.com>
34018
34019         * m4/time_r.m4: New file.
34020         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
34021         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
34022         is. Check for timegm declaration.
34023         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
34024         Do not check for gmtime_r.
34025         Replace mktime if __mktime_internal does not exist and if mktime
34026         hasn't been replaced already.
34027
34028 2003-09-06  Paul Eggert  <eggert@twinsun.com>
34029
34030         * lib/time_r.c, lib/time_r.h: New files.
34031
34032         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
34033         __localtime_r.
34034         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
34035         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
34036
34037         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
34038         __gmtime_r.
34039         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
34040         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
34041         Include <time_r.h>.
34042
34043         * lib/timegm.c: Switch to glibc implementation, with the following
34044         changes:
34045         [defined HAVE_CONFIG_H]: Include <config.h>.
34046         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
34047         (__mktime_internal) [!defined _LIBC]: New decl.
34048         (__gmtime_r) [!defined _LIBC]: New macro and function.
34049         (timegm): Use a prototype, since gnulib assumes C89.
34050         Do not bother declaring tmp to be const, as it's not really usefu.
34051         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
34052         (timegm): Declare only if HAVE_DECL_TIMEGM.
34053
34054 2003-09-06  Paul Eggert  <eggert@twinsun.com>
34055
34056         * MODULES.html.sh (func_all_modules): Add time_r.
34057         * modules/time_r: New file.
34058         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
34059         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
34060
34061 2003-09-03  Paul Eggert  <eggert@twinsun.com>
34062
34063         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
34064         Bug reported by Lute Kamstra in
34065         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
34066
34067         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
34068         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
34069         course with correspondingly smaller numbers for tomorrow and
34070         yesterday.  From Tadayoshi Funaba.  Originally installed into
34071         sh-utils on 1999-08-07, but the patch got lost (I guess during the
34072         coreutils merge?).
34073
34074 2003-08-31  Simon Josefsson  <jas@extundo.com>
34075
34076         * modules/timegm: New file.
34077         * MODULES.html.sh (func_all_modules): Add timegm.
34078
34079 2003-08-31  Simon Josefsson  <jas@extundo.com>
34080
34081         * m4/timegm.m4: New file.
34082
34083 2003-08-31  Simon Josefsson  <jas@extundo.com>
34084
34085         * lib/timegm.h: New file.
34086         * lib/timegm.c: New file.  Based on
34087         wget-1.8.2/src/http.c:mktime_from_utc.
34088
34089 2003-08-31  Karl Berry  <karl@gnu.org>
34090
34091         * lib/argp.h: update from libc.
34092
34093 2003-08-28  Bruno Haible  <bruno@clisp.org>
34094
34095         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
34096         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
34097         followed by '#define fnmatch fnmatch_posix' gives an error.
34098
34099 2003-08-28  Bruno Haible  <bruno@clisp.org>
34100
34101         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
34102         warning on QNX, which defines O_BINARY to 000000.
34103
34104 2003-08-27  Jim Meyering  <jim@meyering.net>
34105
34106         * m4/mkstemp.m4: Require that the system mkstemp be able to create
34107         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
34108         would fail after 32.  Reported by Danny Levinson.  Details here:
34109         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
34110
34111 2003-08-24  Bruno Haible  <bruno@clisp.org>
34112
34113         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
34114         MSVC7 <stdio.h> is included later.
34115
34116 2003-08-22  Simon Josefsson  <jas@extundo.com>
34117
34118         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
34119
34120 2003-08-20  Karl Berry  <karl@gnu.org>
34121
34122         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
34123
34124 2003-08-20  Bruno Haible  <bruno@clisp.org>
34125
34126         * modules/progname: New file.
34127         * MODULES.html.sh (func_all_modules): Add progname.
34128
34129 2003-08-20  Bruno Haible  <bruno@clisp.org>
34130
34131         * lib/progname.h: New file, from GNU gettext.
34132         * lib/progname.c: New file, from GNU gettext.
34133         * lib/progreloc.c: New file, from GNU gettext.
34134
34135 2003-08-19  Jim Meyering  <jim@meyering.net>
34136
34137         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
34138         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
34139
34140 2003-08-19  Bruno Haible  <bruno@clisp.org>
34141
34142         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
34143         more.
34144
34145 2003-08-19  Bruno Haible  <bruno@clisp.org>
34146
34147         * lib/xstrdup.c: Assume <string.h> exists.
34148
34149 2003-08-18  Paul Eggert  <eggert@twinsun.com>
34150
34151         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
34152         in makefile rules.
34153
34154 2003-08-18  Jim Meyering  <jim@meyering.net>
34155
34156         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
34157         * m4/lib-ld.m4: Likewise.
34158
34159 2003-08-18  Jim Meyering  <jim@meyering.net>
34160
34161         * lib/setenv.h: Indent nested cpp directive.
34162         * lib/vasnprintf.c: Remove trailing blanks.
34163
34164 2003-08-17  Simon Josefsson  <jas@extundo.com>
34165
34166         * modules/xstrndup: New file.
34167         * MODULES.html.sh (func_all_modules): Add xstrndup.
34168
34169 2003-08-17  Simon Josefsson  <jas@extundo.com>
34170
34171         * modules/argp: Fix autoconf macro name. Add more dependencies.
34172
34173 2003-08-17  Simon Josefsson  <jas@extundo.com>
34174
34175         * m4/xstrndup.m4: New file.
34176
34177 2003-08-17  Simon Josefsson  <jas@extundo.com>
34178
34179         * m4/argp.m4: New file.
34180
34181 2003-08-17  Simon Josefsson  <jas@extundo.com>
34182             Bruno Haible  <bruno@clisp.org>
34183
34184         * lib/xstrndup.h: New file.
34185         * lib/xstrndup.c: New file.
34186
34187 2003-08-17  Bruno Haible  <bruno@clisp.org>
34188
34189         * modules/strndup (Files, Include): Add lib/strndup.h.
34190
34191 2003-08-17  Bruno Haible  <bruno@clisp.org>
34192
34193         * modules/euidaccess (Files): Add lib/euidaccess.h.
34194
34195 2003-08-17  Bruno Haible  <bruno@clisp.org>
34196
34197         * lib/strndup.h: New file.
34198
34199 2003-08-17  Bruno Haible  <bruno@clisp.org>
34200
34201         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
34202         like AC_GNU_SOURCE.
34203         * modules/extensions (configure.ac): Comment out the invocation of
34204         gl_USE_SYSTEM_EXTENSIONS.
34205
34206 2003-08-16  Paul Eggert  <eggert@twinsun.com>
34207
34208         Merges from coreutils, etc.
34209         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
34210         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
34211         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
34212         fixing a typo.
34213         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
34214         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
34215
34216 2003-08-16  Paul Eggert  <eggert@twinsun.com>
34217
34218         Document merge from coreutils.
34219         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
34220         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
34221         * modules/utime: Add m4/utimes-null.m4.
34222
34223 2003-08-16  Paul Eggert  <eggert@twinsun.com>
34224
34225         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
34226         space, undoing this 2003-08-12 change:
34227         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
34228
34229 2003-08-16  Paul Eggert  <eggert@twinsun.com>
34230
34231         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
34232         strtoul.c from libc, undoing this 2003-08-12 change:
34233         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
34234
34235 2003-08-16  Jim Meyering  <jim@meyering.net>
34236
34237         Merges from coreutils.
34238         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
34239         prefix.  Adjust cache variables similarly.  Create 500 rather than
34240         just 300 files, to exercise bug on Darwin6.5, too.
34241         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
34242         $missing_dir.
34243         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
34244         AM_SYS_POSIX_TERMIOS.
34245         Reported by mkc@mathdogs.com.
34246         Also change use of $am_cv_sys_posix_termios
34247         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
34248         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
34249         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
34250         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
34251         in /proc/mounts until it finds one with matching device number.  This
34252         is unnecessary when the FILE argument *is* a mount point.  No stat call
34253         is necessary in that case.  So, disable the statvfs-testing code on
34254         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
34255         as RedHat bug# 84846.
34256         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
34257         to 1MB, so as not to render systems with no stack size limit (e.g.,
34258         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
34259         Include <unistd.h>.  On some systems,
34260         it is required for the definition of _SC_PAGESIZE.
34261
34262 2003-08-16  Jim Meyering  <jim@meyering.net>
34263
34264         Merge from coreutils.
34265         * lib/xstrtoimax.c: #else #if -> #elif.
34266         * lib/xstrtoumax.c: Likewise.
34267
34268 2003-08-16  Jim Meyering  <jim@meyering.net>
34269
34270         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
34271         * m4/utimes.m4: Removed.
34272         * m4/utimes-null.m4: Renamed from utimes.m4.
34273
34274         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
34275         to 1MB, so as not to render systems with no stack size limit (e.g.,
34276         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
34277         Include <unistd.h>.  On some systems,
34278         it is required for the definition of _SC_PAGESIZE.
34279
34280 2003-08-16  Jim Meyering  <jim@meyering.net>
34281         and Paul Eggert  <eggert@cs.ucla.edu>
34282
34283         Merges from coreutils, etc.
34284
34285         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
34286         using the latest version from cvs.  This avoids problems with #line
34287         directives using a vendor (Sun) compiler.
34288         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
34289         Don't set GETGROUPS_LIB here; now it's
34290         done via getgroups.m4's wrapper function.
34291         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
34292         rather than just in sh-util/configure.in, so that the
34293         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
34294         same.
34295         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
34296         AC_FUNC_GETLOADAVG where to find getloadavg.c.
34297         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
34298         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
34299         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
34300         Remove code that is now done by the newly-required macros.
34301         Append $(EXEEXT) to DF_PROG.
34302         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
34303         Do not invoke or require the following here,
34304         since prereq.m4 or some gnulib .m4 now does this for us:
34305         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
34306         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
34307         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
34308         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
34309         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
34310         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
34311         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
34312         AC_FUNC_OBSTACK.
34313         Do not replace the following functions, as this is now the job
34314         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
34315         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
34316         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
34317         atexit getpass, strdup, getpagesize.
34318         Replace 'raise'.
34319         Do not check for the following functions, as this is now the job
34320         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
34321         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
34322         setregid.
34323         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
34324         Check for sys/sysctl.h.
34325         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
34326         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
34327         of checking for ssize_t ourselves.
34328
34329         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
34330         Require every macro that gnulib/modules/* suggests for us.
34331         (jm_PREREQ_ADDEXT): New macro.
34332         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
34333         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
34334
34335         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
34336         (gl_PHYSMEM): Use it.
34337         Also check for `table' function.
34338         Check for new headers and functions.
34339         Add check for sys/sysmp.h.
34340         With suggestions from Kaveh Ghazi.
34341         Ignore headers that are present but cannot be compiled.  This
34342         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
34343         C 5.4.
34344
34345 2003-08-15  Paul Eggert  <eggert@twinsun.com>
34346
34347         Document merge from coreutils.
34348         * modules/userspec: Depend on posixver.
34349         * modules/strftime: Depend on tzset.
34350
34351 2003-08-15  Paul Eggert  <eggert@twinsun.com>
34352
34353         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
34354         rather than tab, after '#' in shell-script copyright notices.
34355         Suggested by Bruno Haible.
34356
34357 2003-08-15  Paul Eggert  <eggert@twinsun.com>
34358
34359         * config/srclist-update: Use three spaces, rather than tab, after '#'
34360         in shell-script copyright notices.  Suggested by Bruno Haible.
34361         Remove unnecessary parenthesization in regular expression.
34362
34363 2003-08-15  Jim Meyering  <jim@meyering.net>
34364
34365         Merge from coreutils.
34366         * lib/xgethostname.c: Include <stdlib.h>.
34367         (xghostname): Don't exit for anything other than memory-related
34368         failure; just return NULL.
34369         * lib/userspec.c: Include "posixver.h".
34370         (parse_user_spec): Accept `.' as a separator only
34371         in pre-POSIX-200112 mode.
34372         * lib/strtoimax.c: Use #elif rather than #else #if.
34373         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
34374         Remove function, now that we can rely on a working tzset function.
34375         [!_LIBC]: Ensure that the required autoconf test has been run.
34376         [!defined _NL_CURRENT && HAVE_STRFTIME]:
34377         Use underlying_strftime for %r.
34378         * lib/sha.c: Merge in some clean-up and optimization changes from
34379         glibc.
34380         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
34381         Ensure that it is a multiple of 64.
34382         Rearrange loop exit tests so as to avoid performing an
34383         additional fread after encountering an error or EOF.
34384         * lib/realloc.c: Update copyright date.
34385
34386 2003-08-15  Jim Meyering  <jim@meyering.net>
34387         and Paul Eggert  <eggert@twinsun.com>
34388
34389         Merge from coreutils.
34390         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
34391         member but strut utmpx does not.  Needed for AIX 4.3.3.
34392         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
34393
34394 2003-08-15  Jim Meyering  <jim@meyering.net>
34395         and Paul Eggert  <eggert@cs.ucla.edu>
34396
34397         Merges from coreutils, etc.
34398         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
34399         Require gl_FUNC_TZSET_CLOBBER.
34400         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
34401         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
34402         members.
34403
34404 2003-08-14  Paul Eggert  <eggert@twinsun.com>
34405
34406         Help the merge from coreutils.
34407         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
34408         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
34409         * m4/tzset.m4: Use it too.
34410
34411 2003-08-14  Paul Eggert  <eggert@twinsun.com>
34412
34413         * modules/tzset: New file.
34414
34415 2003-08-14  Jim Meyering  <jim@meyering.net>
34416
34417         Merges from coreutils.
34418         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
34419         variable names, rather than @FNMATCH_H@.
34420         * modules/alloca: Likewise for $(ALLOCA_H).
34421
34422         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
34423         the three copies of the literal target, `fnmatch.h'.
34424         * modules/alloca (alloca.h): Likewise.
34425
34426 2003-08-14  Jim Meyering  <jim@meyering.net>
34427
34428         Merge from coreutils.
34429         * m4/tzset.m4: New file.
34430         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
34431         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
34432         otherwise, AIX 5.1 systems would end up using the latter.
34433         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
34434         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
34435         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
34436         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
34437
34438 2003-08-14  Jim Meyering  <jim@meyering.net>
34439
34440         Merge from coreutils.
34441         * lib/obstack.h: Whitespace changes.
34442         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
34443         and xcalloc return values.
34444         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
34445         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
34446         hang on OSF/1 5.1 for DIR on both local and remote file systems.
34447         Reported by (and fix confirmed by) Nelson H. F. Beebe.
34448         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
34449         error from mntctl.
34450         Use mntctl's return value to drive the entry-processing loop, since
34451         we can't rely on the value of the vmt_length member in the last
34452         entry.  On some systems doing so could result in exhausting
34453         virtual memory.  Based in part on a patch from Mike Jetzer.
34454
34455 2003-08-14  Jim Meyering  <jim@meyering.net>
34456         and Paul Eggert  <eggert@twinsun.com>
34457
34458         Merges from coreutils, plus other fixes.
34459         * lib/physmem.c: Merge in portability changes from gcc/libiberty
34460         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
34461         for credits and details.  Thanks to Kaveh Ghazi for helping
34462         to keep these files in sync.
34463         (ARRAY_SIZE): Define it.
34464         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
34465         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
34466         (memcasecmp): Don't assume size_t fits in unsigned int.
34467         Remove casts and duplicate code.
34468         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
34469         (memcpy): Remove definition.
34470         Merge in some clean-up and optimization changes from glibc.
34471         [BLOCKSIZE]: Move definition to top of file.
34472         Ensure that it is a multiple of 64.
34473         Rearrange loop exit tests so as to avoid performing an
34474         additional fread after encountering an error or EOF.
34475         * lib/md5.h (md5_uintptr): Define.
34476         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
34477         return to the initial working directory.  Preserve errno
34478         for caller.
34479         * lib/idcache.c: Include "xalloc.h".
34480         (xmalloc, xrealloc): Remove decls.
34481         (getuser): Remove casts no longer required in C89.
34482         * lib/human.c: Include stdio.h, for sprintf.
34483         * lib/group-member.c: Include "xalloc.h".
34484         (xmalloc, xrealloc): Remove decls.
34485         (get_group_info): Remove casts no longer required in C89.
34486         * lib/getusershell.c (readname): Remove casts no longer required in
34487         C89.
34488         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
34489         * lib/getline.c: Whitespace fix, from coreutils.
34490
34491 2003-08-13  Paul Eggert  <eggert@twinsun.com>
34492
34493         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
34494         Check for isascii.
34495
34496         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
34497         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
34498         Undo previous (whitespace-only) change.
34499
34500 2003-08-13  Paul Eggert  <eggert@twinsun.com>
34501
34502         * lib/exclude.c: Include <ctype.h>
34503         (IN_CTYPE_DOMAIN): New macro.
34504         (is_space): New fn.
34505         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
34506         and empty lines.
34507
34508         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
34509         Undo previous (whitespace-only) change.
34510
34511 2003-08-13  Paul Eggert  <eggert@twinsun.com>
34512
34513         * config/srclist-update: Change update back to the old behavior,
34514         leaving whitespace alone.  Use one 'sed' command rather than a
34515         pipeline.
34516         (fixlicense): Now a variable, not a function.
34517         (remove_trailing_blanks): Remove.
34518         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
34519         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
34520         Undo previous (whitespace-only) change.
34521
34522 2003-08-12  Paul Eggert  <eggert@twinsun.com>
34523
34524         Merge from coreutils.
34525         * modules/euidaccess: Add lib_SOURCES, include for new
34526         file euidaccess.h
34527
34528 2003-08-12  Paul Eggert  <eggert@twinsun.com>
34529
34530         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
34531         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
34532         Normalize leading white space and remove trailing white space.
34533
34534         Merge from coreutils
34535         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
34536
34537         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
34538         0.12.1.  These files are now being upgraded automatically by
34539         ../config/srclist-update.
34540
34541 2003-08-12  Paul Eggert  <eggert@twinsun.com>
34542
34543         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
34544         Normalize leading white space and remove trailing white space.
34545         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
34546         notice, as per ../config/srclist-update.
34547
34548         Merge from coreutils.
34549         * lib/euidaccess.h: New file.
34550         * lib/euidaccess.c: Include it.
34551         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
34552         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
34553         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
34554
34555 2003-08-12  Paul Eggert  <eggert@twinsun.com>
34556
34557         * config/srclist-update: Add copyright notice.
34558         (remove_id_lines, remove_trailing_blanks): New constants.
34559         (fixfile): Use them to normalize spacing a bit in copied files.
34560         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
34561         Normalize leading white space and remove trailing white space.
34562
34563         * config/texinfo.tex: Sync with texinfo.
34564
34565         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
34566         strtoul.c from libc, to merge coreutils whitespace changes.
34567
34568         * config/srclist.txt: Get the following m4 files from gettext:
34569         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
34570         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
34571         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
34572         wint_t.m4.
34573
34574 2003-08-12  Karl Berry  <karl@gnu.org>
34575
34576         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
34577         been made.
34578
34579 2003-08-11  Paul Eggert  <eggert@twinsun.com>
34580
34581         * modules/gnu-source, m4/gnu-source.m4:
34582         Remove; we're assuming Autoconf 2.54 or later now.
34583         Suggested by Bruno Haible.
34584         * MODULES.html.sh (func_all_modules): Remove gnu-source.
34585
34586 2003-08-11  Bruno Haible  <bruno@clisp.org>
34587
34588         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
34589
34590 2003-08-11  Bruno Haible  <bruno@clisp.org>
34591
34592         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
34593         (vasnprintf): Use it instead of wcslen.
34594
34595 2003-08-11  Bruno Haible  <bruno@clisp.org>
34596
34597         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
34598         value to ensure that _Bool promotes to int. Use #define for _Bool when
34599         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
34600
34601 2003-08-10  Karl Berry  <karl@gnu.org>
34602
34603         * lib/regex.h: update from libc (whitespace fix).
34604
34605 2003-08-09  Paul Eggert  <eggert@twinsun.com>
34606
34607         Merge some files from coreutils.  These changes were
34608         originally made by Jim Meyering.
34609         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
34610         many older Unixes require this.
34611         * lib/alloca.c (alloca): Remove cast to argument of free;
34612         no longer needed in C89.
34613         * lib/alloca_.h, regex.h: Fix white space to match
34614         what GNU indent does.
34615
34616 2003-08-09  Paul Eggert  <eggert@twinsun.com>
34617
34618         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
34619         apparently Emacs's Unicode mode got confused before my 2003-08-05
34620         checkin.
34621
34622 2003-08-08  Paul Eggert  <eggert@twinsun.com>
34623
34624         * m4/extensions.m4: New file.
34625         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
34626         Require gl_USE_SYSTEM_EXTENSIONS.
34627         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
34628         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
34629
34630 2003-08-08  Paul Eggert  <eggert@twinsun.com>
34631
34632         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
34633         * modules/extensions, modules/gnu-source: New files.
34634         * modules/timespec, modules/unlocked-io: Depend on extensions.
34635
34636 2003-08-07  Paul Eggert  <eggert@twinsun.com>
34637
34638         * modules/restrict: New file.
34639         * MODULES.html.sh (func_all_modules): Add restrict.
34640         * modules/regex: Depend on restrict.
34641
34642 2003-08-07  Paul Eggert  <eggert@twinsun.com>
34643
34644         * m4/restrict.m4: New file.
34645         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
34646
34647 2003-08-07  Bruno Haible  <bruno@clisp.org>
34648
34649         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
34650         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
34651
34652 2003-08-07  Bruno Haible  <bruno@clisp.org>
34653
34654         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
34655         makes the module 'getndelim2' compatible with the module 'getline'.
34656
34657 2003-08-05  Paul Eggert  <eggert@twinsun.com>
34658
34659         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
34660         byte with "\201" to avoid glitches when editing that source file
34661         with multi-gnome-terminal.
34662
34663 2003-08-05  Paul Eggert  <eggert@twinsun.com>
34664
34665         * lib/bumpalloc.h: Remove.
34666
34667 2003-08-05  Paul Eggert  <eggert@twinsun.com>
34668
34669         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
34670         * modules/bumpalloc: Remove.
34671
34672 2003-08-04  Paul Eggert  <eggert@twinsun.com>
34673
34674         * lib/getloadavg.c: Change copyright notice and spacing to conform to
34675         GNU coding style.
34676
34677         Merge from coreutils.
34678         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
34679         1. From glibc.
34680         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
34681         from Karl Berry, implemented by Jim Meyering.
34682         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
34683         from Dmitry V. Levin.
34684         Remove anachronistic cast of xrealloc.
34685         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
34686         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
34687         type. Otherwise, it wouldn't compile with at least /bin/cc on
34688         ymp-cray-unicos9.0.2.X.
34689         Combine two mostly-identical uses of alloca into one.
34690         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
34691
34692 2003-08-04  Dave Love  <d.love@dl.ac.uk>
34693
34694         [From Emacs.]
34695
34696         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
34697         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
34698         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
34699         obsolete NLIST_NAME_UNION.
34700         [__GNU__]: Undef BSD and FSCALE.
34701         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
34702
34703 2003-08-03  Paul Eggert  <eggert@twinsun.com>
34704
34705         * lib/stdbool_.h (_Bool): Make it signed char, instead of
34706         an enum type, so that it's guaranteed to promote to int.  See:
34707         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
34708
34709 2003-08-03  Karl Berry  <karl@gnu.org>
34710
34711         * config/depcomp: update from automake.
34712
34713 2003-07-31  Paul Eggert  <eggert@twinsun.com>
34714
34715         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
34716         (strerror): Don't assume that a printable int fits in 14 bytes.
34717
34718 2003-07-31  Bruno Haible  <bruno@clisp.org>
34719
34720         * modules/getpass-gnu: New file.
34721         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
34722
34723 2003-07-31  Bruno Haible  <bruno@clisp.org>
34724
34725         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
34726
34727 2003-07-24  Karl Berry  <karl@gnu.org>
34728
34729         * config/missing: update from automake.
34730
34731 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
34732             Bruno Haible  <bruno@clisp.org>
34733
34734         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
34735         * lib/getline.c (getline, getdelim): Likewise.
34736         Remove _GNU_SOURCE define; now it's defined in config.h through
34737         m4/getline.m4.
34738
34739 2003-07-23  Karl Berry  <karl@gnu.org>
34740
34741         * config/config.sub: update from prep.
34742
34743 2003-07-22  Paul Eggert  <eggert@twinsun.com>
34744
34745         * modules/xalloc (Depends-on): Add exitfail.
34746         * modules/xmemcoll: Likewise.
34747
34748 2003-07-22  Paul Eggert  <eggert@twinsun.com>
34749
34750         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
34751         over-parenthesization in macros.
34752
34753         Sync with coreutils.
34754
34755         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
34756         required by C99.
34757
34758         Use `exit_failure' for xalloc and xmemcoll instead of their own
34759         private exit-failure variables.
34760         * lib/xalloc.h (xalloc_exit_failure): Remove.
34761         * lib/xmalloc.c: Likewise.  Include exitfail.h.
34762         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
34763         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
34764         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
34765         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
34766
34767 2003-07-20  Jim Meyering  <jim@meyering.net>
34768
34769         * modules/closeout (Depends-on): Add exitfail.
34770         Suggestion from Bruno Haible.
34771
34772 2003-07-19  Karl Berry  <karl@gnu.org>
34773
34774         * config/config.sub: update from prep.
34775
34776 2003-07-18  Paul Eggert  <eggert@twinsun.com>
34777
34778         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
34779         Remove.
34780         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
34781         to test that it can stand by itself.  Include "exitfail.h".
34782         Clients should set exit_failure instead.
34783         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
34784
34785 2003-07-18  Bruno Haible  <bruno@clisp.org>
34786
34787         * modules/getndelim2: New file.
34788         * modules/getline: Share files with module getndelim2.
34789         * modules/getnline: Depend on getndelim2 instead of sharing files with
34790         it. Add getnline.c to lib_SOURCES.
34791         * MODULES.html.sh (func_all_modules): Add getndelim2.
34792
34793 2003-07-18  Bruno Haible  <bruno@clisp.org>
34794
34795         * m4/getndelim2.m4: New file.
34796         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
34797         invoke gl_PREREQ_GETNDELIM2.
34798         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
34799         gl_PREREQ_GETNDELIM2.
34800         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
34801         gl_GETNDELIM2.
34802
34803 2003-07-18  Bruno Haible  <bruno@clisp.org>
34804
34805         * lib/getndelim2.h: New file.
34806         * lib/getndelim2.c: Make into a module of its own. Include config.h,
34807         getndelim2.h.
34808         (getndelim2): Make non-static. Change return type to ssize_t.
34809         * lib/getline.h: Change argument names.
34810         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
34811         * lib/getnline.c: Include getndelim2.h.
34812
34813 2003-07-18  Andreas Schwab  <schwab@suse.de>
34814
34815         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
34816
34817 2003-07-17  Karl Berry  <karl@gnu.org>
34818
34819         * config/config.sub: update from prep.
34820
34821 2003-07-17  Bruno Haible  <bruno@clisp.org>
34822
34823         * modules/getnline: New file.
34824         * modules/getline: Add lib/getndelim2.c to source file list.
34825         * MODULES.html.sh (func_all_modules): Add getnline.
34826
34827 2003-07-17  Bruno Haible  <bruno@clisp.org>
34828
34829         * m4/getnline.m4: New file.
34830
34831 2003-07-17  Bruno Haible  <bruno@clisp.org>
34832
34833         * m4/Makefile.am.in: Remove file.
34834         * m4/Makefile.am: Remove file.
34835         * m4/Makefile.in: Remove file.
34836
34837 2003-07-17  Bruno Haible  <bruno@clisp.org>
34838
34839         * lib/getnline.h: New file.
34840         * lib/getnline.c: New file.
34841         * lib/getndelim2.c: New file, extracted from getline.c.
34842         (getndelim2): Renamed from getdelim2, with added nmax argument.
34843         * lib/getline.c: Include getndelim2.c.
34844         (getdelim2): Moved out to getndelim2.c.
34845         (getline, getdelim): Update.
34846
34847 2003-07-17  Bruno Haible  <bruno@clisp.org>
34848
34849         * lib/Makefile.am: Remove file.
34850         * lib/Makefile.in: Remove file.
34851
34852 2003-07-17  Bruno Haible  <bruno@clisp.org>
34853
34854         * configure.in: Remove file.
34855         * Makefile.in: Remove file.
34856
34857 2003-07-17  Bruno Haible  <bruno@clisp.org>
34858
34859         * MODULES.html.sh: Put the </BODY> right before </HTML>.
34860
34861 2003-07-16  Karl Berry  <karl@gnu.org>
34862
34863         * config/srclist-update: was running fixlicense twice, which caused
34864                 texinfo.tex to be nullified for some reason.  Simplify,
34865                 $gplsrc is no longer needed as far as I can see?
34866
34867 2003-07-16  Jim Meyering  <jim@meyering.net>
34868
34869         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
34870
34871 2003-07-15  Paul Eggert  <eggert@twinsun.com>
34872
34873         * config/srclist.txt: Get the following files from gettext-runtime/intl
34874         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
34875         ref-del.sin.  From Bruno Haible.
34876         * config/srclist-update (fixfile): Change grep pattern again, since the
34877         previous fix didn't work (there was another trailing $).  Use
34878         '[$]' to escape the $s.
34879
34880 2003-07-15  Karl Berry  <karl@gnu.org>
34881
34882         * lib/vasnprintf.c: update from gettext.
34883
34884 2003-07-15  Karl Berry  <karl@gnu.org>
34885
34886         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
34887         gets expanded when surrounded by '$'.
34888
34889 2003-07-15  Jim Meyering  <jim@meyering.net>
34890
34891         * modules/save-cwd: Don't depend on error.  From Derek Price.
34892
34893 2003-07-15  Jim Meyering  <jim@meyering.net>
34894
34895         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
34896
34897 2003-07-14  Simon Josefsson  <jas@extundo.com>
34898
34899         * modules/mempcpy: New file.
34900         * MODULES.html.sh (func_all_modules): Add mempcpy.
34901
34902 2003-07-14  Simon Josefsson  <jas@extundo.com>
34903
34904         * m4/mempcpy.m4: New file.
34905
34906 2003-07-14  Simon Josefsson  <jas@extundo.com>
34907
34908         * lib/mempcpy.h: New file.
34909         * lib/mempcpy.c: New file.
34910
34911 2003-07-14  Paul Eggert  <eggert@twinsun.com>
34912
34913         * modules/getdate, modules/posixtm: Depend on mktime.
34914
34915 2003-07-14  Paul Eggert  <eggert@twinsun.com>
34916
34917         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
34918         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
34919         unicodeio.c, unicodeio.h, unlocked-io.h:
34920         Switch from LGPL to GPL.
34921
34922 2003-07-14  Paul Eggert  <eggert@twinsun.com>
34923
34924         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
34925         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
34926         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
34927         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
34928         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
34929         updated automatically by ../config/srclist-update.  This changes
34930         their license from LPGL to GPL.
34931
34932 2003-07-14  Paul Eggert  <eggert@twinsun.com>
34933
34934         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
34935         assumed to refer to the root of the most recent stable gettext version.
34936         * config/srclistvars.sh: Add defaults for eggert.
34937         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
34938         Match "This program" as well as "The program".  This is needed
34939         for gettext.
34940
34941 2003-07-14  Jim Meyering  <jim@meyering.net>
34942
34943         Don't emit diagnostics.  Let callers do that.
34944         * lib/save-cwd.c: Don't include "error.h".
34945         (save_cwd): Don't call error.  Ensure that errno is valid
34946         when returning nonzero.
34947
34948         * lib/save-cwd.h (restore_cwd): Update prototype.
34949         * lib/save-cwd.c (restore_cwd): Remove two parameters.
34950         Simplify.  Don't call error upon failure.  Let callers do that.
34951         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
34952         when auditing is enabled.  But don't bother updating the #if.
34953
34954 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
34955
34956         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
34957         it breaks C++ compilation.
34958         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
34959
34960 2003-07-10  Simon Josefsson  <jas@extundo.com>
34961
34962         * modules/strchrnul (Makefile.am): Add strchrnul.h.
34963
34964 2003-07-10  Jim Meyering  <jim@meyering.net>
34965
34966         * m4/clock_time.m4: Remove trailing blank.
34967         * m4/intmax_t.m4: Likewise.
34968
34969 2003-07-10  Jim Meyering  <jim@meyering.net>
34970
34971         * lib/vasnprintf.c: Remove trailing blanks.
34972         Make cpp indentation consistent.
34973
34974 2003-07-09  Paul Eggert  <eggert@twinsun.com>
34975
34976         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
34977         posixver.c, strftime.c, strnlen.c, strverscmp.c:
34978         Switch from LGPL to GPL.
34979
34980 2003-07-09  Paul Eggert  <eggert@twinsun.com>
34981
34982         * config/srclist.txt: Sort sublists.  Add
34983         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
34984         that differ from gnulib for one reason or another; we'd like this list
34985         to be smaller but for now let's document what we have.
34986
34987 2003-07-08  Paul Eggert  <eggert@twinsun.com>
34988
34989         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
34990         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
34991         and sweeter "eval x=$x".
34992         * config/srclist.txt: Get lib/argp* from glibc.
34993
34994 2003-07-07  Paul Eggert  <eggert@twinsun.com>
34995
34996         * lib/mktime.c: Fix some boundary cases and remove need for floating
34997         point.
34998
34999         Issue a compile-time diagnostic if time_t is floating point, or if
35000         two's complement arithmetic is not in effect, or if arithmetic
35001         right shift does not propagate the sign.  These assumptions were
35002         all in the original code but they weren't checked.
35003
35004         (TIME_T_MIDPOINT, verify): New macros.
35005         (__isleap): Remove; it has integer overflow problems.
35006         (leapyear): New function, without those problems.
35007         (ydhms_tm_diff): Remove; splitting into two parts.
35008         (ydhms_diff): New function, containing the arithmetic part of
35009         the old ydhms_tm_diff function.  Issue a compile-time
35010         diagnostic if we are not using C99 integer division.
35011         Avoid casts when possible.
35012         (guess_time_tm): New function, containing the checking part of
35013         the old ydhms_tm_diff function.  Return the new value, rather than
35014         the difference between it and the old.  Accept a new argument T
35015         so that *T specifies the old value.  Check for overflow in the result.
35016
35017         (__mktime_internal): Use a time_t offset, not a long int offset.
35018         This undoes the 2003-06-04 change, which is no longer needed now
35019         that we have better overflow checking.
35020         (localtime_offset): Likewise.
35021
35022         (__mktime_internal): Avoid harmful overflow on hosts where time_t
35023         and long are 64-bit but int is only 32-bit.
35024         (ydhms_diff): Use long int to store year1 and yday1.
35025         Issue a compile-time diagnostic if long int is not wide enough.
35026
35027         (__mktime_internal): Use long int to store adjusted year and yday.
35028         Use plain C rather than preprocessor commands, if that doesn't
35029         affect efficiency.
35030         Check for overflow (and try to repair) after each probe
35031         rather than checking only at the very end.  This avoids some bugs
35032         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
35033         does not equal GMT offset at maximum time).
35034         Use integer to check for overflow rather than floating point; this
35035         is more portable to non-IEEE hosts, and is a tad faster.
35036         When we detect that we are oscillating between two values,
35037         don't check whether tm_isdst has the requested value, since
35038         we already know the answer.  When tm_isdst has the wrong value,
35039         use a different heuristic to find the right one, based on the
35040         extreme values actually observed in practice in tz2003a,
35041         rather than the (overly optimistic) "previous 3 calendar quarters".
35042
35043         (not_equal_tm, print_tm, check_result): Use "const T" rather than
35044         "T const" to accommodate glibc style.
35045         (check_result): Use less-confusing report format.  "long" -> "long int.
35046         (main): Likewise.
35047         Don't loop if the iteration overflows time_t.
35048         Allow a negative step in the iteration.
35049
35050 2003-07-06  Karl Berry  <karl@gnu.org>
35051
35052         * config/depcomp: update from automake.
35053         * config/config.sub: update from prep.
35054
35055 2003-07-03  Karl Berry  <karl@gnu.org>
35056
35057         * config/config.guess: update from prep.
35058
35059 2003-07-01  Paul Eggert  <eggert@twinsun.com>
35060
35061         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
35062         xreadlink.c now includes it unconditionally.
35063
35064 2003-07-01  Paul Eggert  <eggert@twinsun.com>
35065
35066         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
35067         having it depend on HAVE_SYS_TYPES_H.
35068
35069 2003-07-01  Bruno Haible  <bruno@clisp.org>
35070
35071         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
35072         <sys/types.h> should be sufficient.
35073         Reported by Paul Eggert.
35074
35075 2003-06-26  Karl Berry  <karl@gnu.org>
35076
35077         * config/depcomp: update from automake.
35078
35079 2003-06-26  Bruno Haible  <bruno@clisp.org>
35080
35081         * modules/human: Depend on module stdbool.
35082
35083 2003-06-25  Bruno Haible  <bruno@clisp.org>
35084
35085         * modules/readlink: New file.
35086         * modules/xreadlink: Depend on it.
35087         * MODULES.html.sh (func_all_modules): Add readlink.
35088
35089 2003-06-25  Bruno Haible  <bruno@clisp.org>
35090
35091         * m4/readlink.m4: New file.
35092
35093 2003-06-25  Bruno Haible  <bruno@clisp.org>
35094
35095         * lib/readlink.c: New file.
35096
35097 2003-06-22  Karl Berry  <karl@gnu.org>
35098
35099         * config/srclist.txt: update mkinstalldirs from automake.
35100         * config/mkinstalldirs: update.
35101
35102 2003-06-22  Bruno Haible  <bruno@clisp.org>
35103
35104         Portability to mingw32.
35105         * m4/ssize_t.m4: New file, from GNU gettext.
35106         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
35107         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
35108
35109 2003-06-22  Bruno Haible  <bruno@clisp.org>
35110
35111         * modules/safe-read: Add m4/ssize_t.m4.
35112         * modules/xreadlink: Add m4/ssize_t.m4.
35113
35114 2003-06-20  Bruno Haible  <bruno@clisp.org>
35115
35116         Assume C89, so PARAMS isn't needed.
35117         * lib/unicodeio.h (PARAMS): Remove.
35118         * lib/unicodeio.c: Don't use PARAMS.
35119
35120 2003-06-18  Karl Berry  <karl@gnu.org>
35121
35122         * config/config.{guess,sub}: update from prep.
35123
35124 2003-06-18  Jim Meyering  <jim@meyering.net>
35125
35126         Merge changes from coreutils.
35127         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
35128         Remove explicit declarations of xmalloc and realloc.
35129         Include xalloc.h.
35130         (read_utmp): Remove anachronistic cast of xmalloc.
35131
35132 2003-06-17  Paul Eggert  <eggert@twinsun.com>
35133
35134         Assume C89, so PARAMS isn't needed.
35135         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
35136         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
35137         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
35138         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
35139         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
35140         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
35141         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
35142         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
35143         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
35144         lib/xstrtod.h, lib/xstrtol.h: Likewise.
35145         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
35146         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
35147         no longer needed. Anyway, config.h should always be included before any
35148         other file.
35149
35150 2003-06-11  Simon Josefsson  <jas@extundo.com>
35151
35152         * modules/sysexits: New file.
35153         * MODULES.html.sh (func_all_modules): Add sysexits.
35154
35155 2003-06-11  Simon Josefsson  <jas@extundo.com>
35156
35157         * lib/sysexit_.h: New file.
35158
35159 2003-06-11  Derek Price  <derek@ximbiot.com>
35160
35161         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
35162         necessary.
35163
35164 2003-06-11  Bruno Haible  <bruno@clisp.org>
35165
35166         * m4/sysexits.m4: New file.
35167
35168 2003-06-10  Simon Josefsson  <jas@extundo.com>
35169
35170         * lib/argp.h: New file, from glibc.
35171         * lib/argp-ba.c: New file, from glibc.
35172         * lib/argp-eexst.c: New file, from glibc.
35173         * lib/argp-fmtstream.c: New file, from glibc.
35174         * lib/argp-fmtstream.h: New file, from glibc.
35175         * lib/argp-fs-xinl.c: New file, from glibc.
35176         * lib/argp-help.c: New file, from glibc.
35177         * lib/argp-namefrob.h: New file, from glibc.
35178         * lib/argp-parse.c: New file, from glibc.
35179         * lib/argp-pv.c: New file, from glibc.
35180         * lib/argp-pvh.c: New file, from glibc.
35181         * lib/argp-xinl.c: New file, from glibc.
35182
35183 2003-06-10  Simon Josefsson  <jas@extundo.com>
35184
35185         * modules/strchrnul: New file.
35186
35187 2003-06-10  Simon Josefsson  <jas@extundo.com>
35188
35189         * modules/argp: New file.
35190
35191 2003-06-10  Simon Josefsson  <jas@extundo.com>
35192
35193         * m4/strchrnul.m4: New file.
35194
35195 2003-06-10  Simon Josefsson  <jas@extundo.com>
35196
35197         * lib/strchrnul.h: New file.
35198         * lib/strchrnul.c: New file.
35199
35200 2003-06-10  Bruno Haible  <bruno@clisp.org>
35201
35202         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
35203
35204 2003-06-07  Karl Berry  <karl@gnu.org>
35205
35206         * config/config.{guess,sub}: update from prep.
35207
35208 2003-06-07  Jim Meyering  <jim@meyering.net>
35209
35210         * modules/strtod: Use $(...) notation, not @...@ for
35211         AC_REPLACE'd variables.
35212         * modules/localcharset: Likewise.
35213
35214 2003-06-07  Jim Meyering  <jim@meyering.net>
35215
35216         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
35217         in place of my name in the copyright comment.
35218         Remove definition and uses of __P.
35219
35220         From coreutils.
35221         * lib/stat.c: Don't declare xmalloc explicitly.
35222         Instead, include "xalloc.h".
35223         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
35224         xrealloc, and xcalloc return values.
35225         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
35226         Improve comment.
35227         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
35228
35229 2003-06-07  Bruno Haible  <bruno@clisp.org>
35230
35231         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
35232         avoid AC_CONFIG_LINKS.
35233         * modules/fnmatch (Makefile.am): Use explicit creation rule for
35234         fnmatch.h, to avoid AC_CONFIG_LINKS.
35235         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
35236
35237 2003-06-07  Bruno Haible  <bruno@clisp.org>
35238
35239         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
35240         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
35241         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
35242         directory.
35243         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
35244         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
35245         directory.
35246
35247 2003-06-06  Jim Meyering  <jim@meyering.net>
35248
35249         Merge from coreutils.
35250         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
35251         Consolidate declarations and initializations of *_base* locals.
35252
35253         Merge from coreutils.
35254         This avoids a core dump on systems without GNU putenv,
35255         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
35256         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
35257         (unsetenv): New static function, from GNU libc.
35258         (rpl_putenv): Use it.
35259
35260         * lib/modechange.c: Remove trailing blanks.
35261
35262         Merge from coreutils.
35263         * lib/fsusage.c: Remove declaration of statfs.
35264         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
35265
35266         * lib/posixtm.c: Include <stdbool.h> unconditionally.
35267
35268 2003-06-06  Jim Meyering  <jim@meyering.net>
35269
35270         * lib/stdbool_.h: Renamed from stdbool.h.in.
35271
35272 2003-06-06  Jim Meyering  <jim@meyering.net>
35273             Bruno Haible  <bruno@clisp.org>
35274
35275         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
35276         Adjust Makefile.am snippet not to redirect directly to target.
35277         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
35278
35279 2003-06-05  Paul Eggert  <eggert@twinsun.com>
35280
35281         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
35282         mismatch, look in future quarters as well as past.  This fixes a
35283         bug when processing fall-backwards gaps immediately after a long
35284         period of daylight-saving time.
35285
35286         * lib/mktime.c: Assume freestanding C89 or better.
35287         (HAVE_LIMITS_H): Remove.  Assume it's 1.
35288         (__P): Remove; not used.
35289         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
35290         (mktime, not_equal_tm, print_tm, check_result,
35291         main): Use prototypes.  Use const * where appropriate.
35292         (main): Fix typo in testing code that uncovered by above changes.
35293         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
35294
35295 2003-06-04  Paul Eggert  <eggert@twinsun.com>
35296
35297         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
35298         locale.h, localeconv.  This merges changes from coreutils.
35299
35300         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
35301         It can be removed after the next Autoconf is released.
35302         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
35303         needed.
35304
35305 2003-06-04  Paul Eggert  <eggert@twinsun.com>
35306
35307         * lib/mktime.c: Fix Debian bug 177940
35308         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
35309         (localtime_offset): Now long int, not time_t, because we want it
35310         to be guaranteed to be signed.  All uses changed.
35311         (__mktime_internal): If overflow would occur when adding offset,
35312         don't add it.
35313
35314         Merge 'human' changes from coreutils.  Rewrite to support
35315         locale-specific notations like thousands separators.
35316         * lib/human.c: Simplify authorship notice.
35317         Include human.h immediately after config.h.
35318         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
35319         <limits.h>: Do not include, since human.h does.
35320         (SIZE_MAX, UINTMAX_MAX): New macros.
35321         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
35322         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
35323         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
35324         (power_letter): Renamed from suffixes.
35325         (generate_suffix_backwards): Remove.
35326         (adjust_value): Now takes int style (because of human.h changes)
35327         and long double value (for greater precision on some platforms).
35328         (group_number): New function.
35329         (human_readable): Use it.  Use integer options, not enum.
35330         Put the options before the sizes in the arg list.
35331         Support all the new options.
35332         The old human_readable function has been removed;
35333         use inttostr.h instead.
35334         (human_readable, default_block_size, humblock):
35335         Use uintmax_t, not int, for block sizes.
35336         (human_readable_inexact, block_size_types): Remove.
35337         (block_size_opts): New constant.
35338         (human_options): Renamed from human_block_size, with new signature
35339         that allows block sizes up to UINTMAX_MAX.  All callers changed.
35340         * lib/human.h: Add copyright and authorship notice.
35341         Include <limits.h> and <stdbool.h> unconditionally.
35342         (PARAMS): Remove.  All uses removed.
35343         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
35344         (enum human_inexact_style): Remove tag; now a nameless enum.
35345         (human_floor, human_ceiling, human_round_to_even): Now have
35346         values 2, 0, 1 rather than -1, 1, 0.
35347         (human_group_digits, human_suppress_point_zero, human_autoscale,
35348         human_base_1024, human_SI, human_B): New constants.
35349         (human_readable_inexact, human_block_size): Remove.
35350         (human_readable): Size args are now uintmax_t, not int.
35351         (human_options): New decl.
35352
35353         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
35354         unnecessary now that we assume C89 or better.  This change
35355         imported from coreutils.
35356
35357         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
35358         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
35359         in the 2003-05-30 sync from glibc.
35360
35361         .h files should stand alone, but we shouldn't include <sys/types.h>
35362         if we can get away with just <stddef.h>.
35363
35364         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
35365         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
35366         rather than <sys/types.h>, as we merely need size_t.
35367         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
35368         to get size_t.
35369         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
35370         Include <stdio.h>, to get FILE.
35371         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
35372         memcasecmp.h has included <stddef.h> and all we need is size_t.
35373         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
35374         our interface, instead of including <sys/types.h>
35375
35376 2003-06-04  Paul Eggert  <eggert@twinsun.com>
35377
35378         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
35379         now, as glibc mktime is buggy on non-glibc systems.
35380
35381 2003-06-03  Karl Berry  <karl@gnu.org>
35382
35383         * config/config.sub: update from prep.
35384
35385 2003-06-02  Paul Eggert  <eggert@twinsun.com>
35386
35387         [from coreutils]
35388         Fix some minor time-related bugs with POSIX time arguments.
35389         Some valid time stamps were being rejected (notably -1, and
35390         time stamps before 1900 on 64-bit hosts).  And some invalid
35391         time stamps were being accepted, e.g. September 31.
35392
35393         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
35394         that we can return (time_t) -1 successfully.
35395         * lib/posixtm.c: Likewise.
35396         [HAVE_STDBOOL_H]: Include <stdbool.h>.
35397         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
35398         (t): Remove static var.
35399         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
35400         of static var.  All uses changed.
35401         (year): Do not reject years before 1900; they can occur with
35402         64-bit time_t.
35403         (posix_time_parse): Do not check for out-of-range components;
35404         that is now the caller's responsibility, since our checks were
35405         only approximations.
35406         (posixtime): Use mktime to check for out-of-range components,
35407         since it knows them exactly.
35408         If mktime returns (time_t) -1, check whether an error actually occurred
35409         by invoking localtime on -1.
35410         (main) [TEST_POSIXTIME]: Check for input data errors, and report
35411         posixtime failures better.
35412         Improve the test data (in comments only).
35413
35414 2003-06-02  Karl Berry  <karl@gnu.org>
35415
35416         * config/mkinstalldirs (version): new variable.
35417         (--version): new option.
35418         (usage): improve message.
35419
35420 2003-05-30  Karl Berry  <karl@gnu.org>
35421
35422         * lib/mktime.c: update from libc.
35423
35424 2003-05-30  Bruno Haible  <bruno@clisp.org>
35425
35426         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
35427         * config/config.rpath: Upgrade to gettext-0.12.1.
35428
35429 2003-05-30  Bruno Haible  <bruno@clisp.org>
35430
35431         * m4/gettext.m4: Upgrade to gettext-0.12.1.
35432         * m4/nls.m4: New file, from gettext-0.12.1.
35433         * m4/po.m4: New file, from gettext-0.12.1.
35434         * m4/progtest.m4: Upgrade to gettext-0.12.1.
35435
35436 2003-05-30  Bruno Haible  <bruno@clisp.org>
35437
35438         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
35439         * lib/localcharset.h: Likewise.
35440         * lib/localcharset.c: Likewise.
35441
35442 2003-05-29  Karl Berry  <karl@gnu.org>
35443
35444         * config/config.rpath: update from gettext.
35445
35446 2003-05-28  Paul Eggert  <eggert@twinsun.com>
35447
35448         Assume the headers required for C89 freestanding compilers.
35449         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
35450         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
35451         * m4/human.m4 (gl_HUMAN): Likewise.
35452         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
35453         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
35454         * m4/userspec.m4 (gl_USERSPEC): Likewise.
35455         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
35456         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
35457         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
35458
35459 2003-05-28  Paul Eggert  <eggert@twinsun.com>
35460
35461         Assume the headers required for C89 freestanding compilers.
35462         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
35463         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
35464         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
35465         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
35466         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
35467         define, since <limits.h> is guaranteed to do that.
35468         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
35469         * lib/exclude.c: Include <stdbool.h> unconditionally.
35470         * lib/tempname.c: Include <stddef.h> unconditionally.
35471         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
35472         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
35473         <stddef.h> does that.
35474         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
35475         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
35476         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
35477         needed.
35478         * lib/xstrtol.c: Likewise.
35479         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
35480         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
35481
35482         * lib/addext.c (addext): Use assignment rather than cast, to avoid
35483         warnings on some platforms.
35484
35485         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
35486         arbitrarily.
35487
35488 2003-05-26  Jim Meyering  <jim@meyering.net>
35489
35490         Merge in a change from coreutils:
35491         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
35492         that is guaranteed to be `no'.  Use `no_such_member' to indicate
35493         that condition, rather than `-1' which is slightly misleading.
35494         Change the name of the cache variable to have the gl_ prefix.
35495         Prompted by a patch from Richard Dawe for DJGPP.
35496
35497 2003-05-24  Karl Berry  <karl@gnu.org>
35498
35499         * config/config.guess: update from prep.
35500
35501 2003-05-22  Karl Berry  <karl@gnu.org>
35502
35503         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
35504
35505 2003-05-20  Karl Berry  <karl@gnu.org>
35506
35507         * config/config.guess: update from prep.
35508
35509 2003-05-18  Karl Berry  <karl@gnu.org>
35510
35511         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
35512         might actually be set by the user.
35513
35514         * config/depcomp, install-sh, mdate-sh: update from automake.
35515
35516 2003-05-17  Bruno Haible  <bruno@clisp.org>
35517
35518         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
35519         invalid expansion for AC_EGREP_CPP.
35520         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
35521         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
35522         Suggested by Akim Demaille <akim@epita.fr> in
35523         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
35524
35525 2003-05-12  Jim Meyering  <jim@meyering.net>
35526
35527         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
35528         the space-padded-by-default conversion specifiers, %e, %k, %l.
35529
35530 2003-05-12  Bruno Haible  <bruno@clisp.org>
35531
35532         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
35533         the string is longer than 4 KB.
35534
35535 2003-05-11  Karl Berry  <karl@gnu.org>
35536
35537         * config/config.{guess,sub}: update from prep.
35538
35539 2003-05-09  Bruno Haible  <bruno@clisp.org>
35540
35541         * modules/error: Add m4/strerror_r.m4 to file list.
35542
35543 2003-05-03  Bruno Haible  <bruno@clisp.org>
35544
35545         Upgrade to Unicode-4.0.
35546         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
35547         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
35548         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
35549         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
35550         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
35551         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
35552         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
35553         Change width of U+E0100..U+E01EF from 1 to 0.
35554
35555 2003-04-25  Jim Meyering  <jim@meyering.net>
35556
35557         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
35558         of type size_t, not int.
35559
35560 2003-04-25  Bruno Haible  <bruno@clisp.org>
35561
35562         * lib/copy-file.c: Include <stddef.h>, for size_t.
35563
35564 2003-04-21  Paul Eggert  <eggert@twinsun.com>
35565
35566         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
35567         code which expansion is under static control.  Patch imported from
35568         Akim Demaille's patch to Bison; see
35569         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
35570
35571 2003-04-14  Bruno Haible  <bruno@clisp.org>
35572
35573         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
35574
35575 2003-04-11  Jim Meyering  <jim@meyering.net>
35576
35577         Merge changes from Coreutils.
35578
35579         2003-03-22  Jim Meyering  <jim@meyering.net>
35580
35581         * lib/strftime.c (widen): Cast alloca return value to proper type.
35582
35583         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
35584
35585         From GNU libc.
35586         * lib/strftime.c (my_strftime): Handle very large width
35587         specifications for numeric values correctly.  Improve checks for
35588         overflow.
35589
35590         2003-01-19  Jim Meyering  <jim@meyering.net>
35591
35592         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
35593         definitions.
35594         (nl_get_alt_digit) [! defined my_strftime]: Define.
35595         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
35596         _nl_get_alt_digit and _nl_get_walt_digit.
35597
35598         * lib/strftime.c (my_strftime): Merge in locale-related changes from
35599         libc. These changes have no effect outside of _LIBC.
35600
35601 2003-04-10  Bruno Haible  <bruno@clisp.org>
35602
35603         * modules/findprog: New file.
35604         * MODULES.html.sh (func_all_modules): Add it.
35605
35606 2003-04-10  Bruno Haible  <bruno@clisp.org>
35607
35608         * m4/findprog.m4: New file.
35609         * m4/eaccess.m4: New file.
35610
35611 2003-04-10  Bruno Haible  <bruno@clisp.org>
35612
35613         * lib/findprog.h: New file, from GNU gettext.
35614         * lib/findprog.c: New file, from GNU gettext.
35615
35616 2003-04-05  Jim Meyering  <jim@meyering.net>
35617
35618         Merge changes from Coreutils.
35619
35620         * lib/exclude.h (PARAMS): Remove definition and uses.
35621         * lib/exclude.c: Remove uses of `PARAMS'.
35622
35623         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
35624         Add test-cases for DOS filenames. Declare program_name.
35625         (main): Set up program_name.  Patch by Rich Dawe.
35626
35627         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
35628         error from mntctl.
35629         Use mntctl's return value to drive the entry-processing loop, since
35630         we can't rely on the value of the vmt_length member in the last
35631         entry.  On some systems doing so could result in exhausting
35632         virtual memory.  Based in part on a patch from Mike Jetzer.
35633
35634 2003-04-04  Bruno Haible  <bruno@clisp.org>
35635
35636         * modules/linebreak: New file.
35637         * MODULES.html.sh (func_all_modules): Add it.
35638
35639 2003-04-04  Bruno Haible  <bruno@clisp.org>
35640
35641         * m4/linebreak.m4: New file.
35642
35643 2003-04-04  Bruno Haible  <bruno@clisp.org>
35644
35645         * lib/linebreak.h: New file, from GNU gettext.
35646         * lib/linebreak.c: New file, from GNU gettext with slight
35647         modifications.
35648         * lib/lbrkprop.h: New file, from GNU gettext.
35649
35650 2003-04-03  Bruno Haible  <bruno@clisp.org>
35651
35652         * modules/utf8-ucs4: New file.
35653         * modules/utf16-ucs4: New file.
35654         * modules/ucs4-utf8: New file.
35655         * modules/ucs4-utf16: New file.
35656         * MODULES.html.sh (func_all_modules): Add them.
35657
35658 2003-04-03  Bruno Haible  <bruno@clisp.org>
35659
35660         * m4/utf-ucs4.m4: New file.
35661         * m4/ucs4-utf.m4: New file.
35662
35663 2003-04-03  Bruno Haible  <bruno@clisp.org>
35664
35665         * lib/utf8-ucs4.h: New file, from GNU gettext.
35666         * lib/utf16-ucs4.h: New file, from GNU gettext.
35667         * lib/ucs4-utf8.h: New file, from GNU gettext.
35668         * lib/ucs4-utf16.h: New file, from GNU gettext.
35669
35670 2003-04-02  Bruno Haible  <bruno@clisp.org>
35671
35672         * modules/binary-io: New file.
35673         * MODULES.html.sh (func_all_modules): Add it.
35674
35675 2003-04-02  Bruno Haible  <bruno@clisp.org>
35676
35677         * lib/binary-io.h: New file, from GNU gettext.
35678
35679 2003-04-01  Bruno Haible  <bruno@clisp.org>
35680
35681         * modules/pathname: New file.
35682         * MODULES.html.sh (func_all_modules): Add it.
35683
35684 2003-04-01  Bruno Haible  <bruno@clisp.org>
35685
35686         * lib/pathname.h: New file, from GNU gettext.
35687         * lib/concatpath.c: New file, from GNU gettext.
35688
35689 2003-03-30  Bruno Haible  <bruno@clisp.org>
35690
35691         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
35692
35693 2003-03-30  Bruno Haible  <bruno@clisp.org>
35694
35695         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
35696         function chown() doesn't exist.
35697
35698 2003-03-28  Bruno Haible  <bruno@clisp.org>
35699
35700         * modules/copy-file: New file.
35701         * MODULES.html.sh (func_all_modules): Add it.
35702
35703 2003-03-28  Bruno Haible  <bruno@clisp.org>
35704
35705         * m4/copy-file.m4: New file.
35706
35707 2003-03-28  Bruno Haible  <bruno@clisp.org>
35708
35709         * lib/copy-file.h: New file, from GNU gettext.
35710         * lib/copy-file.c: New file, from GNU gettext.
35711
35712 2003-03-18  Jim Meyering  <jim@meyering.net>
35713
35714         * lib/quote.c (quote_n): Fix typo in comment.
35715
35716 2003-03-18  Bruno Haible  <bruno@clisp.org>
35717
35718         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
35719         checking.
35720         * m4/onceonly_2_57.m4: Likewise.
35721
35722 2003-03-17  Bruno Haible  <bruno@clisp.org>
35723
35724         * m4/onceonly.m4: Require autoconf 2.54 or newer.
35725         (m4_quote): Remove macro.
35726         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
35727
35728 2003-03-14  Jim Meyering  <jim@meyering.net>
35729
35730         Merge changes from Coreutils.
35731         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
35732         to be const, in order to avoid warnings.
35733         (obstack_room): Likewise.
35734         (obstack_empty_p): Likewise.
35735
35736 2003-03-14  Bruno Haible  <bruno@clisp.org>
35737
35738         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
35739         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
35740
35741 2003-03-13  Paul Eggert  <eggert@twinsun.com>
35742
35743         Merge changes from Bison.
35744         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
35745         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
35746         when compiling Bison 1.875's `bitset bset = obstack_alloc
35747         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
35748         * lib/hash.c: Include <stdbool.h> unconditionally.
35749
35750 2003-03-13  Paul Eggert  <eggert@twinsun.com>
35751
35752         * m4/onceonly.m4 (m4_quote): New macro.
35753         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
35754         Quote AC_FOREACH variable-expansions properly.
35755
35756 2003-03-13  Paul Eggert  <eggert@twinsun.com>
35757
35758         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
35759
35760 2003-03-09  Paul Eggert  <eggert@twinsun.com>
35761
35762         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
35763         Reported by Bruce Becker; see:
35764         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
35765
35766 2003-03-03  Paul Eggert  <eggert@twinsun.com>
35767             Bruno Haible  <bruno@clisp.org>
35768
35769         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
35770         Reported by John Hughes, see
35771         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
35772
35773 2003-02-20  Bruno Haible  <bruno@clisp.org>
35774
35775         * MODULES.html.sh (func_all_modules): Add poll.
35776
35777 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
35778
35779         * modules/poll: New file.
35780
35781 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
35782
35783         * lib/poll_.h: New file.
35784         * lib/poll.c: New file.
35785
35786 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
35787
35788         * m4/poll.m4: New file.
35789
35790 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
35791
35792         * modules/mathl: New file.
35793
35794 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
35795
35796         * lib/mathl.h: New file.
35797         * lib/acosl.c: New file.
35798         * lib/asinl.c: New file.
35799         * lib/atanl.c: New file.
35800         * lib/ceill.c: New file.
35801         * lib/cosl.c: New file.
35802         * lib/expl.c: New file.
35803         * lib/floorl.c: New file.
35804         * lib/frexpl.c: New file.
35805         * lib/ldexpl.c: New file.
35806         * lib/logl.c: New file.
35807         * lib/sincosl.c: New file.
35808         * lib/sinl.c: New file.
35809         * lib/sqrtl.c: New file.
35810         * lib/tanl.c: New file.
35811         * lib/trigl.c: New file.
35812         * lib/trigl.h: New file.
35813
35814 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
35815
35816         * m4/mathl.m4: New file.
35817
35818 2003-02-18  Bruno Haible  <bruno@clisp.org>
35819
35820         * MODULES.html.sh (func_all_modules): Add mathl.
35821
35822 2003-02-17  Bruno Haible  <bruno@clisp.org>
35823
35824         * modules/mkdtemp: New module.
35825         * MODULES.html.sh (func_all_modules): Add it.
35826
35827 2003-02-17  Bruno Haible  <bruno@clisp.org>
35828
35829         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
35830
35831 2003-02-17  Bruno Haible  <bruno@clisp.org>
35832
35833         * lib/mkdtemp.h: New file, from GNU gettext.
35834         * lib/mkdtemp.c: New file, from GNU gettext.
35835
35836 2003-02-02  Jim Meyering  <jim@meyering.net>
35837
35838         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
35839         e.g. glibc-2.2.93.
35840
35841 2003-01-31  Bruno Haible  <bruno@clisp.org>
35842
35843         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
35844         'rpl_rename'.
35845         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
35846         'rpl_strnlen'.
35847         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
35848         'rpl_strtod'.
35849         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
35850         'rpl_utime'.
35851
35852 2003-01-31  Bruno Haible  <bruno@clisp.org>
35853
35854         * lib/rename.c: #undef rename before defining rpl_rename.
35855         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
35856
35857 2003-01-30  Bruno Haible  <bruno@clisp.org>
35858
35859         * modules/vasnprintf, modules/vasprintf: New modules.
35860         * MODULES.html.sh (func_all_modules): Add them.
35861
35862 2003-01-30  Bruno Haible  <bruno@clisp.org>
35863
35864         * m4/signed.m4: New file, from GNU gettext.
35865         * m4/longdouble.m4: New file, from GNU gettext.
35866         * m4/wchar_t.m4: New file, from GNU gettext.
35867         * m4/wint_t.m4: New file, from GNU gettext.
35868         * m4/vasnprintf.m4: New file.
35869         * m4/vasprintf.m4: New file.
35870
35871 2003-01-30  Bruno Haible  <bruno@clisp.org>
35872
35873         * lib/printf-args.h: New file, from GNU gettext.
35874         * lib/printf-args.c: New file, from GNU gettext.
35875         * lib/printf-parse.h: New file, from GNU gettext.
35876         * lib/printf-parse.c: New file, from GNU gettext.
35877         * lib/vasnprintf.h: New file, from GNU gettext.
35878         * lib/vasnprintf.c: New file, from GNU gettext.
35879         * lib/asnprintf.c: New file, from GNU gettext.
35880         * lib/vasprintf.h: New file, from GNU gettext with modifications.
35881         * lib/vasprintf.c: New file, from GNU gettext.
35882         * lib/asprintf.c: New file, from GNU gettext.
35883
35884 2003-01-29  Bruno Haible  <bruno@clisp.org>
35885
35886         * modules/stpncpy: New module.
35887         * MODULES.html.sh (func_all_modules): Add it.
35888
35889 2003-01-29  Bruno Haible  <bruno@clisp.org>
35890
35891         * m4/stpncpy.m4: New file.
35892
35893 2003-01-29  Bruno Haible  <bruno@clisp.org>
35894
35895         * lib/stpncpy.h: New file, from GNU gettext with modifications.
35896         * lib/stpncpy.c: New file, from GNU gettext with modifications.
35897
35898 2003-01-28  Bruno Haible  <bruno@clisp.org>
35899
35900         * modules/c-ctype: New module.
35901         * MODULES.html.sh (func_all_modules): Add it.
35902
35903 2003-01-28  Bruno Haible  <bruno@clisp.org>
35904
35905         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
35906         Paul Eggert.
35907         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
35908         Paul Eggert.
35909
35910 2003-01-27  Bruno Haible  <bruno@clisp.org>
35911
35912         * modules/xsetenv: New module.
35913         * MODULES.html.sh (func_all_modules): Add it.
35914
35915 2003-01-27  Bruno Haible  <bruno@clisp.org>
35916
35917         * lib/xsetenv.h: New file, from GNU gettext.
35918         * lib/xsetenv.c: New file, from GNU gettext.
35919
35920 2003-01-23  Jim Meyering  <jim@meyering.net>
35921
35922         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
35923         from working on systems without dirfd (at least Irix and OSF1/Tru64).
35924
35925 2003-01-23  Bruno Haible  <bruno@clisp.org>
35926
35927         * modules/minmax: New module.
35928         * MODULES.html.sh (func_all_modules): Add it.
35929
35930 2003-01-23  Bruno Haible  <bruno@clisp.org>
35931
35932         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
35933         Eggert.
35934
35935 2003-01-22  Bruno Haible  <bruno@clisp.org>
35936
35937         * modules/exit: New module.
35938         * MODULES.html.sh (func_all_modules): Add it.
35939
35940 2003-01-22  Bruno Haible  <bruno@clisp.org>
35941
35942         * lib/exit.h: New file, from GNU gettext.
35943
35944 2003-01-19  Bruno Haible  <bruno@clisp.org>
35945
35946         * gnulib-tool: Recognize option --extract-maintainer.
35947         (func_get_maintainer): New function.
35948         * modules/*: Add Maintainer entry.
35949
35950 2003-01-16  Jim Meyering  <jim@meyering.net>
35951
35952         * m4/regex.m4: The `regex' struct is both input and output.
35953         Initialize it before each use.  Patch by Tim Waugh.
35954
35955 2003-01-16  Bruno Haible  <bruno@clisp.org>
35956
35957         * MODULES.html.sh: Add a table of contents. Add the module name as
35958         leftmost column. Add hyperlinks.
35959
35960 2003-01-15  Bruno Haible  <bruno@clisp.org>
35961
35962         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
35963
35964 2003-01-15  Bruno Haible  <bruno@clisp.org>
35965
35966         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
35967         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
35968         suffix.
35969
35970 2003-01-15  Bruno Haible  <bruno@clisp.org>
35971
35972         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
35973
35974 2003-01-15  Bruno Haible  <bruno@clisp.org>
35975
35976         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
35977         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
35978
35979 2003-01-14  Jim Meyering  <jim@meyering.net>
35980
35981         * lib/same.c (same_name): Tweak a comment.
35982
35983 2003-01-14  Bruno Haible  <bruno@clisp.org>
35984
35985         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
35986         when a string comparison is sufficient.
35987
35988 2003-01-14  Bruno Haible  <bruno@clisp.org>
35989
35990         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
35991         'unsigned int'.
35992
35993 2003-01-14  Bruno Haible  <bruno@clisp.org>
35994
35995         * lib/hash-pjw.c: Add comment about low quality of this function.
35996
35997 2003-01-13  Bruno Haible  <bruno@clisp.org>
35998
35999         * modules/stpcpy: Distribute lib/stpcpy.h.
36000         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
36001
36002 2003-01-13  Bruno Haible  <bruno@clisp.org>
36003
36004         * modules/*: Add a description.
36005         * modules/strpbrk: Fix Makefile.am snippet.
36006         * modules/strtoimax: Fix dependencies.
36007         * modules/strtoumax: Likewise.
36008
36009 2003-01-13  Bruno Haible  <bruno@clisp.org>
36010
36011         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
36012         * modules/alloca (Makefile.am): All object files depend on alloca.h.
36013         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
36014
36015 2003-01-13  Bruno Haible  <bruno@clisp.org>
36016
36017         * gnulib-tool (func_create_testdir): Store config/* files in the main
36018         directory.
36019         * config.rpath: Move to ...
36020         * config/config.rpath: ... here.
36021         * modules/gettext: Contains config/config.rpath, not config.rpath.
36022         * modules/iconv: Likewise.
36023
36024 2003-01-12  Paul Eggert  <eggert@twinsun.com>
36025
36026         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
36027         to avoid collisions with libcurses and libreadline.
36028
36029         * m4/getstr.m4: Remove.
36030         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
36031
36032 2003-01-12  Paul Eggert  <eggert@twinsun.com>
36033
36034         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
36035         to avoid collisions with libcurses and libreadline.
36036
36037         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
36038         * lib/getstr.h, getstr.c: Remove.
36039         * lib/getline.c: Include "getline.h", to check interface.
36040         Move body of old getstr.c here: this defines MIN_CHUNK and
36041         declares getdelim2, which is renamed from getstr.
36042         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
36043
36044         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
36045         All uses changed.
36046         * lib/linebuffer.h: Likewise.
36047         (readline): Remove backward-compatibility macro.
36048
36049 2003-01-12  Paul Eggert  <eggert@twinsun.com>
36050
36051         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
36052         to avoid collisions with libcurses and libreadline.
36053         * getstr: Remove.
36054         * MODULES.html.sh: Remove getstr.
36055         * modules/getline: Depend on unlocked-io, not getstr.
36056
36057 2003-01-12  Jim Meyering  <jim@meyering.net>
36058
36059         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
36060
36061 2003-01-10  Bruno Haible  <bruno@clisp.org>
36062
36063         * modules/alloca: Change Makefile.am requirements. Simplify Include
36064         requirements. Add lib/alloca_.h to file list.
36065
36066 2003-01-10  Bruno Haible  <bruno@clisp.org>
36067
36068         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
36069
36070 2003-01-10  Bruno Haible  <bruno@clisp.org>
36071
36072         * lib/alloca_.h: New file.
36073         * lib/getdate.y: Unconditionally include alloca.h.
36074         * lib/makepath.c: Likewise.
36075         * lib/setenv.c: Likewise.
36076         * lib/userspec.c: Likewise.
36077
36078 2003-01-09  Karl Berry  <karl@gnu.org>
36079
36080         * MODULES.html.sh: include `dirname $0` in PATH, to find
36081         gnulib-tool.
36082
36083 2003-01-09  Bruno Haible  <bruno@clisp.org>
36084
36085         * modules/stdbool: Change configure.ac, Makefile.am requirements.
36086         Simplify Include requirements. Add lib/stdbool.h.in to file list.
36087
36088 2003-01-09  Bruno Haible  <bruno@clisp.org>
36089
36090         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
36091
36092 2003-01-09  Bruno Haible  <bruno@clisp.org>
36093
36094         * lib/stdbool.h.in: New file.
36095
36096 2003-01-09  Bruno Haible  <bruno@clisp.org>
36097
36098         * gnulib-tool (func_all_modules): Ignore files ending in ~.
36099         * MODULES.html.sh: Likewise.
36100
36101 2003-01-08  Jim Meyering  <jim@meyering.net>
36102
36103         * lib/full-write.c: Undefine and define-away `const' after inclusion
36104         of errno.h, not before.  Suggestion from Bruno Haible.
36105
36106 2003-01-08  Bruno Haible  <bruno@clisp.org>
36107
36108         * modules/full-read: Depend on full-write.
36109
36110 2003-01-08  Bruno Haible  <bruno@clisp.org>
36111
36112         * lib/safe-read.c: Include specification header first, to ensure its
36113         selfcontainedness.
36114         * lib/full-write.c: Likewise.
36115
36116 2003-01-07  Jim Meyering  <jim@meyering.net>
36117
36118         * lib/full-write.c: Rework so that it may serve to define full_read,
36119         too.
36120         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
36121
36122 2003-01-07  Bruno Haible  <bruno@clisp.org>
36123
36124         * lib/strtoimax.c: Include <stdint.h> as an alternative to
36125         <inttypes.h>.
36126         * lib/xstrtol.h: Likewise.
36127         * lib/xstrtoimax.c: Likewise.
36128         * lib/xstrtoumax.c: Likewise.
36129         * lib/human.h: Likewise.
36130
36131         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
36132         on systems that have <inttypes.h> but not <stdint.h>.
36133
36134 2003-01-07  Bruno Haible  <bruno@clisp.org>
36135
36136         * MODULES.html.sh: Add copyright notice.
36137         (missed_files): Omit CVS directory entries.
36138         (func_module): Make it work with sed-3.02.
36139         * MODULES.txt: Remove file.
36140
36141 2003-01-06  Jim Meyering  <jim@meyering.net>
36142
36143         * lib/version-etc.c: Update year in translatable copyright string.
36144
36145 2003-01-03  Karl Berry  <karl@gnu.org>
36146
36147         * config/config.{guess,sub}: update from prep.
36148
36149 2003-01-02  Karl Berry  <karl@gnu.org>
36150
36151         * doc/COPYING.DOC: belatedly updated to 1.2.
36152
36153 2003-01-01  Karl Berry  <karl@gnu.org>
36154
36155         * gnulib-tool (func_verify_module): report module name $module in
36156         error message, not $1.
36157         * gnulib-tool (create-testdir): don't complain if destdir couldn't
36158         be created, only if it doesn't exist.
36159         * gnulib-tool (last_checkin_date): don't expand the $Date here.
36160
36161 2002-12-31  Paul Eggert  <eggert@twinsun.com>
36162
36163         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
36164
36165 2002-12-31  Paul Eggert  <eggert@twinsun.com>
36166
36167         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
36168         memcmp if strcoll doesn't work.
36169
36170 2002-12-31  Bruno Haible  <bruno@clisp.org>
36171
36172         * lib/utime.c (utime_null): No need to call ftruncate if the file was
36173         nonempty.
36174
36175 2002-12-31  Bruno Haible  <bruno@clisp.org>
36176
36177         * lib/memcoll.c (STRCOLL): New macro.
36178         (memcoll): Use it.
36179
36180 2002-12-31  Bruno Haible  <bruno@clisp.org>
36181
36182         * lib/localcharset.h: New file.
36183         * lib/localcharset.c: Include it.
36184         * lib/unicodeio.c: Likewise.
36185
36186 2002-12-31  Bruno Haible  <bruno@clisp.org>
36187
36188         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
36189         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
36190
36191 2002-12-31  Bruno Haible  <bruno@clisp.org>
36192
36193         * lib/getline.h: Include <stddef.h>, for size_t.
36194
36195         * lib/unicodeio.h: Include <stddef.h>, for size_t.
36196         * lib/unicodeio.c: Don't include <stddef.h>.
36197
36198 2002-12-31  Bruno Haible  <bruno@clisp.org>
36199
36200         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
36201         HAVE_TM_ZONE.
36202
36203 2002-12-24  Karl Berry  <karl@gnu.org>
36204
36205         * config/config.guess: update from prep.
36206
36207 2002-12-24  Bruno Haible  <bruno@clisp.org>
36208
36209         General infrasructure.
36210         * m4/README: Rewritten.
36211         * m4/onceonly.m4: New file.
36212         * m4/onceonly_2_57.m4: New file.
36213
36214         Module atexit.
36215         * m4/atexit.m4: New file.
36216
36217         Module strtod.
36218         * m4/strtod.m4: New file.
36219
36220         Module strtol.
36221         * m4/strtol.m4: New file.
36222
36223         Module strtoul.
36224         * m4/strtoul.m4: New file.
36225
36226         Module memchr.
36227         * m4/memchr.m4: New file.
36228
36229         Module memcmp.
36230         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
36231         (jm_FUNC_MEMCMP): Invoke it.
36232
36233         Module memcpy.
36234         * m4/memcpy.m4: New file.
36235
36236         Module memmove.
36237         * m4/memmove.m4: New file.
36238
36239         Module memset.
36240         * m4/memset.m4: New file.
36241
36242         Module strcspn.
36243         * m4/strcspn.m4: New file.
36244
36245         Module strpbrk.
36246         * m4/strpbrk.m4: New file.
36247
36248         Module strstr.
36249         * m4/strstr.m4: New file.
36250
36251         Module strerror.
36252         * m4/strerror.m4: New file.
36253
36254         Module mktime.
36255         * m4/mktime.m4: Renamed from jm-mktime.m4.
36256         (gl_PREREQ_MKTIME): New macro.
36257         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
36258
36259         Module malloc.
36260         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
36261         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
36262         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
36263
36264         Module realloc.
36265         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
36266         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
36267         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
36268
36269         Module strftime.
36270         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
36271         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
36272         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
36273         gl_TM_GMTOFF.
36274         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
36275
36276         Module xalloc.
36277         * m4/xalloc.m4: New file.
36278
36279         Module alloca.
36280         * m4/alloca.m4: New file.
36281
36282         Module putenv.
36283         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
36284         (jm_FUNC_PUTENV): Invoke it.
36285
36286         Module setenv.
36287         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
36288         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
36289         when invoked twice.
36290         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
36291         gt_FUNC_SETENV.
36292
36293         Module memrchr.
36294         * m4/memrchr.m4: New file.
36295
36296         Module stpcpy.
36297         * m4/stpcpy.m4: New file.
36298
36299         Module strcase.
36300         * m4/strcase.m4: New file.
36301
36302         Module strdup.
36303         * m4/strdup.m4: New file.
36304
36305         Module strnlen.
36306         * m4/strnlen.m4: New file.
36307
36308         Module strndup.
36309         * m4/strndup.m4: New file.
36310
36311         Module xstrtod.
36312         * m4/xstrtod.m4: New file.
36313
36314         Module xstrtol.
36315         * m4/xstrtol.m4: New file.
36316
36317         Module getdate.
36318         * m4/getdate.m4: New file.
36319
36320         Module unlocked-io.
36321         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
36322         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
36323         * m4/jm-glibc-io.m4n: Remove file.
36324
36325         Module long-options.
36326         * m4/long-options.m4: New file.
36327
36328         Module md5.
36329         * m4/md5.m4: New file.
36330
36331         Module sha.
36332         * m4/sha.m4: New file.
36333
36334         Module getstr.
36335         * m4/getstr.m4: New file.
36336
36337         Module getline.
36338         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
36339         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
36340         <sys/types.h>, for size_t. Use the function name gnu_getline, not
36341         simply getline. Infoke gl_PREREQ_GETLINE.
36342
36343         Module obstack.
36344         * m4/obstack.m4: New file.
36345
36346         Module hash.
36347         * m4/hash.m4: New file.
36348
36349         Module readtokens.
36350         * m4/readtokens.m4: New file.
36351
36352         Module strverscmp.
36353         * m4/strverscmp.m4: New file.
36354
36355         Module stdbool.
36356         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
36357         OSF/1.
36358
36359         Module strtoll.
36360         * m4/strtoll.m4: New file.
36361
36362         Module strtoull.
36363         * m4/strtoull.m4: New file.
36364
36365         Module strtoimax.
36366         * m4/strtoimax.m4: New file.
36367
36368         Module strtoumax.
36369         * m4/strtoumax.m4: New file.
36370
36371         Module xstrtoimax.
36372         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
36373         jm_AC_PREREQ_XSTRTOIMAX.
36374         Moved the strtol prerequisites to strtol.m4.
36375         Moved the strtoll prerequisites to strtoll.m4.
36376         Moved the strtoimax prerequisites to strtoimax.m4.
36377
36378         Module xstrtoumax.
36379         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
36380         jm_AC_PREREQ_XSTRTOUMAX.
36381         Moved the strtoul prerequisites to strtoul.m4.
36382         Moved the strtoull prerequisites to strtoull.m4.
36383         Moved the strtoumax prerequisites to strtoumax.m4.
36384
36385         Module chown.
36386         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
36387         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
36388
36389         Module dup2.
36390         * m4/dup2.m4: New file.
36391
36392         Module ftruncate.
36393         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
36394         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
36395
36396         Module getgroups.
36397         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
36398         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
36399
36400         Module gettimeofday.
36401         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
36402         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
36403         gl_PREREQ_GETTIMEOFDAY.
36404
36405         Module mkdir.
36406         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
36407         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
36408
36409         Module mkstemp.
36410         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
36411         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
36412         jm_AC_TYPE_UINTMAX_T.
36413         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
36414
36415         Module stat.
36416         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
36417         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
36418
36419         Module lstat.
36420         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
36421         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
36422
36423         Module timespec.
36424         * m4/timespec.m4 (gl_TIMESPEC): New macro.
36425         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
36426         * m4/st_mtim.m4: Indentation.
36427
36428         Module nanosleep.
36429         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
36430         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
36431         gl_PREREQ_NANOSLEEP.
36432
36433         Module regex.
36434         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
36435         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
36436         (gl_REGEX): New macro.
36437
36438         Module rename.
36439         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
36440         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
36441
36442         Module rmdir.
36443         * m4/rmdir.m4: New file.
36444
36445         Module utime.
36446         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
36447         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
36448         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
36449
36450         Module dirname.
36451         * m4/dirname.m4: New file.
36452
36453         Module getopt.
36454         * m4/getopt.m4: New file.
36455
36456         Module unistd-safer.
36457         * m4/unistd-safer.m4: New file.
36458
36459         Module fnmatch.
36460         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
36461         declaration.
36462         (gl_PREREQ_FNMATCH_EXTRA): New macro.
36463         (gl_FUNC_FNMATCH_POSIX): New macro.
36464         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
36465         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
36466         simply fnmatch.
36467
36468         Module exclude.
36469         * m4/exclude.m4: New file.
36470
36471         Module human.
36472         * m4/human.m4: New file.
36473
36474         Module acl.
36475         * m4/acl.m4: Nop.
36476
36477         Module backupfile.
36478         * m4/backupfile.m4: New file.
36479         * m4/d-ino.m4: Indentation.
36480
36481         Module fsusage.
36482         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
36483         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
36484         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
36485
36486         Module dirfd.
36487         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
36488         requirements.
36489
36490         Module euidaccess.
36491         * m4/euidaccess.m4: New file.
36492
36493         Module file-type.
36494         * m4/file-type.m4: New file.
36495
36496         Module fileblocks.
36497         * m4/fileblocks.m4: New file.
36498
36499         Module filemode.
36500         * m4/filemode.m4: New file.
36501
36502         Module isdir.
36503         * m4/isdir.m4: New file.
36504
36505         Module lchown.
36506         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
36507         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
36508
36509         Module makepath.
36510         * m4/makepath.m4: New file.
36511
36512         Module modechange.
36513         * m4/modechange.m4: New file.
36514
36515         Module mountlist.
36516         * m4/mountlist.m4: New file.
36517         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
36518         Indentation.
36519
36520         Module path-concat.
36521         * m4/path-concat.m4: New file.
36522
36523         Module pathmax.
36524         * m4/pathmax.m4: New file.
36525
36526         Module same.
36527         * m4/same.m4: New file.
36528
36529         Module save-cwd.
36530         * m4/save-cwd.m4: New file.
36531
36532         Module savedir.
36533         * m4/savedir.m4: New file.
36534
36535         Module xgetcwd.
36536         * m4/xgetcwd.m4: New file.
36537         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
36538
36539         Module xreadlink.
36540         * m4/xreadlink.m4: New file.
36541
36542         Module safe-read.
36543         * m4/safe-read.m4: New file.
36544
36545         Module safe-write.
36546         * m4/safe-write.m4: New file.
36547
36548         Module closeout.
36549         * m4/closeout.m4: New file.
36550
36551         Module stdio-safer.
36552         * m4/stdio-safer.m4: New file.
36553
36554         Module getpass.
36555         * m4/getpass.m4: New file.
36556
36557         Module getugroups.
36558         * m4/getugroups.m4: New file.
36559
36560         Module group-member.
36561         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
36562         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
36563
36564         Module idcache.
36565         * m4/idcache.m4: New file.
36566
36567         Module userspec.
36568         * m4/userspec.m4: New file.
36569
36570         Module gettime.
36571         * m4/clock_time.m4: New file.
36572         * m4/gettime.m4: New file.
36573
36574         Module settime.
36575         * m4/settime.m4: New file.
36576
36577         Module posixtm.
36578         * m4/posixtm.m4: New file.
36579
36580         Module gethostname.
36581         * m4/gethostname.m4: New file.
36582
36583         Module canon-host.
36584         * m4/canon-host.m4: New file.
36585
36586         Module gettext.
36587         * m4/codeset.m4: New file, from gettext-0.11.5.
36588         * m4/gettext.m4: New file, from gettext-0.11.5.
36589         * m4/glibc21.m4: New file, from gettext-0.11.5.
36590         * m4/iconv.m4: New file, from gettext-0.11.5.
36591         * m4/intdiv0.m4: New file, from gettext-0.11.5.
36592         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
36593         * m4/inttypes.m4: New file, from gettext-0.11.5.
36594         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
36595         * m4/isc-posix.m4: New file, from gettext-0.11.5.
36596         * m4/lcmessage.m4: New file, from gettext-0.11.5.
36597         * m4/lib-ld.m4: New file, from gettext-0.11.5.
36598         * m4/lib-link.m4: New file, from gettext-0.11.5.
36599         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
36600         * m4/progtest.m4: New file, from gettext-0.11.5.
36601         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
36602         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
36603         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
36604
36605         Module localcharset.
36606         * m4/localcharset.m4: New file.
36607
36608         Module hard-locale.
36609         * m4/hard-locale.m4: New file.
36610
36611         Module mbswidth.
36612         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
36613         onceonly macros.
36614         * m4/mbrtowc.m4: Add comment.
36615
36616         Module memcasecmp.
36617         * m4/memcasecmp.m4: New file.
36618
36619         Module memcoll.
36620         * m4/memcoll.m4: New file.
36621
36622         Module unicodeio.
36623         * m4/unicodeio.m4: New file.
36624
36625         Module rpmatch.
36626         * m4/rpmatch.m4: New file.
36627
36628         Module yesno.
36629         * m4/yesno.m4: New file.
36630
36631         Module exitfail.
36632         * m4/exitfail.m4: New file.
36633
36634         Module c-stack.
36635         * m4/c-stack.m4 (gl_C_STACK): New macro.
36636         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
36637
36638         Module error.
36639         * m4/error.m4 (gl_ERROR): New macro.
36640         (jm_PREREQ_ERROR): Use onceonly macros.
36641
36642         Module fatal.
36643         * m4/fatal.m4: New file.
36644
36645         Module getloadavg.
36646         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
36647         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
36648
36649         Module getpagesize.
36650         * m4/getpagesize.m4: New file.
36651
36652         Module getusershell.
36653         * m4/getusershell.m4: New file.
36654
36655         Module physmem.
36656         * m4/physmem.m4: New file.
36657
36658         Module posixver.
36659         * m4/posixver.m4: New file.
36660
36661         Module quotearg.
36662         * m4/quotearg.m4: New file.
36663
36664         Module quote.
36665         * m4/quote.m4: New file.
36666
36667         Module readutmp.
36668         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
36669
36670         Module sig2str.
36671         * m4/sig2str.m4: New file.
36672
36673         Other.
36674         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
36675         ulonglong.m4.
36676         * m4/intmax_t.m4: New file.
36677         * m4/d-type.m4: Indentation.
36678         * m4/jm-macros.m4: Update.
36679         * m4/prereq.m4 (jm_PREREQ): Update.
36680         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
36681         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
36682         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
36683         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
36684         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
36685         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
36686         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
36687         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
36688         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
36689         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
36690         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
36691         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
36692         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
36693         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
36694         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
36695         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
36696         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
36697         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
36698         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
36699
36700 2002-12-24  Bruno Haible  <bruno@clisp.org>
36701
36702         * MODULES.txt: Update according to m4/ changes.
36703
36704         Module gettext.
36705         * config.rpath: New file, from gettext-0.11.5.
36706
36707         * modules/*: New module descriptions.
36708         * gnulib-tool: New file.
36709         * MODULES.html.sh: New file.
36710
36711 2002-12-21  Karl Berry  <karl@gnu.org>
36712
36713         * doc/fdl.texi: update to version 1.2.
36714
36715 2002-12-19  Karl Berry  <karl@gnu.org>
36716
36717         * config/config.guess: update from prep.
36718
36719 2002-12-18  Bruno Haible  <bruno@clisp.org>
36720
36721         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
36722         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
36723
36724 2002-12-17  Bruno Haible  <bruno@clisp.org>
36725
36726         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
36727         stdlib.h, string.h.
36728
36729 2002-12-17  Bruno Haible  <bruno@clisp.org>
36730
36731         * lib/canon-host.c (strdup): Remove unused declaration.
36732
36733         * lib/fsusage.c: Include full_read.h.
36734         (get_fs_usage): Use full_read instead of safe_read.
36735
36736         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
36737
36738 2002-12-12  Karl Berry  <karl@gnu.org>
36739
36740         * config/config.guess: update from prep.
36741
36742 2002-12-11  Bruno Haible  <bruno@clisp.org>
36743
36744         * m4/setenv.m4: New file, from gettext-0.11.5.
36745
36746 2002-12-11  Bruno Haible  <bruno@clisp.org>
36747
36748         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
36749         not unsetenv().
36750         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
36751         modifications:
36752
36753         2002-12-11  Bruno Haible  <bruno@clisp.org>
36754
36755                 * setenv.c (alloca): Fall back to malloc.
36756                 (freea): New macro.
36757                 (setenv): Use freea() to free memory allocated with alloca().
36758
36759         2002-11-13  Bruno Haible  <bruno@clisp.org>
36760
36761                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
36762                 function declarations.
36763                 * unsetenv.c (unsetenv): Likewise.
36764
36765         2002-03-04  Bruno Haible  <bruno@clisp.org>
36766
36767                 Portability to AIX 4.3.3.
36768                 * unsetenv.c: New file, extracted from setenv.c.
36769                 * setenv.c: Move the unsetenv() function to unsetenv.c.
36770
36771         2001-12-20  Bruno Haible  <bruno@clisp.org>
36772
36773                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
36774                 use malloc instead. For SunOS 4.
36775
36776         2001-12-11  Bruno Haible  <bruno@clisp.org>
36777
36778                 * setenv.c: Declare alloca.
36779                 (compar_fn_t): New typedef.
36780                 (KNOWN_VALUE, STORE_VALUE): Use it.
36781
36782         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
36783         setenv.h.
36784
36785 2002-12-10  Paul Eggert  <eggert@twinsun.com>
36786
36787         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
36788         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
36789         Choose values that are less likely to collide with system fnmatch
36790         options.
36791         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
36792         defined (e.g., a pure POSIX system).
36793         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
36794         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
36795
36796 2002-12-06  Paul Eggert  <eggert@twinsun.com>
36797
36798         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
36799         a pain in practice to deal with generated m4 files.  This change
36800         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
36801
36802         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
36803         and jm-glibc-io.m4, as they are no longer a special case.
36804         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
36805         kludge and the auto-generation stuff.  Check only whether the
36806         functions are declared, not whether they exist, since older hosts
36807         that don't declare the functions can't use the optimization anyway.
36808
36809 2002-12-06  Jim Meyering  <jim@meyering.net>
36810
36811         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
36812
36813         Merge in changes from libc's misc/error.c, in preparation
36814         for the merge of gnulib's changes back into libc.
36815
36816         * lib/error.c (_): Define only if not already defined.
36817         Move definition to follow all #include directives.
36818         Include unlocked-io.h only if !_LIBC.
36819         [_LIBC]: Include <libio/libioP.h>.
36820         [USE_IN_LIBIO]: Include <libio/iolibio.h>
36821         (fflush): Tweak definition to use INTUSE.
36822         (putc): Define.
36823
36824 2002-12-05  Paul Eggert  <eggert@twinsun.com>
36825
36826         * lib/alloca.c [defined emacs]: Include "lisp.h".
36827         (xalloc_die) [defined emacs]: New macro.
36828         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
36829         [! defined emacs]: Include <xalloc.h>.
36830         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
36831         (pointer): Typedef to POINTER_TYPE *.
36832         (malloc): Remove decl; we now always use xmalloc.
36833         (alloca): Use old-style definition, since Emacs needs this.
36834         Check for arithmetic overflow when computing combined size.
36835
36836 2002-12-04  Paul Eggert  <eggert@twinsun.com>
36837
36838         Do not generate unlocked-io.h automatically, since it's easier to
36839         maintain it by hand.
36840
36841         * lib/unlocked-io.h: New file, from GNU diffutils,
36842         but with proper copyright notice and attribution.
36843         * lib/gen-uio: Remove.
36844         * lib/Makefile.am: Add copyright notice.
36845         (libfetish_a_SOURCES): Add unlocked-io.h.
36846         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
36847         (DISTCLEANFILES, io_functions): Remove macros.
36848         (EXTRA_DIST): Remove gen_uio.
36849         (unlocked-io.h): Remove rule.
36850
36851 2002-12-04  Jim Meyering  <jim@meyering.net>
36852
36853         Reflect the fact that stat.c and lstat.c are no longer generated.
36854         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
36855         (DISTCLEANFILES): Likewise.
36856         (EXTRA_DIST): Likewise.
36857         (all_local): Don't depend on stat.c or lstat.c.
36858         (stat.c, lstat.c): Remove rules.
36859         (EXTRA_DIST): Remove xstat.in.
36860
36861         * lib/xstat.in: Remove file.  Contents moved into stat.c.
36862         * lib/stat.c: New file.  Contents mostly from xstat.in.
36863         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
36864         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
36865
36866         * lib/safe-read.c: Rework so that it may serve to define safe_write,
36867         too.
36868         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
36869
36870 2002-12-03  Jim Meyering  <jim@meyering.net>
36871
36872         * lib/safe-read.c, safe-write.c: Change variable names and comments,
36873         but not semantics, to minimize the differences between these two files.
36874         (safe_read): Change comment to mention SAFE_READ_ERROR.
36875
36876         * lib/safe-read.c (IS_EINTR): Define.
36877         (safe_read): Use IS_EINTR in place of in-function cpp directives.
36878
36879 2002-12-02  Jim Meyering  <jim@meyering.net>
36880
36881         * lib/safe-read.c (EINTR): Define.
36882         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
36883         (INT_MAX): Provide fallback.
36884         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
36885
36886         * lib/safe-read.h (SAFE_READ_ERROR): Define.
36887
36888 2002-12-02  Bruno Haible  <bruno@clisp.org>
36889
36890         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
36891         Define, taken from safe-read.c.
36892         (INT_MAX): Provide fallback.
36893         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
36894         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
36895
36896         * lib/safe-read.c (EINTR): Remove definition.
36897         (safe_read): Don't use EINTR if it is absent.
36898
36899 2002-12-01  Jim Meyering  <jim@meyering.net>
36900
36901         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
36902         zero.
36903         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
36904
36905 2002-11-27  Paul Eggert  <eggert@twinsun.com>
36906
36907         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
36908         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
36909         with `if (! (value < limit)) abort ();', for readability.
36910
36911 2002-11-26  Karl Berry  <karl@gnu.org>
36912
36913         * lib/strdup.c: copy from libc again, with jim's ok.
36914         * lib/.cppi-disable: re-add strdup.c
36915
36916 2002-11-25  Karl Berry  <karl@gnu.org>
36917
36918         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
36919         instead of "strtol.c".
36920
36921 2002-11-25  Karl Berry  <karl@gnu.org>
36922
36923         * config/install-sh: update from automake for variable quoting, $0 in
36924         error msgs, etc.
36925
36926         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
36927         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
36928         entry.
36929
36930 2002-11-25  Jim Meyering  <jim@meyering.net>
36931
36932         * lib/mktime.c: Sync from libc, now that it has the latest fix.
36933
36934 2002-11-24  Karl Berry  <karl@gnu.org>
36935
36936         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
36937         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
36938
36939 2002-11-24  Jim Meyering  <jim@meyering.net>
36940
36941         Update from coreutils:
36942
36943         * lib/mktime.c: Merge in changes from libc.
36944
36945         Avoid a link-time failure on some Linux systems.
36946         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
36947         (otherwise).
36948         (__mon_yday): Declare with the STATIC attribute.
36949         (__mktime_internal): Likewise.
36950         Based on a report from Greg Schafer.
36951
36952 2002-11-23  Jim Meyering  <jim@meyering.net>
36953
36954         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
36955         Use `unsigned', not `int', as type of index.
36956
36957         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
36958
36959         * lib/fsusage.c: Remove unneeded parentheses around operands of
36960         `defined'.
36961
36962 2002-11-22  Paul Eggert  <eggert@twinsun.com>
36963
36964         * lib/quotearg.h: Allow multiple inclusion by surrounding with
36965         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
36966         so that we can be included first.
36967         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
36968         * lib/quotearg.c: Include quotearg.h immediately after config.h.
36969         No need to include stddef.h or sys/types.h any more.
36970         Surround local include files with "", not "<>".
36971         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
36972         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
36973         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
36974         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
36975         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
36976         (ISPRINT): Remove; no longer needed now that we assume C89.
36977
36978         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
36979         Preserve errno.
36980
36981         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
36982         quotearg_char): Use SIZE_MAX rather than
36983         (size_t) -1 when we are talking about "infinity".
36984
36985         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
36986
36987 2002-11-22  Paul Eggert  <eggert@twinsun.com>
36988
36989         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
36990         hint that one should use `if (! x) abort ();' rather than `assert
36991         (x);', and anyway it's one less thing to worry about configuring.
36992         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
36993         hash_rehash, hash_insert): Use abort rather than assert.
36994
36995 2002-11-22  Bruno Haible  <bruno@clisp.org>
36996
36997         * lib/safe-read.h: Assume C89. Add comments.
36998         (safe_read): Change return type to size_t.
36999         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
37000         byte counts > SSIZE_MAX correctly.
37001         * lib/safe-write.h: New file.
37002         * lib/safe-write.c: New file.
37003         * lib/full-read.h: New file.
37004         * lib/full-read.c: New file.
37005         * lib/full-write.h: Assume C89. Add comments.
37006         * lib/full-write.c: Include safe-write.h.
37007         (full_write): Rewritten to use safe_write.
37008         Suggested by Jim Meyering and Paul Eggert.
37009
37010 2002-11-21  Jim Meyering  <jim@meyering.net>
37011
37012         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
37013
37014         Merge in changes from the coreutils.
37015
37016         2002-09-25  Paul Eggert  <eggert@twinsun.com>
37017         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
37018         <stdint.h>.
37019         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
37020         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
37021         int.  Work more efficiently if X is the same width as uintmax_t.
37022         Do not compare X to -1, to avoid bogus compiler warning.
37023         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
37024         Don't assume that f_frsize and f_bsize are the same type.
37025
37026         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
37027         warning on FreeBSD.
37028
37029         * lib/makepath.c (make_path): Restore umask *before* creating the final
37030         component.
37031         (make_path): Minor reformatting.
37032
37033         * lib/xmalloc.c: Adjust to work with new autoconf macros,
37034         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
37035         HAVE_MALLOC/HAVE_REALLOC.
37036
37037         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
37038         dummy ones.  At least on GNU/Linux systems, `auto' means something
37039         else.
37040         From Michael Stone.
37041
37042 2002-11-21  Bruno Haible  <bruno@clisp.org>
37043
37044         Remove case insensitive option matching.
37045         * lib/argmatch.h (argcasematch): Remove declaration.
37046         (ARGCASEMATCH): Remove macro.
37047         (__xargmatch_internal): Remove case_sensitive argument.
37048         (XARGMATCH): Update.
37049         (XARGCASEMATCH): Remove macro.
37050         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
37051         case_sensitive argument.
37052         (argcasematch): Remove function.
37053         (__xargmatch_internal): Remove case_sensitive argument.
37054         (main): Use XARGMATCH instead of XARGCASEMATCH.
37055
37056         * lib/xmalloc.c: Change compile-time error message. Add comment about
37057         required autoconf version.
37058
37059 2002-11-20  Paul Eggert  <eggert@twinsun.com>
37060
37061         Merge argmatch cleanups from Bison.  Assume C89.
37062
37063         * lib/argmatch.c: Include config.h here, not in argmatch.h.
37064         Include stdlib.h, for EXIT_FAILURE.
37065         Always include <string.h>, since we assume C89.
37066         (EXIT_FAILURE): Remove pre-C89 bug workaround.
37067         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
37068         Include <stddef.h> instead, since it's all we need for size_t.
37069         (PARAMS): Remove.  All uses removed.
37070         (ARRAY_CARDINALITY): Do not bother to #undef.
37071         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
37072         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
37073         Remove unnecessary parentheses.
37074         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
37075         Insert necessary parentheses.
37076         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
37077         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
37078
37079 2002-11-19  Bruno Haible  <bruno@clisp.org>
37080
37081         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
37082         * lib/mbswidth.h: Include <stddef.h>, for size_t.
37083
37084         * lib/mbswidth.h (PARAMS): Remove macro.
37085         (mbswidth, mbsnwidth): Use ANSI C function declarations.
37086         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
37087
37088         * lib/gcd.h (PARAMS): Remove macro.
37089         (gcd): Use ANSI C function declarations.
37090         * lib/gcd.c (gcd): Likewise.
37091
37092 2002-11-15  Bruno Haible  <bruno@clisp.org>
37093
37094         * lib/strcspn.c: Include <stddef.h>.
37095         (strcspn): Use ANSI C function declaration. Change return type to
37096         size_t. Use NULL.
37097         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
37098         (strpbrk): Use NULL.
37099         * lib/strpbrk.h (PARAMS): Remove macro.
37100         (strpbrk): Use ANSI C function declaration.
37101         * lib/strstr.c: Don't include <sys/types.h>.
37102         * lib/strstr.h (PARAMS): Remove macro.
37103         (strstr): Use ANSI C function declarations.
37104
37105 2002-11-14  Karl Berry  <karl@gnu.org>
37106
37107         * config/mkinstalldirs: `do' on separate line, instead of
37108         `for var; do'.
37109
37110 2002-11-06  Bruno Haible  <bruno@clisp.org>
37111
37112         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
37113         * lib/gcd.c (gcd): Likewise.
37114
37115 2002-11-05  Bruno Haible  <bruno@clisp.org>
37116
37117         * lib/gcd.h: New file, from gettext-0.11.5.
37118         * lib/gcd.c: New file, from gettext-0.11.5.
37119
37120 2002-11-05  Bruno Haible  <bruno@clisp.org>
37121
37122         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
37123         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
37124         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
37125         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
37126
37127         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
37128         <libintl.h>.
37129         * lib/makepath.c: Include gettext.h instead of <locale.h> and
37130         <libintl.h>.
37131
37132         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
37133         * lib/human.c: Include gettext.h instead of <libintl.h>.
37134         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
37135         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
37136         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
37137         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
37138         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
37139         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
37140         (textdomain): Remove definition.
37141         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
37142
37143         * lib/long-options.c: Remove include of <libintl.h> and definition of
37144         _.
37145         * lib/same.c: Remove include of <libintl.h> and definition of _.
37146
37147 2002-11-04  Owen Taylor  <otaylor@redhat.com>
37148
37149         * lib/config.charset: A few additions for Solaris.
37150
37151 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
37152
37153         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
37154         * lib/localcharset.c (locale_charset): Declare as extern "C".
37155
37156 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
37157
37158         * lib/config.charset: msdos in uk_UA uses CP1125.
37159
37160 2002-11-04  Bruno Haible  <bruno@clisp.org>
37161
37162         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
37163         * lib/strcase.h: New file, from GNU gettext-0.11.5.
37164         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
37165         * lib/strstr.h: New file, from GNU gettext-0.11.5.
37166         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
37167
37168 2002-11-04  Bruno Haible  <bruno@clisp.org>
37169
37170         * lib/localcharset.c (locale_charset): Don't return an empty string.
37171
37172 2002-11-04  Bruno Haible  <bruno@clisp.org>
37173
37174         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
37175         aliases.
37176
37177 2002-11-04  Bruno Haible  <bruno@clisp.org>
37178
37179         * lib/config.charset: Update for newest glibc. Add canonical names
37180         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
37181
37182 2002-11-04  Bruno Haible  <bruno@clisp.org>
37183
37184         * lib/config.charset: Add support for NetBSD.
37185
37186 2002-11-04  Bruno Haible  <bruno@clisp.org>
37187
37188         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
37189
37190 2002-11-01  Bruno Haible  <bruno@clisp.org>
37191
37192         * configure.in: Add AC_CONFIG_AUX_DIR call.
37193         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
37194         test/Makefile.
37195         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
37196
37197 2002-09-28  Karl Berry  <karl@gnu.org>
37198
37199         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
37200         installed automake until the next release, since changes have been
37201         made.
37202
37203 2002-09-25  Karl Berry  <karl@gnu.org>
37204
37205         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
37206         * lib/getopt*: copy from libc/posix.
37207         * lib/gettext.h: copy from gettext.
37208         * lib/.cppi-disable: add strdup.c, gettext.h.
37209
37210 2002-09-25  Karl Berry  <karl@gnu.org>
37211
37212         * config/srclist.txt: enable gettext.h check.
37213         * config/config.{guess,sub}: update from prep.
37214         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
37215                 from automake 1.6.3.
37216         See srclist*.
37217
37218 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
37219
37220         * regex.c (PATFETCH): Remove the translating fetch.
37221         (PATFETCH_RAW): Rename to PATFETCH.
37222         (set_image_of_range): New fun.
37223         (SET_RANGE_TABLE_WORK_AREA): Use it.
37224         (regex_compile): Don't translate the pattern chars so eagerly.
37225         Only do it when inserting an `exactn' bytecode or when handling
37226         a char-range.
37227         (mutually_exclusive_p): Avoid empty statement.
37228
37229 2002-07-06  Jim Meyering  <meyering@lucent.com>
37230
37231         * m4/README: Don't mention Makefile.am.in.
37232         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
37233
37234 2002-07-01  Jim Meyering  <meyering@lucent.com>
37235
37236         * lib/c-stack.c: Include sys/time.h.
37237         From Volker Borchert.
37238
37239 2002-06-26  Paul Eggert  <eggert@twinsun.com>
37240
37241         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
37242
37243 2002-06-26  Paul Eggert  <eggert@twinsun.com>
37244
37245         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
37246         New macro.  Use it uniformly instead of
37247         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
37248         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
37249         reported by Vin Shelton.
37250
37251 2002-06-22  Paul Eggert  <eggert@twinsun.com>
37252
37253         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
37254         Do not assume SA_SIGINFO behavior.
37255         Bug reported by Jim Meyering on NetBSD 1.5.2.
37256
37257 2002-06-22  Jim Meyering  <meyering@lucent.com>
37258
37259         * m4/c-stack.m4: New file, from diffutils-2.8.2.
37260         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
37261
37262         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
37263         now that configure.ac uses AC_GNU_SOURCE.
37264         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
37265         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
37266
37267         Update to latest tools.  Suggestions from Paul Eggert.
37268         * m4/stdbool.m4: New file, from diffutils-2.8.2.
37269         * m4/gnu-source.m4: Update from diffutils-2.8.2.
37270         * m4/fnmatch.m4: Likewise.
37271         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
37272         to AC_HEADER_STDBOOL
37273
37274 2002-06-22  Jim Meyering  <meyering@lucent.com>
37275
37276         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
37277         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
37278
37279 2002-06-22  Jim Meyering  <meyering@lucent.com>
37280
37281         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
37282
37283         * lib/exitfail.c, exitfail.h: Likewise.
37284         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
37285
37286         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
37287         of fnmatch.h.
37288         (EXTRA_DIST): Add fnmatch_loop.c.
37289         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
37290
37291         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
37292         * lib/fnmatch.c: Update from diffutils-2.8.2.
37293         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
37294         * lib/fnmatch.h: Remove file.
37295
37296 2002-06-21  Jim Meyering  <meyering@lucent.com>
37297
37298         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
37299         * m4/mbrtowc.m4: Likewise.
37300
37301         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
37302         * m4/mbswidth.m4: Reflect name change:
37303         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
37304         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
37305
37306         * m4/lib-link.m4: Update from gettext-0.11.2.
37307         * m4/gettext.m4: Likewise.
37308
37309         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
37310         From Alfred M. Szmidt.
37311
37312 2002-06-18  Paul Eggert  <eggert@twinsun.com>
37313
37314         * lib/file-type.h: Report an error if neither S_ISREG nor
37315         S_IFREG is defined, instead of using a test specific to glibc
37316         2.2.  This should be safe, since POSIX requires S_ISREG and
37317         Unix Version 7 had S_IFREG.  We don't need to check for
37318         <sys/types.h> since we don't use any symbols that it defines.
37319
37320 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
37321
37322         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
37323         $@-t, so that each temporary file name is unique and valid in the first
37324         8 characters, for operation under DOS.
37325
37326 2002-06-15  Paul Eggert  <eggert@twinsun.com>
37327
37328         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
37329
37330 2002-06-15  Jim Meyering  <meyering@lucent.com>
37331
37332         Work even with DJGPP 2.03, which lacks support for symlinks.
37333         From Richard Dawe.
37334         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
37335         is defined.
37336         * lib/lchown.c (S_ISLNK): Likewise.
37337
37338 2002-06-15  Jim Meyering  <meyering@lucent.com>
37339
37340         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
37341         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
37342         have been included before this file.
37343
37344 2002-06-14  Jim Meyering  <meyering@lucent.com>
37345
37346         * lib/file-type.h: Use the version from diffutils-2.8.2.
37347         * lib/file-type.c: Likewise.
37348
37349 2002-06-07  Jim Meyering  <meyering@lucent.com>
37350
37351         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
37352         They're needed at least for NetBSD 1.5.2.
37353         ($statxfs_includes): Include those same headers.
37354         ($statxfs_includes): Include sys/vfs.h if available.
37355         ($statxfs_includes): Likewise for sys/statvfs.h.
37356         Check for the following members in both structs statfs and statvfs:
37357         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
37358
37359 2002-06-01  Jim Meyering  <meyering@lucent.com>
37360
37361         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
37362         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
37363
37364 2002-05-28  Jim Meyering  <meyering@lucent.com>
37365
37366         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
37367         Reported by Volker Borchert.
37368
37369 2002-05-27  Jim Meyering  <meyering@lucent.com>
37370
37371         Fix a problem seen only on nonconforming systems whereby ls.c's
37372         use of localtime, and then of gettimeofday would cause trouble:
37373         the localtime call used to initialize rpl_gettimeofday's save
37374         mechanism would clobber ls's current local time information so
37375         that in any long listing the first file would always be listed
37376         with date 1970-01-01.  Analysis by Volker Borchert.
37377
37378         * lib/gettimeofday.c (localtime): Undefine.
37379         (rpl_localtime): New function.
37380
37381 2002-05-27  Jim Meyering  <meyering@lucent.com>
37382
37383         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
37384         localtime.
37385
37386         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
37387         use the replacement function; it wouldn't resolve at link time.
37388         Reported by Volker Borchert.
37389
37390 2002-05-22  Jim Meyering  <meyering@lucent.com>
37391
37392         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
37393         file-type.h.
37394         * lib/file-type.h: New file.
37395         * lib/file-type.c (file_type): New file/function.  Extracted from
37396         diffutils.
37397
37398 2002-04-30  Jim Meyering  <meyering@lucent.com>
37399
37400         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
37401
37402 2002-04-29  Paul Eggert  <eggert@twinsun.com>
37403
37404         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
37405
37406 2002-04-29  Paul Eggert  <eggert@twinsun.com>
37407
37408         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
37409         Do not check for alloca.h (no longer used) or stdbool.h (was never
37410         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
37411
37412 2002-04-29  Paul Eggert  <eggert@twinsun.com>
37413
37414         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
37415
37416 2002-04-29  Jim Meyering  <meyering@lucent.com>
37417
37418         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
37419         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
37420         Use AC_FUNC_STRNLEN here instead.
37421
37422         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
37423         With autoconf-2.53a, it's part of AC_PROG_CC.
37424
37425 2002-04-28  Paul Eggert  <eggert@twinsun.com>
37426
37427         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
37428         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
37429
37430 2002-04-28  Paul Eggert  <eggert@twinsun.com>
37431
37432         * lib/sig2str.h, lib/sig2str.c: New files.
37433         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
37434
37435 2002-04-28  Paul Eggert  <eggert@twinsun.com>
37436
37437         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
37438         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
37439         of 127, since 64 is the largest conceivable number for ancient
37440         nonstandard hosts.
37441         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
37442
37443 2002-04-28  Jim Meyering  <meyering@lucent.com>
37444
37445         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
37446
37447 2002-04-24  Jim Meyering  <meyering@lucent.com>
37448
37449         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
37450         (jm_PREREQ): Use it.
37451
37452         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
37453         mach/mach.h fcntl.h.
37454         Check for this function: setlocale.
37455
37456 2002-04-24  Jim Meyering  <meyering@lucent.com>
37457
37458         * lib/gettext.h: New file, from Gettext.
37459         * lib/Makefile.am (INCLUDES): Remove -I../intl.
37460         (libfetish_a_SOURCES): Add gettext.h.
37461
37462 2002-04-16  Jim Meyering  <meyering@lucent.com>
37463
37464         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
37465         ut_pid, ut_id, ut_exit.
37466
37467 2002-04-16  Jim Meyering  <meyering@lucent.com>
37468
37469         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
37470         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
37471         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
37472
37473 2002-04-12  Jim Meyering  <meyering@lucent.com>
37474
37475         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
37476         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
37477         existence of the getmntinfo function.  Needed for Darwin 5.3.
37478
37479         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
37480         This is necessary at least on Darwin 5.3.
37481
37482         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
37483         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
37484         strnlen.o in the library, and that makes some versions of ranlib
37485         object.
37486
37487 2002-04-12  Jim Meyering  <meyering@lucent.com>
37488
37489         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
37490
37491 2002-04-09  Jim Meyering  <meyering@lucent.com>
37492
37493         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
37494         to be more precise.  Rather than saying we're checking whether the
37495         function `works', say what we're testing.
37496         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
37497         Reported by Bruno Haible.
37498
37499 2002-03-10  Jim Meyering  <meyering@lucent.com>
37500
37501         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
37502         Suggestion from Santiago Vila.
37503
37504 2002-03-08  Jim Meyering  <meyering@lucent.com>
37505
37506         * lib/rename.c: Mention that this wrapper is needed also on
37507         mips-dec-ultrix4.4 systems.
37508
37509 2002-03-02  Jim Meyering  <meyering@lucent.com>
37510
37511         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
37512         not HAVE_CLOCK_SETTIME.
37513
37514 2002-02-27  Paul Eggert  <eggert@twinsun.com>
37515
37516         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
37517         Check for clock_settime.
37518
37519 2002-02-27  Paul Eggert  <eggert@twinsun.com>
37520
37521         * lib/nanosleep.h: Rename to....
37522         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
37523
37524         * lib/gettime.c: New file.
37525         * lib/settime.c: New file.
37526         * lib/stime.c: Remove.
37527
37528         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
37529         timespec.h.  Remove nanosleep.h.
37530
37531 2002-02-25  Paul Eggert  <eggert@twinsun.com>
37532
37533         * m4/acl.m4: New file.
37534         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
37535         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
37536
37537 2002-02-25  Paul Eggert  <eggert@twinsun.com>
37538
37539         * lib/acl.c, lib/acl.h: New files.
37540         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
37541
37542 2002-02-24  Jim Meyering  <meyering@lucent.com>
37543
37544         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
37545         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
37546         cause trouble.  Reported by Nelson Beebe.
37547
37548 2002-02-23  Paul Eggert  <eggert@twinsun.com>
37549
37550         * lib/path-concat.c (xpath_concat): Reorder code to pacify
37551         compilers that don't know that xalloc_die never returns.
37552
37553 2002-02-20  Jim Meyering  <meyering@lucent.com>
37554
37555         * lib/getdate.c: Regenerate using bison-1.33.
37556
37557 2002-02-17  Jim Meyering  <meyering@lucent.com>
37558
37559         * config/config.guess (main): Don't use `head -1'; it's no longer
37560         portable. Use `sed 1q' instead.
37561
37562 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
37563
37564         * m4/codeset.m4: Upgrade to gettext-0.11.
37565         * m4/gettext.m4: Upgrade to gettext-0.11.
37566         * m4/glibc21.m4: Upgrade to gettext-0.11.
37567         * m4/iconv.m4: Upgrade to gettext-0.11.
37568         * m4/isc-posix.m4: Upgrade to gettext-0.11.
37569         * m4/lcmessage.m4: Upgrade to gettext-0.11.
37570         * m4/lib-ld.m4: New file, from gettext-0.11.
37571         * m4/lib-link.m4: New file, from gettext-0.11.
37572         * m4/lib-prefix.m4: New file, from gettext-0.11.
37573         * m4/progtest.m4: Upgrade to gettext-0.11.
37574
37575 2002-02-15  Paul Eggert  <eggert@twinsun.com>
37576
37577         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
37578         (jm_PREREQ): Use it.
37579
37580 2002-02-15  Paul Eggert  <eggert@twinsun.com>
37581
37582         * lib/posixver.c, lib/posixver.h: New files.
37583         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
37584
37585 2002-02-02  Paul Eggert  <eggert@twinsun.com>
37586             Bruno Haible  <bruno@clisp.org>
37587
37588         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
37589         (fwrite_success_callback): New declaration.
37590         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
37591         print_unicode_char. Call failure callback instead of error.
37592         (fwrite_success_callback): New function.
37593         (exit_failure_callback): New function.
37594         (fallback_failure_callback): New function.
37595         (print_unicode_char): Call unicode_to_mb.
37596
37597 2002-01-26  Jim Meyering  <meyering@lucent.com>
37598
37599         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
37600         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
37601
37602 2002-01-26  Jim Meyering  <meyering@lucent.com>
37603
37604         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
37605
37606 2002-01-22  Paul Eggert  <eggert@twinsun.com>
37607
37608         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
37609
37610 2002-01-22  Jim Meyering  <meyering@lucent.com>
37611
37612         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
37613         Otherwise, some versions of automake would omit the rule that makes
37614         Makefile from Makefile.in.
37615
37616 2002-01-21  Paul Eggert  <eggert@twinsun.com>
37617
37618         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
37619         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
37620         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
37621         (memcoll): Set errno to zero if there is no error.
37622
37623         * lib/quotearg.c (quotearg_buffer_restyled):
37624         Fix bug with quoting buffers containing NUL when backslashing escapes.
37625         This bug was exposed by the other changes in this patch.
37626         (quotearg_n_options): New arg ARGSIZE.
37627         All callers changed.
37628         (quoting_options_from_style): New function.
37629         (quotearg_n_style): Use it.
37630         (quotearg_n_style_mem): New function.
37631
37632         * lib/quotearg.h (quotearg_n_style_mem): New function.
37633
37634 2002-01-19  Jim Meyering  <meyering@lucent.com>
37635
37636         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
37637         Remove useless quotes: DF_PROG="df".
37638         * m4/strnlen.m4: New file.
37639
37640 2002-01-16  Paul Eggert  <eggert@twinsun.com>
37641
37642         * lib/backupfile.c (ISDIGIT): Comment fix.
37643         * lib/getdate.y (ISDIGIT): Likewise.
37644         * lib/posixtm.c (ISDIGIT, year): Likewise.
37645         * lib/strverscmp.c (ISDIGIT): Likewise.
37646         * lib/userspec.c (ISDIGIT): Likewise.
37647
37648 2002-01-16  Jim Meyering  <meyering@lucent.com>
37649
37650         * lib/getdate.y: Add three semicolons, each just before a closing
37651         brace. Bison (as of version 1.31) no longer papers over that mistake.
37652
37653 2002-01-05  Jim Meyering  <meyering@lucent.com>
37654
37655         * lib/version-etc.c (version_etc_copyright): Update copyright year.
37656
37657 2001-12-19  Paul Eggert  <eggert@twinsun.com>
37658
37659         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
37660         not silently exit merely because the output buffer happens to
37661         have nothing pending.
37662
37663 2001-12-18  Paul Eggert  <eggert@twinsun.com>
37664
37665         See the big note in ../ChangeLog.
37666         * lib/human.c (suffixes): Prefer K to k for 1024.
37667         (generate_suffix_backwards): New function.
37668         (human_readable_inexact): Use it.
37669         * lib/xstrtol.c (__xstrtol): If there is no number but there
37670         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
37671         Accept 'K' as well as 'k'.
37672
37673 2001-12-15  Jim Meyering  <meyering@lucent.com>
37674
37675         * lib/regex.h (__restrict_arr): Update from libc.
37676
37677         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
37678         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
37679         (STREQ): Define.
37680
37681 2001-12-14  Jim Meyering  <meyering@lucent.com>
37682
37683         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
37684         Suggestion from Bruno Haible.
37685
37686 2001-12-10  Jim Meyering  <meyering@lucent.com>
37687
37688         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
37689         xrealloc, Instead, include "xalloc.h".
37690         (initbuffer): Don't cast xmalloc return value to char*.
37691         (readline): Reword comment.
37692         Don't cast xrealloc return value to char*
37693         Return NULL, not 0.
37694
37695 2001-12-09  Jim Meyering  <meyering@lucent.com>
37696
37697         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
37698         about `signed and unsigned type in conditional expression'.
37699         * lib/posixtm.c (posix_time_parse): Likewise.
37700
37701         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
37702
37703         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
37704         to avoid a pedantic warning.
37705
37706         * lib/getstr.c: Don't include assert.h.
37707         (getstr): Remove warning-evoking assertions.
37708         Return -1 if offset parameter is out of bounds.
37709         Change the type of a local from int to size_t.
37710
37711         * lib/strftime.c (my_strftime_localtime_r): Include this function
37712         definition in the `#if ! HAVE_TM_GMTOFF' block.
37713
37714         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
37715         Include xalloc.h instead.
37716
37717 2001-12-02  Jim Meyering  <meyering@lucent.com>
37718
37719         * lib/tempname.c: Don't declare getenv, thus reverting the change of
37720         2001-11-18.  It's no longer necessary, now that stdlib.h is always
37721         included.
37722
37723         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
37724         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
37725
37726 2001-11-30  Akim Demaille  <akim@epita.fr>
37727
37728         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
37729         before being defined.
37730
37731 2001-11-27  Paul Eggert  <eggert@twinsun.com>
37732
37733         * lib/quotearg.h (quotearg_n, quotearg_n_style):
37734         First arg is int, not unsigned.
37735         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
37736         (SIZE_MAX, UINT_MAX): New macros.
37737         (quotearg_n_options): Abort if N is negative.
37738         Avoid overflow check on hosts where size_t is 64 bits and int
37739         is 32 bits, as overflow is impossible there.
37740         Fix off-by-one typo that caused unnecessary reallocation.
37741
37742 2001-11-27  Jim Meyering  <meyering@lucent.com>
37743
37744         * lib/tempname.c: Merge with version from libc.
37745         * lib/regex.c: Likewise.
37746
37747         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
37748         systems for which STDC_HEADERS is 0, it was not included, resulting in
37749         a warning about an integer-to-pointer conversion problem with getenv.
37750         Reported by Volker Borchert.
37751
37752 2001-11-26  Jim Meyering  <meyering@lucent.com>
37753
37754         * lib/gtod.h: Remove file.
37755         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
37756         * lib/gettimeofday.c: Don't include gtod.h.
37757         (GTOD_init): Remove function.
37758         (rpl_gettimeofday): Do its job here instead, rather than aborting.
37759         Suggestion from Volker Borchert.
37760
37761 2001-11-23  Jim Meyering  <meyering@lucent.com>
37762
37763         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
37764         it.
37765         * lib/hash.c (struct hash_table): Define it here instead.
37766
37767 2001-11-22  Jim Meyering  <meyering@lucent.com>
37768
37769         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
37770
37771 2001-11-20  Jim Meyering  <meyering@lucent.com>
37772
37773         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
37774         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
37775
37776 2001-11-19  Jim Meyering  <meyering@lucent.com>
37777
37778         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
37779         directory.  Use "conftestXXXXXX" as the template.
37780         Suggestion from Paul Eggert.
37781
37782         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
37783         immediately, so the test doesn't mistakenly hit the max-open-files
37784         limit.
37785
37786 2001-11-18  Paul Eggert  <eggert@twinsun.com>
37787
37788         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
37789         (TEMPORARIES): New macro.
37790         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
37791         removes an artificial limitation (e.g. HP-UX 10.20, where
37792         TMP_MAX is 17576).
37793
37794 2001-11-18  Jim Meyering  <meyering@lucent.com>
37795
37796         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
37797
37798 2001-11-18  Jim Meyering  <meyering@lucent.com>
37799
37800         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
37801         on SunOS 4.
37802
37803         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
37804         files will be created before anything else.
37805
37806 2001-11-17  Paul Eggert  <eggert@twinsun.com>
37807
37808         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
37809         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
37810
37811 2001-11-17  Jim Meyering  <meyering@lucent.com>
37812
37813         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
37814         Prompted by a report from Bob Proulx.
37815
37816         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
37817         Instead, require UTILS_FUNC_MKSTEMP.
37818
37819 2001-11-17  Jim Meyering  <meyering@lucent.com>
37820
37821         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
37822         Now, that's done as part of AC_FUNC_STRTOD.
37823
37824 2001-11-17  Jim Meyering  <meyering@lucent.com>
37825
37826         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
37827         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
37828         rather than group writable.  Patch by Juan F. Codagnone.
37829
37830         * lib/readtokens.c: Remove explicit declarations of xmalloc and
37831         xrealloc, Instead, include "xalloc.h".
37832
37833         * lib/mountlist.c: Include unlocked-io.h after all system headers.
37834         Remove explicit declarations of xmalloc, xrealloc,
37835         and xstrdup.  Instead, include "xalloc.h".
37836
37837         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
37838         unlocked-io.h.
37839         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
37840         Likewise.
37841         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
37842
37843         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
37844         Reported by Padraig Brady.
37845
37846         * lib/mkstemp.c: #undef mkstemp.
37847         Include config.h.
37848         (rpl_mkstemp): Rename from mkstemp.
37849         Protoize.
37850
37851 2001-11-16  Jim Meyering  <meyering@lucent.com>
37852
37853         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
37854         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
37855         determine the amount of total physical memory, use pstat_getstatic.
37856         HPUX-11 doesn't define _SC_PHYS_PAGES.
37857         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
37858         If sysconf couldn't be used to determine the amount of available
37859         physical memory, use both pstat_getstatic and pstat_getdynamic.
37860         Based on a patch from Bob Proulx.
37861
37862 2001-11-10  Jim Meyering  <meyering@lucent.com>
37863
37864         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
37865         (jm_PREREQ): Use it.
37866
37867 2001-11-09  Jim Meyering  <meyering@lucent.com>
37868
37869         * m4/jm-macros.m4: Require autoconf-2.52f.
37870         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
37871         Use these AC_-prefixed names, not the AM_-prefixed ones.
37872
37873         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
37874
37875 2001-11-05  Jim Meyering  <meyering@lucent.com>
37876
37877         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
37878
37879 2001-11-04  Jim Meyering  <meyering@lucent.com>
37880
37881         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
37882         $DEFS.
37883
37884 2001-11-03  Jim Meyering  <meyering@lucent.com>
37885
37886         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
37887         of AC_DEFUN.
37888
37889         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
37890         know the name of the variable in the macro definition.
37891
37892 2001-11-03  Jim Meyering  <meyering@lucent.com>
37893
37894         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
37895         in argmatch_to_argument call.
37896
37897         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
37898         argument.
37899
37900         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
37901         e.g., a fault due to an attempt to free a NULL pointer.
37902
37903 2001-11-01  Jim Meyering  <meyering@lucent.com>
37904
37905         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
37906         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
37907
37908 2001-11-01  Jim Meyering  <meyering@lucent.com>
37909
37910         * lib/dirfd.c, lib/dirfd.h: New files.
37911         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
37912
37913         * lib/hash.c (hash_print) [TESTING]: Clean up.
37914
37915 2001-10-22  Paul Eggert  <eggert@twinsun.com>
37916
37917         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
37918         to avoid a warning if -Wall.
37919
37920 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
37921
37922         * README: New file
37923         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
37924         (per RMS's instructions, this is now the canonical source)
37925         * lgpl/, gpl/: New directories.
37926
37927 2001-10-21  Paul Eggert  <eggert@twinsun.com>
37928
37929         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
37930
37931 2001-10-21  Jim Meyering  <meyering@lucent.com>
37932
37933         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
37934         this code would end up calling gettext even in packages built
37935         with --disable-nls.
37936         * lib/getopt.c (_): Likewise.
37937         * lib/regex.c (_): Likewise.
37938
37939 2001-10-20  Paul Eggert  <eggert@twinsun.com>
37940
37941         * m4/error.m4 (jm_PREREQ_ERROR):
37942         Do not invoke AC_CHECK_FUNCS with strerror_r, as
37943         AC_FUNC_STRERROR_R does that.
37944         Check for strerror declaration.
37945
37946         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
37947         are supposed to have them these days.
37948         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
37949         Merge changes from latest Autoconf CVS.
37950         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
37951         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
37952         POSIX decided to standardize on the int flavor of strerror_r.
37953
37954 2001-10-20  Paul Eggert  <eggert@twinsun.com>
37955
37956         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
37957         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
37958         Use strerror_r that is only a macro, even if it is not a function.
37959         (strerror): Check for HAVE_DECL_STRERROR before declaring.
37960         (private_strerror): Use prototypes, not old-style function definition.
37961         (print_errno_message): New function.
37962         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
37963         char*-flavored one.
37964         (error_tail, error, error_at_line): Use it.
37965
37966 2001-10-11  Jim Meyering  <meyering@lucent.com>
37967
37968         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
37969         and quote_n (1, ... to avoid clobbering a buffer.
37970
37971 2001-10-05  Jim Meyering  <meyering@lucent.com>
37972
37973         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
37974         hash-pjw.h.
37975         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
37976         * lib/hash-pjw.h: New file.
37977
37978 2001-09-30  Jim Meyering  <meyering@lucent.com>
37979
37980         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
37981         `struct fsstat' has the `f_fstypename' member.
37982         Use that to define FS_TYPE, which is now used to make
37983         the getfsstat link test tighter.
37984
37985 2001-09-30  Jim Meyering  <meyering@lucent.com>
37986
37987         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
37988         Include <sys/ucred.h>, for Apple Darwin.
37989         Include sys/mount.h and sys/fs_types.h only if available.
37990         (FS_TYPE): Define.
37991         (read_filesystem_list): Use FS_TYPE.
37992
37993 2001-09-29  Paul Eggert  <eggert@twinsun.com>
37994
37995         * lib/exclude.c (excluded_filename): 0 -> false, since it's
37996         a boolean context.
37997
37998 2001-09-29  Jim Meyering  <meyering@lucent.com>
37999
38000         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
38001         [one-argument getmntent function]): Include stdio.h before mntent.h.
38002         SunOS 4.1.x needs it for the declaration of `FILE'.
38003         Patch by Volker Borchert.
38004
38005         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
38006         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
38007         sys/fs_types.h, and make the link-test for getfsstat guard #include
38008         directives with appropriate #if HAVE_*_H tests so that we can
38009         detect getfsstat on Apple Darwin1.3.7 systems.
38010         Reported by Nelson Beebe.
38011         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
38012
38013 2001-09-28  Paul Eggert  <eggert@twinsun.com>
38014
38015         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
38016         #defines strtoimax.  Also treat the other strto* functions
38017         like strtoimax.
38018
38019         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
38020         Check for strtoul and strtoumax,
38021         as those declarations are made even in the signed case.
38022         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
38023         Likewise, for strtol and strtoimax.
38024
38025 2001-09-28  Paul Eggert  <eggert@twinsun.com>
38026
38027         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
38028         #defines strtoimax.  Also treat the other strto* functions
38029         like strtoimax.
38030
38031         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
38032         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
38033         (strtoimax, strtoumax): Do not declare if already defined as a macro.
38034
38035 2001-09-26  Jim Meyering  <meyering@lucent.com>
38036
38037         Most macros in unlocked-io.h had the wrong number of arguments.
38038         * lib/gen-uio: New script.
38039         (USE_UNLOCKED_IO): Define to 1 if not already defined.
38040         * lib/unlocked-io.hin: Remove file.
38041         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
38042         rather than trying to embed it here.
38043         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
38044         Reported by Padraig Brady.
38045
38046 2001-09-25  Volker Borchert  <bt@teknon.de>
38047
38048         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
38049         `result'.
38050
38051 2001-09-24  Jim Meyering  <meyering@lucent.com>
38052
38053         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
38054
38055 2001-09-23  Jim Meyering  <meyering@lucent.com>
38056
38057         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
38058         instead of the mere test for existence of mntent.h.  The latter
38059         would get a false-positive on AIX 3.4 systems.
38060         In the outer getmntent if-block, don't die if neither of the getmntent
38061         tests succeeds.  Instead, just fall through and continue with the
38062         remaining tests.
38063
38064 2001-09-23  Jim Meyering  <meyering@lucent.com>
38065
38066         * lib/mountlist.c: Remove useless parentheses in #if directives.
38067         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
38068         the deprecated MOUNTED symbol is no longer defined in mntent.h.
38069
38070 2001-09-22  Jim Meyering  <meyering@lucent.com>
38071
38072         * m4/gettext.m4: New file.  From gettext.
38073         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
38074         * m4/progtest.m4: Likewise
38075         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
38076         * m4/glibc21.m4: Likewise.
38077
38078         * m4/libintl.m4: Remove.  No longer used.
38079
38080 2001-09-22  Jim Meyering  <meyering@lucent.com>
38081
38082         * lib/localcharset.c: Update from latest gettext.
38083         * lib/config.charset: Likewise.
38084
38085 2001-09-20  Jim Meyering  <meyering@lucent.com>
38086
38087         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
38088         strtoimax.
38089         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
38090         strtoumax.
38091
38092 2001-09-20  Jim Meyering  <meyering@lucent.com>
38093
38094         * lib/xstrtol.c (strtoimax): Guard declaration with
38095         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
38096         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
38097         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
38098         (strtoumax): Likewise, for completeness (it wasn't necessary).
38099
38100 2001-09-17  Paul Eggert  <eggert@twinsun.com>
38101
38102         * lib/strtoimax.c (HAVE_LONG_LONG):
38103         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
38104         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
38105         to work around bug in IBM C compiler.
38106
38107 2001-09-17  Jim Meyering  <meyering@lucent.com>
38108
38109         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
38110         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
38111         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
38112         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
38113         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
38114         whenever the right hand side need not be expanded by the shell.
38115
38116 2001-09-16  Paul Eggert  <eggert@twinsun.com>
38117
38118         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
38119         library.  It's not correct, as some older glibcs are buggy.
38120         fnmatch wasn't fixed until glibc 2.2.
38121
38122         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
38123         special shell magic here.
38124
38125 2001-09-16  Jim Meyering  <meyering@lucent.com>
38126
38127         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
38128         * m4/jm-macros.m4: Require it.
38129
38130 2001-09-16  Jim Meyering  <meyering@lucent.com>
38131
38132         * lib/mkdir.c: New file.
38133
38134 2001-09-15  Jim Meyering  <meyering@lucent.com>
38135
38136         * m4/jm-macros.m4: Check for help2man.
38137
38138 2001-09-11  Jim Meyering  <meyering@lucent.com>
38139
38140         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
38141         The body, by Paul Eggert, was moved here from configure.in.
38142         * m4/jm-macros.m4: Require UTILS_HOST_OS.
38143
38144 2001-09-04  Paul Eggert  <eggert@twinsun.com>
38145
38146         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
38147         (jm_PREREQ): Use it.
38148
38149 2001-09-04  Paul Eggert  <eggert@twinsun.com>
38150
38151         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
38152         Use ssize_t, not int, to store result of readlink.
38153         Check for ssize_t overflow as well as size_t overflow,
38154         as POSIX says the result of readlink is implementation-defined
38155         when ssize_t overflows.
38156         Remove unnecessary cast to char*.
38157         Use free+malloc instead of realloc, as the storage doesn't need
38158         to be preserved and it's clearer and can be more efficient that way.
38159         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
38160         * lib/xreadlink.h (xreadlink): Update prototype.
38161
38162 2001-09-04  Paul Eggert  <eggert@twinsun.com>
38163
38164         * lib/xgetcwd.c: Revert some of the previous change; intead,
38165         fix the HAVE_GETCWD_NULL code to behave more like the
38166         !HAVE_GETCWD_NULL code used to.
38167
38168         Include "xalloc.h".
38169         (xgetcwd): Do not return NULL when memory is exhausted; instead,
38170         invoke xalloc_die.
38171
38172 2001-09-03  Paul Eggert  <eggert@twinsun.com>
38173
38174         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
38175         sys/param.h, as pathmax.h includes them.
38176
38177 2001-09-03  Paul Eggert  <eggert@twinsun.com>
38178
38179         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
38180         (jm_PREREQ_XGETCWD): New macro.
38181
38182         * m4/getcwd.m4: New file.
38183
38184 2001-09-03  Paul Eggert  <eggert@twinsun.com>
38185
38186         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
38187         like the HAVE_GETCWD_NULL code.
38188         Include pathmax.h if not HAVE_GETCWD.
38189         Do not include xalloc.h.
38190         (INITIAL_BUFFER_SIZE): New symbol.
38191         Do not use xmalloc / xrealloc, since the caller is responsible for
38192         handling errors.  Preserve errno around `free' during failure.
38193         Do not overrun buffer when using getwd.
38194
38195 2001-09-03  Paul Eggert  <eggert@twinsun.com>
38196
38197         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
38198         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
38199         getcwd (NULL, 0).
38200
38201 2001-09-03  Paul Eggert  <eggert@twinsun.com>
38202
38203         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
38204         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
38205         spotted by Jim Meyering.
38206
38207 2001-09-03  Jim Meyering  <meyering@lucent.com>
38208
38209         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
38210         failure.
38211
38212 2001-09-02  Jim Meyering  <meyering@lucent.com>
38213
38214         * lib/error.c: Update from GNU libc.
38215
38216 2001-09-01  Jim Meyering  <meyering@lucent.com>
38217
38218         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
38219         Used by df.
38220
38221 2001-09-01  Jim Meyering  <meyering@lucent.com>
38222
38223         * lib/xreadlink.c: New file.
38224         * lib/xreadlink.h: New file.
38225         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
38226         xreadlink.h.
38227
38228         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
38229         doesn't conflict with sparc Solaris 7's definition in
38230         /usr/include/sys/int_types.h.
38231
38232         * lib/exclude.c: Use `""', not `<>' to #include non-system header
38233         files.
38234         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
38235         and strncasecmp as r-values.  Unixware didn't have declarations.
38236
38237 2001-08-31  Paul Eggert  <eggert@twinsun.com>
38238
38239         * lib/xstrtol.h: Add copyright notice.
38240         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
38241         LONGINT_INVALID_SUFFIX_CHAR.
38242
38243 2001-08-31  Paul Eggert  <eggert@twinsun.com>
38244
38245         * lib/xstrtol.c (strtoimax): New decl.
38246
38247 2001-08-31  Paul Eggert  <eggert@twinsun.com>
38248
38249         * lib/xgetcwd.c: Don't include pathmax.h.
38250         Include stdlib.h and unistd.h if available.
38251         Include xalloc.h.
38252         (xmalloc, xstrdup, free): Remove decls.
38253         (xgetcwd): Don't assume sizes fit in unsigned.
38254         Check for overflow when computing sizes.
38255         Simplify reallocation code.
38256
38257 2001-08-31  Paul Eggert  <eggert@twinsun.com>
38258
38259         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
38260         a directory's st_size can have an arbitrary value, so the old
38261         usage could waste an arbitrary amount of memory.  All uses
38262         changed.
38263         * lib/savedir.h: Update prototype.
38264
38265 2001-08-31  Paul Eggert  <eggert@twinsun.com>
38266
38267         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
38268
38269         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
38270         old strtoimax.c.
38271
38272         Also, make the following further changes to make this file's
38273         configuration more similar to that of strtol.c:
38274         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
38275         (strtoumax, uintmax_t, strtoull, strtol): Remove.
38276         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
38277         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
38278         changed to signed values.
38279
38280         And make the following changes as well:
38281         Fix copyright notice, as 1999 was missing.
38282         (verify): New macro.
38283         (strtoimax): Check sizes at compile-time, not run-time.
38284         Prefer strtol to strtoll if both work.
38285         (main): Remove; it was not that useful and was a pain to maintain.
38286
38287         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
38288
38289 2001-08-31  Jim Meyering  <meyering@lucent.com>
38290
38291         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
38292         Use an initial, malloc'd, buffer of length 128 rather than
38293         a statically allocated one of length 1024.
38294
38295 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38296
38297         Simplify code, partly by assuming autoconf 2.52 semantics.
38298
38299         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
38300
38301         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
38302         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
38303         All uses removed.
38304         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
38305         Move AC_REQUIRE to next-to-top level, to avoid confusion.
38306         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
38307         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
38308         jm_AC_HEADER_INTTYPES_H.
38309         * m4/jm-macros.m4 (jm_MACROS): Likewise.
38310
38311         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
38312
38313         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
38314         Quote first arg of AC_DEFUN.
38315         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
38316         since they are needed to parse the include file even if we need
38317         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
38318         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
38319         but with opposite signedness.
38320
38321 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38322
38323         Merge 'exclude' changes from tar 1.13.22.
38324         This fixes one or two unlikely storage allocation overflow bugs,
38325         but doesn't change user-visible behavior otherwise.
38326
38327 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38328
38329         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
38330         (jm_PREREQ_EXCLUDE): New macro.
38331
38332 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38333
38334         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
38335         tm to be declared.
38336
38337 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38338
38339         * lib/hash.c: Remove '2001' from copyright notice.
38340
38341 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38342
38343         * lib/full-write.h: New file.
38344         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
38345         * lib/full-write.c: Correct credits, as cccp.c no longer
38346         exists and anyway it was so heavily changed from the old cccp
38347         code as to be unrecognizable.  Include full-write.h.
38348         (full_write) Return size_t, with short writes meaning failure.
38349         All callers changed.  This fixes a bug with large buffers
38350         on 64-bit hosts.
38351         * lib/utime.c: Include full-write.h.
38352
38353 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38354
38355         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
38356         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
38357         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
38358         Include if available.
38359         (<xalloc.h>): Include
38360         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
38361         (verify): New macro.  Use it to verify that EXCLUDE macros do not
38362         collide with FNM macros.
38363         (struct patopts): New struct.
38364         (struct exclude): Use it, as exclude patterns now come with options.
38365         (new_exclude): Support above changes.
38366         (new_exclude, add_exclude_file):
38367         Initial size must now be a power of two to simplify overflow checking.
38368         (free_exclude, fnmatch_no_wildcards): New function.
38369         (excluded_filename): No longer requires options arg, as the options
38370         are determined by add_exclude.  Now returns bool, not int.
38371         (excluded_filename, add_exclude):
38372         Add support for the fancy new exclusion options.
38373         (add_exclude, add_exclude_file): Now takes int options arg.
38374         Check for arithmetic overflow when computing sizes.
38375         (add_exclude_file): xrealloc might modify errno, so don't
38376         realloc until after errno might be used.
38377
38378         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
38379         New macros.
38380         (free_exclude): New decl.
38381         (add_exclude, add_exclude_file): Now takes int options arg.
38382         (excluded_filename): No longer requires options arg, as the options
38383         are determined by add_exclude.  Now returns bool, not int.
38384
38385 2001-08-30  Paul Eggert  <eggert@twinsun.com>
38386
38387         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
38388
38389 2001-08-27  Jim Meyering  <meyering@lucent.com>
38390
38391         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
38392
38393         * lib/version-etc.c (N_): Remove definition.
38394         Revert most of last change.
38395         Instead, simply don't mark the `Copyright...' string for translation.
38396         Based on advice from Paul Eggert.
38397
38398         * lib/strtoxmax.c: Tweak comment.
38399
38400 2001-08-26  Jim Meyering  <meyering@lucent.com>
38401
38402         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
38403
38404         * m4/xstrtoimax.m4: New file.
38405         * m4/xstrtoumax.m4: Add comments explaining why we
38406         AC_REPLACE_FUNCS(strtol).
38407
38408 2001-08-26  Jim Meyering  <meyering@lucent.com>
38409
38410         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
38411         of copyright with `%s' so translators don't get an untranslated
38412         message in 2002.
38413         (COPYRIGHT_YEAR): Define.
38414         (version_etc): Use fprintf rather than fputs.
38415         Suggestion from Ulrich Drepper.
38416
38417         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
38418
38419         * lib/strtoll.c: New file, from GNU libc.
38420         * lib/xstrtoimax.c: New file.
38421
38422         * lib/xstrtol.h: Add xstrtoimax.
38423         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
38424         * lib/strtoimax.c: New file.  Likewise, but first define
38425         STRTOUXMAX_SIGNED.
38426
38427         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
38428         ...
38429         * lib/strtoxmax.c: ... then renamed to this.
38430
38431 2001-08-18  Paul Eggert  <eggert@twinsun.com>
38432
38433         * m4/inttypes.m4: Add AC_PREREQ(2.13).
38434         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
38435         (jm_AC_TYPE_INTMAX_T): New macro.
38436         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
38437
38438         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
38439
38440         * m4/longlong.m4: Renamed from ulonglong.m4.
38441         * m4/inttypes.m4: Renamed from inttypes_h.m4.
38442         * m4/uintmax_t.m4: Removed.
38443
38444 2001-08-13  Paul Eggert  <eggert@twinsun.com>
38445
38446         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
38447         Port to Solaris 8, where 'sed' requires a space after the 'r'
38448         command, and where sh dislikes "$/".  Clean up the spacing a bit.
38449         Redirect output to $tmp just once.
38450
38451 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
38452
38453         * lib/addext.c (<errno.h>): Include.
38454         (errno): Declare if not defined.
38455         (addext): Work correctly when pathconf returns -1 and leaves
38456         errno alone because there is no limit.  Also, work even if
38457         pathconf returns a value greater than SIZE_MAX.
38458
38459 2001-08-12  Jim Meyering  <meyering@lucent.com>
38460
38461         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
38462         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
38463         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
38464         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
38465         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
38466         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
38467         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
38468         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
38469         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
38470         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
38471         utime.m4, utimes.m4, xstrtoumax.m4:
38472         Quote the first argument in each use of AC_DEFUN.
38473
38474 2001-08-12  Jim Meyering  <meyering@lucent.com>
38475
38476         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
38477         Simply `return getcwd (NULL, 0);'.
38478         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
38479         Use 1300 as initial value for length, not PATH_MAX.
38480
38481         * lib/pathmax.h: Clean up cpp syntax.
38482
38483 2001-08-12  Jim Meyering  <meyering@lucent.com>
38484
38485         * lib/gettimeofday.c: New file.
38486         * lib/gtod.h: New file.
38487         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
38488
38489 2001-08-05  Jim Meyering  <meyering@lucent.com>
38490
38491         * m4/jm-macros.m4: Require autoconf-2.52.
38492
38493 2001-08-04  Jim Meyering  <meyering@lucent.com>
38494
38495         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
38496         stmt, to get in sync with glibc.
38497
38498 2001-08-03  Paul Eggert  <eggert@twinsun.com>
38499
38500         The following changes are from gettext 0.10.39 as maintained by
38501         Bruno Haible.
38502
38503         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
38504         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
38505         with inverted sense.  All uses changed.
38506
38507         * lib/mbswidth.c: Don't include <limits.h>.
38508         Include <stdlib.h> and <string.h> unconditionally.
38509         (iswcntrl, mbsinit, ISCNTRL): New macros.
38510         (mbsnwidth): Use K&R style function declarations.
38511         Don't bother checking for MB_LEN_MAX == 1, since the compiler
38512         can optimize it when MB_CUR_MAX == 1.
38513         The width of control characters is zero, not 1.
38514
38515 2001-08-03  Paul Eggert  <eggert@twinsun.com>
38516
38517         The following changes are from gettext 0.10.39 as maintained by
38518         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
38519
38520         * m4/codeset.m4: Upgrade to serial AM1.
38521         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
38522         all uses changed.  Quote first arg of AC_DEFUN.
38523         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
38524
38525         * m4/iconv.m4: Upgrade to serial AM2.
38526         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
38527         Add --with-libconv-prefix.
38528         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
38529         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
38530         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
38531         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
38532         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
38533
38534         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
38535         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
38536         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
38537         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
38538         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
38539         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
38540         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
38541         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
38542         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
38543
38544         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
38545         string.h any more.
38546
38547         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
38548         not the default value.
38549
38550         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
38551         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
38552         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
38553         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
38554         Also check for iswcntrl, used for wcwidth fallback.
38555         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
38556         to Autoconf 2.13.
38557
38558 2001-08-03  Jim Meyering  <meyering@lucent.com>
38559
38560         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
38561         as it was in the original.  Reported by Paul Eggert.
38562
38563 2001-07-16  Jim Meyering  <meyering@lucent.com>
38564
38565         * m4/gettimeofday.m4: New file.
38566         Prompted by a report from Bernhard Baehr.
38567
38568 2001-07-15  Jim Meyering  <meyering@lucent.com>
38569
38570         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
38571         stuff. Now it's in ../Makefile.cfg.
38572
38573 2001-07-15  Jim Meyering  <meyering@lucent.com>
38574
38575         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
38576         (BUILT_SOURCES): Add unlocked-io.h.
38577         (io_functions): Define.
38578         (unlocked-io.h): New rule.
38579         (DISTCLEANFILES): Add unlocked-io.h.
38580         (all-local): Depend on unlocked-io.h, to ensure it is created.
38581
38582         * lib/unlocked-io.hin: New file
38583
38584         * lib/regex.c: Update from glibc.
38585
38586 2001-07-05  Jim Meyering  <meyering@lucent.com>
38587
38588         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
38589         recommendation.
38590         (libfetish_a_SOURCES): Put all .h files here instead.
38591         Remove a thus-exposed (better checks in automake) duplicate and
38592         two unnecessary .h files.
38593
38594 2001-07-04  Jim Meyering  <meyering@lucent.com>
38595
38596         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
38597         that generates jm-glibc-io.m4 so that it doesn't trigger any make
38598         distcheck failure.
38599
38600 2001-07-02  Jim Meyering  <meyering@lucent.com>
38601
38602         The following changes were prompted by suggestions from Bruno Haible.
38603
38604         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
38605         is now generated.
38606         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
38607         definition of EXTRA_DIST.
38608         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
38609         ensure that the generated file is created/updated whenever the list
38610         of $(unlocked_functions) is changed.
38611         (jm-glibc-io.m4): New rule.
38612         (unlocked-io.h): New rule -- currently unused.
38613
38614 2001-06-24  Jim Meyering  <meyering@lucent.com>
38615
38616         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
38617         unmatched right bracket, rather than kludging it with an extra,
38618         falsely-matching quote in a comment.  Patch by Akim Demaille.
38619
38620 2001-06-11  Jim Meyering  <meyering@lucent.com>
38621
38622         * lib/regex.c: Update from GNU libc.
38623
38624 2001-05-27  Jim Meyering  <meyering@lucent.com>
38625
38626         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
38627         Check for ut_type in struct utmp.
38628
38629 2001-05-27  Jim Meyering  <meyering@lucent.com>
38630
38631         * lib/readutmp.h (UT_TYPE): Define.
38632
38633 2001-05-24  Jim Meyering  <meyering@lucent.com>
38634
38635         * lib/argmatch.c: Include "quote.h".
38636         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
38637         quote function.  Reported by Göran Uddeborg.
38638
38639 2001-05-22  Jim Meyering  <meyering@lucent.com>
38640
38641         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
38642         now that we use the package-supplied version unconditionally.
38643         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
38644
38645 2001-05-21  Jim Meyering  <meyering@lucent.com>
38646
38647         * m4/regex.m4: Change a couple backticks to single quotes to avoid
38648         shell syntax errors.
38649
38650 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
38651
38652         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
38653
38654 2001-05-20  Paul Eggert  <eggert@twinsun.com>
38655
38656         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
38657         Don't bother to check library strftime, since
38658         we'll be using our own my_strftime function anyway.
38659         Define my_strftime instead of strftime.
38660
38661 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
38662
38663         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
38664         which is not yet declared.
38665
38666 2001-05-15  Jim Meyering  <meyering@lucent.com>
38667
38668         * m4/regex.m4: Use proper quoting so brackets appear in the test
38669         program.
38670         Reported by, and with help from, Bruno Haible.
38671
38672 2001-05-13  Jim Meyering  <meyering@lucent.com>
38673
38674         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
38675         undefined.
38676
38677 2001-05-11  Paul Eggert  <eggert@twinsun.com>
38678
38679         dirname code cleanup.  base_name now behaves more compatibly
38680         with POSIX basename when given file names that have trailing
38681         slashes, and similarly for dir_name.  Add new primitives
38682         base_len and dir_len.  Put the directory-name-related decls
38683         into dirname.h.
38684
38685         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
38686         * lib/backupfile.c (base_name): Likewise.
38687         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
38688         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
38689         * lib/makepath.c (strip_trailing_slashes): Likewise.
38690         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
38691         ISSLASH): Likewise.
38692         * lib/rename.c (strip_trailing_slashes): Likewise.
38693         * lib/same.c (base_name): Likewise.
38694         * lib/stripslash.c (ISSLASH): Likewise.
38695
38696         * lib/addext.c: Include <dirname.h> after size_t is defined.
38697         * lib/backupfile.c: Likewise.
38698
38699         * lib/addext.c (addext): Use base_len to trim redundant
38700         trailing slashes instead of doing it ourselves.
38701         But do not trim the last slash if it is not redundant.
38702
38703         * lib/backupfile.c (find_backup_file_name,
38704         max_backup_version): Use base_len instead of rolling it ourselves.
38705         Handle the case of "" and (on DOS) "C:" correctly.
38706
38707         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
38708         needed. Include <string.h>, <dirname.h>.
38709         (base_name): Allow file names ending in slashes, other than names
38710         that are all slashes.  In this case, return the basename followed
38711         by the slashes.  This is more general, and can be used in places
38712         where the original base_name purposely had an assertion failure.
38713         (base_len): New function.
38714
38715         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
38716         Do not include <assert.h>; no longer needed.
38717         Include xalloc.h.
38718         (memrchr): Remove decl.
38719         (dir_name_r): Remove.
38720         (dir_len): Renamed from dirlen.  All callers changed.
38721         Rewrite in terms of base_name, for simplicity and consistency.
38722         (dir_name): Never return NULL.  All callers changed.
38723         Do not include <stdlib.h> in test program; no longer needed.
38724         return 0; is fine for test program.
38725
38726         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
38727         New macros.
38728         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
38729
38730         * lib/path-concat.c (path_concat): Use base_len to compute
38731         base length, not strlen; this means we cannot rely on memcpy
38732         to null-terminate.
38733
38734         * lib/same.c (STREQ): Remove.
38735         (same_name): Handle the case where the basename ends in trailing '/'.
38736
38737         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
38738         a slash was stripped.  Do not strip the last slash after a
38739         file system prefix.
38740
38741 2001-05-11  Paul Eggert  <eggert@twinsun.com>
38742
38743         * lib/Makefile.am (libfetish_a_SOURCES):
38744         Add strftime.c, since we now compile it on all hosts.
38745
38746         * lib/strftime.c (my_strftime):
38747         Define to nstrftime if emacs, but only if my_strftime is not defined.
38748         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
38749         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
38750         Add one more extra argument: a nanoseconds value.
38751         All uses changed.
38752         (ns): New macro.
38753         (my_strftime function): Add %N format.
38754         (emacs_strftimeu): Renamed from emacs_strftime,
38755         with extra ut argument.
38756
38757 2001-05-09  Paul Eggert  <eggert@twinsun.com>
38758
38759         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
38760
38761 2001-04-21  Jim Meyering  <meyering@lucent.com>
38762
38763         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
38764         doesn't interfere.
38765
38766 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
38767
38768         * m4/ftruncate.m4: Check for chsize.
38769         Link with ftruncate.o unconditionally if ftruncate is missing.
38770         This was required when cross-compiling to i586-mingw32msvc.
38771
38772 2001-04-08  Jim Meyering  <meyering@lucent.com>
38773
38774         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
38775         recomputed; that's necessary when the offset spans a DST transition.
38776         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
38777
38778 2001-04-02  Jim Meyering  <meyering@lucent.com>
38779
38780         * lib/regex.h, regex.c: Update from GNU libc.
38781
38782 2001-03-24  Jim Meyering  <meyering@lucent.com>
38783
38784         * m4/jm-macros.m4: Require autoconf-2.49d.
38785
38786 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
38787
38788         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
38789
38790 2001-03-19  Paul Eggert  <eggert@twinsun.com>
38791
38792         * lib/version-etc.c (version_etc_copyright): Update to 2001.
38793
38794 2001-03-17  Jim Meyering  <meyering@lucent.com>
38795
38796         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
38797         now that the version in autoconf is equivalent.
38798         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
38799
38800         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
38801         Suggestion from Akim Demaille.
38802
38803         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
38804         (jm_PREREQ_TEMPNAME): New function.
38805
38806 2001-03-16  Paul Eggert  <eggert@twinsun.com>
38807
38808         * lib/tempname.c (uint64_t): Define to uintmax_t if
38809         not defined, and if UINT64_MAX is not defined.
38810         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
38811         Reported by John David Anglin.
38812
38813 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
38814
38815         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
38816         resolve alias if codeset is empty.
38817         * lib/config.charset (BeOS): Use wildcard syntax.
38818
38819 2001-03-13  Jim Meyering  <meyering@lucent.com>
38820
38821         * lib/path-concat.c (path_concat)
38822         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
38823         concatenating e.g., `C:' and `foo'.
38824         From Bruno Haible.
38825
38826 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
38827
38828         * lib/localcharset.c (locale_charset): Don't use
38829         setlocale(LC_CTYPE,NULL). Don't return NULL.
38830         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
38831
38832 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
38833
38834         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
38835         support for DOS/DJGPP.
38836
38837 2001-03-01  Paul Eggert  <eggert@twinsun.com>
38838
38839         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
38840         lacks mkstemp.  Compile our own tempname.c if we compile our own
38841         mkstemp.c, as mkstemp relies on tempname.
38842
38843 2001-03-01  Jim Meyering  <meyering@lucent.com>
38844
38845         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
38846         AH_VERBATIM really does output its argument verbatim.
38847
38848 2001-02-28  Paul Eggert  <eggert@twinsun.com>
38849
38850         * lib/Makefile.am (libfetish_a_SOURCES):
38851         Add dup-safer.c, fopen-safer.c.
38852         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
38853
38854         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
38855         * lib/unistd-safer.h: New files.
38856
38857 2001-02-25  Paul Eggert  <eggert@twinsun.com>
38858
38859         The mkstemp replacement is taken from glibc 2.2.2, with some
38860         portability fixes for use outside glibc, as follows:
38861
38862         * lib/tempname.c (struct_stat64): New macro.
38863         (direxists, __gen_tempname): Use it.
38864         This avoids a portability problem with Solaris 8.
38865
38866         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
38867         (<stddef.h>, <stdint.h>, <string.h>):
38868         Include only if STDC_HEADERS || _LIBC.
38869         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
38870         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
38871         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
38872         (__set_errno): Define this macro if <errno.h> doesn't.
38873         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
38874         Define these macros if <stdio.h> doesn't.
38875         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
38876         Define these macros if <sys/stat.h>
38877         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
38878         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
38879         __xstat64): Define if not _LIBC.
38880         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
38881         (__gen_tempname): Invoke gettimeofday only if
38882         HAVE_GETTIMEOFDAY || _LIBC;
38883         otherwise, fall back on plain "time".
38884         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
38885
38886         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
38887
38888         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
38889
38890 2001-02-18  Paul Eggert  <eggert@twinsun.com>
38891
38892         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
38893
38894 2001-02-17  Paul Eggert  <eggert@twinsun.com>
38895
38896         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
38897         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
38898         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
38899         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
38900
38901 2001-02-17  Paul Eggert  <eggert@twinsun.com>
38902
38903         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
38904         Remove workaround macros for hosts that have mbrtowc but not
38905         mbstate_t, as we now insist on proper declarations for both
38906         before using mbrtowc.
38907
38908 2001-02-17  Jim Meyering  <meyering@lucent.com>
38909
38910         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
38911         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
38912         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
38913         UnixWare 7.1.1.
38914
38915         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
38916         rather than AC_CACHE_VAL.
38917
38918 2001-02-17  Jim Meyering  <meyering@lucent.com>
38919
38920         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
38921         around included file name.
38922
38923         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
38924
38925         * lib/strftime.c: Update from GNU libc (the only changes were to
38926         comments).
38927
38928 2001-02-17  Jim Meyering  <meyering@lucent.com>
38929
38930         * lib/regex.c: Update from libc.
38931
38932 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
38933
38934         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
38935         clash.
38936
38937 2001-02-16  Paul Eggert  <eggert@twinsun.com>
38938
38939         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
38940         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
38941         Reported by Mark Hounschell via Paul Eggert.
38942
38943 2001-02-07  Jim Meyering  <meyering@lucent.com>
38944
38945         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
38946
38947 2001-02-05  Jim Meyering  <meyering@lucent.com>
38948
38949         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
38950         it includes the patch required for `large file' support with at least
38951         HP-UX's 10.20 /bin/cc.
38952
38953 2001-02-03  Jim Meyering  <meyering@lucent.com>
38954
38955         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
38956         AS_IF, now that it works once again (mysteriously).
38957         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
38958
38959 2001-01-30  Jim Meyering  <meyering@lucent.com>
38960
38961         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
38962         * m4/chown.m4: Rename conftestchown to conftest.chown.
38963         * m4/rename.m4: s/conftestdir/conftest.d1/ and
38964         s/conftestdir2/conftest.d2/.
38965         * m4/utimes.m4: s/conftestdata/conftest.data/
38966         Inspired by Pavel Roskin's change in autoconf.
38967
38968 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
38969
38970         * lib/config.charset: Update for FreeBSD 4.2.
38971
38972 2001-01-27  Jim Meyering  <meyering@lucent.com>
38973
38974         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
38975         a use of AS_IF.
38976         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
38977
38978 2001-01-26  Jim Meyering  <meyering@lucent.com>
38979
38980         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
38981         quotearg.c includes it.
38982
38983 2001-01-26  Jim Meyering  <meyering@lucent.com>
38984
38985         * lib/quotearg.c: Include stddef.h.
38986         * lib/quote.c: Include stddef.h.
38987         Reported by Axel Kittenberger.
38988
38989         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
38990         line in double quotes so that it evokes a better diagnostic.
38991         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
38992         Reported by Axel Kittenberger.
38993
38994 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
38995
38996         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
38997         as if it was a `charset'.
38998
38999 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
39000
39001         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
39002         has const.
39003
39004 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
39005
39006         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
39007         to avoid a warning.  Add back 'const' to inptr.
39008
39009 2001-01-20  Jim Meyering  <meyering@lucent.com>
39010
39011         Be sure that headers are checked before used in code compiled
39012         for the type checks.
39013         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
39014         In place of that, invoke jm_CHECK_ALL_TYPES.
39015         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
39016         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
39017         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
39018         The check for ssize_t was mistakenly run before the test for unistd.h.
39019
39020         The configure-time check for stdbool.h was missing.
39021         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
39022         (jm_PREREQ_HASH): New function.
39023
39024 2001-01-17  Jim Meyering  <meyering@lucent.com>
39025
39026         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
39027         for autoconf-2.49c.
39028         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
39029
39030 2001-01-16  Jim Meyering  <meyering@lucent.com>
39031
39032         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
39033         From Bruno Haible.
39034
39035 2001-01-14  Jim Meyering  <meyering@lucent.com>
39036
39037         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
39038         foo and bar.  Create conftestdir/ in the script, not in the C code.
39039         Remove directories in the script, not in the C code.
39040         Remove conftestdir{,2} before trying to create the directory.
39041         Make the entire configure script fail if the mkdir fails.
39042
39043 2001-01-14  Jim Meyering  <meyering@lucent.com>
39044
39045         * lib/rename.c: New file.  From Volker Borchert.
39046         Include stdlib.h, string.h or strings.h, and xalloc.h.
39047         Use strip_trailing_slashes rather than open-coding it.
39048
39049 2001-01-03  Paul Eggert  <eggert@twinsun.com>
39050
39051         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
39052
39053 2001-01-03  Jim Meyering  <meyering@lucent.com>
39054
39055         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
39056         of local `inptr' to avoid warning with some system declarations of
39057         iconv.
39058
39059 2001-01-02  Volker Borchert  <bt@teknon.de>
39060
39061         * m4/rename.m4: New file.
39062         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
39063
39064 2001-01-01  Jim Meyering  <meyering@lucent.com>
39065
39066         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
39067         even on systems with utmpx.h.  It's necessary for the declaration of
39068         utmp's ut_user member.  Reported by Andreas Jaeger.
39069
39070         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
39071         available. They are required for the declarations of getgrgid and
39072         getpwuid resp.
39073         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
39074         Reported by Andreas Jaeger.
39075
39076 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
39077
39078         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
39079         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
39080         so `make install' also works in VPATH builds.
39081
39082 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
39083
39084         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
39085         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
39086         can be used in subdirectories.
39087
39088 2000-12-29  Paul Eggert  <eggert@twinsun.com>
39089
39090         * lib/modechange.c: Do not assume that mode_t uses the
39091         traditional octal encoding.  E.g. "chmod 1 FOO" should set
39092         the other-execute bit of FOO even if S_IXOTH != 1.
39093
39094         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
39095         WOTH, XOTH, ALLM): New macros.
39096         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
39097          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
39098         Use them.
39099         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
39100         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
39101         (mode_compile):
39102         No need to use uintmax_t; unsigned long is long enough.
39103         Don't bother to get suffix since we don't use it.
39104
39105 2000-12-26  Jim Meyering  <meyering@lucent.com>
39106
39107         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
39108         better with autoheader.
39109
39110 2000-12-24  Jim Meyering  <meyering@lucent.com>
39111
39112         * lib/hash.c (is_prime): Return explicit boolean values.
39113         (hash_get_first): Return NULL to appease Irix5.6's 89.
39114         Reported by Nelson Beebe.
39115
39116 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
39117
39118         * lib/localcharset.c (locale_charset): Add support for Win32.
39119
39120 2000-12-18  Paul Eggert  <eggert@twinsun.com>
39121
39122         * lib/physmem.h, lib/physmem.c: New files.
39123
39124         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
39125         (noinst_HEADERS): Add physmem.h.
39126
39127         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
39128         't' for compatibility with Solaris 8 sort.
39129
39130 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
39131
39132         * lib/config.charset: Add support for BeOS.
39133
39134 2000-12-17  Jim Meyering  <meyering@lucent.com>
39135
39136         * m4/dos.m4 (jm_AC_DOS): New file and macro.
39137         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
39138
39139 2000-12-16  Jim Meyering  <meyering@lucent.com>
39140
39141         This bug had a serious impact on chown: `chown N:M FILE' (for integer
39142         N and M) would have treated it like `chown N:N FILE'.
39143
39144         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
39145
39146 2000-12-16  Jim Meyering  <meyering@lucent.com>
39147
39148         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
39149         SHELLS_FILE to a file name that's useful on djgpp systems.
39150         Include stdlib.h.
39151         (ADDITIONAL_DEFAULT_SHELLS): Define.
39152         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
39153         Based mostly on a patch from Prashant TR.
39154
39155 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
39156
39157         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
39158         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
39159         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
39160
39161 2000-12-08  Andreas Schwab  <schwab@suse.de>
39162
39163         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
39164         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
39165
39166 2000-12-07  Jim Meyering  <meyering@lucent.com>
39167
39168         * lib/stripslash.c (ISSLASH): Define.
39169         (strip_trailing_slashes): Use ISSLASH rather than comparing against
39170         `/'.
39171         From Prashant TR.
39172
39173         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
39174         (dir_name_r): Declare this function as static.
39175         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
39176         manifest itself on a name containing a mix of slashes and
39177         backslashes.
39178         Make this function work with names starting with a DOS-style
39179         drive letter and colon prefix.
39180         (dir_name): Append `.' if necessary.
39181         Based mostly on patches from Prashant TR and Eli Zaretskii.
39182
39183         * lib/dirname.h (dir_name_r): Remove prototype.
39184
39185 2000-12-06  Paul Eggert  <eggert@twinsun.com>
39186
39187         * m4/off_t-format.m4: Remove this file.
39188         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
39189
39190 2000-12-06  Jim Meyering  <meyering@lucent.com>
39191
39192         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
39193         replacement strtoull, we may well need the replacement strtoul, too.
39194         Check for declarations of strtoul and strtoull.
39195         Check for strtol.  Mainly as a cue to cause automake to include
39196         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
39197         Check for limits.h -- strtol.c needs it.
39198
39199 2000-12-05  Jim Meyering  <meyering@lucent.com>
39200
39201         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
39202
39203 2000-12-04  Jim Meyering  <meyering@lucent.com>
39204
39205         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
39206         Also include memory.h, stdlib.h, unistd.h if appropriate.
39207         Reported by Andreas Jaeger (conflicting declaration of malloc).
39208
39209 2000-12-02  Jim Meyering  <meyering@lucent.com>
39210
39211         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
39212         * m4/jm-macros.m4 (jm_MACROS): require it.
39213
39214 2000-12-02  Jim Meyering  <meyering@lucent.com>
39215
39216         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
39217
39218 2000-12-01  Paul Eggert  <eggert@twinsun.com>
39219
39220         * lib/memrchr.c: Include <config.h> before any system include file.
39221
39222 2000-11-30  Jim Meyering  <meyering@lucent.com>
39223
39224         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
39225
39226 2000-11-30  Jim Meyering  <meyering@lucent.com>
39227
39228         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
39229
39230 2000-11-29  Paul Eggert  <eggert@twinsun.com>
39231
39232         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
39233
39234 2000-11-26  Jim Meyering  <meyering@lucent.com>
39235
39236         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
39237
39238 2000-11-22  Paul Eggert  <eggert@twinsun.com>
39239
39240         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
39241         size of (size_t) -1; it's not portable.
39242
39243 2000-11-17  Jim Meyering  <meyering@lucent.com>
39244
39245         * lib/strstr.c: Update from GNU libc.
39246
39247 2000-11-17  Akim Demaille  <akim@epita.fr>
39248
39249         * lib/obstack.h: Formatting changes.
39250         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
39251         prevent type checking.
39252         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
39253         cast the value to (void *): assigning a `foo *' to a `void *'
39254         variable is valid.
39255         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
39256
39257 2000-11-16  Jim Meyering  <meyering@lucent.com>
39258
39259         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
39260
39261 2000-11-11  Jim Meyering  <meyering@lucent.com>
39262
39263         * lib/error.c: Add a couple #includes, merging from GNU libc version.
39264
39265 2000-11-10  Jim Meyering  <meyering@lucent.com>
39266
39267         * lib/obstack.h: Update from GNU libc.
39268         * lib/obstack.c: Likewise.
39269
39270 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
39271
39272         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
39273
39274 2000-11-06  Paul Eggert  <eggert@twinsun.com>
39275
39276         * lib/getusershell.c (setusershell): Use rewind rather than
39277         fseek/fseeko, to avoid configuration hassles with fseeko.
39278         Don't bother opening SHELLS_FILE if shellstream is NULL;
39279         it's not necessary.
39280
39281 2000-11-05  Jim Meyering  <meyering@lucent.com>
39282
39283         * lib/makepath.h (make_dir): Declare.
39284         * lib/makepath.c (make_dir): Remove `static' attribute.
39285         Tweak a comment.
39286
39287 2000-11-04  Jim Meyering  <meyering@lucent.com>
39288
39289         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
39290
39291 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
39292
39293         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
39294         last one in a bucket, advance to the next bucket.
39295
39296 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
39297
39298         * lib/fnmatch.c: Do not comment out all the code if we are using
39299         the GNU C library, because in some cases we are replacing buggy
39300         code in the GNU C library itself.
39301
39302 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
39303
39304         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
39305         (regex_compile): Catch bogus \(\1\).
39306
39307 2000-10-30  Paul Eggert  <eggert@twinsun.com>
39308
39309         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
39310         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
39311         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
39312
39313 2000-10-30  Paul Eggert  <eggert@twinsun.com>
39314
39315         * lib/error.h, getline.h, modechange.h:
39316         Remove "2000" from Copyright line, as the file hasn't been
39317         changed this year other than in the copyright notice.
39318
39319         * lib/xalloc.h: Add "2000" to Copyright line, as this file
39320         was changed this year.
39321
39322 2000-10-29  Jim Meyering  <meyering@lucent.com>
39323
39324         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
39325         renaming.
39326         * m4/ls-mntd-fs.m4: Likewise
39327
39328 2000-10-29  Jim Meyering  <meyering@lucent.com>
39329
39330         * lib/xstat.in: Fix grammar in comment.
39331
39332 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
39333
39334         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
39335         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
39336         doesn't define __restrict_arr.
39337
39338 2000-10-28  Jim Meyering  <meyering@lucent.com>
39339
39340         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
39341         (jm_PREREQ_MEMCHR): New function.
39342
39343 2000-10-28  Jim Meyering  <meyering@lucent.com>
39344
39345         * lib/memchr.c: Update from libc.
39346         Adjust for portability:
39347         [HAVE_STDLIB_H]: Include stdlib.h.
39348         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
39349         Undef __memchr, too.
39350         [!weak_alias]: Define __memchr to memchr.
39351
39352         * lib/regex.c: Update from libc.
39353         * lib/regex.h: Likewise.
39354         * lib/getopt1.c: Likewise.
39355         * lib/memcmp.c: Likewise.
39356
39357         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
39358         Avoid using fseek, when possible -- it's broken by design.
39359         Patch by Ulrich Drepper.
39360
39361 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
39362
39363         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
39364         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
39365         Giving in to popular pressure to shut up the compiler with casts.
39366
39367 2000-10-26  Jim Meyering  <meyering@lucent.com>
39368
39369         * lib/strftime.c: Update from libc.
39370
39371 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
39372
39373         * regex.c: More `unsigned char' -> `re_char' changes.
39374         Also change several `int' into `re_wchar_t'.
39375         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
39376         (PUSH_FAILURE_POINTER): Don't cast any more.
39377         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
39378         We want GCC to complain, since this piece of code makes
39379         re_match non-reentrant, which *should* be fixed.
39380         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
39381         (EXTEND_BUFFER): Use RETALLOC.
39382         (SET_LIST_BIT): Don't cast.
39383         (re_wchar_t): New type.
39384         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
39385         that those two functions will always properly return.
39386         (IMMEDIATE_QUIT_CHECK): Cast to void.
39387         (analyse_first): Use recursion rather than an explicit stack.
39388         (re_compile_fastmap): Can't fail anymore.
39389         (re_search_2): Don't check re_compile_fastmap for failure.
39390         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
39391         Now also sets the new value (passed in a new argument).
39392         (re_match_2_internal): Use it.
39393         Also, use a new var `reg' of type size_t when looping through regs
39394         rather than reuse the inappropriate `mcnt'.
39395
39396 2000-10-25  Jim Meyering  <meyering@lucent.com>
39397
39398         * lib/obstack.c: Update from libc.
39399
39400 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
39401
39402         * regex.c (regex_compile): Change the way of handling a range from
39403         a char less than 256 to a char not less than 256.
39404
39405 2000-10-24  Andrew Innes  <andrewi@gnu.org>
39406
39407         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
39408         NT-Emacs only.
39409         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
39410         so that re_search functions only quit when callers expect them to.
39411
39412 2000-10-23  Jim Meyering  <meyering@lucent.com>
39413
39414         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
39415         wrong.  That set_locale call must not have any side effects.
39416         From Paul Eggert.
39417
39418 2000-10-22  Jim Meyering  <meyering@lucent.com>
39419
39420         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
39421         [CYCLIC]: Remove now-unused definition.
39422
39423         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
39424         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
39425         Suggestion from Ulrich Drepper.
39426
39427 2000-10-21  Jim Meyering  <meyering@lucent.com>
39428
39429         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
39430         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
39431         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
39432
39433 2000-10-21  Jim Meyering  <meyering@lucent.com>
39434
39435         * lib/dirname.c (memrchr): Declare if necessary.
39436         (dir_name): Remove the restriction that there be no
39437         trailing slashes.  Now, this code skips past them, effectively
39438         ignoring them.
39439         [TEST_DIRNAME] (main): New unit tests.
39440
39441         * lib/memrchr.c: New file from GNU libc.
39442         Undef __memrchr, too.
39443         [!weak_alias]: Define __memrchr to memrchr.
39444         Guard weak_alias use with `#ifdef weak_alias'.
39445
39446 2000-10-21  Jim Meyering  <meyering@lucent.com>
39447
39448         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
39449         (dir_name): Use dir_name_r.
39450         * lib/dirname.h (dir_name_r): Declare it.
39451
39452 2000-10-17  Jim Meyering  <meyering@lucent.com>
39453
39454         * lib/quote.h (PARAMS): Define and use.
39455         Reported by Akim Demaille.
39456
39457         * lib/getopt.c: Update from libc.
39458
39459 2000-10-16  Jim Meyering  <meyering@lucent.com>
39460
39461         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
39462         setlocale.
39463         From Jan Fedak.
39464
39465 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
39466
39467         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
39468
39469 2000-09-25  Jim Meyering  <meyering@lucent.com>
39470
39471         * lib/md5.h (rol): Define (from GnuPG).
39472
39473         * lib/sha.c: Give credit (GnuPG) where due.
39474         (M): Use rol rather than open-coding it.
39475         Add a FIXME comment.
39476
39477 2000-09-21  Jim Meyering  <meyering@lucent.com>
39478
39479         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
39480         Reported by Michael Stone.
39481
39482 2000-09-20  Jim Meyering  <meyering@lucent.com>
39483
39484         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
39485         (noinst_HEADERS): Add sha.h.
39486         Based on code from Scott G. Miller and from GnuPG.
39487
39488 2000-09-18  Jim Meyering  <meyering@lucent.com>
39489
39490         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
39491         LIBS. Otherwise, everyone ends up linking with -lelf for some
39492         configurations.
39493         Reported by Mike Stone.
39494
39495 2000-09-15  Jim Meyering  <meyering@lucent.com>
39496
39497         * lib/regex.c: Update from libc.
39498
39499 2000-09-10  Jim Meyering  <meyering@lucent.com>
39500
39501         * lib/getopt.c (_getopt_internal): Update from glibc.
39502
39503 2000-09-09  Jim Meyering  <meyering@lucent.com>
39504
39505         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
39506         think it should be used as a general replacement for isascii.
39507         * lib/fnmatch.c: Likewise.
39508         * lib/mbswidth.c: Likewise
39509         * lib/regex.c: Likewise.
39510
39511         Don't use atoi.
39512         * lib/userspec.c: Include sys/param.h and limits.h.
39513         Include xstrtol.h.
39514         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
39515         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
39516         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
39517         UID, GID.  Check range.
39518
39519 2000-09-06  Jim Meyering  <meyering@lucent.com>
39520
39521         * lib/getopt.c (_getopt_internal): Update from glibc.
39522
39523 2000-08-30  Jim Meyering  <meyering@lucent.com>
39524
39525         * lib/strftime.c: Merge in changes from GNU libc.
39526
39527 2000-08-26  Jim Meyering  <meyering@lucent.com>
39528
39529         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
39530         * m4/fpending.m4: New file.
39531
39532 2000-08-26  Jim Meyering  <meyering@lucent.com>
39533
39534         * lib/closeout.c: Include "__fpending.h".
39535         (close_stdout_status): Return right away if there's nothing to flush.
39536
39537         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
39538         * lib/__fpending.c: New file.
39539         * lib/__fpending.h: New file.
39540
39541 2000-08-20  Jim Meyering  <meyering@lucent.com>
39542
39543         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
39544         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
39545         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
39546
39547 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
39548
39549         Improve fileutils installation on systems where running
39550         programs (like install) can't be unlinked.
39551         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
39552         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
39553
39554 2000-08-07  Paul Eggert  <eggert@twinsun.com>
39555
39556         Standardize on "memory exhausted" instead of "Memory exhausted"
39557         or "virtual memory exhausted".
39558         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
39559         "virtual memory exhausted".
39560         * lib/same.c (same_name): Invoke xalloc_die instead of printing
39561         our own message.
39562         * lib/userspec.c (parse_user_spec): Likewise.
39563         * lib/bumpalloc.h: comment fix
39564         * lib/same.c, userspec.c: Include xalloc.h.
39565
39566         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
39567         not char *const and pointing to a constant array.
39568         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
39569         (xrealloc): Comment fix.
39570
39571         * lib/userspec.c (parse_user_spec):
39572         Don't translate a message until just before returning,
39573         to avoid unnecessary translation.
39574
39575 2000-08-07  Jim Meyering  <meyering@lucent.com>
39576
39577         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
39578         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
39579         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
39580         getgroups.c, gethostname.c, getopt.h, group-member.c,
39581         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
39582         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
39583         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
39584         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
39585         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
39586         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
39587         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
39588         yesno.c: Back out Copyright date changes for each file with no change
39589         this year.  This eases coordination with other programs using the same
39590         source code modules.  From Paul Eggert.
39591
39592 2000-08-06  Paul Eggert  <eggert@twinsun.com>
39593
39594         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
39595         not char, for compatibility with glibc 2.1.3 strftime.c.
39596
39597 2000-08-03  Greg McGary  <greg@mcgary.org>
39598
39599         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
39600         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
39601         (EXTEND_BUFFER): Use them.
39602
39603 2000-08-01  Jim Meyering  <meyering@lucent.com>
39604
39605         * lib/dirname.c (ISSLASH): Define.
39606         (BACKSLASH_IS_PATH_SEPARATOR): Define.
39607         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
39608         both `\' and `/' may be use as path separators.
39609         Based on a patch from Prashant TR.
39610
39611 2000-07-31  Paul Eggert  <eggert@twinsun.com>
39612
39613         * lib/quotearg.c (quotearg_n_options): Don't make the initial
39614         slot vector a constant, since it might get modified.
39615
39616 2000-07-31  Jim Meyering  <meyering@lucent.com>
39617
39618         * lib/xmalloc.c: Use `virtual memory exhausted', not
39619         `Memory exhausted'.
39620         * lib/obstack.c (print_and_abort): Likewise.
39621
39622 2000-07-30  Paul Eggert  <eggert@twinsun.com>
39623
39624         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
39625         buffer, so that the caller can always quote one small
39626         component of a "memory exhausted" message in slot 0.
39627         From a suggestion by Jim Meyering.
39628
39629 2000-07-30  Jim Meyering  <meyering@lucent.com>
39630
39631         * lib/makepath.c (make_path): Quote the other instance, too.
39632
39633         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
39634         (STATIC_BUF_SIZE): Define.
39635         (quotearg_n_options): Use only statically allocated storage when
39636         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
39637         than STATIC_BUF_SIZE.
39638
39639 2000-07-29  Jim Meyering  <meyering@lucent.com>
39640
39641         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
39642         * lib/dirname.c (dir_name): Likewise.
39643
39644         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
39645         `/'.
39646
39647         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
39648         (dir_name): Assert that there are no trailing slashes.
39649
39650 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
39651
39652         * lib/mbswidth.h (mbswidth): Add a flags argument.
39653         (mbswidth): New declaration.
39654         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
39655         * lib/mbswidth.c (mbswidth): Add a flags argument.
39656         (mbsnwidth): New function.
39657
39658 2000-07-24  Jim Meyering  <meyering@lucent.com>
39659
39660         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
39661
39662 2000-07-23  Paul Eggert  <eggert@twinsun.com>
39663
39664         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
39665
39666 2000-07-23  Paul Eggert  <eggert@twinsun.com>
39667
39668         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
39669         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
39670         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
39671         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
39672         invoke multibyte primitives.
39673
39674 2000-07-23  Paul Eggert  <eggert@twinsun.com>
39675
39676         * lib/quotearg.c:
39677         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
39678         so that mbstate_t is always defined.
39679
39680         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
39681         be 1 in at least one GCC installation, and this configuration
39682         error is likely to be common.  Ignoring MB_LEN_MAX hurts
39683         performance on hosts that have mbrtowc but have only unibyte
39684         locales, but I assume these hosts are rare.
39685
39686 2000-07-23  Paul Eggert  <eggert@twinsun.com>
39687
39688         * lib/mbswidth.c (_XOPEN_SOURCE):
39689         Don't define; this causes problems on Solaris 7.
39690         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
39691
39692 2000-07-23  Jim Meyering  <meyering@lucent.com>
39693
39694         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
39695         too: getgrgid, getpwuid, getuid.
39696
39697 2000-07-23  Jim Meyering  <meyering@lucent.com>
39698
39699         * lib/basename.c (base_name): Add an assertion.
39700
39701 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
39702
39703         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
39704         shadow its mbsinit function.
39705
39706 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
39707
39708         * lib/mbswidth.h: New file.
39709         * lib/mbswidth.c: New file.
39710         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
39711         (noinst_HEADERS): Add mbswidth.h.
39712
39713 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
39714
39715         * lib/config.charset: Add support for FreeBSD. Improve support for
39716         HP-UX and IRIX 6.
39717
39718 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
39719
39720         * m4/mbswidth.m4: New file.
39721         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
39722
39723 2000-07-15  Jim Meyering  <meyering@lucent.com>
39724
39725         * lib/makepath.c: Include quote.h.
39726         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
39727         corresponding argument in a `quote (...)' call.
39728         Give better diagnostics.
39729
39730         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
39731         (noinst_HEADERS): Add quote.h.
39732
39733         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
39734         from tar's src/misc.c.
39735         * lib/quote.h: New file.  Prototypes for same.
39736
39737 2000-07-14  Paul Eggert  <eggert@twinsun.com>
39738
39739         From a suggestion by Bruno Haible.
39740         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
39741         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
39742         to decide whether to define the BeOS workaround macro;
39743         this adjusts to the change to AC_MBSTATE_T.
39744
39745 2000-07-14  Jim Meyering  <meyering@lucent.com>
39746
39747         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
39748         jm_AC_TYPE_UINTMAX_T.
39749
39750 2000-07-13  Paul Eggert  <eggert@twinsun.com>
39751
39752         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
39753
39754         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
39755         quotearg_buffer_restyled): Add support for
39756         clocale_quoting_style.  Undo previous change to
39757         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
39758         and "{RIGHT QUOTATION MARK}" msgids.
39759
39760 2000-07-10  Paul Eggert  <eggert@twinsun.com>
39761
39762         From a suggestion by Bruno Haible.
39763         * m4/mbstate_t.m4 (AC_MBSTATE_T):
39764         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
39765         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
39766         and mbstate_t, to a single-part test that simply defines mbstate_t.
39767         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
39768         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
39769
39770 2000-07-10  Jim Meyering  <meyering@lucent.com>
39771
39772         * m4/strerror_r.m4: Mirror the correction made in autoconf.
39773
39774         * m4/gnu-source.m4: Output to confdefs.h directly.
39775         Suggestion from Akim Demaille.
39776
39777 2000-07-09  Paul Eggert  <eggert@twinsun.com>
39778
39779         The old behavior of quoting `like this' doesn't look good with
39780         newer, ISO-style fonts.  See:
39781         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
39782
39783         Instead, quote "like this" by default.  Let the translator
39784         tailor the locale-specific quoting behavior by providing
39785         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
39786
39787         * lib/quotearg.c (N_): New macro.
39788         (gettext_default): New function.
39789         (quotearg_buffer_restyled): Use
39790         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
39791         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
39792
39793 2000-07-09  Jim Meyering  <meyering@lucent.com>
39794
39795         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
39796         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
39797
39798         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
39799         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
39800
39801 2000-07-09  Jim Meyering  <meyering@lucent.com>
39802
39803         * lib/Most files: Update copyright dates to include 2000.
39804
39805 2000-07-08  Jim Meyering  <meyering@lucent.com>
39806
39807         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
39808         if not defined.
39809         (xgethostname): Remove now-unnecessary #ifdef.
39810         Move declaration of `err' into loop where it's used.
39811
39812 2000-07-05  Paul Eggert  <eggert@twinsun.com>
39813         and Bruno Haible  <haible@clisp.cons.org>
39814
39815         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
39816         only if the test for an object-type mbstate_t fails.  This
39817         prevents us from mistakenly reporting that mbstate_t is a
39818         system object type after we "#define mbstate_t int" to work
39819         around its lack.
39820
39821 2000-07-05  Paul Eggert  <eggert@twinsun.com>
39822         and Bruno Haible  <haible@clisp.cons.org>
39823
39824         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
39825
39826 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
39827
39828         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
39829         to strerror_r.
39830         Include <ctype.h> for use of isalpha.
39831
39832 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
39833
39834         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
39835         by allocating a larger buffer. Test the gethostname return value for
39836         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
39837         returns an error and ENAMETOOLONG isn't defined.
39838
39839 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
39840
39841         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
39842         dimension.
39843
39844 2000-07-04  Jim Meyering  <meyering@lucent.com>
39845
39846         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
39847         of the deprecated AC_CHECKING.
39848
39849 2000-07-04  Jim Meyering  <meyering@lucent.com>
39850
39851         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
39852         Reported by Bruno Haible.
39853
39854 2000-07-04  Jim Meyering  <meyering@lucent.com>
39855
39856         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
39857         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
39858         lacks mbrtowc.
39859
39860 2000-07-03  Paul Eggert  <eggert@twinsun.com>
39861
39862         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
39863         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
39864
39865 2000-07-03  Paul Eggert  <eggert@twinsun.com>
39866         and Bruno Haible  <haible@clisp.cons.org>
39867
39868         * lib/quotearg.c (mbrtowc):
39869         Assign to *pwc, and return 1 only if result is nonzero.
39870         (iswprint): Use ISPRINT when substituting our own mbrtowc.
39871
39872 2000-07-03  Jim Meyering  <meyering@lucent.com>
39873
39874         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
39875
39876 2000-07-03  Jim Meyering  <meyering@lucent.com>
39877
39878         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
39879         This is necessary to get a definition of e.g., UTMP_FILE on
39880         HP-UX 10.20.
39881         From Bob Proulx.
39882
39883 2000-07-02  Jim Meyering  <meyering@lucent.com>
39884
39885         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
39886
39887         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
39888         AC_LIBOBJ(function_name).
39889         * m4/chown.m4: Likewise.
39890         * m4/fnmatch.m4: Likewise.
39891         * m4/ftruncate.m4: Likewise.
39892         * m4/getgroups.m4: Likewise.
39893         * m4/getline.m4: Likewise.
39894         * m4/group-member.m4: Likewise.
39895         * m4/jm-macros.m4: Likewise.
39896         * m4/lstat.m4: Likewise.
39897         * m4/malloc.m4: Likewise.
39898         * m4/memcmp.m4: Likewise.
39899         * m4/nanosleep.m4: Likewise.
39900         * m4/putenv.m4: Likewise.
39901         * m4/realloc.m4: Likewise.
39902         * m4/regex.m4: Likewise.
39903         * m4/stat.m4: Likewise.
39904         * m4/strftime.m4: Likewise.
39905
39906 2000-07-02  Jim Meyering  <meyering@lucent.com>
39907
39908         * lib/quotearg.c (mbstate_t): Don't define here.
39909
39910 2000-07-02  Jim Meyering  <meyering@lucent.com>
39911
39912         * lib/nanosleep.c (SIGCONT): Define if not already defined.
39913
39914 2000-07-01  Jim Meyering  <meyering@lucent.com>
39915
39916         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
39917
39918 2000-07-01  Jim Meyering  <meyering@lucent.com>
39919
39920         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
39921         problem.
39922
39923 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
39924
39925         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
39926         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
39927
39928 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
39929
39930         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
39931         per change in ../m4/ls-mntd-fs.m4.
39932         (read_filesystem_list): Ignore symbolic links.
39933
39934 2000-06-29  Jim Meyering  <meyering@lucent.com>
39935
39936         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
39937         for declaration of strcmp.
39938
39939         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
39940
39941         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
39942         Avoid warning by casting result to `char *' to remove `const'.
39943
39944 2000-06-28  Jim Meyering  <meyering@lucent.com>
39945
39946         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
39947         included by quotearg.c, for which we perform this test.  From
39948         Bruno Haible.
39949
39950 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
39951
39952         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
39953         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
39954         <utmpx.h> exists, put readutmp.o into LIBOBJS.
39955
39956 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
39957
39958         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
39959
39960 2000-06-26  Paul Eggert  <eggert@twinsun.com>
39961
39962         savedir now sets errno on failure and invokes xmalloc to get memory.
39963         Fix a couple of other minor bugs while we're at it.
39964
39965         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
39966         (NAMLEN): Remove macro.
39967         (malloc, realloc): Remove decls.
39968         (stpcpy): Likewise.
39969         ("xalloc.h"): Include.
39970         (NAME_SIZE_DEFAULT): New macro.
39971         (savedir): Use xmalloc / xrealloc to allocate memory.
39972         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
39973         Skip "" directory entries.
39974         Use strlen to calculate directory entry length, since the old method
39975         is rarely used these days and isn't worth supporting.
39976         Don't use a pointer after freeing it.
39977         Check for integer overflow when calculating allocation size.
39978         Use memcpy to copy entries, instead of stpcpy.
39979         Set errno properly when returning NULL.
39980         Check for readdir error.
39981
39982 2000-06-26  Jim Meyering  <meyering@lucent.com>
39983
39984         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
39985
39986 2000-06-25  Jim Meyering  <meyering@lucent.com>
39987
39988         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
39989         Linux header bug when _XOPEN_SOURCE is defined to 500.
39990
39991 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
39992
39993         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
39994         deficiency.
39995
39996 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
39997
39998         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
39999         Include xalloc.h.
40000         Don't include <stdlib.h>.  Don't declare malloc, realloc.
40001
40002 2000-06-24  Jim Meyering  <meyering@lucent.com>
40003
40004         * m4/strerror_r.m4: Revive this file -- to try out an experimental
40005         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
40006         for which strerror does return char*, but which lacks a conveniently
40007         accessible declaration of the function.  If the compile-test says
40008         strerror_r doesn't work, then resort to a `run'-test that works on
40009         BeOS and segfaults on DEC Unix.
40010
40011 2000-06-24  Jim Meyering  <meyering@lucent.com>
40012
40013         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
40014
40015 2000-06-23  Paul Eggert  <eggert@twinsun.com>
40016
40017         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
40018         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
40019
40020 2000-06-23  Paul Eggert  <eggert@twinsun.com>
40021
40022         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
40023         (mbrtowc, mbstate_t): Define substitutes if
40024         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
40025         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
40026         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
40027
40028 2000-06-23  Jim Meyering  <meyering@lucent.com>
40029
40030         * m4/afs.m4: Add missing AC_MSG_RESULT.
40031         Reported by Bruno Haible.
40032
40033         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
40034         Suggestion from Bruno Haible.
40035
40036 2000-06-23  Jim Meyering  <meyering@lucent.com>
40037
40038         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
40039
40040 2000-06-21  Jim Meyering  <meyering@lucent.com>
40041
40042         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
40043
40044 2000-06-21  Jim Meyering  <meyering@lucent.com>
40045
40046         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
40047         (noinst_HEADERS): Add getstr.h.
40048
40049         * lib/getline.c (getstr): Move into a separate file.
40050         * lib/getstr.c (getstr): New file, extracted from getline.c, with
40051         the following changes: new parameter, delim2; both delim[12]
40052         parameters have type `int', not `char'.  The latter would lose
40053         with 8-bit delimiters.
40054         * lib/getstr.h: New file.
40055
40056 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
40057
40058         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
40059         than 1024, return a memory chunk of least possible size, instead
40060         of size PATH_MAX + 2. In the loop, increment the size proportionally.
40061         Use free/xmalloc instead of xrealloc to avoid copying for very long
40062         paths.
40063
40064 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
40065
40066         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
40067         the empty string.
40068
40069 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
40070
40071         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
40072         address, not strdup.  Include <stdlib.h> and don't declare free().
40073
40074 2000-06-19  Jim Meyering  <meyering@lucent.com>
40075
40076         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
40077
40078 2000-06-18  Jim Meyering  <meyering@lucent.com>
40079
40080         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
40081
40082         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
40083         `checking whether...' message to be consistent with that of the
40084         lstat test.
40085
40086 2000-06-18  Jim Meyering  <meyering@lucent.com>
40087
40088         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
40089         Besides, these days every porting target provides a mkdir function.
40090
40091         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
40092         needed. (this snippet comes from src/system.h).
40093
40094 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
40095
40096         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
40097
40098 2000-06-15  Paul Eggert  <eggert@twinsun.com>
40099
40100         * lib/human.c (adjust_value): New function.
40101         (human_readable_inexact): Apply rounding style even when
40102         printing approximate values.
40103
40104 2000-06-14  Paul Eggert  <eggert@twinsun.com>
40105
40106         * lib/human.c (human_readable_inexact): Allow an input block
40107         size that is not a multiple of the output block size, and vice versa.
40108         Reported by Piergiorgio Sartor.
40109
40110 2000-06-14  Paul Eggert  <eggert@twinsun.com>
40111
40112         * lib/getdate.y (get_date): Apply relative times after time
40113         zone indicator, not before.  Reported by Todd A. Jacobs.
40114
40115 2000-06-13  Jim Meyering  <meyering@lucent.com>
40116
40117         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
40118
40119         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
40120
40121 2000-06-12  Paul Eggert  <eggert@twinsun.com>
40122
40123         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
40124
40125 2000-06-12  Jim Meyering  <meyering@lucent.com>
40126
40127         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
40128         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
40129         optional argument.
40130         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
40131         the optional argument, `lib'.
40132
40133 2000-06-08  Jim Meyering  <meyering@lucent.com>
40134
40135         * m4/largefile.m4: Remove file (now that it's part of autoconf).
40136
40137 2000-06-04  Paul Eggert  <eggert@twinsun.com>
40138
40139         Rewrite largefile configuration so that we don't need to run
40140         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
40141         AC_CANONICAL_HOST in configure.in -- jmm]
40142
40143         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
40144         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
40145         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
40146         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
40147         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
40148         All uses changed.
40149         Instead of inspecting the output of getconf, try to compile the
40150         test program without and with the macro definition.
40151         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
40152         for getconf.  Instead, check for the needed flags by compiling
40153         test programs.
40154
40155 2000-06-04  Paul Eggert  <eggert@twinsun.com>
40156
40157         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
40158
40159 2000-06-04  Jim Meyering  <meyering@lucent.com>
40160
40161         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
40162         SunOS 4.1.4 for which gid_t is an unsigned type.
40163
40164 2000-06-03  Jim Meyering  <meyering@lucent.com>
40165
40166         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
40167         now that autoconf requires that.
40168
40169         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
40170         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
40171         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
40172
40173 2000-06-03  Jim Meyering  <meyering@lucent.com>
40174
40175         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
40176
40177 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
40178
40179         * m4/glibc21.m4: New file.
40180         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
40181
40182 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
40183
40184         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
40185         newer, don't install charset.alias.
40186         * lib/config.charset: Change the Linux/glibc rules so they become empty
40187         on glibc-2.1 or newer.
40188
40189 2000-06-02  Jim Meyering  <meyering@lucent.com>
40190
40191         * lib/mountlist.c: Back out last change.  Instead, do this...
40192         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
40193         me_dummy member using the same `ignore'-testing code.
40194         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
40195         fs_type strings.
40196         From Mark D. Roth.
40197
40198 2000-05-29  Jim Meyering  <meyering@lucent.com>
40199
40200         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
40201         mounts with the `ignore' attribute.  Based on a patch from
40202         Mark D. Roth.
40203
40204 2000-05-28  Jim Meyering  <meyering@lucent.com>
40205
40206         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
40207         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
40208         * m4/stat.m4: Likewise.
40209         * m4/lstat.m4: Likewise.
40210         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
40211
40212         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
40213         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
40214
40215 2000-05-26  Jim Meyering  <meyering@lucent.com>
40216
40217         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
40218
40219 2000-05-24  Jim Meyering  <meyering@lucent.com>
40220
40221         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
40222         autoconf requires that.
40223         * m4/lib-check.m4: Likewise.
40224         * m4/jm-macros.m4: Likewise.
40225         * m4/strftime.m4: Likewise.
40226
40227         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
40228         AC_CHECK_DECLS, now that autoconf requires that.
40229
40230 2000-05-22  Jim Meyering  <meyering@lucent.com>
40231
40232         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
40233         * m4/lstat.m4: Likewise.
40234
40235 2000-05-22  Jim Meyering  <meyering@lucent.com>
40236
40237         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
40238
40239 2000-05-20  Jim Meyering  <meyering@lucent.com>
40240
40241         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
40242         (jm_PREREQ): Use it.
40243
40244 2000-05-18  Jim Meyering  <meyering@lucent.com>
40245
40246         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
40247         back, too, since it may have been modified by allocate_entry.
40248         (hash_delete): Rewrite to use neither the assignment operator
40249         nor the comma operator in an if-expression.
40250
40251 2000-05-15  Paul Eggert  <eggert@twinsun.com>
40252
40253         * lib/closeout.c:
40254         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
40255         Remove; no longer needed.
40256         "quotearg.h": Add include.
40257         (file_name): Do not bother to explicitly initialize to NULL; it's less
40258         efficient on some hosts.
40259         (close_stdout_status): Remove test as to whether stdout was already
40260         closed; it breaks for the case "echo x | sort >&-".
40261         Quote file name colons.
40262         Do not assume that _("write error") lacks format strings.
40263
40264 2000-05-15  Jim Meyering  <meyering@lucent.com>
40265
40266         * lib/version-etc.c (version_etc_copyright): Update the copyright
40267         string used in all --version output.
40268
40269 2000-05-14  Jim Meyering  <meyering@lucent.com>
40270
40271         * lib/closeout.c (close_stdout_set_file_name): New function.
40272         (close_stdout_status): Use new file-scoped global.
40273         Return right away if fstat says the stdout file descriptor is invalid.
40274         * lib/closeout.h (close_stdout_set_file_name): Declare.
40275
40276 2000-05-10  Jim Meyering  <meyering@lucent.com>
40277
40278         * lib/closeout.c [default_exit_status]: New file-scoped variable.
40279         (close_stdout_set_status): New function.
40280         * lib/closeout.h (close_stdout_set_status): Declare.
40281
40282 2000-05-09  Jim Meyering  <meyering@lucent.com>
40283
40284         * m4/gettext.m4: Rename this...
40285         * m4/libintl.m4: ...to this.
40286
40287 2000-05-08  Jim Meyering  <meyering@lucent.com>
40288
40289         * lib/long-options.c: Don't include closeout.h.
40290         (parse_long_options): Don't call close_stdout for --version.
40291
40292 2000-05-06  Paul Eggert  <eggert@twinsun.com>
40293
40294         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
40295         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
40296         2.1.3 bug.  This avoids a clash when files like regex.c define
40297         _GNU_SOURCE.
40298
40299 2000-05-06  Jim Meyering  <meyering@lucent.com>
40300
40301         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
40302         (AC_REPLACE_FUNCS): Add strnlen.
40303
40304         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
40305         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
40306
40307         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
40308         AC_SEARCH_LIBS call for nanosleep.
40309         (LIB_NANOSLEEP): Set and AC_SUBST.
40310
40311 2000-05-06  Jim Meyering  <meyering@lucent.com>
40312
40313         * lib/strnlen.c: Undefine __strnlen and strnlen.
40314         [!weak_alias]: Define __strnlen to strnlen.
40315
40316         * lib/atexit.c: New file, from libiberty.
40317
40318 2000-05-06  Jim Meyering  <meyering@lucent.com>
40319
40320         * lib/closeout.c (close_stdout_status): Also check for errors on the
40321         stderr stream.
40322
40323 2000-05-05  Jim Meyering  <meyering@lucent.com>
40324
40325         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
40326         AC_SEARCH_LIBS call for clock_gettime.
40327         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
40328
40329         * m4/search-libs.m4: Update from autoconf.
40330
40331         su doesn't work on Solaris 2.6.
40332         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
40333         <shadow.h>.  Reported by Dragos Harabor.
40334
40335 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
40336
40337         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
40338         memcpy instead of xmalloc, xrealloc, path_concat.
40339         (locale_charset): Treat empty environment variables as absent.
40340         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
40341
40342 2000-05-04  Jim Meyering  <meyering@lucent.com>
40343
40344         * lib/getopt.c: Update from glibc.
40345         * lib/obstack.c: Likewise.
40346         * lib/obstack.h: Likewise.
40347         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
40348         file
40349
40350         * lib/regex.h: Likewise.
40351         * lib/strndup.c: Likewise.
40352         * lib/strnlen.c: New file, from glibc.
40353
40354 2000-05-03  Jim Meyering  <meyering@lucent.com>
40355
40356         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
40357
40358 2000-05-02  Paul Eggert  <eggert@twinsun.com>
40359
40360         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
40361         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
40362         compile-time test, rather than inspecting host and OS, to
40363         decide whether to define _LARGEFILE_SOURCE.
40364
40365 2000-05-01  Jim Meyering  <meyering@lucent.com>
40366
40367         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
40368
40369         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
40370         Based on a patch from Bruno Haible.
40371
40372 2000-05-01  Jim Meyering  <meyering@lucent.com>
40373
40374         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
40375
40376 2000-04-29  Jim Meyering  <meyering@lucent.com>
40377
40378         * lib/path-concat.c: Declare strdup only if it's not defined.
40379         * lib/canon-host.c: Likewise.
40380
40381 2000-04-28  Jim Meyering  <meyering@lucent.com>
40382
40383         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
40384         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
40385         is included first, then limits.h is included by locale.h by libintl.h.
40386         From John David Anglin.
40387
40388 2000-04-25  Jim Meyering  <meyering@lucent.com>
40389
40390         * lib/makepath.c (S_IRWXUGO): Define.
40391         (make_path): Always perform explicit chmod if MODE specifies any
40392         of the `special' permission bits.  Prompted by a bug report against
40393         install from Mate Wierdl and Joost van Baal.
40394
40395 2000-04-18  Jim Meyering  <meyering@lucent.com>
40396
40397         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
40398         (jm_PREREQ): Use it.
40399
40400 2000-04-18  Jim Meyering  <meyering@lucent.com>
40401
40402         * lib/README: New file.
40403
40404         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
40405         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
40406
40407 2000-04-17  Jim Meyering  <meyering@lucent.com>
40408
40409         Get it right :-)
40410         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
40411         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
40412         Suggestion from Akim Demaille.
40413
40414 2000-04-17  Jim Meyering  <meyering@lucent.com>
40415
40416         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
40417         the definition of it to rpl_strftime also defined-away the system's
40418         declaration.
40419
40420 2000-04-15  Jim Meyering  <meyering@lucent.com>
40421
40422         Use `C' to denote so-called `contiguous' files, the same way
40423         that tar does.
40424         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
40425         (ftypelet): Use S_ISCTG.
40426         From Michael Deutschmann.
40427
40428 2000-04-14  Jim Meyering  <meyering@lucent.com>
40429
40430         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
40431         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
40432         clobbered.
40433
40434 2000-04-14  Jim Meyering  <meyering@lucent.com>
40435
40436         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
40437
40438 2000-04-13  Jim Meyering  <meyering@lucent.com>
40439
40440         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
40441         AH_VERBATIM to insert required #ifndef into config.h.in.
40442         Suggestion from Akim Demaille.
40443
40444 2000-04-12  Jim Meyering  <meyering@lucent.com>
40445
40446         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
40447         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
40448         Christian Krackowizer.
40449
40450         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
40451         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
40452         (AC_SYS_LARGEFILE): Require.
40453         (AM_C_PROTOTYPES): Require.
40454
40455 2000-04-08  Jim Meyering  <meyering@lucent.com>
40456
40457         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
40458         names don't conflict.  Reported by Eli Zaretskii.
40459
40460 2000-04-07  Jim Meyering  <meyering@lucent.com>
40461
40462         * lib/putenv.c: Move inclusion of errno.h so it follows that of
40463         sys/types.h, to work around system header problems on AIX 3.2.5.
40464         From Bruno Haible.
40465
40466 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
40467
40468         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
40469         bug.  Deal with the different error behavior of Irix iconv.
40470
40471 2000-04-05  Paul Eggert  <eggert@twinsun.com>
40472
40473         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
40474         IRIX if the installer said otherwise.
40475
40476 2000-04-05  Jim Meyering  <meyering@lucent.com>
40477
40478         Portability tweaks required for ultrix4.3.
40479         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
40480         (jm_CHECK_DECLS): Add getutent to the list of functions.
40481         (_jm_DECL_HEADERS): Add utmpx.h.
40482         From John David Anglin.
40483
40484         * m4/strftime.m4: Back out the 2000-04-02 change.
40485         Instead of that change, simply undefine putenv in the test program.
40486
40487 2000-04-05  Jim Meyering  <meyering@lucent.com>
40488
40489         Portability tweaks required for ultrix4.3.
40490         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
40491         getutent.
40492         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
40493         * lib/canon-host.c: Declare strdup.
40494         * lib/path-concat.c: Likewise.
40495         From John David Anglin.
40496
40497 2000-04-04  Jim Meyering  <meyering@lucent.com>
40498
40499         Be more DOS 8.3-friendly.
40500         * lib/ref-add.sin: Renamed from ref-add.sed.in.
40501         * lib/ref-del.sin: Renamed from ref-del.sed.in.
40502         * lib/Makefile.am: Reflect renaming.
40503         Reported by Eli Zaretskii.
40504
40505         Use a temporary file name that won't clash with `charset.alias'
40506         in the DOS 8.3 name space.
40507         * lib/Makefile.am (charset_tmp): Define.
40508         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
40509         (uninstall-local): Likewise.
40510         Reported by Eli Zaretskii.
40511
40512 2000-04-03  Jim Meyering  <meyering@lucent.com>
40513
40514         * m4/gettext.m4: Fix typo in comment.
40515
40516         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
40517         textutils/configure.in).  Suggestion from Paul Eggert.
40518         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
40519
40520 2000-04-02  Paul Eggert  <eggert@twinsun.com>
40521
40522         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
40523         variable in the shell rather than using putenv, which isn't
40524         portable.  This avoids the configure-time inter-test dependency
40525         on the potentially-renamed putenv function.
40526
40527 2000-03-30  Paul Eggert  <eggert@twinsun.com>
40528
40529         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
40530         before checking struct stat.st_blksize, so that
40531         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
40532
40533 2000-03-29  Paul Eggert  <eggert@twinsun.com>
40534
40535         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
40536         since strftime.c uses HAVE_STRFTIME to decide whether to use
40537         the underlying strftime.
40538
40539 2000-03-29  Paul Eggert  <eggert@twinsun.com>
40540
40541         * lib/time/strftime.c (my_strftime): Make sure we call the system
40542         strftime, not ourselves, when invoking the underlying strftime.
40543
40544 2000-03-24  Jim Meyering  <meyering@lucent.com>
40545
40546         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
40547         (charset_alias): Define.
40548         (install-exec-local): Factor out common code.
40549         (uninstall-local): Split lines longer than 80.
40550         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
40551         (SUFFIXES): Define.
40552         (.sed.in.sed): New rule.  Don't redirect directly to $@.
40553         (CLEANFILES): Add ref-add.sed and ref-del.sed.
40554
40555 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
40556
40557         * lib/config.charset: Output a line containing "Packages using this
40558         file".
40559         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
40560         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
40561         ref-del.sed): New rules.
40562
40563 2000-03-17  Jim Meyering  <meyering@lucent.com>
40564
40565         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
40566         Otherwise, include <strings.h>
40567
40568 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
40569
40570         * lib/unicodeio.c (utf8_wctomb): New function.
40571         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
40572         format instead of in UCS-4 with platform dependent endianness.
40573
40574 2000-03-10  Jim Meyering  <meyering@lucent.com>
40575
40576         * m4/lib-check.m4: Look for getspnam in -lgen, too.
40577         From Marco Franzen.
40578
40579 2000-03-07  Paul Eggert  <eggert@twinsun.com>
40580
40581         * lib/savedir.c (savedir): Work even if directory size is
40582         negative; this can happen with some screwy NFS configurations.
40583
40584 2000-03-06  Jim Meyering  <meyering@lucent.com>
40585
40586         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
40587         if it's NULL (because we ran out of memory).  From Bruno Haible.
40588
40589 2000-03-05  Jim Meyering  <meyering@lucent.com>
40590
40591         * lib/localcharset.c ("path-concat.h"): Include.
40592         (get_charset_aliases): Use path_concat instead of ANSI string
40593         concatenation.
40594
40595         * lib/unicodeio.h (PARAMS): Define.
40596         Use it to guard prototype.
40597
40598 2000-03-04  Jim Meyering  <meyering@lucent.com>
40599
40600         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
40601         for lib/localcharset.c.
40602
40603 2000-03-04  Jim Meyering  <meyering@lucent.com>
40604
40605         * lib/Makefile.am (install-exec-local): Create $(libdir) before
40606         installing into it.
40607         (uninstall-local): Uncomment this rule so `make distcheck' works
40608         once again.
40609
40610         * lib/unicodeio.c (<errno.h>): Include it.
40611         (errno): Declare if not defined.
40612
40613         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
40614
40615         * lib/config.charset: New version, incorporating remarks from a linux
40616         i18n mailing list.  From Bruno Haible.
40617
40618 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
40619
40620         * m4/codeset.m4: New file.
40621         * m4/iconv.m4: New file.
40622         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
40623
40624 2000-03-03  Jim Meyering  <meyering@lucent.com>
40625
40626         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
40627
40628 2000-03-02  Jim Meyering  <meyering@lucent.com>
40629
40630         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
40631         the messages come out on separate lines.
40632
40633         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
40634         rather than jm_CHECK_DECLARATIONS.
40635         * m4/decl.m4: Remove now-unused file.
40636
40637         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
40638         geteuid.
40639
40640 2000-03-02  Jim Meyering  <meyering@lucent.com>
40641
40642         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
40643
40644 2000-03-01  Jim Meyering  <meyering@lucent.com>
40645
40646         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
40647         * lib/unicodeio.c: Likewise.
40648
40649 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
40650
40651         * lib/config.charset: New file.
40652         * lib/localcharset.c: New file.
40653         * lib/unicodeio.h, lib/unicodeio.c: New files.
40654         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
40655         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
40656         (noinst_HEADERS): Add unicodeio.h.
40657         (all-local, install-exec-local, charset.alias): New targets.
40658
40659 2000-02-28  Paul Eggert  <eggert@twinsun.com>
40660
40661         * lib/quotearg.c (ALERT_CHAR): New macro.
40662         (quotearg_buffer_restyled): Use it.
40663
40664 2000-02-27  Jim Meyering  <meyering@lucent.com>
40665
40666         * m4/check-decl.m4: Add getenv to the list.
40667
40668 2000-02-27  Jim Meyering  <meyering@lucent.com>
40669
40670         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
40671         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
40672
40673         * lib/backupfile.c: Guard inclusion of stdlib.h with
40674         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
40675         Declare malloc if needed.
40676
40677         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
40678         `#ifndef HAVE_DECL..'
40679         now that autoconf always defines the HAVE_DECL_ symbols.
40680         * lib/human.c: Likewise.
40681         * lib/same.c: Likewise.
40682         * lib/strtoumax.c: Likewise.
40683
40684         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
40685         declaration check was not run.
40686         * lib/hash.c: Likewise.
40687         * lib/human.c: Likewise.
40688         * lib/same.c: Likewise.
40689         * lib/strtoumax.c: Likewise.
40690
40691         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
40692         `.', then first look up the entire `.'-containing string as a login
40693         name.
40694
40695 2000-02-23  Jim Meyering  <meyering@lucent.com>
40696
40697         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
40698         in place of my hack.
40699
40700 2000-02-18  Paul Eggert  <eggert@twinsun.com>
40701
40702         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
40703         (textint): New typedef.
40704         (parser_control): Member year changed from int to textint.
40705         All uses changed.
40706         (YYSTYPE): Removed; replaced by %union with int and textint members.
40707         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
40708         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
40709         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
40710         (tSNUMBER, tUNUMBER): Now of type <textintval>.
40711         (date, number, to_year): Use width of number in digits, not its value,
40712         to determine whether it's a 2-digit year, or a 2-digit time.
40713         (yylex): Store number of digits of numeric tokens.
40714         Reported by John Kendall.
40715
40716         (parser_control): Changed from struct parser_control to typedef (for
40717         consistency).  All uses changed.
40718
40719         (tID): Removed; not used.
40720         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
40721
40722 2000-02-14  Paul Eggert  <eggert@twinsun.com>
40723
40724         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
40725         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
40726
40727 2000-02-12  Jim Meyering  <meyering@lucent.com>
40728
40729         * lib/userspec.c (ISDIGIT): Define it.
40730         (isdigit): Remove definition.
40731         (is_number): Use ISDIGIT, not isdigit.
40732         <libintl.h>: Include.
40733         (_ and N_): Define.
40734         (parse_user_spec): Mark translatable strings.
40735
40736 2000-02-10  Jim Meyering  <meyering@lucent.com>
40737
40738         With these changes, nanosleep.[ch] are finally enough like the other
40739         lib/* replacement files to compile on a few more losing systems.
40740
40741         * lib/nanosleep.h: Don't include config.h.
40742         Remove prototype from declaration of nanosleep.
40743         (PARAMS): Remove now-unneeded definition.
40744         * lib/nanosleep.c: #undef nanosleep.
40745         (rpl_nanosleep): Rename from nanosleep.
40746
40747 2000-02-10  Jim Meyering  <meyering@lucent.com>
40748
40749         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
40750         gnu_nanosleep to rpl_nanosleep.
40751
40752 2000-02-09  Jim Meyering  <meyering@lucent.com>
40753
40754         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
40755         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
40756
40757 2000-02-08  Akim Demaille  <akim@epita.fr>
40758
40759         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
40760         `[' and `]' and remove uses of `changequote'.
40761         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
40762         (AC_SYS_LARGEFILE): Likewise.
40763         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
40764         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
40765         of changequote.
40766         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
40767         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
40768         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
40769         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
40770
40771 2000-02-05  Jim Meyering  <meyering@lucent.com>
40772
40773         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
40774         Remove explicit use of AC_HEADER_TIME.  It is required by
40775         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
40776         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
40777         in autoconf whereby the expansion of the latter ended up preceding
40778         the expansion of its prerequisite, AC_HEADER_TIME.
40779         Reported by Volker Borchert.
40780
40781 2000-02-03  Jim Meyering  <meyering@lucent.com>
40782
40783         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
40784
40785 2000-02-03  Jim Meyering  <meyering@lucent.com>
40786
40787         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
40788         rather than with `#if HAVE_UTMPNAME'.
40789
40790 2000-02-02  Jim Meyering  <meyering@lucent.com>
40791
40792         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
40793         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
40794         Reported by Eli Zaretskii.
40795
40796 2000-02-01  Jim Meyering  <meyering@lucent.com>
40797
40798         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
40799
40800 2000-01-31  Jim Meyering  <meyering@lucent.com>
40801
40802         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
40803         functions.  Add the time.h and sys/time.h headers along with the
40804         AC_REQUIRE'ment of AC_HEADER_TIME.
40805
40806 2000-01-31  Jim Meyering  <meyering@lucent.com>
40807
40808         * lib/nanosleep.h (nanosleep): Guard declaration with
40809         `#if ! HAVE_DECL_NANOSLEEP'.
40810         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
40811         the declaration in that vendor's sys/timers.h.
40812         Reported by Christian Krackowizer.
40813
40814         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
40815         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
40816         (ISPRINT): Likewise.
40817         Reported by Tom Tromey.
40818
40819 2000-01-30  Jim Meyering  <meyering@lucent.com>
40820
40821         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
40822
40823         * m4/prereq.m4 (utmp_includes): Define.
40824         Check for ut_user and ut_name members in both struct utmpx
40825         and struct utmp.
40826
40827 2000-01-30  Jim Meyering  <meyering@lucent.com>
40828
40829         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
40830         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
40831         header files where only utmpx.ut_user is declared.
40832
40833         * lib/readutmp.h (UT_USER): Define.
40834
40835 2000-01-29  Jim Meyering  <meyering@lucent.com>
40836
40837         * m4/lib-check.m4: New file containing library-related checks from
40838         fileutils and sh-utils (textutils had none).
40839
40840 2000-01-28  Jim Meyering  <meyering@lucent.com>
40841
40842         * m4/perl.m4: Change format of warning message to look more like that
40843         from the missing script.  Suggestion from François Pinard.
40844
40845 2000-01-25  Jim Meyering  <meyering@lucent.com>
40846
40847         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
40848         well as time.h in the compile check.
40849         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
40850         Fix typo in cross-compiling case: s/yes/no/.
40851
40852 2000-01-23  Jim Meyering  <meyering@lucent.com>
40853
40854         * m4/jm-macros.m4: Move df-related tests here from
40855         fileutils/configure.in
40856
40857         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
40858         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
40859
40860         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
40861         s/space/ac_fsusage_space/.
40862         (jm_FILE_SYSTEM_USAGE): Take two parameters.
40863
40864         * m4/ftruncate.m4: New file (derived from part of
40865         fileutils/configure.in).
40866         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
40867         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
40868
40869         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
40870         AC_SUBST these here, rather than just in sh-util/configure.in, so
40871         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
40872         all the same.
40873         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
40874         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
40875         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
40876         (AC_SUBST(POW_LIBM)): Likewise.
40877         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
40878
40879 2000-01-23  Jim Meyering  <meyering@lucent.com>
40880
40881         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
40882         obstack.c.
40883
40884 2000-01-22  Jim Meyering  <meyering@lucent.com>
40885
40886         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
40887
40888         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
40889
40890         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
40891         configure.in
40892         (AC_CHECK_HEADERS): Likewise for sh-utils.
40893         (AC_CHECK_HEADERS): Likewise for textutils.
40894         Merge the three lists of headers.
40895
40896         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
40897         from fileutils' configure.in.
40898
40899         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
40900         code. Moved tests into their own function (_jm_DECL_HEADERS) in
40901         check-decl.m4.
40902
40903         * m4/check-decl.m4: Use #if rather than #ifdef.
40904         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
40905         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
40906         (_jm_DECL_HEADERS): Define new function.
40907         (jm_CHECK_DECLARATIONS): Require it.
40908
40909 2000-01-22  Jim Meyering  <meyering@lucent.com>
40910
40911         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
40912         [! HAVE_DECL_STRTOULL]: Declare strtoull.
40913         Required for some AIX systems.  Reported by Christian Krackowizer.
40914         [TESTING] (main): New function.
40915
40916         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
40917         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
40918         letters.
40919
40920         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
40921         iswprint.
40922
40923         * lib/strverscmp.c (ISDIGIT): Define.
40924         (strverscmp): Use ISDIGIT, not isdigit.
40925
40926 2000-01-19  Jim Meyering  <meyering@lucent.com>
40927
40928         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
40929         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
40930         defines `struct timespec' in <sys/time.h>
40931
40932         * m4/c-bs-a.m4: Remove uses of changequote altogether.
40933         Thanks to Akim for explaining.
40934
40935 2000-01-17  Paul Eggert  <eggert@twinsun.com>
40936
40937         * lib/nanosleep.c (nanosleep):
40938         Don't use SA_INTERRUPT to decide whether to call sigaction, as
40939         POSIX.1 doesn't require SA_INTERRUPT and some systems
40940         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
40941         it's been part of POSIX.1 since day 1 (in 1988).
40942
40943 2000-01-17  Jim Meyering  <meyering@lucent.com>
40944
40945         * lib/interlock: Remove unused file.  Reported by François Pinard.
40946
40947 2000-01-16  Paul Eggert  <eggert@twinsun.com>
40948
40949         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
40950         alert, backslash, formfeed, and vertical tab unnecessarily in
40951         shell quoting style.
40952
40953 2000-01-16  Jim Meyering  <meyering@lucent.com>
40954
40955         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
40956         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
40957         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
40958         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
40959
40960 2000-01-16  Jim Meyering  <meyering@lucent.com>
40961
40962         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
40963         because the latter didn't work.
40964
40965 2000-01-15  Jim Meyering  <meyering@lucent.com>
40966
40967         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
40968         (AC_REPLACE_FUNCS): Add memcpy and memset.
40969         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
40970         Add strpbrk.
40971         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
40972
40973 2000-01-12  Jim Meyering  <meyering@lucent.com>
40974
40975         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
40976         (jm_PREREQ): Use it.
40977         (jm_PREREQ_READUTMP): New macro.
40978         (jm_PREREQ): Use it.
40979
40980 2000-01-11  Paul Eggert  <eggert@twinsun.com>
40981
40982         Quote multibyte characters correctly.
40983         * m4/c-bs-a.m4: New file.
40984         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
40985         (jm_PREREQ): Use it.
40986
40987 2000-01-11  Paul Eggert  <eggert@twinsun.com>
40988
40989         * m4/uintmax_t.m4: Port to autoconf 2.13.
40990
40991 2000-01-08  Jim Meyering  <meyering@ascend.com>
40992
40993         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
40994         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
40995
40996 2000-01-04  Jim Meyering  <meyering@ascend.com>
40997
40998         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
40999         jm_STRUCT_DIRENT_D_TYPE.
41000         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
41001         jm_STRUCT_DIRENT_D_INO.
41002         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
41003         jm_STRUCT_UTIMBUF.
41004         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
41005         renamings.
41006         * m4/utime.m4: Likewise.
41007
41008         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
41009         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
41010
41011 2000-01-03  Paul Eggert  <eggert@twinsun.com>
41012
41013         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
41014         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
41015
41016 2000-01-02  Jim Meyering  <meyering@ascend.com>
41017
41018         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
41019         remember if this is necessary.
41020
41021 1999-12-26  Jim Meyering  <meyering@ascend.com>
41022
41023         * m4/jm-macros.m4: Use it here.
41024         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
41025
41026 1999-12-23  Jim Meyering  <meyering@ascend.com>
41027
41028         * m4/jm-macros.m4: Check for clock_gettime (moved from
41029         fileutils/configure.in)
41030         Check for gettimeofday.
41031
41032 1999-12-20  Jim Meyering  <meyering@ascend.com>
41033
41034         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
41035         autoconf-2.14a-1999-12-20.
41036
41037 1999-12-19  Jim Meyering  <meyering@ascend.com>
41038
41039         * m4/lstat-slash.m4: New file.
41040         * m4/jm-macros.m4: Use the new macro:
41041         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
41042
41043 1999-12-07  Jim Meyering  <meyering@ascend.com>
41044
41045         * m4/perl.m4: Require that File::Compare be available, too.
41046         Too many systems seem to lack it.
41047
41048         * m4/strftime.m4: Add checks for most of the cpp macros tested in
41049         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
41050
41051 1999-11-18  Paul Eggert  <eggert@twinsun.com>
41052
41053         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
41054         problem with the QNX 4.25 shell, which doesn't propagate exit
41055         status of failed commands inside shell assignments.
41056
41057 1999-11-17  Jim Meyering  <meyering@ascend.com>
41058
41059         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
41060
41061 1999-11-07  Jim Meyering  <meyering@ascend.com>
41062
41063         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
41064
41065 1999-11-06  Jim Meyering  <meyering@ascend.com>
41066
41067         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
41068         * m4/jm-macros.m4 (jm_MACROS): Use it here.
41069
41070 1999-11-05  Jim Meyering  <meyering@ascend.com>
41071
41072         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
41073         configure.in of textutils, fileutils, and sh-utils into this one
41074         (shared between those packages) file.
41075         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
41076         AC_STRUCT_ST_BLKSIZE.
41077
41078 1999-11-03  Jim Meyering  <meyering@ascend.com>
41079
41080         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
41081         of AC_CHECK_TYPE checks includes unistd.h.
41082         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
41083         Suggestion from Akim Demaille.
41084
41085 1999-10-30  Jim Meyering  <meyering@ascend.com>
41086
41087         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
41088         m4-quoted string.
41089         * m4/ls-mntd-fs.m4: Likewise.
41090         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
41091         * m4/jm-winsz1.m4: Likewise.
41092
41093         * m4/const.m4: Remove file, since the fix made it into the experimental
41094         version of autoconf.
41095         * m4/mktime.m4: Likewise.
41096
41097         * m4/check-type.m4: Remove file, now that the latest version of
41098         AC_CHECK_TYPE takes a third arg to specify additional #includes.
41099
41100         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
41101         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
41102         AC_CHECK_TYPE.
41103
41104 1999-10-04  Jim Meyering  <meyering@ascend.com>
41105
41106         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
41107
41108 1999-09-22  Paul Eggert  <eggert@twinsun.com>
41109
41110         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
41111         2.95.1 bug with HP-UX 10.20.
41112
41113 1999-09-17  Jim Meyering  <meyering@ascend.com>
41114
41115         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
41116         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
41117         due to missing strdup (against sh-utils-2.0).
41118
41119 1999-08-29  Jim Meyering  <meyering@ascend.com>
41120
41121         * m4/jm-macros.m4: Require jm_BISON.
41122         * m4/bison.m4: New file.
41123
41124 1999-08-17  Paul Eggert  <eggert@twinsun.com>
41125
41126         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
41127         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
41128
41129 1999-08-05  Jim Meyering  <meyering@ascend.com>
41130
41131         * m4/getline.m4: Rename test file from conftestdata to conftest.data
41132         to avoid conflicts with `conftest' on 8+3 filesystems.
41133         Suggestion from Eli Zaretskii.
41134
41135 1999-08-04  Jim Meyering  <meyering@ascend.com>
41136
41137         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
41138         fileutils and sh-utils (textutils's getline test was inadequate).
41139         (AM_FUNC_GETLINE): Run this test.
41140         (AC_CHECK_FUNCS): Check for getdelim.
41141         Reported by Bob Proulx.
41142
41143 1999-08-02  Jim Meyering  <meyering@ascend.com>
41144
41145         * m4/jm-macros.m4: Add a comment.
41146
41147 1999-08-01  Paul Eggert  <eggert@twinsun.com>
41148
41149         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
41150         <inttypes.h> defines strtoumax as a macro (and not as a
41151         function).
41152
41153 1999-08-01  Paul Eggert  <eggert@twinsun.com>
41154
41155         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
41156         that we can shift, multiply and divide unsigned long long
41157         values; Ultrix cc can't do it.
41158
41159 1999-08-01  Paul Eggert  <eggert@twinsun.com>
41160
41161         * m4/mktime.m4: New file, which is a preview of what should appear
41162         in the next public autoconf release.
41163
41164 1999-08-01  Paul Eggert  <eggert@twinsun.com>
41165
41166         * m4/lfs.m4: Remove this file.
41167         * m4/largefile.m4: New file.  It contains the old contents of
41168         lfs.m4, except that all names with prefix AC_LFS have been
41169         changed to use the prefix AC_SYS_LARGEFILE instead, to be
41170         compatible with future autoconf versions.  Also, some minor m4
41171         quoting problems have been fixed.
41172
41173 1999-08-01  Paul Eggert  <eggert@twinsun.com>
41174
41175         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
41176         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
41177         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
41178         and simplify the shell code.
41179
41180 1999-08-01  Jim Meyering  <meyering@ascend.com>
41181
41182         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
41183         m4.
41184
41185 1999-07-20  Jim Meyering  <meyering@ascend.com>
41186
41187         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
41188
41189 1999-07-15  Jim Meyering  <meyering@ascend.com>
41190
41191         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
41192
41193 1999-05-22  Jim Meyering  <meyering@ascend.com>
41194
41195         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
41196
41197 1999-05-20  Jim Meyering  <meyering@ascend.com>
41198
41199         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
41200         Add a colon after each `then' in case $4 is empty.
41201
41202 1999-05-16  Jim Meyering  <meyering@ascend.com>
41203
41204         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
41205
41206 1999-05-10  Jim Meyering  <meyering@ascend.com>
41207
41208         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
41209
41210         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
41211         AC_FUNC_MKTIME.
41212
41213 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
41214
41215         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
41216
41217 1999-05-04  Paul Eggert  <eggert@twinsun.com>
41218
41219         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
41220         not CPPFLAGS, so that linking works correctly in IRIX.
41221
41222 1999-04-30  Paul Eggert  <eggert@twinsun.com>
41223
41224         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
41225
41226 1999-04-20  Paul Eggert  <eggert@twinsun.com>
41227
41228         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
41229         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
41230         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
41231         jm_AC_TYPE_UNSIGNED_LONG_LONG.
41232         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
41233
41234         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
41235
41236 1999-04-20  Jim Meyering  <meyering@ascend.com>
41237
41238         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
41239         AC_REPLACE xstroull if necessary.  From Paul Eggert.
41240         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
41241
41242 1999-04-18  Jim Meyering  <meyering@ascend.com>
41243
41244         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
41245         * m4/jm-macros.m4: Use it.
41246
41247 1999-04-06  Jim Meyering  <meyering@ascend.com>
41248
41249         * m4/strftime.m4: Remove test for %f.
41250
41251 1999-03-29  Jim Meyering  <meyering@ascend.com>
41252
41253         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
41254         superset of the AC_TYPE_* checks in the textutils, fileutils,
41255         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
41256         AC_TYPE_PID_T.
41257
41258 1999-03-28  Jim Meyering  <meyering@ascend.com>
41259
41260         * m4/jm-macros.m4: Define GNU_PACKAGE here.
41261         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
41262         replaced e.g., in the *.sh files of the sh-utils.
41263
41264 1999-03-20  Jim Meyering  <meyering@ascend.com>
41265
41266         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
41267         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
41268         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
41269
41270 1999-03-19  Jim Meyering  <meyering@ascend.com>
41271
41272         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
41273
41274 1999-03-12  Jim Meyering  <meyering@ascend.com>
41275
41276         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
41277
41278 1999-03-07  Jim Meyering  <meyering@ascend.com>
41279
41280         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
41281         declared.
41282
41283 1999-02-17  Jim Meyering  <meyering@ascend.com>
41284
41285         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
41286         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
41287
41288 1999-02-07  Jim Meyering  <meyering@ascend.com>
41289
41290         * m4/group-member.m4: New file -- extracted from sh-utils'
41291         configure.in.
41292
41293         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
41294         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
41295
41296 1999-02-06  Jim Meyering  <meyering@ascend.com>
41297
41298         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
41299         * m4/fnmatch.m4: Likewise.
41300         * m4/getgroups.m4: Likewise.
41301         * m4/lstat.m4: Likewise.
41302         * m4/malloc.m4: Likewise.
41303         * m4/putenv.m4: Likewise.
41304         * m4/realloc.m4: Likewise.
41305         * m4/regex.m4: Likewise.
41306         * m4/stat.m4: Likewise.
41307         * m4/strftime.m4: Likewise.
41308         Suggestion from Alain Magloire.
41309
41310         * m4/chown.m4: Use `.$ac_objext', not `.o'.
41311         * m4/fnmatch.m4: Likewise.
41312         * m4/getgroups.m4: Likewise.
41313         * m4/getline.m4: Likewise.
41314         * m4/lstat.m4: Likewise.
41315         * m4/malloc.m4: Likewise.
41316         * m4/memcmp.m4: Likewise.
41317         * m4/putenv.m4: Likewise.
41318         * m4/realloc.m4: Likewise.
41319         * m4/regex.m4: Likewise.
41320         * m4/stat.m4: Likewise.
41321         * m4/strftime.m4: Likewise.
41322         Suggestion from Alain Magloire.
41323
41324         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
41325         an argument.
41326
41327         * m4/regex.m4: Add a run-time Test for proper operation of
41328         re_compile_pattern.
41329
41330 1999-01-31  Jim Meyering  <meyering@ascend.com>
41331
41332         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
41333
41334 1999-01-30  Jim Meyering  <meyering@ascend.com>
41335
41336         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
41337
41338         * m4/jm-mktime.m4: Make this a wrapper around the official
41339         AM_FUNC_MKTIME rather than my private copy, now that the official one
41340         is up to date.
41341         * m4/mktime.m4: Remove file.
41342
41343         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
41344         * m4/uptime.m4: Likewise.
41345         * m4/uintmax_t.m4: Likewise.
41346
41347 1999-01-28  Jim Meyering  <meyering@ascend.com>
41348
41349         * m4/jm-macros.m4: Use jm_AFS.
41350         * m4/afs.m4: New file (from fileutils' configure.in).
41351
41352         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
41353         * m4/chown.m4: Likewise.
41354         * m4/d-ino.m4: Likewise.
41355         * m4/d-type.m4: Likewise.
41356         * m4/fnmatch.m4: Likewise.
41357         * m4/getgroups.m4: Likewise.
41358         * m4/gettext.m4: Likewise.
41359         * m4/jm-mktime.m4: Likewise.
41360         * m4/jm-winsz2.m4: Likewise.
41361         * m4/lcmessage.m4: Likewise.
41362         * m4/ls-mntd-fs.m4: Likewise.
41363         * m4/malloc.m4: Likewise.
41364         * m4/memcmp.m4: Likewise.
41365         * m4/putenv.m4: Likewise.
41366         * m4/realloc.m4: Likewise.
41367         * m4/st_mtim.m4: Likewise.
41368         * m4/strftime.m4: Likewise.
41369
41370 1999-01-16  Jim Meyering  <meyering@ascend.com>
41371
41372         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
41373         (ARGMATCH_DIE_DECL): Define.
41374
41375 1999-01-12  Jim Meyering  <meyering@ascend.com>
41376
41377         * m4/Makefile.am.in: Rewrite to avoid using fmt.
41378         Reported by Lars Hecking.
41379
41380 1999-01-10  Jim Meyering  <meyering@ascend.com>
41381
41382         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
41383         gross kludge.
41384         * m4/inttypes_h.m4: Likewise.
41385         * m4/lstat.m4: Likewise.
41386         * m4/malloc.m4: Likewise.
41387         * m4/readdir.m4: Likewise.
41388         * m4/realloc.m4: Likewise.
41389         * m4/st_dm_mode.m4: Likewise.
41390         * m4/stat.m4: Likewise.
41391         * m4/utimbuf.m4: Likewise.
41392         * m4/utimes.m4: Likewise.
41393
41394         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
41395         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
41396         comments in config.h.in are meaningful.
41397
41398         * m4/jm-macros.m4: Require autoconf-2.13 here.
41399
41400         * m4/regex.m4: By default, don't use the included regex.c on systems
41401         with glibc 2.  Suggestion from Uli Drepper.
41402
41403 1999-01-02  Jim Meyering  <meyering@ascend.com>
41404
41405         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
41406
41407 1998-12-18  Jim Meyering  <meyering@ascend.com>
41408
41409         * m4/Makefile.am.in (Makefile.am): Simplify rule.
41410         Based on a suggestion from Lars Hecking.
41411
41412 1998-11-16  Paul Eggert  <eggert@twinsun.com>
41413
41414         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
41415
41416 1998-11-16  Jim Meyering  <meyering@ascend.com>
41417
41418         * m4/lfs.m4: Double-quote the `uname...` expression.
41419
41420 1998-11-14  Jim Meyering  <meyering@ascend.com>
41421
41422         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
41423         * m4/stat.m4: Likewise.
41424
41425 1998-11-03  Jim Meyering  <meyering@ascend.com>
41426
41427         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
41428         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
41429
41430 1998-10-18  Jim Meyering  <meyering@ascend.com>
41431
41432         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
41433
41434 1998-10-17  Jim Meyering  <meyering@ascend.com>
41435
41436         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
41437         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
41438         calls for those previously hard-coded headers.  Instead, take a new
41439         parameter.
41440         (jm_CHECK_DECLARATIONS): Reflect interface change.
41441         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
41442         (jm_CHECK_DECL_LOCALTIME_R): New macro.
41443
41444         * m4/mktime.m4: Test for spring-forward gap before long-running test.
41445
41446 1998-10-14  Jim Meyering  <meyering@ascend.com>
41447
41448         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
41449         instead of "TZ=America/Vancouver".  From Paul Eggert.
41450
41451 1998-10-11  Jim Meyering  <meyering@ascend.com>
41452
41453         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
41454         This adds a test for a recently added compatibility fix for mktime.c.
41455         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
41456
41457 1998-09-27  Jim Meyering  <meyering@ascend.com>
41458
41459         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
41460
41461         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
41462         ../configure.in, including a change from Gordon Matzigkeit to allow
41463         cross-compiling for the Hurd.
41464
41465         * m4/glibc.m4: New file/macro to test for the GNU C Library
41466         versions 1 and 2.  From Gordon Matzigkeit.
41467         Indent.
41468
41469 1998-09-21  Jim Meyering  <meyering@ascend.com>
41470
41471         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
41472
41473 1998-08-18  Paul Eggert  <eggert@twinsun.com>
41474
41475         Port nanosecond-resolution times to UnixWare 2.1.2 and
41476         pedantic Solaris 2.6.
41477
41478         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
41479         AC_STRUCT_ST_MTIM.
41480         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
41481         Generate name of ns member, instead of just 1 or undef.
41482         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
41483
41484 1998-08-15  Jim Meyering  <meyering@ascend.com>
41485
41486         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
41487         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
41488         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
41489         instead of jm_TYPE_SSIZE_T.
41490
41491 1998-08-12  Jim Meyering  <meyering@ascend.com>
41492
41493         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
41494
41495 1998-08-02  Jim Meyering  <meyering@ascend.com>
41496
41497         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
41498         in acconfig.h manually.
41499
41500 1998-07-31  Paul Eggert  <eggert@twinsun.com>
41501
41502         * m4/st_mtim.m4: New file.
41503
41504 1998-07-28  Jim Meyering  <meyering@ascend.com>
41505
41506         * m4/utimes.m4: Undef stat.
41507
41508 1998-07-25  Jim Meyering  <meyering@ascend.com>
41509
41510         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
41511         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
41512
41513 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
41514
41515         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
41516         uid and gid actually remain unchanged.
41517
41518 1998-07-07  Jim Meyering  <meyering@ascend.com>
41519
41520         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
41521
41522 1998-07-04  Jim Meyering  <meyering@ascend.com>
41523
41524         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
41525         to prove that this macro can be used in packages without regex.c.
41526
41527 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
41528
41529         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
41530         is to be used.
41531
41532 1998-07-03  Jim Meyering  <meyering@ascend.com>
41533
41534         * m4/gettext.m4: Add -lintl if it's found to be necessary.
41535
41536         * m4/gettext.m4: New file -- from gettext-0.10.35.
41537         * m4/lcmessage.m4: Likewise.
41538         * m4/progtest.m4: Likewise.
41539
41540         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
41541         * m4/jm-macros.m4: Require the new macro.
41542
41543 1998-06-29  Jim Meyering  <meyering@ascend.com>
41544
41545         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
41546         for the definition of NGROUPS (used in a system header included
41547         by sys/mount.h).
41548
41549 1998-06-28  Jim Meyering  <meyering@ascend.com>
41550
41551         * m4/ls-mntd-fs.m4: New file.
41552         * m4/fstypename.m4: New file.
41553
41554         * m4/jm-macros.m4: Require the new macro.
41555         * m4/jm-glibc-io.m4: New file.
41556
41557 1998-05-19  Jim Meyering  <meyering@ascend.com>
41558
41559         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
41560         * m4/lchown.m4: New file.
41561
41562         * m4/Makefile.am.in: New file.
41563         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
41564
41565 1998-05-14  Jim Meyering  <meyering@ascend.com>
41566
41567         * m4/Makefile.am (EXTRA_DIST): Add them.
41568         * m4/jm-macros.m4: New file.
41569         * m4/utimbuf.m4: New file.
41570
41571 1998-05-12  Jim Meyering  <meyering@ascend.com>
41572
41573         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
41574
41575 1998-05-11  Jim Meyering  <meyering@ascend.com>
41576
41577         * m4/isc-posix.m4: New file.
41578
41579 1998-05-10  Jim Meyering  <meyering@ascend.com>
41580
41581         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
41582
41583 1998-05-09  Jim Meyering  <meyering@ascend.com>
41584
41585         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
41586         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
41587         with automake.
41588
41589         * m4/ssize_t.m4: New file.
41590         * m4/mktime.m4: Remove file -- the new automake has this now.
41591
41592 1998-04-26  Jim Meyering  <meyering@ascend.com>
41593
41594         * m4/assert.m4: New file.
41595         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
41596
41597 1998-04-05  Jim Meyering  <meyering@ascend.com>
41598
41599         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
41600         (jm_PREREQ): Use it here.
41601
41602 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
41603
41604         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
41605         in acconfig.h.
41606
41607 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
41608
41609         * m4/prereq.m4: New file.
41610         * m4/error.m4: New file.
41611         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
41612
41613 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
41614
41615         * m4/getline.m4: Don't set am_cv_func_working_getline before the
41616         cache-check for the same variable -- that defeated the purpose of
41617         the test; the test program was never run.  This was a problem only
41618         on systems with losing getline functions -- HP-UX 10.20 is one.
41619         Reported by Bjorn Helgaas.
41620
41621 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
41622
41623         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
41624
41625 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
41626
41627         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
41628
41629         * m4/const.m4: New file.  Use an initializer in this declaration
41630         typedef int charset[2]; const charset x;
41631         Reported by Bob Glickstein.
41632
41633 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
41634
41635         * m4/chown.m4: Fix reversed types on -1 args to chown.
41636         From Kaveh Ghazi.
41637
41638 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
41639
41640         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
41641         Add lseek and memchr.
41642
41643         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
41644         T.E.Dickey <dickey@clark.net> said that some older preprocessors
41645         have a 20-character limit on names.
41646
41647 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
41648
41649         * m4/inttypes_h.m4: New file.
41650         * m4/uintmax_t.m4: New file.
41651         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
41652
41653
41654         -----
41655
41656         Local Variables:
41657         coding: utf-8
41658         End:
41659
41660         Copyright (C) 1997-2008 Free Software Foundation, Inc.
41661
41662         Copying and distribution of this file, with or without
41663         modification, are permitted provided the copyright notice
41664         and this notice are preserved.